Closing the input tag fixes problems when running the TCK in bck2brwsr
authorJaroslav Tulach <jtulach@netbeans.org>
Wed, 26 Aug 2015 08:32:24 +0200
changeset 9636aff17ca772d
parent 960 3b8546edbf03
child 964 6d931322368a
Closing the input tag fixes problems when running the TCK in bck2brwsr
json-tck/src/main/java/net/java/html/json/tests/KnockoutTest.java
     1.1 --- a/json-tck/src/main/java/net/java/html/json/tests/KnockoutTest.java	Wed Aug 26 07:30:31 2015 +0200
     1.2 +++ b/json-tck/src/main/java/net/java/html/json/tests/KnockoutTest.java	Wed Aug 26 08:32:24 2015 +0200
     1.3 @@ -116,8 +116,8 @@
     1.4  
     1.5      @KOTest public void modifyRadioValueOnEnum() throws Throwable {
     1.6          Object exp = Utils.exposeHTML(KnockoutTest.class,
     1.7 -            "<input id='i1' type=\"radio\" name=\"choice\" value=\"A\" data-bind=\"checked: choice\">Right\n" +
     1.8 -            "<input id='input' type=\"radio\" name=\"choice\" value=\"B\" data-bind=\"checked: choice\">Never\n" +
     1.9 +            "<input id='i1' type=\"radio\" name=\"choice\" value=\"A\" data-bind=\"checked: choice\"></input>Right\n" +
    1.10 +            "<input id='input' type=\"radio\" name=\"choice\" value=\"B\" data-bind=\"checked: choice\"></input>Never\n" +
    1.11              "\n"
    1.12          );
    1.13          try {