tenfourfox/layout/reftests/position-dynamic-changes/max-width.html

18 lines
449 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!DOCTYPE html>
<html class="reftest-wait">
<body>
<style>
#a { border: 1px solid black; max-width: 100px; height: 100px; }
</style>
<script>
document.addEventListener("MozReftestInvalidate", function() {
var a = document.querySelector("#a");
a.style.maxWidth = "200px";
document.documentElement.removeAttribute("class");
}, false);
</script>
<div id="a">
</div>
</body>
</html>