layout/reftests/bugs/315920-7a.html

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

     1 <!DOCTYPE html>
     2 <html>
     3   <head>
     4     <style>
     5       label {color: red}
     6       input:default + label {color: green}
     7       input:not(:checked):not([checked]):not(:default) + label {color:green}
     8     </style>
     9   </head>
    10   <body onload='document.getElementById("one").setAttribute("checked", "true");
    11                 document.getElementById("two").removeAttribute("checked");'>
    12     <form>
    13       <input type="radio" name="group1" id="one" value="1"/>
    14       <label id="l1" for="one">Should be no red</label><br>
    15       <input type="radio" name="group1" id="two" value="2" checked="true"/>
    16       <label id="l2" for="two">Should be no red</label>
    17     </form>
    18   </body>
    19 </html>

mercurial