mirror of
https://github.com/servo/servo.git
synced 2025-10-03 18:19:14 +01:00
11 lines
481 B
HTML
11 lines
481 B
HTML
<!DOCTYPE html>
|
|
<link rel="help" href="https://drafts.csswg.org/css-text-3/#white-space-rules">
|
|
<link rel="match" href="reference/white-space-empty-text-sibling-ref.html">
|
|
<p>There should be a space between "Two" and "words".</p>
|
|
<div id="block"> <span>words</span></div>
|
|
<script>
|
|
block.insertBefore(document.createTextNode(""), block.firstChild);
|
|
block.insertBefore(document.createTextNode(""), block.firstChild);
|
|
block.offsetTop;
|
|
block.firstChild.data = "Two";
|
|
</script>
|