mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
463 B
HTML
20 lines
463 B
HTML
|
<!DOCTYPE html>
|
||
|
<html class="reftest-wait">
|
||
|
<head>
|
||
|
<style id="s">
|
||
|
span { display: block ! important }
|
||
|
</style>
|
||
|
<script>
|
||
|
function doTest() {
|
||
|
var s = document.getElementById("s");
|
||
|
s.disabled = true;
|
||
|
document.documentElement.className = "";
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
<body onload="doTest()">
|
||
|
<span style="display: table-cell">a b</span>
|
||
|
<span style="display: table-cell">c d</span>
|
||
|
</body>
|
||
|
</html>
|