mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
293 B
HTML
19 lines
293 B
HTML
<!DOCTYPE html>
|
|
<html style="width: 1px">
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
document.documentElement.offsetHeight;
|
|
var x = document.getElementById("x").firstChild;
|
|
x.data = "a" + x.data;
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();"><span id="x">
|
|
‪𐡱</span></body>
|
|
</html>
|