Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / dom / HTMLDocument / object-by-name-unknown-child-element.html
1 <html>
2 <script>
3 if (window.testRunner)
4     testRunner.dumpAsText();
5
6 function runTest() {
7     if (document.a)
8         document.getElementById('result').innerHTML = 'SUCCESS';
9 }
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>