mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
35 lines
623 B
HTML
35 lines
623 B
HTML
|
<!DOCTYPE html>
|
||
|
<html class="reftest-wait">
|
||
|
<head>
|
||
|
<style type="text/css">
|
||
|
#separator {
|
||
|
height: 20px;
|
||
|
background-color: green;
|
||
|
}
|
||
|
#float {
|
||
|
float: right;
|
||
|
width: 50px;
|
||
|
margin: 20px 0;
|
||
|
background-color: green;
|
||
|
}
|
||
|
#child {
|
||
|
height: 20px;
|
||
|
background-color: lightgreen;
|
||
|
}
|
||
|
</style>
|
||
|
<script type="text/javascript">
|
||
|
function test() {
|
||
|
document.getElementById('child').style.margin = '40px 0';
|
||
|
document.documentElement.removeAttribute('class');
|
||
|
}
|
||
|
document.addEventListener('MozReftestInvalidate', test, false);
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="separator"></div>
|
||
|
<div id="float">
|
||
|
<div id="child"></div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|