From 6bf0a5cb5034a7e684dcc3500e841785237ce2dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 19:32:43 +0200 Subject: Adding upstream version 1:115.7.0. Signed-off-by: Daniel Baumann --- layout/reftests/css-valid/select/reftest.list | 12 +++++++++++ .../select/select-disabled-fieldset-1.html | 14 +++++++++++++ .../select/select-disabled-fieldset-2.html | 23 ++++++++++++++++++++++ .../css-valid/select/select-disabled-ref.html | 6 ++++++ .../reftests/css-valid/select/select-disabled.html | 9 +++++++++ .../css-valid/select/select-dyn-disabled.html | 9 +++++++++ .../css-valid/select/select-dyn-not-disabled.html | 9 +++++++++ .../select/select-fieldset-legend-ref.html | 10 ++++++++++ .../css-valid/select/select-fieldset-legend.html | 14 +++++++++++++ .../css-valid/select/select-fieldset-ref.html | 10 ++++++++++ .../reftests/css-valid/select/select-invalid.html | 9 +++++++++ layout/reftests/css-valid/select/select-ref.html | 6 ++++++ .../css-valid/select/select-required-invalid.html | 11 +++++++++++ .../select/select-required-multiple-ref.html | 10 ++++++++++ .../select-required-multiple-still-valid.html | 12 +++++++++++ .../select/select-required-multiple-valid.html | 12 +++++++++++ .../css-valid/select/select-required-ref.html | 9 +++++++++ .../css-valid/select/select-required-valid.html | 11 +++++++++++ layout/reftests/css-valid/select/select-valid.html | 9 +++++++++ layout/reftests/css-valid/select/style.css | 18 +++++++++++++++++ 20 files changed, 223 insertions(+) create mode 100644 layout/reftests/css-valid/select/reftest.list create mode 100644 layout/reftests/css-valid/select/select-disabled-fieldset-1.html create mode 100644 layout/reftests/css-valid/select/select-disabled-fieldset-2.html create mode 100644 layout/reftests/css-valid/select/select-disabled-ref.html create mode 100644 layout/reftests/css-valid/select/select-disabled.html create mode 100644 layout/reftests/css-valid/select/select-dyn-disabled.html create mode 100644 layout/reftests/css-valid/select/select-dyn-not-disabled.html create mode 100644 layout/reftests/css-valid/select/select-fieldset-legend-ref.html create mode 100644 layout/reftests/css-valid/select/select-fieldset-legend.html create mode 100644 layout/reftests/css-valid/select/select-fieldset-ref.html create mode 100644 layout/reftests/css-valid/select/select-invalid.html create mode 100644 layout/reftests/css-valid/select/select-ref.html create mode 100644 layout/reftests/css-valid/select/select-required-invalid.html create mode 100644 layout/reftests/css-valid/select/select-required-multiple-ref.html create mode 100644 layout/reftests/css-valid/select/select-required-multiple-still-valid.html create mode 100644 layout/reftests/css-valid/select/select-required-multiple-valid.html create mode 100644 layout/reftests/css-valid/select/select-required-ref.html create mode 100644 layout/reftests/css-valid/select/select-required-valid.html create mode 100644 layout/reftests/css-valid/select/select-valid.html create mode 100644 layout/reftests/css-valid/select/style.css (limited to 'layout/reftests/css-valid/select') diff --git a/layout/reftests/css-valid/select/reftest.list b/layout/reftests/css-valid/select/reftest.list new file mode 100644 index 0000000000..1044775949 --- /dev/null +++ b/layout/reftests/css-valid/select/reftest.list @@ -0,0 +1,12 @@ +fuzzy(0-2,0-7) needs-focus == select-valid.html select-ref.html +fuzzy(0-2,0-5) needs-focus == select-invalid.html select-ref.html +needs-focus == select-disabled.html select-disabled-ref.html +fuzzy(0-1,0-5) needs-focus == select-dyn-disabled.html select-disabled-ref.html +fuzzy(0-2,0-5) needs-focus == select-dyn-not-disabled.html select-ref.html +needs-focus == select-required-invalid.html select-required-ref.html +needs-focus == select-required-valid.html select-required-ref.html +needs-focus == select-required-multiple-still-valid.html select-required-multiple-ref.html +fuzzy(0-1,0-250) needs-focus == select-required-multiple-valid.html select-required-multiple-ref.html +needs-focus == select-disabled-fieldset-1.html select-fieldset-ref.html +fuzzy-if(!Android,0-1,0-3) needs-focus == select-disabled-fieldset-2.html select-fieldset-ref.html +needs-focus == select-fieldset-legend.html select-fieldset-legend-ref.html diff --git a/layout/reftests/css-valid/select/select-disabled-fieldset-1.html b/layout/reftests/css-valid/select/select-disabled-fieldset-1.html new file mode 100644 index 0000000000..856dc9c69d --- /dev/null +++ b/layout/reftests/css-valid/select/select-disabled-fieldset-1.html @@ -0,0 +1,14 @@ + + + + + +
+
+ +
+
+ + diff --git a/layout/reftests/css-valid/select/select-disabled-fieldset-2.html b/layout/reftests/css-valid/select/select-disabled-fieldset-2.html new file mode 100644 index 0000000000..c05671a73b --- /dev/null +++ b/layout/reftests/css-valid/select/select-disabled-fieldset-2.html @@ -0,0 +1,23 @@ + + + + + + +
+
+ +
+
+ + diff --git a/layout/reftests/css-valid/select/select-disabled-ref.html b/layout/reftests/css-valid/select/select-disabled-ref.html new file mode 100644 index 0000000000..e3a228a897 --- /dev/null +++ b/layout/reftests/css-valid/select/select-disabled-ref.html @@ -0,0 +1,6 @@ + + + + + + diff --git a/layout/reftests/css-valid/select/select-disabled.html b/layout/reftests/css-valid/select/select-disabled.html new file mode 100644 index 0000000000..4d03a70f80 --- /dev/null +++ b/layout/reftests/css-valid/select/select-disabled.html @@ -0,0 +1,9 @@ + + + + + + + + diff --git a/layout/reftests/css-valid/select/select-dyn-disabled.html b/layout/reftests/css-valid/select/select-dyn-disabled.html new file mode 100644 index 0000000000..b37feda47a --- /dev/null +++ b/layout/reftests/css-valid/select/select-dyn-disabled.html @@ -0,0 +1,9 @@ + + + + + + + + diff --git a/layout/reftests/css-valid/select/select-dyn-not-disabled.html b/layout/reftests/css-valid/select/select-dyn-not-disabled.html new file mode 100644 index 0000000000..debad37641 --- /dev/null +++ b/layout/reftests/css-valid/select/select-dyn-not-disabled.html @@ -0,0 +1,9 @@ + + + + + + + + diff --git a/layout/reftests/css-valid/select/select-fieldset-legend-ref.html b/layout/reftests/css-valid/select/select-fieldset-legend-ref.html new file mode 100644 index 0000000000..5083cea90d --- /dev/null +++ b/layout/reftests/css-valid/select/select-fieldset-legend-ref.html @@ -0,0 +1,10 @@ + + + +
+ + + +
+ + diff --git a/layout/reftests/css-valid/select/select-fieldset-legend.html b/layout/reftests/css-valid/select/select-fieldset-legend.html new file mode 100644 index 0000000000..5020bc0be9 --- /dev/null +++ b/layout/reftests/css-valid/select/select-fieldset-legend.html @@ -0,0 +1,14 @@ + + + + + +
+ + + +
+ + diff --git a/layout/reftests/css-valid/select/select-fieldset-ref.html b/layout/reftests/css-valid/select/select-fieldset-ref.html new file mode 100644 index 0000000000..ca82a8022d --- /dev/null +++ b/layout/reftests/css-valid/select/select-fieldset-ref.html @@ -0,0 +1,10 @@ + + + +
+
+ +
+
+ + diff --git a/layout/reftests/css-valid/select/select-invalid.html b/layout/reftests/css-valid/select/select-invalid.html new file mode 100644 index 0000000000..a30a1555a6 --- /dev/null +++ b/layout/reftests/css-valid/select/select-invalid.html @@ -0,0 +1,9 @@ + + + + + + + + diff --git a/layout/reftests/css-valid/select/select-ref.html b/layout/reftests/css-valid/select/select-ref.html new file mode 100644 index 0000000000..a28668557f --- /dev/null +++ b/layout/reftests/css-valid/select/select-ref.html @@ -0,0 +1,6 @@ + + + + + + diff --git a/layout/reftests/css-valid/select/select-required-invalid.html b/layout/reftests/css-valid/select/select-required-invalid.html new file mode 100644 index 0000000000..45e38acb78 --- /dev/null +++ b/layout/reftests/css-valid/select/select-required-invalid.html @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/layout/reftests/css-valid/select/select-required-multiple-ref.html b/layout/reftests/css-valid/select/select-required-multiple-ref.html new file mode 100644 index 0000000000..a9477333f8 --- /dev/null +++ b/layout/reftests/css-valid/select/select-required-multiple-ref.html @@ -0,0 +1,10 @@ + + + + + + + diff --git a/layout/reftests/css-valid/select/select-required-multiple-still-valid.html b/layout/reftests/css-valid/select/select-required-multiple-still-valid.html new file mode 100644 index 0000000000..d093c06772 --- /dev/null +++ b/layout/reftests/css-valid/select/select-required-multiple-still-valid.html @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/layout/reftests/css-valid/select/select-required-multiple-valid.html b/layout/reftests/css-valid/select/select-required-multiple-valid.html new file mode 100644 index 0000000000..6bf74d623b --- /dev/null +++ b/layout/reftests/css-valid/select/select-required-multiple-valid.html @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/layout/reftests/css-valid/select/select-required-ref.html b/layout/reftests/css-valid/select/select-required-ref.html new file mode 100644 index 0000000000..3c2bde80a0 --- /dev/null +++ b/layout/reftests/css-valid/select/select-required-ref.html @@ -0,0 +1,9 @@ + + + + + + + diff --git a/layout/reftests/css-valid/select/select-required-valid.html b/layout/reftests/css-valid/select/select-required-valid.html new file mode 100644 index 0000000000..685995b673 --- /dev/null +++ b/layout/reftests/css-valid/select/select-required-valid.html @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/layout/reftests/css-valid/select/select-valid.html b/layout/reftests/css-valid/select/select-valid.html new file mode 100644 index 0000000000..aab4313401 --- /dev/null +++ b/layout/reftests/css-valid/select/select-valid.html @@ -0,0 +1,9 @@ + + + + + + + + diff --git a/layout/reftests/css-valid/select/style.css b/layout/reftests/css-valid/select/style.css new file mode 100644 index 0000000000..32bb6a7f00 --- /dev/null +++ b/layout/reftests/css-valid/select/style.css @@ -0,0 +1,18 @@ +/* Override default style */ +select:invalid { + box-shadow: none; +} + +select.notvalid { + background-color: green; +} +select.notvalid:valid { + background-color: red; +} + +select.valid { + background-color: red; +} +select.valid:valid { + background-color: green; +} -- cgit v1.2.3