Testing Statement #2 Below of Section 5.6.3 of CSS1 Spec
2. "list-style-type" has initial disc, it applies to elements with display value
"list-item", it is inherited, and percentage values are N/A.
PASS CRITERIA:
If statement #2 above is passed, then:
-
This list style type should be disc (initial value).
THe rule applied is "ul ul {list-style-type: }"
So the list style type applies to ul and li.
-
This list style type should be square.
The rule applied to ol is "ol {list-style-type: square}".
So the list style type property applies to ol.
-
This list style type should be circle.
The rule applied is to ul is "ul {list-style-type: circle}".
-
This list style type should also be circle, because this property is
inherited
-
This list item should have a list style type of UA-default.
The rule applied is "ul ul ul li {list-style-type: 200%}", which should be
ignored since percentages do not apply.
All other properties of this page should be UA-default.