diff options
Diffstat (limited to 'testing/web-platform/tests/html/rendering/bindings/the-select-element-0/option-label.html')
-rw-r--r-- | testing/web-platform/tests/html/rendering/bindings/the-select-element-0/option-label.html | 66 |
1 files changed, 66 insertions, 0 deletions
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 000000000..f98595ed0 --- /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> |