Update web-platform-tests to revision 0d318188757a9c996e20b82db201fd04de5aa255

This commit is contained in:
James Graham 2015-03-27 09:15:38 +00:00
parent b2a5225831
commit 1a81b18b9f
12321 changed files with 544385 additions and 6 deletions

View file

@ -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>

View file

@ -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>