mirror of
https://github.com/servo/servo.git
synced 2025-06-12 10:24:43 +00:00
19 lines
425 B
HTML
19 lines
425 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script src="harness.js"></script>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
var output = "start";
|
|
|
|
var script = document.createElement("script");
|
|
script.setAttribute('type','text/javascript');
|
|
script.textContent = "output += ' middle ';";
|
|
document.body.appendChild(script);
|
|
|
|
output += "end";
|
|
is(output, "start middle end");
|
|
</script>
|
|
</body>
|
|
</html>
|