blob: 5685dd582bc2b57ce6b8bf1b7077b7553c171540 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE HTML>
<html class="reftest-wait">
<head>
<script src="forceloadplugin.js">
</script>
</head>
<body onLoad="forceLoadPlugin('p', true)">
<embed type="application/x-test" id="p"
style="width:200px; height:400px;"></embed>
<script>
var p = document.getElementById("p");
function doTest() {
document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", doTest, false);
</script>
</body>
</html>
|