Testing Statement #2 Below of Section 5.6.1 of CSS1 Spec

PASS CRITERIA:

If statement #2 above is passed, this paragraph should have a display of block. The rule applied is "p {display: }". So the display property applies to the "p" element.

This h3 element should have a display of block This emphasized text should have a display of UA-default, since the display property is not inherited, and "em" is a child of 'h3". No explicit rule is applied for "em". THe rule applied is 'h3 {display: block}". So the display property applies to em and h3.

THis h4 element should have a display which is none. The rule applied is "display: none". So the display property applies to h4.

This strong text should have a display of inline ; so the display property applies to the strong element. The rule applied is "strong {display: inline}".
This blockquote element should have a margin top of UA-default. The rule applied is "blockquote {display: 200%}", which should be ignored since percentages do not apply.
All other properties of this page should be UA-default.