[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / fast / canvas / script-inside-canvas-fallback.html
1 <head>
2 <script>
3 if (window.layoutTestController)
4     layoutTestController.dumpAsText();
5 </script>
6 </head>
7 <body>
8 <div>This text should NOT be visible, because JavaScript should replace it.</div> 
9 <canvas>
10 This text should NOT be visible if JavaScript is enabled.
11 <script>
12 document.getElementsByTagName("div")[0].innerText = "This text was set by a script inside a canvas element. "
13     + "Such scripts run even though the content is not displayed."
14 </script>
15 </canvas>
16 </body>