diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
commit | 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch) | |
tree | a31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /testing/web-platform/tests/css/css-ui/compute-kind-widget-no-fallback-ref.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip |
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-ui/compute-kind-widget-no-fallback-ref.html')
-rw-r--r-- | testing/web-platform/tests/css/css-ui/compute-kind-widget-no-fallback-ref.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-ui/compute-kind-widget-no-fallback-ref.html b/testing/web-platform/tests/css/css-ui/compute-kind-widget-no-fallback-ref.html new file mode 100644 index 0000000000..c0e56dc051 --- /dev/null +++ b/testing/web-platform/tests/css/css-ui/compute-kind-widget-no-fallback-ref.html @@ -0,0 +1,31 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>Reference: Compute kind of widget - no fallback</title> +<style> + #container { width: 500px; } + #container > #search-text-input { appearance: textfield; } + #container > #select-menulist-button { appearance: none; appearance: menulist-button; } +</style> +<div id="container"> + <a>a</a> + <button>button</button> + <input type="button" value="input-button"> + <input type="submit" value="input-submit"> + <input type="reset" value="input-reset"> + + <input type="text" value="input-text"> + <input id="search-text-input" type="search" value="input-search-text"> + <input type="search" value="input-search"> + + <input type="range"> + <input type="checkbox"> + <input type="radio"> + <input type="color"> + + <textarea>textarea</textarea> + <select multiple id="select-listbox"><option>select-listbox</option></select> + <select id="select-dropdown-box"><option>select-dropdown-box</option></select> + <select id="select-menulist-button"><option>select-menulist-button</option></select> + <meter value=0.5></meter> + <progress value=0.5></progress> +</div> |