mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-29 10:48:39 +09:00
18 lines
458 B
HTML
18 lines
458 B
HTML
<html class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
function doTest() {
|
|
document.getElementById("myDiv").style.width = "100px";
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
window.addEventListener("MozReftestInvalidate", doTest, false);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="myDiv"
|
|
style="width: 10px;
|
|
height: 100px;
|
|
background-image: url('lime100x100-noSVGDimensions.svg')">
|
|
</div>
|
|
</body>
|
|
</html>
|