mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-30 13:45:27 +00: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>
|