:hover and :active - Quirks Mode test page

.test:hover doesn't work in Mozilla/Firefox in CSS Quirks Mode.

:hover on elements other than links doesn't work in Explorer 7 in CSS Quirks Mode.

Back to Strict Mode.

Test link for a:hover and a:active.

This is a p class="test". It should become bold and italic on hover. However, it doesn't in Mozilla 1.6 because I left the p out of the hover selector AND this page is in Quirks Mode. Mozilla 1.6 only supports .test:hover in Strict Mode.
Hurray, hurray.

Testsheet:

p:hover {font-style: italic;}
p:active {text-decoration: underline;}

a:hover {text-decoration: overline;}
a:active {font-weight: 600;}

.test:hover {font-weight: 600}