summaryrefslogtreecommitdiffstats
path: root/layout/reftests/border-radius/invalidate-1b.html
blob: be740a225177565bdeb8a57294c6657ee0f34e71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE HTML>
<html class="reftest-wait">
<body>
<div id="d" style="background:blue; border-radius:50px; width:100px; height:200px;">
</div>
<script>
function doTest() {
  var d = document.getElementById("d");
  d.style.width = "200px";
  document.documentElement.className = "";
}
window.addEventListener("MozReftestInvalidate", doTest);
</script>
</body>
</html>