mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
15 lines
316 B
HTML
15 lines
316 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<body><script>
|
||
|
window.onload = function() {
|
||
|
var a = document.createTextNode("a ");
|
||
|
var b = document.createElement("input");
|
||
|
var c = document.createTextNode(" c");
|
||
|
document.body.appendChild(a);
|
||
|
document.body.appendChild(b);
|
||
|
document.body.appendChild(c);
|
||
|
}
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|