Testing First Testable Statement of Sec 12.5 of CSS2 Specification
-
1. Automatic numbering in CSS2 is controlled with two properties:
"counter-increment" and "counter-reset".
PASS CRITERIA:
If statement #1 above is passed, then
This h3 element should have a content of "Chapter".
The counter should add 1 to chapter and set section to 0.
The rule applied is "h3:before {content: "Chapter " counter(chapter) ". ";
counter-increment: chapter; counter-reset: section; }
This h2 element should be a section under the chapter.
The rule applied is "h4:before {counter(chapter) "." counter(section) " ";
counter-increment: section;}".
All other properties of this page should be UA-default.