layout/reftests/bugs/315920-7b.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[checked]:default:checked ~ label {color: green}
     7       </style>
     8   </head>
     9   <body onload='var e1 = document.getElementById("one");
    10                 e1.setAttribute("checked", "false");
    11                 document.getElementById("two").removeAttribute("checked");'>
    12     <form>
    13       <input type="radio" name="group1" id="one" value="1"/>
    14       <label for="one">Should be no red</label><br>
    15       <input type="radio" name="group1" id="two" value="2" checked/>
    16       <label for="two">Should be no red</label>
    17     </form>
    18   </body>
    19 </html>

mercurial