diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /testing/web-platform/tests/html/rendering/bindings/the-select-element-0 | |
parent | Initial commit. (diff) | |
download | firefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/html/rendering/bindings/the-select-element-0')
2 files changed, 85 insertions, 0 deletions
diff --git a/testing/web-platform/tests/html/rendering/bindings/the-select-element-0/option-label-ref.html b/testing/web-platform/tests/html/rendering/bindings/the-select-element-0/option-label-ref.html new file mode 100644 index 0000000000..e3f73cb3ed --- /dev/null +++ b/testing/web-platform/tests/html/rendering/bindings/the-select-element-0/option-label-ref.html @@ -0,0 +1,19 @@ +<!doctype html> +<title>Option labels</title> +<select size=12> + <option><!-- No children, no label--> + <option><!-- No children, empty label--> + <option>label<!-- No children, label--> + <option><!-- No children, namespaced label--> + + <option>child<!-- Single child, no label--> + <option>child<!-- Single child, empty label--> + <option>label<!-- Single child, label--> + <option>child<!-- Single child, namespaced label--> + + <option>child node<!-- Two children, no label--> + <option>child node<!-- Two children, empty label--> + <option>label<!-- Two children, label--> + <option>child node<!-- Two children, namespaced label--> +</select> + diff --git a/testing/web-platform/tests/html/rendering/bindings/the-select-element-0/option-label.html b/testing/web-platform/tests/html/rendering/bindings/the-select-element-0/option-label.html new file mode 100644 index 0000000000..f98595ed01 --- /dev/null +++ b/testing/web-platform/tests/html/rendering/bindings/the-select-element-0/option-label.html @@ -0,0 +1,66 @@ +<!doctype html> +<title>Option labels</title> +<link rel="match" href="option-label-ref.html"> +<select size=12></select> +<script> +var select = document.getElementsByTagName("select")[0], option; + +option = document.createElement("option"); +select.appendChild(option); + +option = document.createElement("option"); +option.setAttribute("label", "") +select.appendChild(option); + +option = document.createElement("option"); +option.setAttribute("label", "label") +select.appendChild(option); + +option = document.createElement("option"); +option.setAttributeNS("http://www.example.com/", "label", "label") +select.appendChild(option); + +option = document.createElement("option"); +option.appendChild(document.createTextNode(" child ")); +select.appendChild(option); + +option = document.createElement("option"); +option.appendChild(document.createTextNode(" child ")); +option.setAttribute("label", "") +select.appendChild(option); + +option = document.createElement("option"); +option.appendChild(document.createTextNode(" child ")); +option.setAttribute("label", "label") +select.appendChild(option); + +option = document.createElement("option"); +option.appendChild(document.createTextNode(" child ")); +option.setAttributeNS("http://www.example.com/", "label", "label") +select.appendChild(option); + + +option = document.createElement("option"); +option.appendChild(document.createTextNode(" child ")); +option.appendChild(document.createTextNode(" node ")); +select.appendChild(option); + +option = document.createElement("option"); +option.appendChild(document.createTextNode(" child ")); +option.appendChild(document.createTextNode(" node ")); +option.setAttribute("label", "") +select.appendChild(option); + + +option = document.createElement("option"); +option.appendChild(document.createTextNode(" child ")); +option.appendChild(document.createTextNode(" node ")); +option.setAttribute("label", "label") +select.appendChild(option); + +option = document.createElement("option"); +option.appendChild(document.createTextNode(" child ")); +option.appendChild(document.createTextNode(" node ")); +option.setAttributeNS("http://www.example.com/", "label", "label") +select.appendChild(option); +</script> |