CSS variable defining 'color' property should be applied to ::first-letter and its color should be blue.
CSS variable defining 'font-size' property should be applied to ::first-letter and its font-size should be 25px.
CSS variable defining 'font-weight' property should be applied to ::first-letter and its font-weight should be 900.
CSS variable defining 'position' property should not be applied to ::first-letter and its position should be static.
CSS variable referencing another CSS variable that defines 'color' property should be applied to ::first-letter and its color should be blue.
CSS variable referencing another CSS variable that defines 'position' property should not be applied to ::first-letter and its position should be static.
Details
Result | Test Name | Message |
---|
Pass | color | Asserts runPass | assert_equals("rgb(0, 0, 255)", "rgb(0, 0, 255)")
at Test.<anonymous> ( /css/css-variables/variable-first-letter.html:71:17) |
|
Pass | font-size | Asserts runPass | assert_equals("25px", "25px")
at Test.<anonymous> ( /css/css-variables/variable-first-letter.html:71:17) |
|
Pass | font-weight | Asserts runPass | assert_equals("900", "900")
at Test.<anonymous> ( /css/css-variables/variable-first-letter.html:71:17) |
|
Pass | position | Asserts runPass | assert_equals("static", "static")
at Test.<anonymous> ( /css/css-variables/variable-first-letter.html:71:17) |
|
Pass | nested color | Asserts runPass | assert_equals("rgb(0, 0, 255)", "rgb(0, 0, 255)")
at Test.<anonymous> ( /css/css-variables/variable-first-letter.html:71:17) |
|
Pass | abspos | Asserts runPass | assert_equals("static", "static")
at Test.<anonymous> ( /css/css-variables/variable-first-letter.html:71:17) |
|