| OLD | NEW | 
|---|
| 1 <html> | 1 <html> | 
| 2 <head> | 2 <head> | 
| 3     <script src="resources/cross-frame-access.js"></script> | 3     <script src="resources/cross-frame-access.js"></script> | 
| 4     <script> | 4     <script> | 
| 5         window.onload = function() | 5         // FIXME[11] window.onload = function() | 
| 6         { | 6         { | 
| 7             if (window.testRunner) { | 7             if (window.testRunner) { | 
| 8                 testRunner.dumpAsText(); | 8                 testRunner.dumpAsText(); | 
| 9                 testRunner.waitUntilDone(); | 9                 testRunner.waitUntilDone(); | 
| 10             } | 10             } | 
| 11 | 11 | 
| 12             window.addEventListener('message', function () | 12             window.addEventListener('message', function () | 
| 13             { | 13             { | 
| 14                 runTest(); | 14                 runTest(); | 
| 15                 if (window.testRunner) | 15                 if (window.testRunner) | 
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 82             log("PASS: Cross frame access by getting the property names of the L
    ocation object revealed no custom properties."); | 82             log("PASS: Cross frame access by getting the property names of the L
    ocation object revealed no custom properties."); | 
| 83         } | 83         } | 
| 84     </script> | 84     </script> | 
| 85 </head> | 85 </head> | 
| 86 <body> | 86 <body> | 
| 87     <p>This tests that variable names can't be enumerated cross domain (see http
    ://bugs.webkit.org/show_bug.cgi?id=16387)</p> | 87     <p>This tests that variable names can't be enumerated cross domain (see http
    ://bugs.webkit.org/show_bug.cgi?id=16387)</p> | 
| 88     <iframe src="http://localhost:8000/security/resources/cross-frame-iframe-for
    -enumeration-test.html"></iframe> | 88     <iframe src="http://localhost:8000/security/resources/cross-frame-iframe-for
    -enumeration-test.html"></iframe> | 
| 89     <pre id="console"></pre> | 89     <pre id="console"></pre> | 
| 90 </body> | 90 </body> | 
| 91 </html> | 91 </html> | 
| OLD | NEW | 
|---|