mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
15 lines
298 B
HTML
15 lines
298 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
function appendScript(doc) {
|
|
var s = doc.createElement("script");
|
|
s.textContent = "document.write('executed'); document.close()";
|
|
doc.body.appendChild(s);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="appendScript(window.document)">
|
|
</body>
|
|
</html>
|