blob: 5b654dd02c208d3ec5ab26411a426148ef529d5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<html>
<head>
<script>
var dt;
function init() {
dt = document.implementation.createDocumentType("rheet", 0, 2);
dt.foopy = "quux";
}
init();
</script>
</head>
<body>
</body>
</html>
|