diff options
Diffstat (limited to 'layout/reftests/css-parsing/moz-bool-pref.css')
-rw-r--r-- | layout/reftests/css-parsing/moz-bool-pref.css | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/layout/reftests/css-parsing/moz-bool-pref.css b/layout/reftests/css-parsing/moz-bool-pref.css new file mode 100644 index 0000000000..3827bb3f17 --- /dev/null +++ b/layout/reftests/css-parsing/moz-bool-pref.css @@ -0,0 +1,22 @@ +#test { + width: 100px; + height: 100px; +} + +.enabled { + background: red; +} + +.disabled { + background: green; +} + +@media (-moz-bool-pref: "testing.supports.moz-bool-pref") { + .enabled { + background: green; + } + + .disabled { + background: red; + } +} |