OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="resources/polyfill.js"></script> | |
5 </head> | 4 </head> |
6 | 5 |
7 <body> | 6 <body> |
8 | 7 |
9 <p>When the 'enabled' state of a fieldset tag is changed, we have to invalidate
distribution.</p> | 8 <p>When the 'enabled' state of a fieldset tag is changed, we have to invalidate
distribution.</p> |
10 | 9 |
11 <div id="host1"> | 10 <div id="host1"> |
12 <fieldset id="fieldset1">Fieldset 1</fieldset> | 11 <fieldset id="fieldset1">Fieldset 1</fieldset> |
13 <fieldset id="fieldset2">Fieldset 2</fieldset> | 12 <fieldset id="fieldset2">Fieldset 2</fieldset> |
14 </div> | 13 </div> |
(...skipping 13 matching lines...) Expand all Loading... |
28 setTimeout(function() { | 27 setTimeout(function() { |
29 fieldset2.setAttribute('disabled', true); | 28 fieldset2.setAttribute('disabled', true); |
30 fieldset4.removeAttribute('disabled'); | 29 fieldset4.removeAttribute('disabled'); |
31 testRunner.notifyDone(); | 30 testRunner.notifyDone(); |
32 }, 0); | 31 }, 0); |
33 | 32 |
34 </script> | 33 </script> |
35 </body> | 34 </body> |
36 </html> | 35 </html> |
37 | 36 |
OLD | NEW |