Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / harness / internals-object.html
blob69c8cb086e655485ee5e896384bbb949ce41eb58
1 <html>
2 <head>
3 <script>
5 if (testRunner)
6 testRunner.dumpAsText();
8 function runTest()
10 var log = document.body.appendChild(document.createElement('div'));
11 log.write = function(msg, success)
13 this.appendChild(document.createElement('div')).textContent = msg + ': ' + (success ? 'PASS' : 'FAIL');
16 log.write('window.internals object should be visible when running in DRT', !!window.internals);
19 </script>
20 </head>
21 <body onload="runTest()">
22 </body>
23 </html>