gecko-dev/layout/reftests/margin-collapsing/inline-horizontal-1-dyn.html
Florian Quèze 85611a7b6d Bug 1331081 - script generated patch to omit addEventListener/removeEventListener's third parameter when it's false, r=jaws.
--HG--
extra : rebase_source : a22344ee1569f58f1f0a01017bfe0d46a6a14602
2017-01-17 11:50:25 +01:00

28 lines
540 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<head>
<style type="text/css">
body {
font-family: sans-serif;
}
#inline1 {
margin-right: 10px;
}
#inline2 {
display: none;
margin-left: 20px;
}
</style>
<script type="text/javascript">
function test() {
document.getElementById('inline2').style.display = 'inline';
document.documentElement.removeAttribute('class');
}
document.addEventListener('MozReftestInvalidate', test);
</script>
</head>
<body>
<div><span id="inline1">Hello</span><span id="inline2">Kitty</span></div>
</body>
</html>