summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-enabled/option
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /layout/reftests/css-enabled/option
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-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/css-enabled/option')
-rw-r--r--layout/reftests/css-enabled/option/option-fieldset-1.html9
-rw-r--r--layout/reftests/css-enabled/option/option-fieldset-ref.html9
-rw-r--r--layout/reftests/css-enabled/option/reftest-stylo.list2
-rw-r--r--layout/reftests/css-enabled/option/reftest.list1
-rw-r--r--layout/reftests/css-enabled/option/style.css19
5 files changed, 40 insertions, 0 deletions
diff --git a/layout/reftests/css-enabled/option/option-fieldset-1.html b/layout/reftests/css-enabled/option/option-fieldset-1.html
new file mode 100644
index 000000000..c2d9b7a34
--- /dev/null
+++ b/layout/reftests/css-enabled/option/option-fieldset-1.html
@@ -0,0 +1,9 @@
+<!DOCTYPE html>
+<html>
+ <link rel='stylesheet' type='text/css' href='style.css'>
+ <body>
+ <fieldset disabled class="disabled">
+ <option class="enabled">foo</option>
+ </fieldset>
+ </body>
+</html>
diff --git a/layout/reftests/css-enabled/option/option-fieldset-ref.html b/layout/reftests/css-enabled/option/option-fieldset-ref.html
new file mode 100644
index 000000000..7d103ce8c
--- /dev/null
+++ b/layout/reftests/css-enabled/option/option-fieldset-ref.html
@@ -0,0 +1,9 @@
+<!DOCTYPE html>
+<html>
+ <link rel='stylesheet' type='text/css' href='style.css'>
+ <body>
+ <fieldset class="ref">
+ <option class="ref">foo</option>
+ </fieldset>
+ </body>
+</html>
diff --git a/layout/reftests/css-enabled/option/reftest-stylo.list b/layout/reftests/css-enabled/option/reftest-stylo.list
new file mode 100644
index 000000000..113e2240e
--- /dev/null
+++ b/layout/reftests/css-enabled/option/reftest-stylo.list
@@ -0,0 +1,2 @@
+# DO NOT EDIT! This is a auto-generated temporary list for Stylo testing
+== option-fieldset-1.html option-fieldset-1.html
diff --git a/layout/reftests/css-enabled/option/reftest.list b/layout/reftests/css-enabled/option/reftest.list
new file mode 100644
index 000000000..4a782d2f4
--- /dev/null
+++ b/layout/reftests/css-enabled/option/reftest.list
@@ -0,0 +1 @@
+== option-fieldset-1.html option-fieldset-ref.html
diff --git a/layout/reftests/css-enabled/option/style.css b/layout/reftests/css-enabled/option/style.css
new file mode 100644
index 000000000..3846239d0
--- /dev/null
+++ b/layout/reftests/css-enabled/option/style.css
@@ -0,0 +1,19 @@
+.ref {
+ background-color: green;
+}
+
+.enabled {
+ background-color: red;
+}
+
+:enabled.enabled {
+ background-color: green;
+}
+
+.disabled {
+ background-color: green;
+}
+
+:enabled.disabled {
+ background-color: red;
+}