OLD | NEW |
(Empty) | |
| 1 This tests Javascript modification of CSS variables in inline styles. |
| 2 |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
| 4 |
| 5 |
| 6 PASS div.style.cssText is "var-a: pass; var-b: pass; var-c: pass;" |
| 7 PASS div.style.var.size is 3 |
| 8 PASS div.style.var.get("a") is "pass" |
| 9 PASS div.style.var.get("b") is "pass" |
| 10 PASS div.style.var.get("c") is "pass" |
| 11 PASS forEachIterations[0] is ["pass", "a", "[object CSSVariablesMap]"] |
| 12 PASS forEachIterations[1] is ["pass", "b", "[object CSSVariablesMap]"] |
| 13 PASS forEachIterations[2] is ["pass", "c", "[object CSSVariablesMap]"] |
| 14 PASS forEachIterations.length is 3 |
| 15 PASS successfullyParsed is true |
| 16 |
| 17 TEST COMPLETE |
| 18 |
OLD | NEW |