blob: c0fd20fecec6448e09a209fc9f2d3e334b2a41c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
document.getElementsByTagName("td")[0].style.position = "absolute";
document.body.getClientRects(); //flush
document.getElementsByTagName("tbody")[0].style.transformStyle = "preserve-3d";
}
</script>
</head>
<body onload="boom();">
<table><tbody><tr><td></td></tr></tbody></table>
</body>
</html>
|