# HG changeset patch # User Nicholas Jillings # Date 1449255118 0 # Node ID 30d29aea590f9db44b1ad9087b38e0d30627ad0c # Parent d7f2912bf48781c9e736763594f28de947563ddd Minor fixes to test_create Specification before merge with core.js Specification diff -r d7f2912bf487 -r 30d29aea590f test_create/test_create.html --- a/test_create/test_create.html Fri Dec 04 18:34:04 2015 +0000 +++ b/test_create/test_create.html Fri Dec 04 18:51:58 2015 +0000 @@ -1898,6 +1898,7 @@ node.setAttribute("min", this.min); node.setAttribute("max", this.max); node.setAttribute("step", this.step); + node.textContent = this.statement; break; case "checkbox": node.id = this.id; @@ -2211,7 +2212,19 @@ case "text": CQNode.textContent = this.question; break; - case "radio" || "checkbox": + case "radio": + var statement = root.createElement("statement"); + statement.textContent = this.statement; + CQNode.appendChild(statement); + for (var i=0; i