mirror of
https://github.com/servo/servo.git
synced 2025-06-12 10:24:43 +00:00
10 lines
261 B
HTML
10 lines
261 B
HTML
<html>
|
|
<head>
|
|
<script src="harness.js"></script>
|
|
<script>
|
|
var a = document.createElement("div");
|
|
a.appendChild(document.createElement("pre")).appendChild(new Text(""));
|
|
is(a.innerHTML, "<pre></pre>");
|
|
</script>
|
|
</head>
|
|
</html>
|