diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-text/white-space/control-chars-00D.html')
-rw-r--r-- | testing/web-platform/tests/css/css-text/white-space/control-chars-00D.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-text/white-space/control-chars-00D.html b/testing/web-platform/tests/css/css-text/white-space/control-chars-00D.html new file mode 100644 index 0000000000..7a85cc8813 --- /dev/null +++ b/testing/web-platform/tests/css/css-text/white-space/control-chars-00D.html @@ -0,0 +1,30 @@ +<!doctype html> +<meta charset=utf-8> +<title>U+000D must be treated the same as U+0020</title> +<link rel=author title="Florian Rivoal" href="https://florian.rivoal.net"> +<link rel=help href="https://drafts.csswg.org/css-text-3/#white-space-processing"> +<link rel=match href="reference/control-chars-00D-ref.html"> +<meta name=flags content=""> +<meta name=assert content="U+000D must be treated as U+0020"> +<style> +div { + font-size: 2em; + font-family: monospace; + color: blue; + width: 4ch; +} +#ref { + color: orange; +} +.p {white-space: pre;} +.pw {white-space: pre-wrap;} +.pl {white-space: pre-line;} +.bs {white-space: break-spaces;} +.nw {white-space: nowrap;} +</style> + +<p>Test passes if blue charaters are arranged exactly in the same way as the orange ones. + +<div>A





B
C<span class=p>


</span>D<span class=pw>


</span>E<span class=pl>





</span>F<span class=bs>


</span>G<span class=nw>




</span>H</div> + +<div id=ref>A B C<span class=p> </span>D<span class=pw> </span>E<span class=pl> </span>F<span class=bs> </span>G<span class=nw> </span>H</div> |