| OLD | NEW |
| (Empty) |
| 1 Test parsing of the CSS shape-padding property. | |
| 2 | |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | |
| 4 | |
| 5 | |
| 6 PASS getCSSText("shape-padding", "1.5ex") is "1.5ex" | |
| 7 PASS getCSSText("shape-padding", "2em") is "2em" | |
| 8 PASS getCSSText("shape-padding", "2.5in") is "2.5in" | |
| 9 PASS getCSSText("shape-padding", "3cm") is "3cm" | |
| 10 PASS getCSSText("shape-padding", "3.5mm") is "3.5mm" | |
| 11 PASS getCSSText("shape-padding", "4pt") is "4pt" | |
| 12 PASS getCSSText("shape-padding", "4.5pc") is "4.5pc" | |
| 13 PASS getCSSText("shape-padding", "5px") is "5px" | |
| 14 PASS getCSSText("shape-padding", "0") is "0px" | |
| 15 PASS getCSSText("shape-padding", "-5px") is "" | |
| 16 PASS getCSSText("shape-padding", "none") is "" | |
| 17 PASS getCSSText("shape-padding", "120%") is "" | |
| 18 PASS getCSSText("shape-padding", "'string'") is "" | |
| 19 PASS getComputedStyleValue("shape-padding", "0") is "0px" | |
| 20 PASS getComputedStyleValue("shape-padding", "1px") is "1px" | |
| 21 PASS getComputedStyleValue("shape-padding", "-5em") is "0px" | |
| 22 PASS getComputedStyleValue("shape-padding", "identifier") is "0px" | |
| 23 PASS getComputedStyleValue("shape-padding", "'string'") is "0px" | |
| 24 PASS getChildComputedStyle("shape-padding", "0", "0") is "0px" | |
| 25 PASS getChildComputedStyle("shape-padding", "0", "1px") is "1px" | |
| 26 PASS getChildComputedStyle("shape-padding", "1px", "-1em") is "0px" | |
| 27 PASS getChildComputedStyle("shape-padding", "2px", "1px") is "1px" | |
| 28 PASS successfullyParsed is true | |
| 29 | |
| 30 TEST COMPLETE | |
| 31 | |
| OLD | NEW |