1
0
Fork 0
firefox/layout/reftests/margin-collapsing/block-float-2b-dyn.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

34 lines
616 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<head>
<style type="text/css">
#separator {
height: 20px;
background-color: green;
}
#float {
float: right;
width: 50px;
margin: 20px 0;
background-color: green;
}
#child {
height: 20px;
background-color: lightgreen;
}
</style>
<script type="text/javascript">
function test() {
document.getElementById('child').style.margin = '40px 0';
document.documentElement.removeAttribute('class');
}
document.addEventListener('MozReftestInvalidate', test);
</script>
</head>
<body>
<div id="separator"></div>
<div id="float">
<div id="child"></div>
</div>
</body>
</html>