diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /layout/reftests/bugs/228856-1.html | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/bugs/228856-1.html')
-rw-r--r-- | layout/reftests/bugs/228856-1.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/layout/reftests/bugs/228856-1.html b/layout/reftests/bugs/228856-1.html new file mode 100644 index 0000000000..3efc590c20 --- /dev/null +++ b/layout/reftests/bugs/228856-1.html @@ -0,0 +1,34 @@ +<!doctype html> +<html><head> +<!-- This tests behavior specified in CSS Syntax Level 3, + as of the Editor's Draft 19 June 2013: + http://dev.w3.org/csswg/css-syntax/ --> +<title>\0 in CSS</title> +<style> +p#a:before { content: "\0x" } +p#b:before { content: "\00x" } +p#c:before { content: "\000x" } +p#d:before { content: "\0000x" } +p#e:before { content: "\00000x" } +p#f:before { content: "\000000x" } +p#g:before { content: "\0 x" } +p#h:before { content: "\00 x" } +p#i:before { content: "\000 x" } +p#j:before { content: "\0000 x" } +p#k:before { content: "\00000 x" } +p#l:before { content: "\000000 x" } +</style> +</head><body> +<p id="a">(a)</p> +<p id="b">(b)</p> +<p id="c">(c)</p> +<p id="d">(d)</p> +<p id="e">(e)</p> +<p id="f">(f)</p> +<p id="g">(g)</p> +<p id="h">(h)</p> +<p id="i">(i)</p> +<p id="j">(j)</p> +<p id="k">(k)</p> +<p id="l">(l)</p> +</body></html> |