mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
368 B
HTML
19 lines
368 B
HTML
<!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>
|