blob: a97b21bca5f0aee3418ca68a3ede9f56b2f46f19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script>
function boom()
{
var v = document.createElementNS("http://www.w3.org/1999/xhtml", "video");
document.body.appendChild(v);
var s = document.createElementNS("http://www.w3.org/1999/xhtml", "span");
s.setAttribute("style", "filter: url(#g);");
document.body.appendChild(s);
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body id="g" onload="setTimeout(boom, 0);"></body></html>
|