Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / HTMLDocument / object-by-name-unknown-child-element.html
blob773a7c88495dc028b08ed85d03b6b50087890e71
1 <html>
2 <script>
3 if (window.testRunner)
4 testRunner.dumpAsText();
6 function runTest() {
7 if (document.a)
8 document.getElementById('result').innerHTML = 'SUCCESS';
10 </script>
11 <body onload="runTest()">
12 <object name="a"><foo></foo></object>
13 <div>This tests that an object element with an unknown child element is still part of the document's named item map.</div>
14 <div id="result">FAILURE</div>
15 </body>
16 </html>