summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-parsing/two-dash-identifiers.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/css-parsing/two-dash-identifiers.html')
-rw-r--r--layout/reftests/css-parsing/two-dash-identifiers.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/layout/reftests/css-parsing/two-dash-identifiers.html b/layout/reftests/css-parsing/two-dash-identifiers.html
new file mode 100644
index 0000000000..9ea7854b92
--- /dev/null
+++ b/layout/reftests/css-parsing/two-dash-identifiers.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<style>
+ .ok { color: red; }
+ #-- { color: green; }
+ #-foo { color: green }
+ #--foo { color: green; }
+ .-- { color: green; }
+ .-foo { color: green; }
+ .--foo { color: green; }
+
+ .fail { color: green; }
+ #- { color: red; }
+ .- { color: red; }
+</style>
+<div class="ok" id="--">This should be green.</div>
+<div class="ok" id="-foo">This should be green.</div>
+<div class="ok" id="--foo">This should be green.</div>
+<div class="ok --">This should be green.</div>
+<div class="ok -foo">This should be green.</div>
+<div class="ok --foo">This should be green.</div>
+<div class="fail" id="-">This should be green.</div>
+<div class="fail -">This should be green.</div>