| OLD | NEW |
| 1 Test that font-weight: bolder and font-weight: lighter behave according to spec. | 1 Test that font-weight: bolder and font-weight: lighter are not cumulative when m
ultiple selectors apply. |
| 2 | 2 |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
| 4 | 4 |
| 5 | 5 |
| 6 PASS getComputedStyle(outer).fontWeight is "100" | 6 PASS getComputedStyle(outer).fontWeight is "100" |
| 7 PASS getComputedStyle(bolder).fontWeight is "normal" | 7 PASS getComputedStyle(bolder).fontWeight is "normal" |
| 8 PASS getComputedStyle(lighter).fontWeight is "100" | 8 PASS getComputedStyle(lighter).fontWeight is "100" |
| 9 PASS getComputedStyle(outer).fontWeight is "200" | 9 PASS getComputedStyle(outer).fontWeight is "200" |
| 10 PASS getComputedStyle(bolder).fontWeight is "normal" | 10 PASS getComputedStyle(bolder).fontWeight is "normal" |
| 11 PASS getComputedStyle(lighter).fontWeight is "100" | 11 PASS getComputedStyle(lighter).fontWeight is "100" |
| (...skipping 21 matching lines...) Expand all Loading... |
| 33 PASS getComputedStyle(outer).fontWeight is "800" | 33 PASS getComputedStyle(outer).fontWeight is "800" |
| 34 PASS getComputedStyle(bolder).fontWeight is "900" | 34 PASS getComputedStyle(bolder).fontWeight is "900" |
| 35 PASS getComputedStyle(lighter).fontWeight is "bold" | 35 PASS getComputedStyle(lighter).fontWeight is "bold" |
| 36 PASS getComputedStyle(outer).fontWeight is "900" | 36 PASS getComputedStyle(outer).fontWeight is "900" |
| 37 PASS getComputedStyle(bolder).fontWeight is "900" | 37 PASS getComputedStyle(bolder).fontWeight is "900" |
| 38 PASS getComputedStyle(lighter).fontWeight is "bold" | 38 PASS getComputedStyle(lighter).fontWeight is "bold" |
| 39 PASS successfullyParsed is true | 39 PASS successfullyParsed is true |
| 40 | 40 |
| 41 TEST COMPLETE | 41 TEST COMPLETE |
| 42 | 42 |
| OLD | NEW |