OLD | NEW |
(Empty) | |
| 1 This test checks that the value of -webkit-text-justify is properly inherited to
the child. |
| 2 |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
| 4 |
| 5 |
| 6 Value of ancestor is 'auto': |
| 7 FAIL window.getComputedStyle(ancestor).getPropertyCSSValue('-webkit-text-justify
').cssText should be auto. Threw exception TypeError: Cannot read property 'cssT
ext' of null |
| 8 FAIL window.getComputedStyle(child).getPropertyCSSValue('-webkit-text-justify').
cssText should be auto. Threw exception TypeError: Cannot read property 'cssText
' of null |
| 9 |
| 10 Value of ancestor is 'none': |
| 11 FAIL window.getComputedStyle(ancestor).getPropertyCSSValue('-webkit-text-justify
').cssText should be none. Threw exception TypeError: Cannot read property 'cssT
ext' of null |
| 12 FAIL window.getComputedStyle(child).getPropertyCSSValue('-webkit-text-justify').
cssText should be none. Threw exception TypeError: Cannot read property 'cssText
' of null |
| 13 |
| 14 Value of ancestor is 'inter-word': |
| 15 FAIL window.getComputedStyle(ancestor).getPropertyCSSValue('-webkit-text-justify
').cssText should be inter-word. Threw exception TypeError: Cannot read property
'cssText' of null |
| 16 FAIL window.getComputedStyle(child).getPropertyCSSValue('-webkit-text-justify').
cssText should be inter-word. Threw exception TypeError: Cannot read property 'c
ssText' of null |
| 17 |
| 18 Value of ancestor is 'distribute': |
| 19 FAIL window.getComputedStyle(ancestor).getPropertyCSSValue('-webkit-text-justify
').cssText should be distribute. Threw exception TypeError: Cannot read property
'cssText' of null |
| 20 FAIL window.getComputedStyle(child).getPropertyCSSValue('-webkit-text-justify').
cssText should be distribute. Threw exception TypeError: Cannot read property 'c
ssText' of null |
| 21 |
| 22 Value of ancestor is 'inter-word, while child is 'none': |
| 23 FAIL window.getComputedStyle(ancestor).getPropertyCSSValue('-webkit-text-justify
').cssText should be inter-word. Threw exception TypeError: Cannot read property
'cssText' of null |
| 24 FAIL window.getComputedStyle(child).getPropertyCSSValue('-webkit-text-justify').
cssText should be none. Threw exception TypeError: Cannot read property 'cssText
' of null |
| 25 |
| 26 Value of ancestor is 'inter-word, while child is 'distribute': |
| 27 FAIL window.getComputedStyle(ancestor).getPropertyCSSValue('-webkit-text-justify
').cssText should be inter-word. Threw exception TypeError: Cannot read property
'cssText' of null |
| 28 FAIL window.getComputedStyle(child).getPropertyCSSValue('-webkit-text-justify').
cssText should be distribute. Threw exception TypeError: Cannot read property 'c
ssText' of null |
| 29 |
| 30 PASS successfullyParsed is true |
| 31 |
| 32 TEST COMPLETE |
| 33 hello world |
OLD | NEW |