[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / fast / loader / javascript-url-iframe-remove-on-navigate.html
1 <iframe src="http://does.not.exist/" id="target"></iframe>
2 <script>
3 if (window.layoutTestController) {
4     layoutTestController.dumpAsText();
5     layoutTestController.waitUntilDone();
6 }
7
8 setTimeout(function() {
9         document.getElementById("target").src = "javascript:alert('FAIL')";
10     }, 0);
11
12 window.addEventListener("popstate", function() {
13         document.write("PASS - Javascript URL blocked without crashing.");
14         if (window.layoutTestController)
15             layoutTestController.notifyDone();
16     }, false);
17 </script>