mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
29 lines
557 B
HTML
29 lines
557 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<style type="text/css">
|
|
body {
|
|
font-family: sans-serif;
|
|
}
|
|
#it1 {
|
|
display: inline-table;
|
|
margin-right: 20px;
|
|
}
|
|
#it2 {
|
|
display: none;
|
|
margin-left: 10px;
|
|
}
|
|
</style>
|
|
<script type="text/javascript">
|
|
function test() {
|
|
document.getElementById('it2').style.display = 'inline-table';
|
|
document.documentElement.removeAttribute('class');
|
|
}
|
|
document.addEventListener('MozReftestInvalidate', test, false);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div><span id="it1">Hello</span><span id="it2">Kitty</span></div>
|
|
</body>
|
|
</html>
|