mirror of
https://github.com/servo/servo.git
synced 2025-06-12 02:14:41 +00:00
26 lines
892 B
HTML
26 lines
892 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script src="harness.js"></script>
|
|
</head>
|
|
<body>
|
|
<!-- \u0020 Space -->
|
|
<div id="foo-1" class="aaa foo"></div>
|
|
<!-- \u0009 Character tabulation -->
|
|
<div id="foo-2" class="bbb	foo"></div>
|
|
<!-- \u000a Line feed -->
|
|
<div id="foo-3" class="ccc foo"></div>
|
|
<!-- \u000c Form feed -->
|
|
<div id="foo-4" class="dddfoo"></div>
|
|
<!-- \u000d Carriage return -->
|
|
<div id="foo-5" class="eee foo"></div>
|
|
<!-- Space -->
|
|
<div id="foo-6" class="fff foo"></div>
|
|
<!-- Non-HTML space character -->
|
|
<div id="bar" class="gggfoo"></div>
|
|
<script>
|
|
is(document.getElementsByClassName("foo").length, 6);
|
|
is_not(document.getElementById("bar").className, "ggg foo");
|
|
</script>
|
|
</body>
|
|
</html>
|