Testing Eighth Testable Statement of Sec 9.3 of CSS2 Specification
-
8. The 'top' property has initial of 'auto', it applies to positioned
elements, it is not inherited, percentages refer to height of containing
block, and media is visual.
PASS CRITERIA(should be a lot of overlapping lines):
If statement #8 above is passed, then
This blockquote should have top of auto (initial value).
Rule is "blockquote {position: absolute}"
This paragraph should have position absolute, and top of 5px; rule is
"p {position: absolute; top: 5px}". This emphasized text should
have position and top of UA-default (property not inherited).
This strong text should have top of 50% of that of p, since
strong is descended from p.
This h3 element should have position absolute and top of 10px.
Rule is "h3 {position: absolute; top: 10px}".
This h4 element should have position absolute and top of 15px.
Rule is "h4 {position: absolute; top: 15px}".
NOTE: From list of elements above, top property should apply to all elements.
All other properties of this page should be UA-default.