tenfourfox/layout/reftests/position-dynamic-changes/min-width.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

21 lines
548 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<body>
<style>
#a { border: 1px solid green; width: 150px; height: 200px; }
#b { border: 1px solid black; min-width: 100px; height: 100px; }
</style>
<script>
document.addEventListener("MozReftestInvalidate", function() {
var b = document.querySelector("#b");
b.style.minWidth = "200px";
document.documentElement.removeAttribute("class");
}, false);
</script>
<div id="a">
<div id="b">
</div>
</div>
</body>
</html>