blob: 8dbc30e70e1a5a3e8f470fa4f2cddc211f7516c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<html class="reftest-wait">
<script>
window.onload = () => {
a = document.createElement("body")
b = document.createElement("span")
a.appendChild(b)
c = document.createElement("div")
d = document.createElement("div")
c.appendChild(d)
a.appendChild(c)
document.documentElement.appendChild(a)
requestIdleCallback(() => {
a.style.display = "table-column-group"
d.appendChild(document.createTextNode("\u05D2"))
requestIdleCallback(() => {
d.appendChild(document.createElement("span"))
b.style.zIndex = "1073741824"
document.documentElement.offsetTop;
document.documentElement.className = "";
})
})
}
</script>
</html>
|