[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / fast / workers / use-machine-stack.html
1 <body>
2 <p>Test worker thread stack usage. Should not crash.</p>
3 <div id=result></div>
4 <script>
5 function log(message)
6 {
7     document.getElementById("result").innerHTML += message + "<br>";
8 }
9
10 if (window.layoutTestController) {
11     layoutTestController.dumpAsText();
12     layoutTestController.waitUntilDone();
13 }
14
15 var worker = new Worker('resources/use-machine-stack.js');
16 worker.onmessage = function(evt) {
17     log("PASS (" + evt.data + ")");
18     if (window.layoutTestController)
19         layoutTestController.notifyDone();
20 }
21 </script>
22 </body>
23 </html>