OLD | NEW |
(Empty) | |
| 1 This test checks that the value of text-justify is properly inherited to the chi
ld. |
| 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 PASS window.getComputedStyle(ancestor).getPropertyCSSValue('text-justify').cssTe
xt is 'auto' |
| 8 PASS window.getComputedStyle(child).getPropertyCSSValue('text-justify').cssText
is 'auto' |
| 9 |
| 10 Value of ancestor is 'none': |
| 11 PASS window.getComputedStyle(ancestor).getPropertyCSSValue('text-justify').cssTe
xt is 'none' |
| 12 PASS window.getComputedStyle(child).getPropertyCSSValue('text-justify').cssText
is 'none' |
| 13 |
| 14 Value of ancestor is 'inter-word': |
| 15 PASS window.getComputedStyle(ancestor).getPropertyCSSValue('text-justify').cssTe
xt is 'inter-word' |
| 16 PASS window.getComputedStyle(child).getPropertyCSSValue('text-justify').cssText
is 'inter-word' |
| 17 |
| 18 Value of ancestor is 'distribute': |
| 19 PASS window.getComputedStyle(ancestor).getPropertyCSSValue('text-justify').cssTe
xt is 'distribute' |
| 20 PASS window.getComputedStyle(child).getPropertyCSSValue('text-justify').cssText
is 'distribute' |
| 21 |
| 22 Value of ancestor is 'inter-word, while child is 'distribute': |
| 23 PASS window.getComputedStyle(ancestor).getPropertyCSSValue('text-justify').cssTe
xt is 'inter-word' |
| 24 PASS window.getComputedStyle(child).getPropertyCSSValue('text-justify').cssText
is 'distribute' |
| 25 |
| 26 Value of ancestor is 'none, while child is 'distribute': |
| 27 PASS window.getComputedStyle(ancestor).getPropertyCSSValue('text-justify').cssTe
xt is 'none' |
| 28 PASS window.getComputedStyle(child).getPropertyCSSValue('text-justify').cssText
is 'distribute' |
| 29 |
| 30 PASS successfullyParsed is true |
| 31 |
| 32 TEST COMPLETE |
| 33 hello world |
OLD | NEW |