mirror of
https://github.com/servo/servo.git
synced 2025-06-14 03:14:29 +00:00
12 lines
341 B
HTML
12 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>
|