blob: 855ba845ab1fdbbcf4bd9b38ee0a1e5f7bb89032 [file] [log] [blame]
<html>
<head>
<title>Plugin hides OBJECT's properties</title>
<script type="text/javascript">
function test()
{
if (window.layoutTestController)
layoutTestController.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>