commit fd6ccd84f9812c9d77a07ef0701af3a0fd526590 parent 983710d55ae4a475b3f20354d653472cb114679e Author: Jan Varga <jan.varga@gmail.com> Date: Tue, 30 Sep 2025 13:19:22 +0000 Bug 1991628 - Add support for CSS wide keywords in reification; r=emilio,firefox-style-system-reviewers This patch extends CSSKeywordValue reification to handle CSS wide keywords (inherit, initial, unset, revert). Wide keywords are now returned as CSSKeywordValue objects during Typed OM reification. As a result, many WPT tests that were previously failing now pass, and the corresponding .ini files are updated/removed. Differential Revision: https://phabricator.services.mozilla.com/D266802 Diffstat:
211 files changed, 13 insertions(+), 894 deletions(-)
diff --git a/servo/components/style/properties/mod.rs b/servo/components/style/properties/mod.rs @@ -39,6 +39,7 @@ use std::{ }; use style_traits::{ CssString, CssWriter, KeywordsCollectFn, ParseError, ParsingMode, SpecifiedValueInfo, ToCss, + ToTyped, TypedValue, }; bitflags! { @@ -76,7 +77,9 @@ bitflags! { } /// An enum to represent a CSS Wide keyword. -#[derive(Clone, Copy, Debug, Eq, MallocSizeOf, PartialEq, SpecifiedValueInfo, ToCss, ToShmem)] +#[derive( + Clone, Copy, Debug, Eq, MallocSizeOf, PartialEq, SpecifiedValueInfo, ToCss, ToShmem, ToTyped, +)] pub enum CSSWideKeyword { /// The `initial` keyword. Initial, @@ -128,7 +131,7 @@ impl CSSWideKeyword { } /// A declaration using a CSS-wide keyword. -#[derive(Clone, PartialEq, ToCss, ToShmem, MallocSizeOf, ToTyped)] +#[derive(Clone, PartialEq, ToCss, ToShmem, MallocSizeOf)] pub struct WideKeywordDeclaration { #[css(skip)] id: LonghandId, @@ -136,6 +139,14 @@ pub struct WideKeywordDeclaration { pub keyword: CSSWideKeyword, } +// XXX Switch back to ToTyped derive once it can automatically handle structs +// Tracking in bug 1991631 +impl ToTyped for WideKeywordDeclaration { + fn to_typed(&self) -> Option<TypedValue> { + self.keyword.to_typed() + } +} + /// An unparsed declaration that contains `var()` functions. #[derive(Clone, PartialEq, ToCss, ToShmem, MallocSizeOf, ToTyped)] pub struct VariableDeclaration { diff --git a/testing/web-platform/meta/css/css-typed-om/declared-styleMap-accepts-inherit.html.ini b/testing/web-platform/meta/css/css-typed-om/declared-styleMap-accepts-inherit.html.ini @@ -1,4 +0,0 @@ -[declared-styleMap-accepts-inherit.html] - [Declared styleMap objects accept 'inherit' as a value] - expected: FAIL - diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/accent-color.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/accent-color.html.ini @@ -1,8 +1,5 @@ [accent-color.html] expected: ERROR - [Can set 'accent-color' to CSS-wide keywords: ] - expected: FAIL - [Can set 'accent-color' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/anchor-scope.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/anchor-scope.html.ini @@ -1,9 +1,6 @@ [anchor-scope.html] prefs: [layout.css.anchor-positioning.enabled:true] expected: ERROR - [Can set 'anchor-scope' to CSS-wide keywords: ] - expected: FAIL - [Can set 'anchor-scope' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/animation-delay.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/animation-delay.html.ini @@ -1,8 +1,5 @@ [animation-delay.html] expected: ERROR - [Can set 'animation-delay' to CSS-wide keywords: ] - expected: FAIL - [Can set 'animation-delay' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/animation-direction.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/animation-direction.html.ini @@ -1,8 +1,5 @@ [animation-direction.html] expected: ERROR - [Can set 'animation-direction' to CSS-wide keywords: ] - expected: FAIL - [Can set 'animation-direction' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/animation-duration.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/animation-duration.html.ini @@ -1,8 +1,5 @@ [animation-duration.html] expected: ERROR - [Can set 'animation-duration' to CSS-wide keywords: ] - expected: FAIL - [Can set 'animation-duration' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/animation-fill-mode.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/animation-fill-mode.html.ini @@ -1,8 +1,5 @@ [animation-fill-mode.html] expected: ERROR - [Can set 'animation-fill-mode' to CSS-wide keywords: ] - expected: FAIL - [Can set 'animation-fill-mode' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/animation-iteration-count.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/animation-iteration-count.html.ini @@ -1,8 +1,5 @@ [animation-iteration-count.html] expected: ERROR - [Can set 'animation-iteration-count' to CSS-wide keywords: ] - expected: FAIL - [Can set 'animation-iteration-count' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/animation-name.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/animation-name.html.ini @@ -1,8 +1,5 @@ [animation-name.html] expected: ERROR - [Can set 'animation-name' to CSS-wide keywords: ] - expected: FAIL - [Can set 'animation-name' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/animation-play-state.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/animation-play-state.html.ini @@ -1,8 +1,5 @@ [animation-play-state.html] expected: ERROR - [Can set 'animation-play-state' to CSS-wide keywords: ] - expected: FAIL - [Can set 'animation-play-state' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/animation-timing-function.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/animation-timing-function.html.ini @@ -1,8 +1,5 @@ [animation-timing-function.html] expected: ERROR - [Can set 'animation-timing-function' to CSS-wide keywords: ] - expected: FAIL - [Can set 'animation-timing-function' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/backdrop-filter.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/backdrop-filter.html.ini @@ -1,8 +1,5 @@ [backdrop-filter.html] expected: ERROR - [Can set 'backdrop-filter' to CSS-wide keywords: ] - expected: FAIL - [Can set 'backdrop-filter' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/backface-visibility.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/backface-visibility.html.ini @@ -1,8 +1,5 @@ [backface-visibility.html] expected: ERROR - [Can set 'backface-visibility' to CSS-wide keywords: ] - expected: FAIL - [Can set 'backface-visibility' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/background-attachment.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/background-attachment.html.ini @@ -1,8 +1,5 @@ [background-attachment.html] expected: ERROR - [Can set 'background-attachment' to CSS-wide keywords: ] - expected: FAIL - [Can set 'background-attachment' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/background-blend-mode.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/background-blend-mode.html.ini @@ -1,8 +1,5 @@ [background-blend-mode.html] expected: ERROR - [Can set 'background-blend-mode' to CSS-wide keywords: ] - expected: FAIL - [Can set 'background-blend-mode' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/background-clip.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/background-clip.html.ini @@ -1,8 +1,5 @@ [background-clip.html] expected: ERROR - [Can set 'background-clip' to CSS-wide keywords: ] - expected: FAIL - [Can set 'background-clip' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/background-color.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/background-color.html.ini @@ -1,8 +1,5 @@ [background-color.html] expected: ERROR - [Can set 'background-color' to CSS-wide keywords: ] - expected: FAIL - [Can set 'background-color' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/background-image.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/background-image.html.ini @@ -1,8 +1,5 @@ [background-image.html] expected: ERROR - [Can set 'background-image' to CSS-wide keywords: ] - expected: FAIL - [Can set 'background-image' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/background-origin.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/background-origin.html.ini @@ -1,8 +1,5 @@ [background-origin.html] expected: ERROR - [Can set 'background-origin' to CSS-wide keywords: ] - expected: FAIL - [Can set 'background-origin' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/background-repeat.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/background-repeat.html.ini @@ -1,8 +1,5 @@ [background-repeat.html] expected: ERROR - [Can set 'background-repeat' to CSS-wide keywords: ] - expected: FAIL - [Can set 'background-repeat' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/background-size.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/background-size.html.ini @@ -1,8 +1,5 @@ [background-size.html] expected: ERROR - [Can set 'background-size' to CSS-wide keywords: ] - expected: FAIL - [Can set 'background-size' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/block-size.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/block-size.html.ini @@ -1,8 +1,5 @@ [block-size.html] expected: ERROR - [Can set 'block-size' to CSS-wide keywords: ] - expected: FAIL - [Can set 'block-size' to var() references: ] expected: FAIL @@ -27,9 +24,6 @@ [Setting 'block-size' to a transform: throws TypeError] expected: FAIL - [Can set 'min-block-size' to CSS-wide keywords: ] - expected: FAIL - [Can set 'min-block-size' to var() references: ] expected: FAIL @@ -54,9 +48,6 @@ [Setting 'min-block-size' to a transform: throws TypeError] expected: FAIL - [Can set 'max-block-size' to CSS-wide keywords: ] - expected: FAIL - [Can set 'max-block-size' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/border-collapse.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/border-collapse.html.ini @@ -1,8 +1,5 @@ [border-collapse.html] expected: ERROR - [Can set 'border-collapse' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-collapse' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/border-color.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/border-color.html.ini @@ -1,8 +1,5 @@ [border-color.html] expected: ERROR - [Can set 'border-top-color' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-top-color' to var() references: ] expected: FAIL @@ -30,9 +27,6 @@ [Setting 'border-top-color' to a transform: throws TypeError] expected: FAIL - [Can set 'border-left-color' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-left-color' to var() references: ] expected: FAIL @@ -60,9 +54,6 @@ [Setting 'border-left-color' to a transform: throws TypeError] expected: FAIL - [Can set 'border-right-color' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-right-color' to var() references: ] expected: FAIL @@ -90,9 +81,6 @@ [Setting 'border-right-color' to a transform: throws TypeError] expected: FAIL - [Can set 'border-bottom-color' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-bottom-color' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/border-image-outset.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/border-image-outset.html.ini @@ -1,8 +1,5 @@ [border-image-outset.html] expected: ERROR - [Can set 'border-image-outset' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-image-outset' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/border-image-repeat.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/border-image-repeat.html.ini @@ -1,8 +1,5 @@ [border-image-repeat.html] expected: ERROR - [Can set 'border-image-repeat' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-image-repeat' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/border-image-slice.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/border-image-slice.html.ini @@ -1,8 +1,5 @@ [border-image-slice.html] expected: ERROR - [Can set 'border-image-slice' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-image-slice' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/border-image-source.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/border-image-source.html.ini @@ -1,8 +1,5 @@ [border-image-source.html] expected: ERROR - [Can set 'border-image-source' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-image-source' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/border-image-width.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/border-image-width.html.ini @@ -1,8 +1,5 @@ [border-image-width.html] expected: ERROR - [Can set 'border-image-width' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-image-width' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/border-radius.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/border-radius.html.ini @@ -1,8 +1,5 @@ [border-radius.html] expected: ERROR - [Can set 'border-top-left-radius' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-top-left-radius' to var() references: ] expected: FAIL @@ -27,9 +24,6 @@ [Setting 'border-top-left-radius' to a transform: throws TypeError] expected: FAIL - [Can set 'border-top-right-radius' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-top-right-radius' to var() references: ] expected: FAIL @@ -54,9 +48,6 @@ [Setting 'border-top-right-radius' to a transform: throws TypeError] expected: FAIL - [Can set 'border-bottom-left-radius' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-bottom-left-radius' to var() references: ] expected: FAIL @@ -81,9 +72,6 @@ [Setting 'border-bottom-left-radius' to a transform: throws TypeError] expected: FAIL - [Can set 'border-bottom-right-radius' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-bottom-right-radius' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/border-style.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/border-style.html.ini @@ -1,8 +1,5 @@ [border-style.html] expected: ERROR - [Can set 'border-top-style' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-top-style' to var() references: ] expected: FAIL @@ -27,9 +24,6 @@ [Setting 'border-top-style' to a transform: throws TypeError] expected: FAIL - [Can set 'border-left-style' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-left-style' to var() references: ] expected: FAIL @@ -54,9 +48,6 @@ [Setting 'border-left-style' to a transform: throws TypeError] expected: FAIL - [Can set 'border-right-style' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-right-style' to var() references: ] expected: FAIL @@ -81,9 +72,6 @@ [Setting 'border-right-style' to a transform: throws TypeError] expected: FAIL - [Can set 'border-bottom-style' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-bottom-style' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/border-width.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/border-width.html.ini @@ -1,8 +1,5 @@ [border-width.html] expected: ERROR - [Can set 'border-top-width' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-top-width' to var() references: ] expected: FAIL @@ -36,9 +33,6 @@ [Setting 'border-top-width' to a transform: throws TypeError] expected: FAIL - [Can set 'border-left-width' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-left-width' to var() references: ] expected: FAIL @@ -72,9 +66,6 @@ [Setting 'border-left-width' to a transform: throws TypeError] expected: FAIL - [Can set 'border-right-width' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-right-width' to var() references: ] expected: FAIL @@ -108,9 +99,6 @@ [Setting 'border-right-width' to a transform: throws TypeError] expected: FAIL - [Can set 'border-bottom-width' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-bottom-width' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/bottom.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/bottom.html.ini @@ -1,8 +1,5 @@ [bottom.html] expected: ERROR - [Can set 'bottom' to CSS-wide keywords: ] - expected: FAIL - [Can set 'bottom' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/box-shadow.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/box-shadow.html.ini @@ -1,8 +1,5 @@ [box-shadow.html] expected: ERROR - [Can set 'box-shadow' to CSS-wide keywords: ] - expected: FAIL - [Can set 'box-shadow' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/box-sizing.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/box-sizing.html.ini @@ -1,8 +1,5 @@ [box-sizing.html] expected: ERROR - [Can set 'box-sizing' to CSS-wide keywords: ] - expected: FAIL - [Can set 'box-sizing' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/break.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/break.html.ini @@ -1,8 +1,5 @@ [break.html] expected: ERROR - [Can set 'break-after' to CSS-wide keywords: ] - expected: FAIL - [Can set 'break-after' to var() references: ] expected: FAIL @@ -48,9 +45,6 @@ [Setting 'break-after' to a transform: throws TypeError] expected: FAIL - [Can set 'break-before' to CSS-wide keywords: ] - expected: FAIL - [Can set 'break-before' to var() references: ] expected: FAIL @@ -96,9 +90,6 @@ [Setting 'break-before' to a transform: throws TypeError] expected: FAIL - [Can set 'break-inside' to CSS-wide keywords: ] - expected: FAIL - [Can set 'break-inside' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/caption-side.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/caption-side.html.ini @@ -1,8 +1,5 @@ [caption-side.html] expected: ERROR - [Can set 'caption-side' to CSS-wide keywords: ] - expected: FAIL - [Can set 'caption-side' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/caret-color.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/caret-color.html.ini @@ -1,8 +1,5 @@ [caret-color.html] expected: ERROR - [Can set 'caret-color' to CSS-wide keywords: ] - expected: FAIL - [Can set 'caret-color' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/center-coordinate.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/center-coordinate.html.ini @@ -1,8 +1,5 @@ [center-coordinate.html] expected: ERROR - [Can set 'cx' to CSS-wide keywords: ] - expected: FAIL - [Can set 'cx' to var() references: ] expected: FAIL @@ -27,9 +24,6 @@ [Setting 'cx' to a transform: throws TypeError] expected: FAIL - [Can set 'cy' to CSS-wide keywords: ] - expected: FAIL - [Can set 'cy' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/clear.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/clear.html.ini @@ -1,8 +1,5 @@ [clear.html] expected: ERROR - [Can set 'clear' to CSS-wide keywords: ] - expected: FAIL - [Can set 'clear' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/clip-path.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/clip-path.html.ini @@ -1,8 +1,5 @@ [clip-path.html] expected: ERROR - [Can set 'clip-path' to CSS-wide keywords: ] - expected: FAIL - [Can set 'clip-path' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/clip-rule.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/clip-rule.html.ini @@ -1,8 +1,5 @@ [clip-rule.html] expected: ERROR - [Can set 'clip-rule' to CSS-wide keywords: ] - expected: FAIL - [Can set 'clip-rule' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/clip.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/clip.html.ini @@ -1,8 +1,5 @@ [clip.html] expected: ERROR - [Can set 'clip' to CSS-wide keywords: ] - expected: FAIL - [Can set 'clip' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/color-interpolation.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/color-interpolation.html.ini @@ -1,8 +1,5 @@ [color-interpolation.html] expected: ERROR - [Can set 'color-interpolation' to CSS-wide keywords: ] - expected: FAIL - [Can set 'color-interpolation' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/color.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/color.html.ini @@ -1,8 +1,5 @@ [color.html] expected: ERROR - [Can set 'color' to CSS-wide keywords: ] - expected: FAIL - [Can set 'color' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/column-count.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/column-count.html.ini @@ -1,8 +1,5 @@ [column-count.html] expected: ERROR - [Can set 'column-count' to CSS-wide keywords: ] - expected: FAIL - [Can set 'column-count' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/column-rule-color.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/column-rule-color.html.ini @@ -1,8 +1,5 @@ [column-rule-color.html] expected: ERROR - [Can set 'column-rule-color' to CSS-wide keywords: ] - expected: FAIL - [Can set 'column-rule-color' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/column-rule-style.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/column-rule-style.html.ini @@ -1,8 +1,5 @@ [column-rule-style.html] expected: ERROR - [Can set 'column-rule-style' to CSS-wide keywords: ] - expected: FAIL - [Can set 'column-rule-style' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/column-rule-width.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/column-rule-width.html.ini @@ -1,8 +1,5 @@ [column-rule-width.html] expected: ERROR - [Can set 'column-rule-width' to CSS-wide keywords: ] - expected: FAIL - [Can set 'column-rule-width' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/column-span.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/column-span.html.ini @@ -1,8 +1,5 @@ [column-span.html] expected: ERROR - [Can set 'column-span' to CSS-wide keywords: ] - expected: FAIL - [Can set 'column-span' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/column-width.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/column-width.html.ini @@ -1,8 +1,5 @@ [column-width.html] expected: ERROR - [Can set 'column-width' to CSS-wide keywords: ] - expected: FAIL - [Can set 'column-width' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/contain.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/contain.html.ini @@ -1,8 +1,5 @@ [contain.html] expected: ERROR - [Can set 'contain' to CSS-wide keywords: ] - expected: FAIL - [Can set 'contain' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/container-name.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/container-name.html.ini @@ -1,8 +1,5 @@ [container-name.html] expected: ERROR - [Can set 'container-name' to CSS-wide keywords: ] - expected: FAIL - [Can set 'container-name' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/container-type.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/container-type.html.ini @@ -1,8 +1,5 @@ [container-type.html] expected: ERROR - [Can set 'container-type' to CSS-wide keywords: ] - expected: FAIL - [Can set 'container-type' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/coordinate.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/coordinate.html.ini @@ -1,8 +1,5 @@ [coordinate.html] expected: ERROR - [Can set 'x' to CSS-wide keywords: ] - expected: FAIL - [Can set 'x' to var() references: ] expected: FAIL @@ -27,9 +24,6 @@ [Setting 'x' to a transform: throws TypeError] expected: FAIL - [Can set 'y' to CSS-wide keywords: ] - expected: FAIL - [Can set 'y' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/counter-increment.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/counter-increment.html.ini @@ -1,8 +1,5 @@ [counter-increment.html] expected: ERROR - [Can set 'counter-increment' to CSS-wide keywords: ] - expected: FAIL - [Can set 'counter-increment' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/counter-reset.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/counter-reset.html.ini @@ -1,8 +1,5 @@ [counter-reset.html] expected: ERROR - [Can set 'counter-reset' to CSS-wide keywords: ] - expected: FAIL - [Can set 'counter-reset' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/counter-set.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/counter-set.html.ini @@ -1,8 +1,5 @@ [counter-set.html] expected: ERROR - [Can set 'counter-set' to CSS-wide keywords: ] - expected: FAIL - [Can set 'counter-set' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/cursor.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/cursor.html.ini @@ -1,8 +1,5 @@ [cursor.html] expected: ERROR - [Can set 'cursor' to CSS-wide keywords: ] - expected: FAIL - [Can set 'cursor' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/d.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/d.html.ini @@ -1,8 +1,5 @@ [d.html] expected: ERROR - [Can set 'd' to CSS-wide keywords: ] - expected: FAIL - [Can set 'd' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/direction.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/direction.html.ini @@ -1,8 +1,5 @@ [direction.html] expected: ERROR - [Can set 'direction' to CSS-wide keywords: ] - expected: FAIL - [Can set 'direction' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/display.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/display.html.ini @@ -1,8 +1,5 @@ [display.html] expected: ERROR - [Can set 'display' to CSS-wide keywords: ] - expected: FAIL - [Can set 'display' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/dominant-baseline.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/dominant-baseline.html.ini @@ -1,8 +1,5 @@ [dominant-baseline.html] expected: ERROR - [Can set 'dominant-baseline' to CSS-wide keywords: ] - expected: FAIL - [Can set 'dominant-baseline' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/empty-cells.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/empty-cells.html.ini @@ -1,8 +1,5 @@ [empty-cells.html] expected: ERROR - [Can set 'empty-cells' to CSS-wide keywords: ] - expected: FAIL - [Can set 'empty-cells' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/fill-opacity.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/fill-opacity.html.ini @@ -1,8 +1,5 @@ [fill-opacity.html] expected: ERROR - [Can set 'fill-opacity' to CSS-wide keywords: ] - expected: FAIL - [Can set 'fill-opacity' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/fill-rule.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/fill-rule.html.ini @@ -1,8 +1,5 @@ [fill-rule.html] expected: ERROR - [Can set 'fill-rule' to CSS-wide keywords: ] - expected: FAIL - [Can set 'fill-rule' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/filter.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/filter.html.ini @@ -1,8 +1,5 @@ [filter.html] expected: ERROR - [Can set 'filter' to CSS-wide keywords: ] - expected: FAIL - [Can set 'filter' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/flex-basis.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/flex-basis.html.ini @@ -1,8 +1,5 @@ [flex-basis.html] expected: ERROR - [Can set 'flex-basis' to CSS-wide keywords: ] - expected: FAIL - [Can set 'flex-basis' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/flex-direction.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/flex-direction.html.ini @@ -1,8 +1,5 @@ [flex-direction.html] expected: ERROR - [Can set 'flex-direction' to CSS-wide keywords: ] - expected: FAIL - [Can set 'flex-direction' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/flex-grow.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/flex-grow.html.ini @@ -1,8 +1,5 @@ [flex-grow.html] expected: ERROR - [Can set 'flex-grow' to CSS-wide keywords: ] - expected: FAIL - [Can set 'flex-grow' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/flex-shrink.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/flex-shrink.html.ini @@ -1,8 +1,5 @@ [flex-shrink.html] expected: ERROR - [Can set 'flex-shrink' to CSS-wide keywords: ] - expected: FAIL - [Can set 'flex-shrink' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/flex-wrap.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/flex-wrap.html.ini @@ -1,8 +1,5 @@ [flex-wrap.html] expected: ERROR - [Can set 'flex-wrap' to CSS-wide keywords: ] - expected: FAIL - [Can set 'flex-wrap' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/float.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/float.html.ini @@ -1,8 +1,5 @@ [float.html] expected: ERROR - [Can set 'float' to CSS-wide keywords: ] - expected: FAIL - [Can set 'float' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/flood-color.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/flood-color.html.ini @@ -1,8 +1,5 @@ [flood-color.html] expected: ERROR - [Can set 'flood-color' to CSS-wide keywords: ] - expected: FAIL - [Can set 'flood-color' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/flood-opacity.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/flood-opacity.html.ini @@ -1,8 +1,5 @@ [flood-opacity.html] expected: ERROR - [Can set 'flood-opacity' to CSS-wide keywords: ] - expected: FAIL - [Can set 'flood-opacity' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-feature-settings.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-feature-settings.html.ini @@ -1,8 +1,5 @@ [font-feature-settings.html] expected: ERROR - [Can set 'font-feature-settings' to CSS-wide keywords: ] - expected: FAIL - [Can set 'font-feature-settings' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-kerning.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-kerning.html.ini @@ -1,8 +1,5 @@ [font-kerning.html] expected: ERROR - [Can set 'font-kerning' to CSS-wide keywords: ] - expected: FAIL - [Can set 'font-kerning' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-language-override.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-language-override.html.ini @@ -1,8 +1,5 @@ [font-language-override.html] expected: ERROR - [Can set 'font-language-override' to CSS-wide keywords: ] - expected: FAIL - [Can set 'font-language-override' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-optical-sizing.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-optical-sizing.html.ini @@ -1,8 +1,5 @@ [font-optical-sizing.html] expected: ERROR - [Can set 'font-optical-sizing' to CSS-wide keywords: ] - expected: FAIL - [Can set 'font-optical-sizing' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-palette.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-palette.html.ini @@ -1,8 +1,5 @@ [font-palette.html] expected: ERROR - [Can set 'font-palette' to CSS-wide keywords: ] - expected: FAIL - [Can set 'font-palette' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-size-adjust.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-size-adjust.html.ini @@ -1,8 +1,5 @@ [font-size-adjust.html] expected: ERROR - [Can set 'font-size-adjust' to CSS-wide keywords: ] - expected: FAIL - [Can set 'font-size-adjust' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-size.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-size.html.ini @@ -1,8 +1,5 @@ [font-size.html] expected: ERROR - [Can set 'font-size' to CSS-wide keywords: ] - expected: FAIL - [Can set 'font-size' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-stretch.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-stretch.html.ini @@ -1,8 +1,5 @@ [font-stretch.html] expected: ERROR - [Can set 'font-stretch' to CSS-wide keywords: ] - expected: FAIL - [Can set 'font-stretch' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-style.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-style.html.ini @@ -1,8 +1,5 @@ [font-style.html] expected: ERROR - [Can set 'font-style' to CSS-wide keywords: ] - expected: FAIL - [Can set 'font-style' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-synthesis.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-synthesis.html.ini @@ -1,8 +1,5 @@ [font-synthesis.html] expected: ERROR - [Can set 'font-synthesis-weight' to CSS-wide keywords: ] - expected: FAIL - [Can set 'font-synthesis-weight' to var() references: ] expected: FAIL @@ -27,9 +24,6 @@ [Setting 'font-synthesis-weight' to a transform: throws TypeError] expected: FAIL - [Can set 'font-synthesis-style' to CSS-wide keywords: ] - expected: FAIL - [Can set 'font-synthesis-style' to var() references: ] expected: FAIL @@ -54,9 +48,6 @@ [Setting 'font-synthesis-style' to a transform: throws TypeError] expected: FAIL - [Can set 'font-synthesis-small-caps' to CSS-wide keywords: ] - expected: FAIL - [Can set 'font-synthesis-small-caps' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-variant-alternates.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-variant-alternates.html.ini @@ -1,8 +1,5 @@ [font-variant-alternates.html] expected: ERROR - [Can set 'font-variant-alternates' to CSS-wide keywords: ] - expected: FAIL - [Can set 'font-variant-alternates' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-variant-caps.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-variant-caps.html.ini @@ -1,8 +1,5 @@ [font-variant-caps.html] expected: ERROR - [Can set 'font-variant-caps' to CSS-wide keywords: ] - expected: FAIL - [Can set 'font-variant-caps' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-variant-east-asian.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-variant-east-asian.html.ini @@ -1,8 +1,5 @@ [font-variant-east-asian.html] expected: ERROR - [Can set 'font-variant-east-asian' to CSS-wide keywords: ] - expected: FAIL - [Can set 'font-variant-east-asian' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-variant-emoji.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-variant-emoji.html.ini @@ -1,8 +1,5 @@ [font-variant-emoji.html] expected: ERROR - [Can set 'font-variant-emoji' to CSS-wide keywords: ] - expected: FAIL - [Can set 'font-variant-emoji' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-variant-ligatures.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-variant-ligatures.html.ini @@ -1,8 +1,5 @@ [font-variant-ligatures.html] expected: ERROR - [Can set 'font-variant-ligatures' to CSS-wide keywords: ] - expected: FAIL - [Can set 'font-variant-ligatures' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-variant-numeric.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-variant-numeric.html.ini @@ -1,8 +1,5 @@ [font-variant-numeric.html] expected: ERROR - [Can set 'font-variant-numeric' to CSS-wide keywords: ] - expected: FAIL - [Can set 'font-variant-numeric' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-variation-settings.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-variation-settings.html.ini @@ -1,8 +1,5 @@ [font-variation-settings.html] expected: ERROR - [Can set 'font-variation-settings' to CSS-wide keywords: ] - expected: FAIL - [Can set 'font-variation-settings' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-weight.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/font-weight.html.ini @@ -1,8 +1,5 @@ [font-weight.html] expected: ERROR - [Can set 'font-weight' to CSS-wide keywords: ] - expected: FAIL - [Can set 'font-weight' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/gap.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/gap.html.ini @@ -1,8 +1,5 @@ [gap.html] expected: ERROR - [Can set 'column-gap' to CSS-wide keywords: ] - expected: FAIL - [Can set 'column-gap' to var() references: ] expected: FAIL @@ -27,9 +24,6 @@ [Setting 'column-gap' to a transform: throws TypeError] expected: FAIL - [Can set 'row-gap' to CSS-wide keywords: ] - expected: FAIL - [Can set 'row-gap' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/grid-auto-columns-rows.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/grid-auto-columns-rows.html.ini @@ -1,8 +1,5 @@ [grid-auto-columns-rows.html] expected: ERROR - [Can set 'grid-auto-columns' to CSS-wide keywords: ] - expected: FAIL - [Can set 'grid-auto-columns' to var() references: ] expected: FAIL @@ -39,9 +36,6 @@ [Setting 'grid-auto-columns' to a transform: throws TypeError] expected: FAIL - [Can set 'grid-auto-rows' to CSS-wide keywords: ] - expected: FAIL - [Can set 'grid-auto-rows' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/grid-auto-flow.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/grid-auto-flow.html.ini @@ -1,8 +1,5 @@ [grid-auto-flow.html] expected: ERROR - [Can set 'grid-auto-flow' to CSS-wide keywords: ] - expected: FAIL - [Can set 'grid-auto-flow' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/grid-start-end.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/grid-start-end.html.ini @@ -1,8 +1,5 @@ [grid-start-end.html] expected: ERROR - [Can set 'grid-row-start' to CSS-wide keywords: ] - expected: FAIL - [Can set 'grid-row-start' to var() references: ] expected: FAIL @@ -30,9 +27,6 @@ [Setting 'grid-row-start' to a transform: throws TypeError] expected: FAIL - [Can set 'grid-row-end' to CSS-wide keywords: ] - expected: FAIL - [Can set 'grid-row-end' to var() references: ] expected: FAIL @@ -60,9 +54,6 @@ [Setting 'grid-row-end' to a transform: throws TypeError] expected: FAIL - [Can set 'grid-column-start' to CSS-wide keywords: ] - expected: FAIL - [Can set 'grid-column-start' to var() references: ] expected: FAIL @@ -90,9 +81,6 @@ [Setting 'grid-column-start' to a transform: throws TypeError] expected: FAIL - [Can set 'grid-column-end' to CSS-wide keywords: ] - expected: FAIL - [Can set 'grid-column-end' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/grid-template-areas.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/grid-template-areas.html.ini @@ -1,8 +1,5 @@ [grid-template-areas.html] expected: ERROR - [Can set 'grid-template-areas' to CSS-wide keywords: ] - expected: FAIL - [Can set 'grid-template-areas' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/grid-template-columns-rows.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/grid-template-columns-rows.html.ini @@ -1,8 +1,5 @@ [grid-template-columns-rows.html] expected: ERROR - [Can set 'grid-template-columns' to CSS-wide keywords: ] - expected: FAIL - [Can set 'grid-template-columns' to var() references: ] expected: FAIL @@ -30,9 +27,6 @@ [Setting 'grid-template-columns' to a transform: throws TypeError] expected: FAIL - [Can set 'grid-template-rows' to CSS-wide keywords: ] - expected: FAIL - [Can set 'grid-template-rows' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/height.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/height.html.ini @@ -1,8 +1,5 @@ [height.html] expected: ERROR - [Can set 'height' to CSS-wide keywords: ] - expected: FAIL - [Can set 'height' to var() references: ] expected: FAIL @@ -27,9 +24,6 @@ [Setting 'height' to a transform: throws TypeError] expected: FAIL - [Can set 'min-height' to CSS-wide keywords: ] - expected: FAIL - [Can set 'min-height' to var() references: ] expected: FAIL @@ -54,9 +48,6 @@ [Setting 'min-height' to a transform: throws TypeError] expected: FAIL - [Can set 'max-height' to CSS-wide keywords: ] - expected: FAIL - [Can set 'max-height' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/hyphens.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/hyphens.html.ini @@ -1,8 +1,5 @@ [hyphens.html] expected: ERROR - [Can set 'hyphens' to CSS-wide keywords: ] - expected: FAIL - [Can set 'hyphens' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/image-rendering.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/image-rendering.html.ini @@ -2,9 +2,6 @@ expected: if (os == "win") and not debug and (processor == "x86_64"): [ERROR, CRASH] ERROR - [Can set 'image-rendering' to CSS-wide keywords: ] - expected: FAIL - [Can set 'image-rendering' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/inline-size.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/inline-size.html.ini @@ -1,8 +1,5 @@ [inline-size.html] expected: ERROR - [Can set 'inline-size' to CSS-wide keywords: ] - expected: FAIL - [Can set 'inline-size' to var() references: ] expected: FAIL @@ -27,9 +24,6 @@ [Setting 'inline-size' to a transform: throws TypeError] expected: FAIL - [Can set 'min-inline-size' to CSS-wide keywords: ] - expected: FAIL - [Can set 'min-inline-size' to var() references: ] expected: FAIL @@ -54,9 +48,6 @@ [Setting 'min-inline-size' to a transform: throws TypeError] expected: FAIL - [Can set 'max-inline-size' to CSS-wide keywords: ] - expected: FAIL - [Can set 'max-inline-size' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/isolation.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/isolation.html.ini @@ -2,9 +2,6 @@ expected: if (os == "win") and not debug and (processor == "x86_64"): [ERROR, CRASH] ERROR - [Can set 'isolation' to CSS-wide keywords: ] - expected: FAIL - [Can set 'isolation' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/left.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/left.html.ini @@ -1,8 +1,5 @@ [left.html] expected: ERROR - [Can set 'left' to CSS-wide keywords: ] - expected: FAIL - [Can set 'left' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/letter-spacing.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/letter-spacing.html.ini @@ -1,8 +1,5 @@ [letter-spacing.html] expected: ERROR - [Can set 'letter-spacing' to CSS-wide keywords: ] - expected: FAIL - [Can set 'letter-spacing' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/lighting-color.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/lighting-color.html.ini @@ -1,8 +1,5 @@ [lighting-color.html] expected: ERROR - [Can set 'lighting-color' to CSS-wide keywords: ] - expected: FAIL - [Can set 'lighting-color' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/line-break.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/line-break.html.ini @@ -1,8 +1,5 @@ [line-break.html] expected: ERROR - [Can set 'line-break' to CSS-wide keywords: ] - expected: FAIL - [Can set 'line-break' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/line-height.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/line-height.html.ini @@ -1,8 +1,5 @@ [line-height.html] expected: ERROR - [Can set 'line-height' to CSS-wide keywords: ] - expected: FAIL - [Can set 'line-height' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/list-style-image.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/list-style-image.html.ini @@ -1,8 +1,5 @@ [list-style-image.html] expected: ERROR - [Can set 'list-style-image' to CSS-wide keywords: ] - expected: FAIL - [Can set 'list-style-image' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/list-style-position.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/list-style-position.html.ini @@ -1,8 +1,5 @@ [list-style-position.html] expected: ERROR - [Can set 'list-style-position' to CSS-wide keywords: ] - expected: FAIL - [Can set 'list-style-position' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/list-style-type.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/list-style-type.html.ini @@ -1,8 +1,5 @@ [list-style-type.html] expected: ERROR - [Can set 'list-style-type' to CSS-wide keywords: ] - expected: FAIL - [Can set 'list-style-type' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/logical.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/logical.html.ini @@ -1,8 +1,5 @@ [logical.html] expected: ERROR - [Can set 'margin-block-start' to CSS-wide keywords: ] - expected: FAIL - [Can set 'margin-block-start' to var() references: ] expected: FAIL @@ -27,9 +24,6 @@ [Setting 'margin-block-start' to a transform: throws TypeError] expected: FAIL - [Can set 'margin-block-end' to CSS-wide keywords: ] - expected: FAIL - [Can set 'margin-block-end' to var() references: ] expected: FAIL @@ -54,9 +48,6 @@ [Setting 'margin-block-end' to a transform: throws TypeError] expected: FAIL - [Can set 'margin-inline-start' to CSS-wide keywords: ] - expected: FAIL - [Can set 'margin-inline-start' to var() references: ] expected: FAIL @@ -81,9 +72,6 @@ [Setting 'margin-inline-start' to a transform: throws TypeError] expected: FAIL - [Can set 'margin-inline-end' to CSS-wide keywords: ] - expected: FAIL - [Can set 'margin-inline-end' to var() references: ] expected: FAIL @@ -162,9 +150,6 @@ [Setting 'margin-inline' to a transform: throws TypeError] expected: FAIL - [Can set 'padding-block-start' to CSS-wide keywords: ] - expected: FAIL - [Can set 'padding-block-start' to var() references: ] expected: FAIL @@ -189,9 +174,6 @@ [Setting 'padding-block-start' to a transform: throws TypeError] expected: FAIL - [Can set 'padding-block-end' to CSS-wide keywords: ] - expected: FAIL - [Can set 'padding-block-end' to var() references: ] expected: FAIL @@ -216,9 +198,6 @@ [Setting 'padding-block-end' to a transform: throws TypeError] expected: FAIL - [Can set 'padding-inline-start' to CSS-wide keywords: ] - expected: FAIL - [Can set 'padding-inline-start' to var() references: ] expected: FAIL @@ -243,9 +222,6 @@ [Setting 'padding-inline-start' to a transform: throws TypeError] expected: FAIL - [Can set 'padding-inline-end' to CSS-wide keywords: ] - expected: FAIL - [Can set 'padding-inline-end' to var() references: ] expected: FAIL @@ -324,9 +300,6 @@ [Setting 'padding-inline' to a transform: throws TypeError] expected: FAIL - [Can set 'inset-block-start' to CSS-wide keywords: ] - expected: FAIL - [Can set 'inset-block-start' to var() references: ] expected: FAIL @@ -351,9 +324,6 @@ [Setting 'inset-block-start' to a transform: throws TypeError] expected: FAIL - [Can set 'inset-block-end' to CSS-wide keywords: ] - expected: FAIL - [Can set 'inset-block-end' to var() references: ] expected: FAIL @@ -378,9 +348,6 @@ [Setting 'inset-block-end' to a transform: throws TypeError] expected: FAIL - [Can set 'inset-inline-start' to CSS-wide keywords: ] - expected: FAIL - [Can set 'inset-inline-start' to var() references: ] expected: FAIL @@ -405,9 +372,6 @@ [Setting 'inset-inline-start' to a transform: throws TypeError] expected: FAIL - [Can set 'inset-inline-end' to CSS-wide keywords: ] - expected: FAIL - [Can set 'inset-inline-end' to var() references: ] expected: FAIL @@ -516,9 +480,6 @@ [Setting 'border-block-start' to a transform: throws TypeError] expected: FAIL - [Can set 'border-block-start-width' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-block-start-width' to var() references: ] expected: FAIL @@ -552,9 +513,6 @@ [Setting 'border-block-start-width' to a transform: throws TypeError] expected: FAIL - [Can set 'border-block-start-color' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-block-start-color' to var() references: ] expected: FAIL @@ -582,9 +540,6 @@ [Setting 'border-block-start-color' to a transform: throws TypeError] expected: FAIL - [Can set 'border-block-start-style' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-block-start-style' to var() references: ] expected: FAIL @@ -639,9 +594,6 @@ [Setting 'border-block-end' to a transform: throws TypeError] expected: FAIL - [Can set 'border-block-end-width' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-block-end-width' to var() references: ] expected: FAIL @@ -675,9 +627,6 @@ [Setting 'border-block-end-width' to a transform: throws TypeError] expected: FAIL - [Can set 'border-block-end-color' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-block-end-color' to var() references: ] expected: FAIL @@ -705,9 +654,6 @@ [Setting 'border-block-end-color' to a transform: throws TypeError] expected: FAIL - [Can set 'border-block-end-style' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-block-end-style' to var() references: ] expected: FAIL @@ -762,9 +708,6 @@ [Setting 'border-inline-start' to a transform: throws TypeError] expected: FAIL - [Can set 'border-inline-start-width' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-inline-start-width' to var() references: ] expected: FAIL @@ -798,9 +741,6 @@ [Setting 'border-inline-start-width' to a transform: throws TypeError] expected: FAIL - [Can set 'border-inline-start-color' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-inline-start-color' to var() references: ] expected: FAIL @@ -828,9 +768,6 @@ [Setting 'border-inline-start-color' to a transform: throws TypeError] expected: FAIL - [Can set 'border-inline-start-style' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-inline-start-style' to var() references: ] expected: FAIL @@ -885,9 +822,6 @@ [Setting 'border-inline-end' to a transform: throws TypeError] expected: FAIL - [Can set 'border-inline-end-width' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-inline-end-width' to var() references: ] expected: FAIL @@ -921,9 +855,6 @@ [Setting 'border-inline-end-width' to a transform: throws TypeError] expected: FAIL - [Can set 'border-inline-end-color' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-inline-end-color' to var() references: ] expected: FAIL @@ -951,9 +882,6 @@ [Setting 'border-inline-end-color' to a transform: throws TypeError] expected: FAIL - [Can set 'border-inline-end-style' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-inline-end-style' to var() references: ] expected: FAIL @@ -1236,9 +1164,6 @@ [Setting 'border-inline-style' to a transform: throws TypeError] expected: FAIL - [Can set 'border-start-start-radius' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-start-start-radius' to var() references: ] expected: FAIL @@ -1263,9 +1188,6 @@ [Setting 'border-start-start-radius' to a transform: throws TypeError] expected: FAIL - [Can set 'border-start-end-radius' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-start-end-radius' to var() references: ] expected: FAIL @@ -1290,9 +1212,6 @@ [Setting 'border-start-end-radius' to a transform: throws TypeError] expected: FAIL - [Can set 'border-end-start-radius' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-end-start-radius' to var() references: ] expected: FAIL @@ -1317,9 +1236,6 @@ [Setting 'border-end-start-radius' to a transform: throws TypeError] expected: FAIL - [Can set 'border-end-end-radius' to CSS-wide keywords: ] - expected: FAIL - [Can set 'border-end-end-radius' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/margin.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/margin.html.ini @@ -1,8 +1,5 @@ [margin.html] expected: ERROR - [Can set 'margin-top' to CSS-wide keywords: ] - expected: FAIL - [Can set 'margin-top' to var() references: ] expected: FAIL @@ -27,9 +24,6 @@ [Setting 'margin-top' to a transform: throws TypeError] expected: FAIL - [Can set 'margin-left' to CSS-wide keywords: ] - expected: FAIL - [Can set 'margin-left' to var() references: ] expected: FAIL @@ -54,9 +48,6 @@ [Setting 'margin-left' to a transform: throws TypeError] expected: FAIL - [Can set 'margin-right' to CSS-wide keywords: ] - expected: FAIL - [Can set 'margin-right' to var() references: ] expected: FAIL @@ -81,9 +72,6 @@ [Setting 'margin-right' to a transform: throws TypeError] expected: FAIL - [Can set 'margin-bottom' to CSS-wide keywords: ] - expected: FAIL - [Can set 'margin-bottom' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/marker.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/marker.html.ini @@ -1,8 +1,5 @@ [marker.html] expected: ERROR - [Can set 'marker-start' to CSS-wide keywords: ] - expected: FAIL - [Can set 'marker-start' to var() references: ] expected: FAIL @@ -27,9 +24,6 @@ [Setting 'marker-start' to a transform: throws TypeError] expected: FAIL - [Can set 'marker-mid' to CSS-wide keywords: ] - expected: FAIL - [Can set 'marker-mid' to var() references: ] expected: FAIL @@ -54,9 +48,6 @@ [Setting 'marker-mid' to a transform: throws TypeError] expected: FAIL - [Can set 'marker-end' to CSS-wide keywords: ] - expected: FAIL - [Can set 'marker-end' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/mask-image.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/mask-image.html.ini @@ -1,8 +1,5 @@ [mask-image.html] expected: ERROR - [Can set 'mask-image' to CSS-wide keywords: ] - expected: FAIL - [Can set 'mask-image' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/mask-type.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/mask-type.html.ini @@ -1,8 +1,5 @@ [mask-type.html] expected: ERROR - [Can set 'mask-type' to CSS-wide keywords: ] - expected: FAIL - [Can set 'mask-type' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/mix-blend-mode.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/mix-blend-mode.html.ini @@ -1,8 +1,5 @@ [mix-blend-mode.html] expected: ERROR - [Can set 'mix-blend-mode' to CSS-wide keywords: ] - expected: FAIL - [Can set 'mix-blend-mode' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/object-fit.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/object-fit.html.ini @@ -1,8 +1,5 @@ [object-fit.html] expected: ERROR - [Can set 'object-fit' to CSS-wide keywords: ] - expected: FAIL - [Can set 'object-fit' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/object-position.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/object-position.html.ini @@ -1,7 +1,4 @@ [object-position.html] expected: ERROR - [Can set 'object-position' to CSS-wide keywords: ] - expected: FAIL - [Can set 'object-position' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/offset-anchor.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/offset-anchor.html.ini @@ -1,7 +1,4 @@ [offset-anchor.html] expected: ERROR - [Can set 'offset-anchor' to CSS-wide keywords: ] - expected: FAIL - [Can set 'offset-anchor' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/offset-distance.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/offset-distance.html.ini @@ -1,8 +1,5 @@ [offset-distance.html] expected: ERROR - [Can set 'offset-distance' to CSS-wide keywords: ] - expected: FAIL - [Can set 'offset-distance' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/offset-path.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/offset-path.html.ini @@ -1,8 +1,5 @@ [offset-path.html] expected: ERROR - [Can set 'offset-path' to CSS-wide keywords: ] - expected: FAIL - [Can set 'offset-path' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/offset-position.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/offset-position.html.ini @@ -1,7 +1,4 @@ [offset-position.html] expected: ERROR - [Can set 'offset-position' to CSS-wide keywords: ] - expected: FAIL - [Can set 'offset-position' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/offset-rotate.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/offset-rotate.html.ini @@ -1,8 +1,5 @@ [offset-rotate.html] expected: ERROR - [Can set 'offset-rotate' to CSS-wide keywords: ] - expected: FAIL - [Can set 'offset-rotate' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/opacity.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/opacity.html.ini @@ -1,8 +1,5 @@ [opacity.html] expected: ERROR - [Can set 'opacity' to CSS-wide keywords: ] - expected: FAIL - [Can set 'opacity' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/order.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/order.html.ini @@ -1,8 +1,5 @@ [order.html] expected: ERROR - [Can set 'order' to CSS-wide keywords: ] - expected: FAIL - [Can set 'order' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/outline-color.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/outline-color.html.ini @@ -1,8 +1,5 @@ [outline-color.html] expected: ERROR - [Can set 'outline-color' to CSS-wide keywords: ] - expected: FAIL - [Can set 'outline-color' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/outline-offset.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/outline-offset.html.ini @@ -1,8 +1,5 @@ [outline-offset.html] expected: ERROR - [Can set 'outline-offset' to CSS-wide keywords: ] - expected: FAIL - [Can set 'outline-offset' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/outline-style.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/outline-style.html.ini @@ -1,8 +1,5 @@ [outline-style.html] expected: ERROR - [Can set 'outline-style' to CSS-wide keywords: ] - expected: FAIL - [Can set 'outline-style' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/outline-width.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/outline-width.html.ini @@ -1,8 +1,5 @@ [outline-width.html] expected: ERROR - [Can set 'outline-width' to CSS-wide keywords: ] - expected: FAIL - [Can set 'outline-width' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/overflow-anchor.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/overflow-anchor.html.ini @@ -1,8 +1,5 @@ [overflow-anchor.html] expected: ERROR - [Can set 'overflow-anchor' to CSS-wide keywords: ] - expected: FAIL - [Can set 'overflow-anchor' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/overflow-wrap.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/overflow-wrap.html.ini @@ -1,8 +1,5 @@ [overflow-wrap.html] expected: ERROR - [Can set 'overflow-wrap' to CSS-wide keywords: ] - expected: FAIL - [Can set 'overflow-wrap' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/overflow.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/overflow.html.ini @@ -1,8 +1,5 @@ [overflow.html] expected: ERROR - [Can set 'overflow-x' to CSS-wide keywords: ] - expected: FAIL - [Can set 'overflow-x' to var() references: ] expected: FAIL @@ -27,9 +24,6 @@ [Setting 'overflow-x' to a transform: throws TypeError] expected: FAIL - [Can set 'overflow-y' to CSS-wide keywords: ] - expected: FAIL - [Can set 'overflow-y' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/overscroll-behavior.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/overscroll-behavior.html.ini @@ -1,8 +1,5 @@ [overscroll-behavior.html] expected: ERROR - [Can set 'overscroll-behavior-x' to CSS-wide keywords: ] - expected: FAIL - [Can set 'overscroll-behavior-x' to var() references: ] expected: FAIL @@ -27,9 +24,6 @@ [Setting 'overscroll-behavior-x' to a transform: throws TypeError] expected: FAIL - [Can set 'overscroll-behavior-y' to CSS-wide keywords: ] - expected: FAIL - [Can set 'overscroll-behavior-y' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/padding.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/padding.html.ini @@ -1,8 +1,5 @@ [padding.html] expected: ERROR - [Can set 'padding-top' to CSS-wide keywords: ] - expected: FAIL - [Can set 'padding-top' to var() references: ] expected: FAIL @@ -27,9 +24,6 @@ [Setting 'padding-top' to a transform: throws TypeError] expected: FAIL - [Can set 'padding-left' to CSS-wide keywords: ] - expected: FAIL - [Can set 'padding-left' to var() references: ] expected: FAIL @@ -54,9 +48,6 @@ [Setting 'padding-left' to a transform: throws TypeError] expected: FAIL - [Can set 'padding-right' to CSS-wide keywords: ] - expected: FAIL - [Can set 'padding-right' to var() references: ] expected: FAIL @@ -81,9 +72,6 @@ [Setting 'padding-right' to a transform: throws TypeError] expected: FAIL - [Can set 'padding-bottom' to CSS-wide keywords: ] - expected: FAIL - [Can set 'padding-bottom' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/page.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/page.html.ini @@ -1,8 +1,5 @@ [page.html] expected: ERROR - [Can set 'page' to CSS-wide keywords: ] - expected: FAIL - [Can set 'page' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/paint-order.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/paint-order.html.ini @@ -1,8 +1,5 @@ [paint-order.html] expected: ERROR - [Can set 'paint-order' to CSS-wide keywords: ] - expected: FAIL - [Can set 'paint-order' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/perspective-origin.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/perspective-origin.html.ini @@ -1,8 +1,5 @@ [perspective-origin.html] expected: ERROR - [Can set 'perspective-origin' to CSS-wide keywords: ] - expected: FAIL - [Can set 'perspective-origin' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/perspective.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/perspective.html.ini @@ -1,8 +1,5 @@ [perspective.html] expected: ERROR - [Can set 'perspective' to CSS-wide keywords: ] - expected: FAIL - [Can set 'perspective' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/pointer-events.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/pointer-events.html.ini @@ -1,8 +1,5 @@ [pointer-events.html] expected: ERROR - [Can set 'pointer-events' to CSS-wide keywords: ] - expected: FAIL - [Can set 'pointer-events' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/position.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/position.html.ini @@ -1,8 +1,5 @@ [position.html] expected: ERROR - [Can set 'position' to CSS-wide keywords: ] - expected: FAIL - [Can set 'position' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/quotes.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/quotes.html.ini @@ -1,8 +1,5 @@ [quotes.html] expected: ERROR - [Can set 'quotes' to CSS-wide keywords: ] - expected: FAIL - [Can set 'quotes' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/radius.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/radius.html.ini @@ -1,8 +1,5 @@ [radius.html] expected: ERROR - [Can set 'r' to CSS-wide keywords: ] - expected: FAIL - [Can set 'r' to var() references: ] expected: FAIL @@ -27,9 +24,6 @@ [Setting 'r' to a transform: throws TypeError] expected: FAIL - [Can set 'rx' to CSS-wide keywords: ] - expected: FAIL - [Can set 'rx' to var() references: ] expected: FAIL @@ -54,9 +48,6 @@ [Setting 'rx' to a transform: throws TypeError] expected: FAIL - [Can set 'ry' to CSS-wide keywords: ] - expected: FAIL - [Can set 'ry' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/resize.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/resize.html.ini @@ -1,8 +1,5 @@ [resize.html] expected: ERROR - [Can set 'resize' to CSS-wide keywords: ] - expected: FAIL - [Can set 'resize' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/right.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/right.html.ini @@ -1,8 +1,5 @@ [right.html] expected: ERROR - [Can set 'right' to CSS-wide keywords: ] - expected: FAIL - [Can set 'right' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/scroll-behavior.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/scroll-behavior.html.ini @@ -1,8 +1,5 @@ [scroll-behavior.html] expected: ERROR - [Can set 'scroll-behavior' to CSS-wide keywords: ] - expected: FAIL - [Can set 'scroll-behavior' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/scroll-margin.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/scroll-margin.html.ini @@ -1,8 +1,5 @@ [scroll-margin.html] expected: ERROR - [Can set 'scroll-margin-top' to CSS-wide keywords: ] - expected: FAIL - [Can set 'scroll-margin-top' to var() references: ] expected: FAIL @@ -27,9 +24,6 @@ [Setting 'scroll-margin-top' to a transform: throws TypeError] expected: FAIL - [Can set 'scroll-margin-left' to CSS-wide keywords: ] - expected: FAIL - [Can set 'scroll-margin-left' to var() references: ] expected: FAIL @@ -54,9 +48,6 @@ [Setting 'scroll-margin-left' to a transform: throws TypeError] expected: FAIL - [Can set 'scroll-margin-right' to CSS-wide keywords: ] - expected: FAIL - [Can set 'scroll-margin-right' to var() references: ] expected: FAIL @@ -81,9 +72,6 @@ [Setting 'scroll-margin-right' to a transform: throws TypeError] expected: FAIL - [Can set 'scroll-margin-bottom' to CSS-wide keywords: ] - expected: FAIL - [Can set 'scroll-margin-bottom' to var() references: ] expected: FAIL @@ -108,9 +96,6 @@ [Setting 'scroll-margin-bottom' to a transform: throws TypeError] expected: FAIL - [Can set 'scroll-margin-inline-start' to CSS-wide keywords: ] - expected: FAIL - [Can set 'scroll-margin-inline-start' to var() references: ] expected: FAIL @@ -135,9 +120,6 @@ [Setting 'scroll-margin-inline-start' to a transform: throws TypeError] expected: FAIL - [Can set 'scroll-margin-block-start' to CSS-wide keywords: ] - expected: FAIL - [Can set 'scroll-margin-block-start' to var() references: ] expected: FAIL @@ -162,9 +144,6 @@ [Setting 'scroll-margin-block-start' to a transform: throws TypeError] expected: FAIL - [Can set 'scroll-margin-inline-end' to CSS-wide keywords: ] - expected: FAIL - [Can set 'scroll-margin-inline-end' to var() references: ] expected: FAIL @@ -189,9 +168,6 @@ [Setting 'scroll-margin-inline-end' to a transform: throws TypeError] expected: FAIL - [Can set 'scroll-margin-block-end' to CSS-wide keywords: ] - expected: FAIL - [Can set 'scroll-margin-block-end' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/scroll-padding.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/scroll-padding.html.ini @@ -1,8 +1,5 @@ [scroll-padding.html] expected: ERROR - [Can set 'scroll-padding-top' to CSS-wide keywords: ] - expected: FAIL - [Can set 'scroll-padding-top' to var() references: ] expected: FAIL @@ -27,9 +24,6 @@ [Setting 'scroll-padding-top' to a transform: throws TypeError] expected: FAIL - [Can set 'scroll-padding-left' to CSS-wide keywords: ] - expected: FAIL - [Can set 'scroll-padding-left' to var() references: ] expected: FAIL @@ -54,9 +48,6 @@ [Setting 'scroll-padding-left' to a transform: throws TypeError] expected: FAIL - [Can set 'scroll-padding-right' to CSS-wide keywords: ] - expected: FAIL - [Can set 'scroll-padding-right' to var() references: ] expected: FAIL @@ -81,9 +72,6 @@ [Setting 'scroll-padding-right' to a transform: throws TypeError] expected: FAIL - [Can set 'scroll-padding-bottom' to CSS-wide keywords: ] - expected: FAIL - [Can set 'scroll-padding-bottom' to var() references: ] expected: FAIL @@ -108,9 +96,6 @@ [Setting 'scroll-padding-bottom' to a transform: throws TypeError] expected: FAIL - [Can set 'scroll-padding-inline-start' to CSS-wide keywords: ] - expected: FAIL - [Can set 'scroll-padding-inline-start' to var() references: ] expected: FAIL @@ -135,9 +120,6 @@ [Setting 'scroll-padding-inline-start' to a transform: throws TypeError] expected: FAIL - [Can set 'scroll-padding-block-start' to CSS-wide keywords: ] - expected: FAIL - [Can set 'scroll-padding-block-start' to var() references: ] expected: FAIL @@ -162,9 +144,6 @@ [Setting 'scroll-padding-block-start' to a transform: throws TypeError] expected: FAIL - [Can set 'scroll-padding-inline-end' to CSS-wide keywords: ] - expected: FAIL - [Can set 'scroll-padding-inline-end' to var() references: ] expected: FAIL @@ -189,9 +168,6 @@ [Setting 'scroll-padding-inline-end' to a transform: throws TypeError] expected: FAIL - [Can set 'scroll-padding-block-end' to CSS-wide keywords: ] - expected: FAIL - [Can set 'scroll-padding-block-end' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/scroll-snap-align.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/scroll-snap-align.html.ini @@ -1,8 +1,5 @@ [scroll-snap-align.html] expected: ERROR - [Can set 'scroll-snap-align' to CSS-wide keywords: ] - expected: FAIL - [Can set 'scroll-snap-align' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/scroll-snap-stop.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/scroll-snap-stop.html.ini @@ -1,8 +1,5 @@ [scroll-snap-stop.html] expected: ERROR - [Can set 'scroll-snap-stop' to CSS-wide keywords: ] - expected: FAIL - [Can set 'scroll-snap-stop' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/scroll-snap-type.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/scroll-snap-type.html.ini @@ -1,8 +1,5 @@ [scroll-snap-type.html] expected: ERROR - [Can set 'scroll-snap-type' to CSS-wide keywords: ] - expected: FAIL - [Can set 'scroll-snap-type' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/scrollbar-gutter.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/scrollbar-gutter.html.ini @@ -1,8 +1,5 @@ [scrollbar-gutter.html] expected: ERROR - [Can set 'scrollbar-gutter' to CSS-wide keywords: ] - expected: FAIL - [Can set 'scrollbar-gutter' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/scrollbar-width.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/scrollbar-width.html.ini @@ -1,8 +1,5 @@ [scrollbar-width.html] expected: ERROR - [Can set 'scrollbar-width' to CSS-wide keywords: ] - expected: FAIL - [Can set 'scrollbar-width' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/shape-image-threshold.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/shape-image-threshold.html.ini @@ -1,8 +1,5 @@ [shape-image-threshold.html] expected: ERROR - [Can set 'shape-image-threshold' to CSS-wide keywords: ] - expected: FAIL - [Can set 'shape-image-threshold' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/shape-margin.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/shape-margin.html.ini @@ -1,8 +1,5 @@ [shape-margin.html] expected: ERROR - [Can set 'shape-margin' to CSS-wide keywords: ] - expected: FAIL - [Can set 'shape-margin' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/shape-outside.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/shape-outside.html.ini @@ -1,8 +1,5 @@ [shape-outside.html] expected: ERROR - [Can set 'shape-outside' to CSS-wide keywords: ] - expected: FAIL - [Can set 'shape-outside' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/shape-rendering.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/shape-rendering.html.ini @@ -1,8 +1,5 @@ [shape-rendering.html] expected: ERROR - [Can set 'shape-rendering' to CSS-wide keywords: ] - expected: FAIL - [Can set 'shape-rendering' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/stop-color.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/stop-color.html.ini @@ -1,8 +1,5 @@ [stop-color.html] expected: ERROR - [Can set 'stop-color' to CSS-wide keywords: ] - expected: FAIL - [Can set 'stop-color' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/stop-opacity.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/stop-opacity.html.ini @@ -1,8 +1,5 @@ [stop-opacity.html] expected: ERROR - [Can set 'stop-opacity' to CSS-wide keywords: ] - expected: FAIL - [Can set 'stop-opacity' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/stroke-dasharray.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/stroke-dasharray.html.ini @@ -1,8 +1,5 @@ [stroke-dasharray.html] expected: ERROR - [Can set 'stroke-dasharray' to CSS-wide keywords: ] - expected: FAIL - [Can set 'stroke-dasharray' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/stroke-dashoffset.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/stroke-dashoffset.html.ini @@ -1,8 +1,5 @@ [stroke-dashoffset.html] expected: ERROR - [Can set 'stroke-dashoffset' to CSS-wide keywords: ] - expected: FAIL - [Can set 'stroke-dashoffset' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/stroke-linecap.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/stroke-linecap.html.ini @@ -1,8 +1,5 @@ [stroke-linecap.html] expected: ERROR - [Can set 'stroke-linecap' to CSS-wide keywords: ] - expected: FAIL - [Can set 'stroke-linecap' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/stroke-linejoin.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/stroke-linejoin.html.ini @@ -1,8 +1,5 @@ [stroke-linejoin.html] expected: ERROR - [Can set 'stroke-linejoin' to CSS-wide keywords: ] - expected: FAIL - [Can set 'stroke-linejoin' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/stroke-miterlimit.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/stroke-miterlimit.html.ini @@ -1,8 +1,5 @@ [stroke-miterlimit.html] expected: ERROR - [Can set 'stroke-miterlimit' to CSS-wide keywords: ] - expected: FAIL - [Can set 'stroke-miterlimit' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/stroke-opacity.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/stroke-opacity.html.ini @@ -1,8 +1,5 @@ [stroke-opacity.html] expected: ERROR - [Can set 'stroke-opacity' to CSS-wide keywords: ] - expected: FAIL - [Can set 'stroke-opacity' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/stroke-width.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/stroke-width.html.ini @@ -1,8 +1,5 @@ [stroke-width.html] expected: ERROR - [Can set 'stroke-width' to CSS-wide keywords: ] - expected: FAIL - [Can set 'stroke-width' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/tab-size.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/tab-size.html.ini @@ -1,8 +1,5 @@ [tab-size.html] expected: ERROR - [Can set 'tab-size' to CSS-wide keywords: ] - expected: FAIL - [Can set 'tab-size' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/table-layout.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/table-layout.html.ini @@ -1,8 +1,5 @@ [table-layout.html] expected: ERROR - [Can set 'table-layout' to CSS-wide keywords: ] - expected: FAIL - [Can set 'table-layout' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-align-last.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-align-last.html.ini @@ -1,8 +1,5 @@ [text-align-last.html] expected: ERROR - [Can set 'text-align-last' to CSS-wide keywords: ] - expected: FAIL - [Can set 'text-align-last' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-align.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-align.html.ini @@ -1,8 +1,5 @@ [text-align.html] expected: ERROR - [Can set 'text-align' to CSS-wide keywords: ] - expected: FAIL - [Can set 'text-align' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-anchor.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-anchor.html.ini @@ -1,8 +1,5 @@ [text-anchor.html] expected: ERROR - [Can set 'text-anchor' to CSS-wide keywords: ] - expected: FAIL - [Can set 'text-anchor' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-combine-upright.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-combine-upright.html.ini @@ -1,8 +1,5 @@ [text-combine-upright.html] expected: ERROR - [Can set 'text-combine-upright' to CSS-wide keywords: ] - expected: FAIL - [Can set 'text-combine-upright' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-decoration-color.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-decoration-color.html.ini @@ -1,8 +1,5 @@ [text-decoration-color.html] expected: ERROR - [Can set 'text-decoration-color' to CSS-wide keywords: ] - expected: FAIL - [Can set 'text-decoration-color' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-decoration-line.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-decoration-line.html.ini @@ -1,8 +1,5 @@ [text-decoration-line.html] expected: ERROR - [Can set 'text-decoration-line' to CSS-wide keywords: ] - expected: FAIL - [Can set 'text-decoration-line' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-decoration-skip-ink.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-decoration-skip-ink.html.ini @@ -1,8 +1,5 @@ [text-decoration-skip-ink.html] expected: ERROR - [Can set 'text-decoration-skip-ink' to CSS-wide keywords: ] - expected: FAIL - [Can set 'text-decoration-skip-ink' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-decoration-style.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-decoration-style.html.ini @@ -1,8 +1,5 @@ [text-decoration-style.html] expected: ERROR - [Can set 'text-decoration-style' to CSS-wide keywords: ] - expected: FAIL - [Can set 'text-decoration-style' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-decoration-thickness.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-decoration-thickness.html.ini @@ -1,8 +1,5 @@ [text-decoration-thickness.html] expected: ERROR - [Can set 'text-decoration-thickness' to CSS-wide keywords: ] - expected: FAIL - [Can set 'text-decoration-thickness' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-emphasis-color.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-emphasis-color.html.ini @@ -1,8 +1,5 @@ [text-emphasis-color.html] expected: ERROR - [Can set 'text-emphasis-color' to CSS-wide keywords: ] - expected: FAIL - [Can set 'text-emphasis-color' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-indent.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-indent.html.ini @@ -1,8 +1,5 @@ [text-indent.html] expected: ERROR - [Can set 'text-indent' to CSS-wide keywords: ] - expected: FAIL - [Can set 'text-indent' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-justify.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-justify.html.ini @@ -1,8 +1,5 @@ [text-justify.html] expected: ERROR - [Can set 'text-justify' to CSS-wide keywords: ] - expected: FAIL - [Can set 'text-justify' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-orientation.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-orientation.html.ini @@ -1,8 +1,5 @@ [text-orientation.html] expected: ERROR - [Can set 'text-orientation' to CSS-wide keywords: ] - expected: FAIL - [Can set 'text-orientation' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-overflow.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-overflow.html.ini @@ -1,8 +1,5 @@ [text-overflow.html] expected: ERROR - [Can set 'text-overflow' to CSS-wide keywords: ] - expected: FAIL - [Can set 'text-overflow' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-rendering.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-rendering.html.ini @@ -1,8 +1,5 @@ [text-rendering.html] expected: ERROR - [Can set 'text-rendering' to CSS-wide keywords: ] - expected: FAIL - [Can set 'text-rendering' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-shadow.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-shadow.html.ini @@ -1,8 +1,5 @@ [text-shadow.html] expected: ERROR - [Can set 'text-shadow' to CSS-wide keywords: ] - expected: FAIL - [Can set 'text-shadow' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-transform.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-transform.html.ini @@ -1,8 +1,5 @@ [text-transform.html] expected: ERROR - [Can set 'text-transform' to CSS-wide keywords: ] - expected: FAIL - [Can set 'text-transform' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-underline-offset.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-underline-offset.html.ini @@ -1,8 +1,5 @@ [text-underline-offset.html] expected: ERROR - [Can set 'text-underline-offset' to CSS-wide keywords: ] - expected: FAIL - [Can set 'text-underline-offset' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-underline-position.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/text-underline-position.html.ini @@ -1,8 +1,5 @@ [text-underline-position.html] expected: ERROR - [Can set 'text-underline-position' to CSS-wide keywords: ] - expected: FAIL - [Can set 'text-underline-position' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/top.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/top.html.ini @@ -1,8 +1,5 @@ [top.html] expected: ERROR - [Can set 'top' to CSS-wide keywords: ] - expected: FAIL - [Can set 'top' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/touch-action.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/touch-action.html.ini @@ -1,8 +1,5 @@ [touch-action.html] expected: ERROR - [Can set 'touch-action' to CSS-wide keywords: ] - expected: FAIL - [Can set 'touch-action' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/transform-box.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/transform-box.html.ini @@ -1,8 +1,5 @@ [transform-box.html] expected: ERROR - [Can set 'transform-box' to CSS-wide keywords: ] - expected: FAIL - [Can set 'transform-box' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/transform-style.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/transform-style.html.ini @@ -1,8 +1,5 @@ [transform-style.html] expected: ERROR - [Can set 'transform-style' to CSS-wide keywords: ] - expected: FAIL - [Can set 'transform-style' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/transform.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/transform.html.ini @@ -1,8 +1,5 @@ [transform.html] expected: ERROR - [Can set 'transform' to CSS-wide keywords: ] - expected: FAIL - [Can set 'transform' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/transition-delay.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/transition-delay.html.ini @@ -1,8 +1,5 @@ [transition-delay.html] expected: ERROR - [Can set 'transition-delay' to CSS-wide keywords: ] - expected: FAIL - [Can set 'transition-delay' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/transition-duration.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/transition-duration.html.ini @@ -1,8 +1,5 @@ [transition-duration.html] expected: ERROR - [Can set 'transition-duration' to CSS-wide keywords: ] - expected: FAIL - [Can set 'transition-duration' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/transition-property.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/transition-property.html.ini @@ -1,8 +1,5 @@ [transition-property.html] expected: ERROR - [Can set 'transition-property' to CSS-wide keywords: ] - expected: FAIL - [Can set 'transition-property' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/transition-timing-function.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/transition-timing-function.html.ini @@ -1,8 +1,5 @@ [transition-timing-function.html] expected: ERROR - [Can set 'transition-timing-function' to CSS-wide keywords: ] - expected: FAIL - [Can set 'transition-timing-function' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/unicode-bidi.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/unicode-bidi.html.ini @@ -1,8 +1,5 @@ [unicode-bidi.html] expected: ERROR - [Can set 'unicode-bidi' to CSS-wide keywords: ] - expected: FAIL - [Can set 'unicode-bidi' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/user-select.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/user-select.html.ini @@ -1,8 +1,5 @@ [user-select.html] expected: ERROR - [Can set 'user-select' to CSS-wide keywords: ] - expected: FAIL - [Can set 'user-select' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/vector-effect.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/vector-effect.html.ini @@ -1,8 +1,5 @@ [vector-effect.html] expected: ERROR - [Can set 'vector-effect' to CSS-wide keywords: ] - expected: FAIL - [Can set 'vector-effect' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/vertical-align.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/vertical-align.html.ini @@ -1,8 +1,5 @@ [vertical-align.html] expected: ERROR - [Can set 'vertical-align' to CSS-wide keywords: ] - expected: FAIL - [Can set 'vertical-align' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/visibility.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/visibility.html.ini @@ -1,8 +1,5 @@ [visibility.html] expected: ERROR - [Can set 'visibility' to CSS-wide keywords: ] - expected: FAIL - [Can set 'visibility' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/white-space.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/white-space.html.ini @@ -2,9 +2,6 @@ expected: if (os == "win") and not debug and (processor == "x86_64"): [ERROR, CRASH] ERROR - [Can set 'white-space-collapse' to CSS-wide keywords: ] - expected: FAIL - [Can set 'white-space-collapse' to var() references: ] expected: FAIL @@ -32,9 +29,6 @@ [Setting 'white-space-collapse' to a transform: throws TypeError] expected: FAIL - [Can set 'text-wrap-mode' to CSS-wide keywords: ] - expected: FAIL - [Can set 'text-wrap-mode' to var() references: ] expected: FAIL @@ -59,9 +53,6 @@ [Setting 'text-wrap-mode' to a transform: throws TypeError] expected: FAIL - [Can set 'text-wrap-style' to CSS-wide keywords: ] - expected: FAIL - [Can set 'text-wrap-style' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/width.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/width.html.ini @@ -1,8 +1,5 @@ [width.html] expected: ERROR - [Can set 'width' to CSS-wide keywords: ] - expected: FAIL - [Can set 'width' to var() references: ] expected: FAIL @@ -27,9 +24,6 @@ [Setting 'width' to a transform: throws TypeError] expected: FAIL - [Can set 'min-width' to CSS-wide keywords: ] - expected: FAIL - [Can set 'min-width' to var() references: ] expected: FAIL @@ -54,9 +48,6 @@ [Setting 'min-width' to a transform: throws TypeError] expected: FAIL - [Can set 'max-width' to CSS-wide keywords: ] - expected: FAIL - [Can set 'max-width' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/will-change.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/will-change.html.ini @@ -1,8 +1,5 @@ [will-change.html] expected: ERROR - [Can set 'will-change' to CSS-wide keywords: ] - expected: FAIL - [Can set 'will-change' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/word-break.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/word-break.html.ini @@ -1,8 +1,5 @@ [word-break.html] expected: ERROR - [Can set 'word-break' to CSS-wide keywords: ] - expected: FAIL - [Can set 'word-break' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/word-spacing.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/word-spacing.html.ini @@ -1,8 +1,5 @@ [word-spacing.html] expected: ERROR - [Can set 'word-spacing' to CSS-wide keywords: ] - expected: FAIL - [Can set 'word-spacing' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/word-wrap.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/word-wrap.html.ini @@ -1,8 +1,5 @@ [word-wrap.html] expected: ERROR - [Can set 'word-wrap' to CSS-wide keywords: ] - expected: FAIL - [Can set 'word-wrap' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/writing-mode.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/writing-mode.html.ini @@ -1,8 +1,5 @@ [writing-mode.html] expected: ERROR - [Can set 'writing-mode' to CSS-wide keywords: ] - expected: FAIL - [Can set 'writing-mode' to var() references: ] expected: FAIL diff --git a/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/z-index.html.ini b/testing/web-platform/meta/css/css-typed-om/the-stylepropertymap/properties/z-index.html.ini @@ -1,8 +1,5 @@ [z-index.html] expected: ERROR - [Can set 'z-index' to CSS-wide keywords: ] - expected: FAIL - [Can set 'z-index' to var() references: ] expected: FAIL