Testing Statement #2 Below of Section 5.4.5 of CSS1 Spec
-
2. For "text-transform", initial is "none", it applies to all elements, it is
inherited, and percentage values are N/A.
PASS CRITERIA:
If statement #2 above is passed, this paragraph should have no text
transform.
The rule applied is "p {text-transform: }".
So the text-transform property applies to the "p" element.
This h3 element should have a text transform of capitalize
This emphasized text should have a text transform of capitalize, since the
text transform property is inherited, and "em" is a child of 'h3".
No explicit rule is applied for "em".
THe rule applied is 'h3 {text-transform: capitalize}".
So the text transform property applies to em and h3.
THis h4 element should have a text transform which is uppercase.
The rule applied is "text-transform: uppercase".
So the text transform property applies to h4.
This strong text should have a text transform of lowercase
; so the text transform property applies
to the strong element.
The rule applied is "strong {text-transform: 1.2em}".
This blockquote element should be UA-default.
The rule applied is "blockquote {text-transform: 200%}", which should be
ignored since percentages are not applicable.
All other properties of this page should be UA-default.
To move to the next test, click here