OLD | NEW |
(Empty) | |
| 1 PASS style.getPropertyValue("--important") is "green" |
| 2 PASS style.getPropertyValue("--not-important") is "red" |
| 3 PASS style.getPropertyValue("color") is "var(--important)" |
| 4 PASS style.getPropertyPriority("--important") is "important" |
| 5 PASS style.getPropertyPriority("--not-important") is "" |
| 6 PASS style.getPropertyValue("--foo") is "papayawhip" |
| 7 PASS style.getPropertyPriority("--foo") is "" |
| 8 PASS style.getPropertyPriority("--important-foo") is "important" |
| 9 PASS style.getPropertyValue("--important-foo") is "" |
| 10 PASS style.removeProperty("--foo") is "papayawhip" |
| 11 PASS style.getPropertyValue("--foo") is "" |
| 12 PASS successfullyParsed is true |
| 13 |
| 14 TEST COMPLETE |
| 15 |
OLD | NEW |