blob: fee3dbd850c56922b808eef8f458facced364900 [file] [log] [blame]
<html>
<head>
<title>Plugin hides OBJECT's properties</title>
<script type="text/javascript">
function test()
{
if (window.testRunner)
testRunner.dumpAsText();
var result = document.getElementById('obj').children == undefined ? "FAILED" : "PASSED";
document.getElementById("result").innerText = result;
}
</script>
</head>
<body onload="test()">
<p>
This test checks for a regression where scriptable plugins hide properties of
the OBJECT element.
If the test passes, you will see a "PASSED" message below.
</p>
<p id="result"></p>
<object id="obj" type="video/quicktime"><!-- quicktime -->
</object>
</body>