summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/1149304-1-transform-change.html
blob: 7eb2e5dcd22b3142503702d5ba6aaf3a189ea64b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE HTML>
<html class="reftest-wait">
<head>
<meta charset="utf-8">
<style>
  body { transform:translateY(100px); white-space: pre; }
  p { margin: 0; }
  span { padding: 2px; color: red; background: blue; }
</style>
<script>
function test(n) {
  document.body.style.transform = "translateY(" + n + "px)";
  if (n > 10) {
    setTimeout("test(" + (n - 10) + ")", 0);
  } else {
    document.documentElement.removeAttribute("class");
  }
}
</script>
</head>
<body onload="test(100)"><p> <span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span> &nbsp; &nbsp; </p>
</body>
</html>