Testing Statement #2 Below of Section 5.5.17 of CSS1 Spec
-
2. For "border-style", initial is none, it applies
to all elements, it is not inherited, and percentage values are N/A.
PASS CRITERIA:
If statement #2 above is passed, this paragraph should have a border style
of none.
The rule applied is "p {border-style: }".
So the border-style property applies to the "p" element.
This h3 element should have a border-style of dotted
This emphasized text should have a border style of UA-default, since the
border style property is not inherited, and "em" is a child of 'h3".
No explicit rule is applied for "em".
THe rule applied is 'h3 {border-style: dotted}".
So the border style property applies to em and h3.
THis h4 element should have a border style which is dashed.
The rule applied is "border-style: dashed".
So the border style property applies to h4.
This strong text should have a border style of solid
; so the border style property applies
to the strong element.
The rule applied is "strong {border-style: solid}".
(NOTE: Should other HTML elements be mentioned?)
This blockquote element should have a border style of UA-default.
The rule applied is "blockquote {border-style: 200%}", which should be
ignored since percentage values do not apply.
All other properties of this page should be UA-default.