mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +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>
|