blob: fee3dbd850c56922b808eef8f458facced364900 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<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>
|