Testing Statement #4 Below of Section 5.5.15 of CSS1 Spec
-
4. There can be from one to four values, with the following interpretation:
(1) one value: all four border widths are set to that value, (2) two values: top
and bottom border widths are set to teh first values, right adn left are set to
the second, (3) three values: top is set to the first, right and left are set to
the second, bottom is set to the third, (4) four values: top, right, bottom and
left, respectively.
PASS CRITERIA:
Note: border-style of solid applies here.
If statement #4 above is passed, this paragraph should have a border width
of 5px all the way around.
The rule applied is 'p {border-width: 5px}"
This h3 heading should have top and bottom border widths of 5px and
right and left border widths of 10px.
The rule applied is "h3 {border-width: 5px 10px}".
This h4 heading should have top border widht of 5px, right and left
border widths of 10px, and bottom border width of 15px.
The rule applied is "h4 {border-width: 5px 10px 15px}".
This blockquote element should have top border widht of 5px, right
border widht of 10px, bottom border width of 15px, and left border
width of 20px.
The rule applied is "blockquote {border-width: 5px 10px 15px 20px}".
All other properties of this page should be UA-default.