Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / http / tests / security / mixedContent / resources / frame-with-insecure-eventsource.html
1 <script>
2 var es = new EventSource("http://127.0.0.1:8000/eventsource/resources/simple-event-stream.asis");
3
4 window.onload = function() {
5     if (window.opener)
6         window.opener.postMessage('done', '*');
7 };
8 </script>