summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/830299-1.html
blob: 34286661b496065812b66267047f75c4f4fa156a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE HTML>
<html class="reftest-wait">
<head>
<style>
.test {
  position:fixed;
  display:none;
  width:100px; height:100px;
  background:yellow;
}
.doTest .test {
  display:block;
}
</style>
</head>
<body>
<div style="transform:translate(10px,0); overflow:scroll; width:200px; height:200px;">
  <div class="test"></div>
</div>
<script>
function doTest() {
  document.documentElement.setAttribute("class", "doTest");
}
window.addEventListener("MozReftestInvalidate", doTest);
</script>
</body>
</html>