1<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
2<head>
3
4<style id="styles"></style>
5
6<script>
7
8window.addEventListener("load", f1, false);
9
10function f1()
11{
12  document.getElementById("div2").setAttribute("style", "position: absolute;");
13  document.getElementById("table").setAttribute("style", "width: 200%;");
14  setTimeout(f2, 30);
15}
16
17function f2()
18{
19  document.getElementById("styles").textContent = ".thisMatchesNothing { }";
20  document.documentElement.removeAttribute("class");
21}
22
23</script>
24
25</head>
26
27<body style="position: relative; column-width: 1px;">
28
29<table id="table">
30 <tr>
31  <td>Table</td>
32 </tr>
33</table>
34
35<div>A</div>
36
37<div id="div2">B</div>
38
39<div style="display: table; width: 200%;">C</div>
40
41</body>
42</html>
43