gecko-dev/layout/reftests/margin-collapsing/inline-table-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

29 lines
550 B
HTML

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