summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-valid/button
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/css-valid/button')
-rw-r--r--layout/reftests/css-valid/button/button-button.html9
-rw-r--r--layout/reftests/css-valid/button/button-disabled-fieldset-1.html14
-rw-r--r--layout/reftests/css-valid/button/button-disabled-fieldset-2.html23
-rw-r--r--layout/reftests/css-valid/button/button-disabled-ref.html6
-rw-r--r--layout/reftests/css-valid/button/button-disabled.html10
-rw-r--r--layout/reftests/css-valid/button/button-dyn-disabled.html9
-rw-r--r--layout/reftests/css-valid/button/button-dyn-not-disabled.html9
-rw-r--r--layout/reftests/css-valid/button/button-fieldset-legend-ref.html10
-rw-r--r--layout/reftests/css-valid/button/button-fieldset-legend.html14
-rw-r--r--layout/reftests/css-valid/button/button-fieldset-ref.html11
-rw-r--r--layout/reftests/css-valid/button/button-invalid.html9
-rw-r--r--layout/reftests/css-valid/button/button-ref.html6
-rw-r--r--layout/reftests/css-valid/button/button-reset.html9
-rw-r--r--layout/reftests/css-valid/button/button-type-barred.html11
-rw-r--r--layout/reftests/css-valid/button/button-type-invalid.html19
-rw-r--r--layout/reftests/css-valid/button/button-valid.html9
-rw-r--r--layout/reftests/css-valid/button/reftest.list12
-rw-r--r--layout/reftests/css-valid/button/style.css18
18 files changed, 208 insertions, 0 deletions
diff --git a/layout/reftests/css-valid/button/button-button.html b/layout/reftests/css-valid/button/button-button.html
new file mode 100644
index 0000000000..dd3332294f
--- /dev/null
+++ b/layout/reftests/css-valid/button/button-button.html
@@ -0,0 +1,9 @@
+<!DOCTYPE html>
+<html>
+ <!-- Test: if button is of the button type, it is barred from constraint
+ validation and should not be affected by :valid pseudo-class. -->
+ <link rel='stylesheet' type='text/css' href='style.css'>
+ <body>
+ <button class='notvalid' type='button'></button>
+ </body>
+</html>
diff --git a/layout/reftests/css-valid/button/button-disabled-fieldset-1.html b/layout/reftests/css-valid/button/button-disabled-fieldset-1.html
new file mode 100644
index 0000000000..74f7d371a7
--- /dev/null
+++ b/layout/reftests/css-valid/button/button-disabled-fieldset-1.html
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<html>
+ <!-- Test: if button has a disabled fieldset ancestor, it is barred from
+ constraint validation and should not be affected by :valid
+ pseudo-class. -->
+ <link rel='stylesheet' type='text/css' href='style.css'>
+ <body>
+ <fieldset disabled>
+ <fieldset>
+ <button class='notvalid'></button>
+ </fieldset>
+ </fieldset>
+ </body>
+</html>
diff --git a/layout/reftests/css-valid/button/button-disabled-fieldset-2.html b/layout/reftests/css-valid/button/button-disabled-fieldset-2.html
new file mode 100644
index 0000000000..4f18437d7b
--- /dev/null
+++ b/layout/reftests/css-valid/button/button-disabled-fieldset-2.html
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html class="reftest-wait">
+ <!-- Test: if button has a disabled fieldset ancestor, it is barred from
+ constraint validation and should not be affected by :valid
+ pseudo-class. -->
+ <link rel='stylesheet' type='text/css' href='style.css'>
+ <script>
+ function onloadHandler()
+ {
+ var fieldsets = document.getElementsByTagName("fieldset");
+ fieldsets[1].disabled = true;
+ fieldsets[0].disabled = false;
+ document.documentElement.className='';
+ }
+ </script>
+ <body onload="onloadHandler();">
+ <fieldset disabled>
+ <fieldset>
+ <button class='notvalid'></button>
+ </fieldset>
+ </fieldset>
+ </body>
+</html>
diff --git a/layout/reftests/css-valid/button/button-disabled-ref.html b/layout/reftests/css-valid/button/button-disabled-ref.html
new file mode 100644
index 0000000000..7de1ba7c5c
--- /dev/null
+++ b/layout/reftests/css-valid/button/button-disabled-ref.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html>
+<html>
+ <body>
+ <button style="background-color: green;" disabled></button>
+ </body>
+</html>
diff --git a/layout/reftests/css-valid/button/button-disabled.html b/layout/reftests/css-valid/button/button-disabled.html
new file mode 100644
index 0000000000..9e21f2ac2b
--- /dev/null
+++ b/layout/reftests/css-valid/button/button-disabled.html
@@ -0,0 +1,10 @@
+<!DOCTYPE html>
+<html>
+ <!-- Test: if button is disabled, it is barred from constraint validation
+ and should not be affected by :valid pseudo-class. -->
+ <link rel='stylesheet' type='text/css' href='style.css'>
+ <body>
+ <button class='notvalid' disabled></button>
+ </body>
+</html>
+
diff --git a/layout/reftests/css-valid/button/button-dyn-disabled.html b/layout/reftests/css-valid/button/button-dyn-disabled.html
new file mode 100644
index 0000000000..ef3436eb64
--- /dev/null
+++ b/layout/reftests/css-valid/button/button-dyn-disabled.html
@@ -0,0 +1,9 @@
+<!DOCTYPE html>
+<html class="reftest-wait">
+ <!-- Test: if button is disabled, it is barred from constraint validation
+ and should not be affected by :valid pseudo-class. -->
+ <link rel='stylesheet' type='text/css' href='style.css'>
+ <body onload="document.getElementById('b').disabled='true'; document.documentElement.className='';">
+ <button class='notvalid' id='b'></button>
+ </body>
+</html>
diff --git a/layout/reftests/css-valid/button/button-dyn-not-disabled.html b/layout/reftests/css-valid/button/button-dyn-not-disabled.html
new file mode 100644
index 0000000000..671573cc3e
--- /dev/null
+++ b/layout/reftests/css-valid/button/button-dyn-not-disabled.html
@@ -0,0 +1,9 @@
+<!DOCTYPE html>
+<html class="reftest-wait">
+ <!-- Test: if button is not disabled, it is candidate for constraint validation
+ and should be affected by :valid pseudo-class. -->
+ <link rel='stylesheet' type='text/css' href='style.css'>
+ <body onload="document.getElementById('b').removeAttribute('disabled'); document.documentElement.className='';">
+ <button class='valid' id='b' disabled></button>
+ </body>
+</html>
diff --git a/layout/reftests/css-valid/button/button-fieldset-legend-ref.html b/layout/reftests/css-valid/button/button-fieldset-legend-ref.html
new file mode 100644
index 0000000000..22adc433cd
--- /dev/null
+++ b/layout/reftests/css-valid/button/button-fieldset-legend-ref.html
@@ -0,0 +1,10 @@
+<!DOCTYPE html>
+<html>
+ <body>
+ <fieldset>
+ <legend>
+ <button style="background-color: green;"></button>
+ </legend>
+ </fieldset>
+ </body>
+</html>
diff --git a/layout/reftests/css-valid/button/button-fieldset-legend.html b/layout/reftests/css-valid/button/button-fieldset-legend.html
new file mode 100644
index 0000000000..34159d6180
--- /dev/null
+++ b/layout/reftests/css-valid/button/button-fieldset-legend.html
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<html>
+ <!-- Test: if button has a disabled fieldset ancestor, but is in the first
+ legend, it is not barred from constraint validation and should be
+ affected by :valid pseudo-class. -->
+ <link rel='stylesheet' type='text/css' href='style.css'>
+ <body>
+ <fieldset disabled>
+ <legend>
+ <button class='valid'></button>
+ </legend>
+ </fieldset>
+ </body>
+</html>
diff --git a/layout/reftests/css-valid/button/button-fieldset-ref.html b/layout/reftests/css-valid/button/button-fieldset-ref.html
new file mode 100644
index 0000000000..d057de5ad7
--- /dev/null
+++ b/layout/reftests/css-valid/button/button-fieldset-ref.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html>
+ <body>
+ <fieldset>
+ <fieldset disabled>
+ <button style="background-color: green;"></button>
+ </fieldset>
+ </fieldset>
+ </body>
+</html>
+
diff --git a/layout/reftests/css-valid/button/button-invalid.html b/layout/reftests/css-valid/button/button-invalid.html
new file mode 100644
index 0000000000..7583803dfa
--- /dev/null
+++ b/layout/reftests/css-valid/button/button-invalid.html
@@ -0,0 +1,9 @@
+<!DOCTYPE html>
+<html class="reftest-wait">
+ <!-- Test: if button has a custom error, it should not be affected by :valid
+ pseudo-class. -->
+ <link rel='stylesheet' type='text/css' href='style.css'>
+ <body onload="document.getElementById('b').setCustomValidity('foo'); document.documentElement.className='';">
+ <button class='notvalid' id='b'></button>
+ </body>
+</html>
diff --git a/layout/reftests/css-valid/button/button-ref.html b/layout/reftests/css-valid/button/button-ref.html
new file mode 100644
index 0000000000..422cc9315f
--- /dev/null
+++ b/layout/reftests/css-valid/button/button-ref.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html>
+<html>
+ <body>
+ <button style="background-color: green;"></button>
+ </body>
+</html>
diff --git a/layout/reftests/css-valid/button/button-reset.html b/layout/reftests/css-valid/button/button-reset.html
new file mode 100644
index 0000000000..81547909b1
--- /dev/null
+++ b/layout/reftests/css-valid/button/button-reset.html
@@ -0,0 +1,9 @@
+<!DOCTYPE html>
+<html>
+ <!-- Test: if button is of the reset type, it is barred from constraint
+ validation and should not be affected by :valid pseudo-class. -->
+ <link rel='stylesheet' type='text/css' href='style.css'>
+ <body>
+ <button class='notvalid' type='reset'></button>
+ </body>
+</html>
diff --git a/layout/reftests/css-valid/button/button-type-barred.html b/layout/reftests/css-valid/button/button-type-barred.html
new file mode 100644
index 0000000000..b98377a819
--- /dev/null
+++ b/layout/reftests/css-valid/button/button-type-barred.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html class="reftest-wait">
+ <!-- Test: if a button has is candidate for constraint validation then change
+ its type to be barred from constraint validation, it should not be
+ affected by :valid pseudo-class. -->
+ <link rel='stylesheet' type='text/css' href='style.css'>
+ <body onload="document.getElementById('b').type='button'; document.documentElement.className='';">
+ <button class='notvalid' type='submit' id='b'></button>
+ </body>
+</html>
+
diff --git a/layout/reftests/css-valid/button/button-type-invalid.html b/layout/reftests/css-valid/button/button-type-invalid.html
new file mode 100644
index 0000000000..637f5aec5f
--- /dev/null
+++ b/layout/reftests/css-valid/button/button-type-invalid.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html class="reftest-wait">
+ <!-- Test: if a button has a custom error when barred from constraint
+ validation then move a type candidate for constraint validation,
+ it should not be affected by :valid pseudo-class. -->
+ <link rel='stylesheet' type='text/css' href='style.css'>
+ <script>
+ function onLoadHandler()
+ {
+ var b = document.getElementById('b');
+ b.setCustomValidity('foo');
+ b.type = 'submit';
+ document.documentElement.className='';
+ }
+ </script>
+ <body onload="onLoadHandler();">
+ <button class='notvalid' type='button' id='b'></button>
+ </body>
+</html>
diff --git a/layout/reftests/css-valid/button/button-valid.html b/layout/reftests/css-valid/button/button-valid.html
new file mode 100644
index 0000000000..f3f0be5ca1
--- /dev/null
+++ b/layout/reftests/css-valid/button/button-valid.html
@@ -0,0 +1,9 @@
+<!DOCTYPE html>
+<html>
+ <!-- Test: if button has no custom error and is not barred from constraint
+ validation, it should be affected by :valid pseudo-class. -->
+ <link rel='stylesheet' type='text/css' href='style.css'>
+ <body>
+ <button class='valid'></button>
+ </body>
+</html>
diff --git a/layout/reftests/css-valid/button/reftest.list b/layout/reftests/css-valid/button/reftest.list
new file mode 100644
index 0000000000..e8ec2bd828
--- /dev/null
+++ b/layout/reftests/css-valid/button/reftest.list
@@ -0,0 +1,12 @@
+== button-valid.html button-ref.html
+fuzzy(0-1,0-3) == button-invalid.html button-ref.html
+== button-disabled.html button-disabled-ref.html
+== button-dyn-disabled.html button-disabled-ref.html
+fuzzy(0-1,0-3) == button-dyn-not-disabled.html button-ref.html
+fuzzy(0-1,0-3) == button-button.html button-ref.html
+fuzzy(0-1,0-3) == button-reset.html button-ref.html
+fuzzy(0-1,0-3) == button-type-invalid.html button-ref.html
+fuzzy(0-1,0-3) == button-type-barred.html button-ref.html
+== button-disabled-fieldset-1.html button-fieldset-ref.html
+fuzzy(0-1,0-3) == button-disabled-fieldset-2.html button-fieldset-ref.html
+== button-fieldset-legend.html button-fieldset-legend-ref.html
diff --git a/layout/reftests/css-valid/button/style.css b/layout/reftests/css-valid/button/style.css
new file mode 100644
index 0000000000..23ea98031c
--- /dev/null
+++ b/layout/reftests/css-valid/button/style.css
@@ -0,0 +1,18 @@
+/* Override default style */
+button:invalid {
+ box-shadow: none;
+}
+
+button.notvalid {
+ background-color: green;
+}
+button.notvalid:valid {
+ background-color: red;
+}
+
+button.valid {
+ background-color: red;
+}
+button.valid:valid {
+ background-color: green;
+}