Testing Statement #2 Below of Section 5.5.23 of CSS1 Spec
-
2. For "width", initial is auto, it applies to block-level and replaced elements,
it is not inherited, and percentage values refer to the parent element`s width.
PASS CRITERIA:
If statement #2 above is passed, this paragraph should have a width of
auto. THe rule applied is "p {width: }".
Also, a general rule applied is "body {width: 100px}".
This h3 element should have a width of 20px.
The rule applied is "h3 {width: 20px}".
This replaced element (img) should have a
width of 30px. The rule applied is "img {width: 30px}".
This image should be a green oval button.
This h5 element should have a width of UA-default, even though h5 is
a child of body, which has a width of 100px. This is because the
width property is not inherited.
This h4 element should have a width of 50% of the body width, which
is 100px. THis is because percentages are relative to the parent's
(body's) width. The rule appleid is "h4 {width: 50%}".
All other properties of this page should be UA-defautl.