Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

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