Bug on the trunk...

David Hyatt khtml-devel@kde.org
Fri, 21 Feb 2003 00:53:40 -0800


line 234 of cssstyleselector.cpp... you're appending all the UA rules 
from html4.css into the quirks sheets list instead of the quirk sheet 
rules.

defaultQuirksStyle->append( defaultSheet, "screen" );

should be:

defaultQuirksStyle->append( quirksSheet, "screen" );

dave