diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /layout/reftests/bugs/228856-1.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
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 000000000..3efc590c2 --- /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> |