зеркало из https://github.com/mozilla/gecko-dev.git
39 строки
655 B
HTML
39 строки
655 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<style type="text/css">
|
|
#parent1 {
|
|
width: 200px;
|
|
}
|
|
#block1 {
|
|
height: 50px;
|
|
margin-bottom: 20%;
|
|
background-color: green;
|
|
}
|
|
#parent2 {
|
|
width: 200px;
|
|
}
|
|
#block2 {
|
|
height: 50px;
|
|
margin-top: 10%;
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
<script type="text/javascript">
|
|
function test() {
|
|
document.getElementById('parent2').style.width = '500px';
|
|
document.documentElement.removeAttribute('class');
|
|
}
|
|
document.addEventListener('MozReftestInvalidate', test, false);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="parent1">
|
|
<div id="block1"></div>
|
|
</div>
|
|
<div id="parent2">
|
|
<div id="block2"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|