mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-03 02:25:34 +00:00
7391f4b580
MozReview-Commit-ID: JQGb41kp76P --HG-- extra : rebase_source : f9105e949f8fa02697a94718ea69742ac115f8e6
17 lines
538 B
HTML
17 lines
538 B
HTML
<html class="reftest-wait">
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
</head>
|
|
<body style="transform:translate(4px)">
|
|
<div id="invalid" style="width:100px; height:100px; background-color:red;"></div>
|
|
<script>
|
|
function doTest() {
|
|
document.documentElement.style.perspective = '100px';
|
|
document.getElementById("invalid").style.backgroundColor = "green";
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
window.addEventListener("MozReftestInvalidate", doTest);
|
|
</script>
|
|
</body>
|
|
</html>
|