mirror of
https://github.com/servo/servo
synced 2026-05-09 16:42:16 +02:00
13 lines
341 B
HTML
13 lines
341 B
HTML
<html>
|
|
<head>
|
|
<script src="harness.js"></script>
|
|
<script>
|
|
var a = document.createElement("div");
|
|
a.appendChild(document.createElement("pre")).appendChild(new Text(""));
|
|
var b = document.createElement("div");
|
|
b.appendChild(a);
|
|
is(b.innerHTML, "<div><pre></pre></div>");
|
|
</script>
|
|
</head>
|
|
</html>
|