blob: 930ef9551287e63e8c78525adf3c8909b41a112f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<script>
function boom()
{
var d = document.createElementNS("http://www.w3.org/1999/xhtml", "div");
d.style.setProperty("-moz-transform", "translate(0pt, 10px)", "");
d.style.setProperty("opacity", "0.8", "");
d.style.setProperty("background-color", "gray", "");
var c = document.createElementNS("http://www.w3.org/1999/xhtml", "canvas");
(d).appendChild(c);
(document.body).appendChild(d);
c.getContext("2d");
}
</script>
<body onload="setTimeout(boom, 100);"></body>
|