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 --- .../reftests/css-optional/css-optional-button.html | 7 +++++++ .../reftests/css-optional/css-optional-dyn-1.html | 21 +++++++++++++++++++++ .../reftests/css-optional/css-optional-dyn-2.html | 20 ++++++++++++++++++++ .../css-optional/css-optional-input-ref.html | 6 ++++++ .../reftests/css-optional/css-optional-input.html | 7 +++++++ .../css-optional/css-optional-select-ref.html | 6 ++++++ .../reftests/css-optional/css-optional-select.html | 7 +++++++ layout/reftests/css-optional/css-optional-style.css | 8 ++++++++ .../css-optional/css-optional-textarea-ref.html | 6 ++++++ .../css-optional/css-optional-textarea.html | 7 +++++++ layout/reftests/css-optional/reftest.list | 10 ++++++++++ 11 files changed, 105 insertions(+) create mode 100644 layout/reftests/css-optional/css-optional-button.html create mode 100644 layout/reftests/css-optional/css-optional-dyn-1.html create mode 100644 layout/reftests/css-optional/css-optional-dyn-2.html create mode 100644 layout/reftests/css-optional/css-optional-input-ref.html create mode 100644 layout/reftests/css-optional/css-optional-input.html create mode 100644 layout/reftests/css-optional/css-optional-select-ref.html create mode 100644 layout/reftests/css-optional/css-optional-select.html create mode 100644 layout/reftests/css-optional/css-optional-style.css create mode 100644 layout/reftests/css-optional/css-optional-textarea-ref.html create mode 100644 layout/reftests/css-optional/css-optional-textarea.html create mode 100644 layout/reftests/css-optional/reftest.list (limited to 'layout/reftests/css-optional') diff --git a/layout/reftests/css-optional/css-optional-button.html b/layout/reftests/css-optional/css-optional-button.html new file mode 100644 index 0000000000..8e7282ff79 --- /dev/null +++ b/layout/reftests/css-optional/css-optional-button.html @@ -0,0 +1,7 @@ + + + + + + + diff --git a/layout/reftests/css-optional/css-optional-dyn-1.html b/layout/reftests/css-optional/css-optional-dyn-1.html new file mode 100644 index 0000000000..8b02ad7190 --- /dev/null +++ b/layout/reftests/css-optional/css-optional-dyn-1.html @@ -0,0 +1,21 @@ + + + + + + + + + + + diff --git a/layout/reftests/css-optional/css-optional-dyn-2.html b/layout/reftests/css-optional/css-optional-dyn-2.html new file mode 100644 index 0000000000..746e045abf --- /dev/null +++ b/layout/reftests/css-optional/css-optional-dyn-2.html @@ -0,0 +1,20 @@ + + + + + + + + + + + diff --git a/layout/reftests/css-optional/css-optional-input-ref.html b/layout/reftests/css-optional/css-optional-input-ref.html new file mode 100644 index 0000000000..a7feec6b50 --- /dev/null +++ b/layout/reftests/css-optional/css-optional-input-ref.html @@ -0,0 +1,6 @@ + + + + + + diff --git a/layout/reftests/css-optional/css-optional-input.html b/layout/reftests/css-optional/css-optional-input.html new file mode 100644 index 0000000000..1292df6eb9 --- /dev/null +++ b/layout/reftests/css-optional/css-optional-input.html @@ -0,0 +1,7 @@ + + + + + + + diff --git a/layout/reftests/css-optional/css-optional-select-ref.html b/layout/reftests/css-optional/css-optional-select-ref.html new file mode 100644 index 0000000000..e419bb1845 --- /dev/null +++ b/layout/reftests/css-optional/css-optional-select-ref.html @@ -0,0 +1,6 @@ + + + + + + diff --git a/layout/reftests/css-optional/css-optional-select.html b/layout/reftests/css-optional/css-optional-select.html new file mode 100644 index 0000000000..a80a68a5a6 --- /dev/null +++ b/layout/reftests/css-optional/css-optional-select.html @@ -0,0 +1,7 @@ + + + + + + + diff --git a/layout/reftests/css-optional/css-optional-style.css b/layout/reftests/css-optional/css-optional-style.css new file mode 100644 index 0000000000..616aa79f0e --- /dev/null +++ b/layout/reftests/css-optional/css-optional-style.css @@ -0,0 +1,8 @@ +input, textarea, select, button, +*:required { + visibility: hidden; +} + +*:optional { + visibility: visible; +} diff --git a/layout/reftests/css-optional/css-optional-textarea-ref.html b/layout/reftests/css-optional/css-optional-textarea-ref.html new file mode 100644 index 0000000000..bde6f508f9 --- /dev/null +++ b/layout/reftests/css-optional/css-optional-textarea-ref.html @@ -0,0 +1,6 @@ + + + + + + diff --git a/layout/reftests/css-optional/css-optional-textarea.html b/layout/reftests/css-optional/css-optional-textarea.html new file mode 100644 index 0000000000..2e85c4df54 --- /dev/null +++ b/layout/reftests/css-optional/css-optional-textarea.html @@ -0,0 +1,7 @@ + + + + + + + diff --git a/layout/reftests/css-optional/reftest.list b/layout/reftests/css-optional/reftest.list new file mode 100644 index 0000000000..18d34eaeb5 --- /dev/null +++ b/layout/reftests/css-optional/reftest.list @@ -0,0 +1,10 @@ +# Checking if these elements support :optional. +== css-optional-textarea.html css-optional-textarea-ref.html +== css-optional-input.html css-optional-input-ref.html +== css-optional-select.html css-optional-select-ref.html +== css-optional-button.html about:blank + +# Checking dynamic behavior. +== css-optional-dyn-1.html css-optional-input-ref.html +== css-optional-dyn-2.html about:blank + -- cgit v1.2.3