mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
040621b98e
--HG-- extra : rebase_source : 77e24041ced152ff1e82c98ab943f9282f2aca7d
20 lines
493 B
HTML
20 lines
493 B
HTML
<!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="position:fixed; width:200px; height:200px;"></embed>
|
|
<script>
|
|
var p = document.getElementById("p");
|
|
function doTest() {
|
|
p.style.height = "400px";
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
window.addEventListener("MozReftestInvalidate", doTest, false);
|
|
</script>
|
|
</body>
|
|
</html>
|