Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / http / tests / security / javascriptURL / resources / foreign-domain-javascript-url-accessee-opened-frame.html
index 4a8fdd9..a48a870 100644 (file)
@@ -4,15 +4,6 @@
     <iframe id="aFrame"></iframe>
     <script>
         var url = "javascript:\"<html>"
-            + "<head>"
-            +     "<scr" + "ipt>"
-            +         "window.onload = function()"
-            +         "{"
-            +             "if (window.testRunner)"
-            +                 "testRunner.globalFlag = true;"
-            +         "}"
-            +     "</scr" + "ipt>"
-            + "</head>"
             + "<body>"
             +     "<p id='accessMe'>PASS: Access from the main frame was denied!</p>"
             +     "<p>Inner-inner iframe. This iframe (which is javascript: URL and whose parent is on a foreign domain) is the frame that the"
@@ -21,6 +12,7 @@
             + "</html>\"";
 
         var frame = document.getElementById('aFrame');
+        frame.onload = function () { window.opener.postMessage('run test', '*'); };
         frame.src = url;
     </script>
 </body>