| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../../../fast/js/resources/js-test-pre.js"></script> | 4 <script src="../../../fast/js/resources/js-test-pre.js"></script> |
| 5 <link id="test" type="text/css" rel="stylesheet" href="resources/htmllink-disabl
e.css"/> | 5 <link id="test" type="text/css" rel="stylesheet" href="resources/htmllink-disabl
e.css"/> |
| 6 <link id="test_nostyle" type="text/css" rel="stylesheet" /> | 6 <link id="test_nostyle" type="text/css" rel="stylesheet" /> |
| 7 | 7 |
| 8 </head> | 8 </head> |
| 9 <body> | 9 <body> |
| 10 <script> | 10 <script> |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 shouldBe('test_nostyle.sheet', 'null'); | 30 shouldBe('test_nostyle.sheet', 'null'); |
| 31 // if link.sheet = null link.disabled should be false | 31 // if link.sheet = null link.disabled should be false |
| 32 shouldBe('test_nostyle.disabled', 'false'); | 32 shouldBe('test_nostyle.disabled', 'false'); |
| 33 // setting it to true | 33 // setting it to true |
| 34 test_nostyle.disabled = true; | 34 test_nostyle.disabled = true; |
| 35 // should do nothing on setting. | 35 // should do nothing on setting. |
| 36 shouldBe('test_nostyle.disabled', 'false'); | 36 shouldBe('test_nostyle.disabled', 'false'); |
| 37 | 37 |
| 38 | 38 |
| 39 </script> | 39 </script> |
| 40 <script src="../../../fast/js/resources/js-test-post.js"></script> | |
| 41 </body> | 40 </body> |
| 42 </html> | 41 </html> |
| OLD | NEW |