- CSSStyleSheet:
- removed init parameter ``type`` which is now set as a static type to "text/css"
- removed ``addRule`` which emits DeprecationWarning now
Use ``insertRule`` without parameter ``index``
- added new methods ``setSerializer(cssserializer)`` and
``setSerializerPref(self, pref, value)`` to control output
of a stylesheet directly.
- CSSStyleRule:
- new property ``selectorList`` is an instance of SelectorList
which contains a list of all Selector elements of the rule
- removed ``addSelector()`` and ``getSelectors()``,
use property ``selectorList`` instead
- removed ``getStyleDeclaration()`` and ``setStyleDeclaration()``,
use property ``style`` instead
- CSSStyleDeclaration:
- new constructor parameter ``cssText``
- moved ``SelectorList``, ``Selector`` and ``Property`` to own modules.
Should not be used directly yet anyway.
- Token: renamed ``IMPORTANT`` to ``IMPORTANT_SYM``
- unittests:
- added tests for CSSStyleSheet, CSSStyleRule, SelectorList, Selector
CSSStyleDeclaration, _Property