2008-11-04 Anders Carlsson <andersca@apple.com>
[webkit/qt.git] / LayoutTests / fast / dom / object-plugin-hides-properties.html
blob64c5cc8fd3440373bf3bf1110d6c59ac28da0564
1 <html>
2 <head>
3 <title>Plugin hides OBJECT's properties</title>
4 <script type="text/javascript">
5 function test()
7 if (window.layoutTestController)
8 layoutTestController.dumpAsText();
10 var result = document.getElementById('obj').children == undefined ? "FAILED" : "PASSED";
11 document.getElementById("result").innerText = result;
13 </script>
14 </head>
15 <body onload="test()">
16 <p>
17 This test checks for a regression where scriptable plugins hide properties of
18 the OBJECT element.
19 If the test passes, you will see a "PASSED" message below.
20 </p>
21 <p id="result"></p>
22 <object id="obj" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"><!-- quicktime -->
23 </object>
24 </body>