mirror of
https://github.com/servo/servo
synced 2026-05-08 16:12:15 +02:00
11 lines
261 B
HTML
11 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>
|