mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
1b17d6610d
--HG-- extra : rebase_source : 2768fbfd11770d9f72edd70d7828b4f4f5ac9ae0
39 lines
724 B
HTML
39 lines
724 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<style type="text/css">
|
|
#block1 {
|
|
display: block;
|
|
height: 20px;
|
|
background-color: green;
|
|
margin-bottom: 20px;
|
|
}
|
|
#table {
|
|
display: none;
|
|
height: 20px; width: 100px;
|
|
background-color: red;
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
#block2 {
|
|
display: block;
|
|
height: 20px;
|
|
background-color: blue;
|
|
margin-top: 20px;
|
|
}
|
|
</style>
|
|
<script type="text/javascript">
|
|
function test() {
|
|
document.getElementById('table').style.display = 'table';
|
|
document.documentElement.removeAttribute('class');
|
|
}
|
|
document.addEventListener('MozReftestInvalidate', test, false);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="block1"></div>
|
|
<div id="table"></div>
|
|
<div id="block2"></div>
|
|
</body>
|
|
</html>
|