mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
333 B
HTML
17 lines
333 B
HTML
<html>
|
|
|
|
<head>
|
|
<script>
|
|
function boom()
|
|
{
|
|
document.body.appendChild(document.createTextNode("a"));
|
|
document.body.appendChild(document.createTextNode("b"));
|
|
document.body.appendChild(document.createTextNode("c"));
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();" style="display: table-row; text-indent: 17895702px;"></body>
|
|
|
|
</html>
|