Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / security / isolatedWorld / body-properties.html
blob58b4ac848937981b6443cea325586a879224a9fb
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <div id="console"></div>
5 <script>
6 document.body.foo = "FAIL: Visible in isolated world.";
7 if (window.testRunner) {
8 testRunner.dumpAsText();
9 testRunner.evaluateScriptInIsolatedWorld(
11 "document.getElementById('console').innerHTML = document.body.foo");
13 </script>
14 </body>
15 </html>