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/378535-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/378535-1.html')
-rw-r--r-- | layout/reftests/bugs/378535-1.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/layout/reftests/bugs/378535-1.html b/layout/reftests/bugs/378535-1.html new file mode 100644 index 000000000..b56f9df83 --- /dev/null +++ b/layout/reftests/bugs/378535-1.html @@ -0,0 +1,34 @@ +<!DOCTYPE html> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <style type="text/css"> + #div1:before { content: "PASS1"; } + #div2:before { content: "FAIL2"; content: "PASS2" } + #div3:before { content: "FAIL3"; content: normal; } + #div4:before { content: normal; content: "PASS4"; } + #div5:before { content: "FAIL5"; content: none; } + #div6:before { content: "PASS6"; content: none none; } + #div7:before { content: "PASS7"; content: normal none; } + #div8:before { content: "PASS8"; content: none normal; } + #div9:before { content: "PASS9"; content: "FAIL8" none; } + #div10:before { content: "PASS10"; content: no-open-quote none; } + #div11:before { content: "FAIL11"; content: no-open-quote no-close-quote; } + #div12:before { content: "PASS12"; content: none "FAIL12"; } + + </style> + </head> + <body> + <div id="div1"></div> + <div id="div2"></div> + <div id="div3"></div> + <div id="div4"></div> + <div id="div5"></div> + <div id="div6"></div> + <div id="div7"></div> + <div id="div8"></div> + <div id="div9"></div> + <div id="div10"></div> + <div id="div11"></div> + <div id="div12"></div> + </body> +</html> |