OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <body> | 3 <body> |
4 <div id="console"></div> | 4 <div id="console"></div> |
5 <script> | 5 <script> |
6 Image.foo = "FAIL: Visible in isolated world."; | 6 Image.foo = "FAIL: Visible in isolated world."; |
7 if (window.testRunner) { | 7 if (window.testRunner) { |
8 testRunner.dumpAsText(); | 8 testRunner.dumpAsText(); |
9 testRunner.evaluateScriptInIsolatedWorld( | 9 testRunner.evaluateScriptInIsolatedWorld( |
10 0, | 10 1, |
11 "document.getElementById('console').innerHTML = Image.foo"); | 11 "document.getElementById('console').innerHTML = Image.foo"); |
12 } | 12 } |
13 </script> | 13 </script> |
14 </body> | 14 </body> |
15 </html> | 15 </html> |
OLD | NEW |