diff options
Diffstat (limited to 'testing/web-platform/tests/html/rendering/bindings')
11 files changed, 143 insertions, 0 deletions
diff --git a/testing/web-platform/tests/html/rendering/bindings/the-button-element/button-type-menu-historical-ref.html b/testing/web-platform/tests/html/rendering/bindings/the-button-element/button-type-menu-historical-ref.html new file mode 100644 index 0000000000..6d728e8136 --- /dev/null +++ b/testing/web-platform/tests/html/rendering/bindings/the-button-element/button-type-menu-historical-ref.html @@ -0,0 +1,7 @@ +<!DOCTYPE HTML> +<title>Test that button with type="menu" renders the same as button with type="submit"</title> +<meta charset="utf-8"> +<link rel="author" title="Domenic Denicola" href="mailto:d@domenic.me"> +<link rel="help" href="https://github.com/whatwg/html/pull/2342"> + +<button type="submit">button</button> diff --git a/testing/web-platform/tests/html/rendering/bindings/the-button-element/button-type-menu-historical.html b/testing/web-platform/tests/html/rendering/bindings/the-button-element/button-type-menu-historical.html new file mode 100644 index 0000000000..b355afeed1 --- /dev/null +++ b/testing/web-platform/tests/html/rendering/bindings/the-button-element/button-type-menu-historical.html @@ -0,0 +1,8 @@ +<!DOCTYPE HTML> +<title>Test that button with type="menu" renders the same as button with type="submit"</title> +<meta charset="utf-8"> +<link rel="author" title="Domenic Denicola" href="mailto:d@domenic.me"> +<link rel="help" href="https://github.com/whatwg/html/pull/2342"> +<link rel="match" href="button-type-menu-historical-ref.html"> + +<button type="menu">button</button> diff --git a/testing/web-platform/tests/html/rendering/bindings/the-input-element-as-a-text-entry-widget/unrecognized-type-should-fallback-as-text-type-ref.html b/testing/web-platform/tests/html/rendering/bindings/the-input-element-as-a-text-entry-widget/unrecognized-type-should-fallback-as-text-type-ref.html new file mode 100644 index 0000000000..879ca9233f --- /dev/null +++ b/testing/web-platform/tests/html/rendering/bindings/the-input-element-as-a-text-entry-widget/unrecognized-type-should-fallback-as-text-type-ref.html @@ -0,0 +1,9 @@ +<!doctype html> +<meta charset="utf-8"> +<title>Unrecognized type should fallback as text type</title> +<body> + <input type="text"> + <input type="text"> + <input type="text" disabled> + <input type="text" disabled> +</body> diff --git a/testing/web-platform/tests/html/rendering/bindings/the-input-element-as-a-text-entry-widget/unrecognized-type-should-fallback-as-text-type.html b/testing/web-platform/tests/html/rendering/bindings/the-input-element-as-a-text-entry-widget/unrecognized-type-should-fallback-as-text-type.html new file mode 100644 index 0000000000..a5c7a60841 --- /dev/null +++ b/testing/web-platform/tests/html/rendering/bindings/the-input-element-as-a-text-entry-widget/unrecognized-type-should-fallback-as-text-type.html @@ -0,0 +1,10 @@ +<!doctype html> +<meta charset="utf-8"> +<title>Unrecognized type should fallback as text type</title> +<link rel="match" href="unrecognized-type-should-fallback-as-text-type-ref.html"> +<body> + <input> + <input type="unknown"> + <input disabled> + <input type="unknown" disabled> +</body> 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> diff --git a/testing/web-platform/tests/html/rendering/bindings/the-textarea-element-0/cols-default.html b/testing/web-platform/tests/html/rendering/bindings/the-textarea-element-0/cols-default.html new file mode 100644 index 0000000000..067d658dd4 --- /dev/null +++ b/testing/web-platform/tests/html/rendering/bindings/the-textarea-element-0/cols-default.html @@ -0,0 +1,5 @@ +<!doctype html> +<meta charset=utf-8> +<title>Textarea cols</title> +<link rel=match href=textarea-ref.html> +<textarea cols=20></textarea> diff --git a/testing/web-platform/tests/html/rendering/bindings/the-textarea-element-0/cols-zero.html b/testing/web-platform/tests/html/rendering/bindings/the-textarea-element-0/cols-zero.html new file mode 100644 index 0000000000..8ecac6bf5a --- /dev/null +++ b/testing/web-platform/tests/html/rendering/bindings/the-textarea-element-0/cols-zero.html @@ -0,0 +1,5 @@ +<!doctype html> +<meta charset=utf-8> +<title>Textarea cols</title> +<link rel=match href=textarea-ref.html> +<textarea cols=0></textarea> diff --git a/testing/web-platform/tests/html/rendering/bindings/the-textarea-element-0/rows-default.html b/testing/web-platform/tests/html/rendering/bindings/the-textarea-element-0/rows-default.html new file mode 100644 index 0000000000..5bb9f61eee --- /dev/null +++ b/testing/web-platform/tests/html/rendering/bindings/the-textarea-element-0/rows-default.html @@ -0,0 +1,5 @@ +<!doctype html> +<meta charset=utf-8> +<title>Textarea rows</title> +<link rel=match href=textarea-ref.html> +<textarea rows=2></textarea> diff --git a/testing/web-platform/tests/html/rendering/bindings/the-textarea-element-0/rows-zero.html b/testing/web-platform/tests/html/rendering/bindings/the-textarea-element-0/rows-zero.html new file mode 100644 index 0000000000..79c8d0ff53 --- /dev/null +++ b/testing/web-platform/tests/html/rendering/bindings/the-textarea-element-0/rows-zero.html @@ -0,0 +1,5 @@ +<!doctype html> +<meta charset=utf-8> +<title>Textarea rows</title> +<link rel=match href=textarea-ref.html> +<textarea rows=0></textarea> diff --git a/testing/web-platform/tests/html/rendering/bindings/the-textarea-element-0/textarea-ref.html b/testing/web-platform/tests/html/rendering/bindings/the-textarea-element-0/textarea-ref.html new file mode 100644 index 0000000000..f2982808f6 --- /dev/null +++ b/testing/web-platform/tests/html/rendering/bindings/the-textarea-element-0/textarea-ref.html @@ -0,0 +1,4 @@ +<!doctype html> +<meta charset=utf-8> +<title>Default textarea</title> +<textarea></textarea> |