Files
tubestation/layout/reftests/margin-collapsing/column-sibling-1c-dyn.html
Ting-Yu Lin e4371bf006 Bug 1308587 Part 1 - Manually remove "-moz" prefixed multi-column properties in some tests. r=dholbert
In the next part, the patch generated by a script removes "-moz" prefix
to all multi-column properties.

However, some of the tests already have standard multi-column properties
specified. To avoid duplicating CSS multi-column rules in these
files (after applying the next part), I manually remove the prefixed
rules beforehand as many as possible.

Differential Revision: https://phabricator.services.mozilla.com/D44869
2019-09-05 21:32:05 +00:00

37 lines
667 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<head>
<style type="text/css">
#block1, #block2 {
height: 20px;
background-color: orange;
}
#block1 {
margin-bottom: 20px;
}
#multi-column {
display: none;
column-count: 1;
height: 20px;
margin: 20px 0;
background-color: blue;
}
#block2 {
margin-top: 20px;
}
</style>
<script type="text/javascript">
function test() {
document.getElementById('multi-column').style.display = 'block';
document.documentElement.removeAttribute('class');
}
document.addEventListener('MozReftestInvalidate', test);
</script>
</head>
<body>
<div id="block1"></div>
<div id="multi-column"></div>
<div id="block2"></div>
</body>
</html>