blob: 308c56627ba2c61663628c7bae232e1518735892 (
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
25
26
27
|
<!DOCTYPE html>
<html class="reftest-wait">
<script>
window.onload = () => {
a = document.createElement("frameset")
document.documentElement.appendChild(a)
b = document.createElement("f")
b.setAttribute("class", "x")
a.appendChild(b)
c = document.createElement("t")
document.documentElement.appendChild(c)
d = document.createElement('m')
d.setAttribute("class", "x")
c.appendChild(d)
f = document.createElement('d')
d.appendChild(f)
g = document.createElement('n')
f.appendChild(g)
setTimeout(() => {
g.setAttribute("class", "")
sheet = document.createElement("style")
sheet.appendChild(document.createTextNode(".x:-moz-broken{"))
document.head.appendChild(sheet)
document.documentElement.className = "";
}, 500)
}
</script>
|