Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / http / tests / security / mixedContent / websocket / resources / expect-successful-construction-worker.html
1 <html>
2 <head>
3 <script>
4
5 var worker = new Worker("expect-successful-construction.js");
6 worker.onmessage = function (evt)
7 {
8     window.opener.postMessage(evt.data, "*");
9 };
10
11 </script>
12 </head>
13 <body>
14 </body>
15 </html>