mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
23 lines
196 B
HTML
23 lines
196 B
HTML
|
<html>
|
||
|
<head>
|
||
|
|
||
|
<script>
|
||
|
|
||
|
var dt;
|
||
|
|
||
|
function init() {
|
||
|
dt = document.implementation.createDocumentType("rheet", 0, 2);
|
||
|
dt.foopy = "quux";
|
||
|
}
|
||
|
|
||
|
init();
|
||
|
|
||
|
</script>
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
</body>
|
||
|
</html>
|