OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE HTML> | |
2 <script src='../../../resources/js-test.js'></script> | |
3 <script> | |
4 description('As per spec labels must support form association by parser.'); | |
5 </script> | |
6 | |
7 <table> | |
8 <form id='form'> | |
9 <tr> | |
10 <td> <label id='lab'> | |
11 </tr> | |
12 </form> | |
13 </table> | |
14 | |
15 <script> | |
16 shouldBeEqualToString('document.getElementById("lab").form.id', 'form'); | |
17 </script> | |
18 | |
OLD | NEW |