summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/579985-1.html
blob: 78121727f5b1f33ee07236f145d6ecc62604d3a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE HTML>
<html class="reftest-wait">
<head>
<script>
function doTest() {
  var d = document.getElementById("d");
  d.style.opacity = 0.5;
  document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", doTest, false);
</script>
</head>
<body>
<div id="d" style="width:100px; height:100px; background:blue;">Hello</div>
</body>
</html>