mirror of
https://github.com/servo/servo.git
synced 2025-06-21 07:38:59 +01:00
16 lines
342 B
HTML
16 lines
342 B
HTML
<html>
|
|
<head>
|
|
<script src="harness.js"></script>
|
|
</head>
|
|
<body>
|
|
<div>this is
|
|
text content</div>
|
|
<script>
|
|
var div = document.getElementsByTagName('div')[0];
|
|
is(div.textContent, "this is\n text content");
|
|
var newContent = "new text con\ntent";
|
|
div.textContent = newContent;
|
|
is(div.textContent, newContent);
|
|
</script>
|
|
</body>
|
|
</html>
|