CSS Cascading and Inheritance Level 3 CR Test Suite

Defaulting (3 tests)

Test Refs Flags Info
+ 7 Defaulting
+ 7.1 Initial Values
+ 7.2 Inheritance
+ 7.3 Explicit Defaulting
+ 7.3.1 Resetting a Property: the initial keyword
initial-color-background-001 = CSS Cascade: the "initial" value
  • initial is not the same as inherit. color:initial results in non-red. background-color:initial results in transparent.
+ 7.3.2 Explicit Inheritance: the inherit keyword
+ 7.3.3 Erasing All Declarations: the unset keyword
unset-val-001 = CSS Cascade: the "unset" value
  • color:unset is the same as color:inherit since color is an inherited property. background-color:unset is the same as background-color:initial since background-color is a non-inherited property.
unset-val-002 = CSS Cascade: the "unset" value
  • display:unset should be the same as display:initial since 'display' is not an inherited property. display:unset should be the same as display:inline since 'inline' is the initial value of 'display'.