summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/580160-1.html
blob: 1ec94e644c692c3f8d622b02414678885c24ccac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!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>