blob: 7908942d3b5d00a442d989fa35f5f749cf59be43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<html reftest-zoom="0.9" class="reftest-wait">
<meta charset="utf-8">
<body>
<div id="transformed" style="width:200px; height:200px; background-color:red; transform:scale(2)"></div>
</body>
<script>
function doTest() {
document.getElementById("transformed").style.transform = "scale(0)";
document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", doTest);
</script>
</html>
|