blob: b548a9a600c15e6f6dd0c445dc0800496f89bfdd (
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
|
<svg xmlns="http://www.w3.org/2000/svg">
<script>
<![CDATA[
function forceFrameConstruction()
{
document.documentElement.getBoundingClientRect();
}
function boom()
{
document.documentElement.style.overflow = "scroll";
forceFrameConstruction()
document.documentElement.style.visibility = "visible";
}
window.addEventListener("load", boom, false);
]]>
</script>
<rect style="perspective: 10em;" />
</svg>
|