mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
695f80cd69
--HG-- extra : rebase_source : 2768fbfd11770d9f72edd70d7828b4f4f5ac9ae0
37 lines
692 B
HTML
37 lines
692 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<style type="text/css">
|
|
#float-blue {
|
|
float: left;
|
|
margin-right: 20px;
|
|
background-color: blue;
|
|
width: 40px;
|
|
height: 100px;
|
|
}
|
|
.dyn {
|
|
display: none;
|
|
}
|
|
.float-green {
|
|
float: left;
|
|
margin: 0 20px;
|
|
background-color: green;
|
|
width: 40px;
|
|
height: 100px;
|
|
}
|
|
</style>
|
|
<script type="text/javascript">
|
|
function test() {
|
|
document.getElementsByClassName('dyn')[0].style.display = 'block';
|
|
document.documentElement.removeAttribute('class');
|
|
}
|
|
document.addEventListener('MozReftestInvalidate', test, false);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="float-blue"></div>
|
|
<div class="float-green dyn"></div>
|
|
<div class="float-green"></div>
|
|
</body>
|
|
</html>
|