blob: cbf6365c529ac70c4da43c373f873bb1015cdbc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!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>
|