summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/828146-1.html
blob: 7aaa7c694d9f0034ffbe2381dd37ebbd05b4442e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE HTML>
<html class="reftest-wait">
<body>
<div id="b" style="width:100px; height:100px; position:relative; top:50px; -moz-appearance:button"></div>
<script>
var b = document.getElementById("b");
function doTest() {
  b.style.top = "60px";
  document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", doTest);
</script>
</body>
</html>