If statement #3 above is passed, then
This p element should have a content of "paragraph". The counter should increment 2 and reset to paragraph. The rule applied is "p:before {content: "paragraph" counter() ; counter-increment: 2; counter-reset: paragraph }
This blockquote element should have content of "quote", counter-increment of 'quote' and counter-reset of "word". Rule applied is "blockquote:before {content: "quote" counter(); counter-increment: quote; counter-reset: word}"This h3 heading should have content of "heading", counter-increment of none, and counter-reset of none. Rule applied is "h3:before {content: "heading"; counter-increment: none; counter-reset: none}"
This h4 heading should have content of "heading", counter-increment of inherit and counter-reset of inherit. Rule applied is "h4:before {content: "heading"; counter-increment: inherit; counter-reset: inherit}"
All other properties of this page should be UA-default.