[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / fast / js / uncaught-exception-line-number.html
1 <html>
2 <body>
3 This tests that uncaught exceptions have the right line numbers, for
4 example for display in the JavaScript error console. To run the test manually,
5 look in the JS console for an uncaught exception on line 11.<br>
6
7 <script>
8 if (window.layoutTestController) layoutTestController.dumpAsText();
9
10 function foo() {
11   throw 'uh oh, an exception!';
12 }
13 </script>
14 <script>
15 foo();
16 </script>
17 </body>
18 </html>