From a238597a18033086a699a5c0d624a88cedd62d4e Mon Sep 17 00:00:00 2001 From: Martin Robinson Date: Mon, 11 May 2020 10:20:40 +0200 Subject: [PATCH 1/2] layout_2020: Add support for transitions and animations --- Cargo.lock | 1 + components/layout_2020/Cargo.toml | 1 + components/layout_2020/flow/root.rs | 10 +++++ components/layout_thread_2020/lib.rs | 40 +++++++++++++++++-- .../style/properties/longhands/box.mako.rs | 11 ----- .../style/properties/shorthands/box.mako.rs | 5 +-- tests/wpt/include-layout-2020.ini | 4 ++ 7 files changed, 54 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 190172ab40b..ba027fe771f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2849,6 +2849,7 @@ dependencies = [ "embedder_traits", "euclid", "fnv", + "fxhash", "gfx", "gfx_traits", "html5ever", diff --git a/components/layout_2020/Cargo.toml b/components/layout_2020/Cargo.toml index 3cfc43f3a7a..e36acb4bffe 100644 --- a/components/layout_2020/Cargo.toml +++ b/components/layout_2020/Cargo.toml @@ -20,6 +20,7 @@ cssparser = "0.27" embedder_traits = { path = "../embedder_traits" } euclid = "0.20" fnv = "1.0" +fxhash = "0.2" gfx = { path = "../gfx" } gfx_traits = { path = "../gfx_traits" } html5ever = "0.25" diff --git a/components/layout_2020/flow/root.rs b/components/layout_2020/flow/root.rs index 68bce6ca9e4..94abc8dfc65 100644 --- a/components/layout_2020/flow/root.rs +++ b/components/layout_2020/flow/root.rs @@ -26,6 +26,7 @@ use crate::style_ext::{Display, DisplayGeneratingBox}; use crate::DefiniteContainingBlock; use app_units::Au; use euclid::default::{Point2D, Rect, Size2D}; +use fxhash::FxHashSet; use gfx_traits::print_tree::PrintTree; use script_layout_interface::wrapper_traits::LayoutNode; use script_layout_interface::{LayoutElementType, LayoutNodeType}; @@ -303,6 +304,15 @@ impl FragmentTree { }) } + pub fn remove_nodes_in_fragment_tree_from_set(&self, set: &mut FxHashSet) { + self.find(|fragment, _| { + if let Some(tag) = fragment.tag().as_ref() { + set.remove(tag); + } + None::<()> + }); + } + pub fn get_content_box_for_node(&self, requested_node: OpaqueNode) -> Rect { let mut bounding_box = PhysicalRect::zero(); self.find(|fragment, containing_block| { diff --git a/components/layout_thread_2020/lib.rs b/components/layout_thread_2020/lib.rs index a62a172d19d..13c6697d21b 100644 --- a/components/layout_thread_2020/lib.rs +++ b/components/layout_thread_2020/lib.rs @@ -27,7 +27,7 @@ use crossbeam_channel::{Receiver, Sender}; use embedder_traits::resources::{self, Resource}; use euclid::{default::Size2D as UntypedSize2D, Point2D, Rect, Scale, Size2D}; use fnv::FnvHashMap; -use fxhash::FxHashMap; +use fxhash::{FxHashMap, FxHashSet}; use gfx::font_cache_thread::FontCacheThread; use gfx::font_context; use gfx_traits::{node_id_from_scroll_id, Epoch}; @@ -80,9 +80,11 @@ use std::sync::atomic::{AtomicBool, AtomicUsize, Ordering}; use std::sync::{Arc, Mutex, MutexGuard}; use std::thread; use std::time::Duration; +use style::animation::ElementAnimationSet; use style::context::{ QuirksMode, RegisteredSpeculativePainter, RegisteredSpeculativePainters, SharedStyleContext, }; +use style::dom::OpaqueNode; use style::dom::{TDocument, TElement, TNode}; use style::driver; use style::error_reporting::RustLogReporter; @@ -572,6 +574,7 @@ impl LayoutThread { snapshot_map: &'a SnapshotMap, origin: ImmutableOrigin, animation_timeline_value: f64, + animation_states: ServoArc>>, ) -> LayoutContext<'a> { LayoutContext { id: self.id, @@ -581,7 +584,7 @@ impl LayoutThread { options: GLOBAL_STYLE_DATA.options.clone(), guards, visited_styles_enabled: false, - animation_states: Default::default(), + animation_states, registered_speculative_painters: &self.registered_painters, current_time_for_animations: animation_timeline_value, traversal_flags: TraversalFlags::empty(), @@ -1062,8 +1065,13 @@ impl LayoutThread { self.stylist.flush(&guards, Some(element), Some(&map)); // Create a layout context for use throughout the following passes. - let mut layout_context = - self.build_layout_context(guards.clone(), &map, origin, data.animation_timeline_value); + let mut layout_context = self.build_layout_context( + guards.clone(), + &map, + origin, + data.animation_timeline_value, + data.animations.clone(), + ); let traversal = RecalcStyle::new(layout_context); let token = { @@ -1273,6 +1281,11 @@ impl LayoutThread { document: Option<&ServoLayoutDocument>, context: &mut LayoutContext, ) { + Self::cancel_animations_for_nodes_not_in_fragment_tree( + &mut *(context.style_context.animation_states.write()), + &fragment_tree, + ); + if self.trace_layout { if let Some(box_tree) = &*self.box_tree.borrow() { layout_debug::begin_trace(box_tree.clone(), fragment_tree.clone()); @@ -1356,6 +1369,25 @@ impl LayoutThread { }, }) } + + /// Cancel animations for any nodes which have been removed from fragment tree. + /// TODO(mrobinson): We should look into a way of doing this during flow tree construction. + /// This also doesn't yet handles nodes that have been reparented. + fn cancel_animations_for_nodes_not_in_fragment_tree( + animation_states: &mut FxHashMap, + root: &FragmentTree, + ) { + // Assume all nodes have been removed until proven otherwise. + let mut invalid_nodes: FxHashSet = animation_states.keys().cloned().collect(); + root.remove_nodes_in_fragment_tree_from_set(&mut invalid_nodes); + + // Cancel animations for any nodes that are no longer in the fragment tree. + for node in &invalid_nodes { + if let Some(state) = animation_states.get_mut(node) { + state.cancel_all_animations(); + } + } + } } impl ProfilerMetadataFactory for LayoutThread { diff --git a/components/style/properties/longhands/box.mako.rs b/components/style/properties/longhands/box.mako.rs index 243acb76ea3..4a9b85a0883 100644 --- a/components/style/properties/longhands/box.mako.rs +++ b/components/style/properties/longhands/box.mako.rs @@ -161,7 +161,6 @@ ${helpers.predefined_type( "Time", "computed::Time::zero()", engines="gecko servo-2013 servo-2020", - servo_2020_pref="layout.2020.unimplemented", initial_specified_value="specified::Time::zero()", parse_method="parse_non_negative", vector=True, @@ -176,7 +175,6 @@ ${helpers.predefined_type( "TimingFunction", "computed::TimingFunction::ease()", engines="gecko servo-2013 servo-2020", - servo_2020_pref="layout.2020.unimplemented", initial_specified_value="specified::TimingFunction::ease()", vector=True, need_index=True, @@ -190,7 +188,6 @@ ${helpers.predefined_type( "TransitionProperty", "computed::TransitionProperty::all()", engines="gecko servo-2013 servo-2020", - servo_2020_pref="layout.2020.unimplemented", initial_specified_value="specified::TransitionProperty::all()", vector=True, allow_empty="NotInitial", @@ -205,7 +202,6 @@ ${helpers.predefined_type( "Time", "computed::Time::zero()", engines="gecko servo-2013 servo-2020", - servo_2020_pref="layout.2020.unimplemented", initial_specified_value="specified::Time::zero()", vector=True, need_index=True, @@ -221,7 +217,6 @@ ${helpers.predefined_type( "AnimationName", "computed::AnimationName::none()", engines="gecko servo-2013 servo-2020", - servo_2020_pref="layout.2020.unimplemented", initial_specified_value="specified::AnimationName::none()", vector=True, need_index=True, @@ -236,7 +231,6 @@ ${helpers.predefined_type( "Time", "computed::Time::zero()", engines="gecko servo-2013 servo-2020", - servo_2020_pref="layout.2020.unimplemented", initial_specified_value="specified::Time::zero()", parse_method="parse_non_negative", vector=True, @@ -253,7 +247,6 @@ ${helpers.predefined_type( "TimingFunction", "computed::TimingFunction::ease()", engines="gecko servo-2013 servo-2020", - servo_2020_pref="layout.2020.unimplemented", initial_specified_value="specified::TimingFunction::ease()", vector=True, need_index=True, @@ -268,7 +261,6 @@ ${helpers.predefined_type( "AnimationIterationCount", "computed::AnimationIterationCount::one()", engines="gecko servo-2013 servo-2020", - servo_2020_pref="layout.2020.unimplemented", initial_specified_value="specified::AnimationIterationCount::one()", vector=True, need_index=True, @@ -283,7 +275,6 @@ ${helpers.single_keyword( "animation-direction", "normal reverse alternate alternate-reverse", engines="gecko servo-2013 servo-2020", - servo_2020_pref="layout.2020.unimplemented", need_index=True, animation_value_type="none", vector=True, @@ -299,7 +290,6 @@ ${helpers.single_keyword( "animation-play-state", "running paused", engines="gecko servo-2013 servo-2020", - servo_2020_pref="layout.2020.unimplemented", need_index=True, animation_value_type="none", vector=True, @@ -328,7 +318,6 @@ ${helpers.predefined_type( "Time", "computed::Time::zero()", engines="gecko servo-2013 servo-2020", - servo_2020_pref="layout.2020.unimplemented", initial_specified_value="specified::Time::zero()", vector=True, need_index=True, diff --git a/components/style/properties/shorthands/box.mako.rs b/components/style/properties/shorthands/box.mako.rs index c5fe60834ed..c5cc80829c7 100644 --- a/components/style/properties/shorthands/box.mako.rs +++ b/components/style/properties/shorthands/box.mako.rs @@ -28,7 +28,6 @@ ${helpers.two_properties_shorthand( "(https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-clip-box)", )} -#[cfg(any(feature = "gecko", feature = "servo-layout-2013"))] macro_rules! try_parse_one { ($context: expr, $input: expr, $var: ident, $prop_module: ident) => { if $var.is_none() { @@ -43,7 +42,7 @@ macro_rules! try_parse_one { } <%helpers:shorthand name="transition" - engines="gecko servo-2013" + engines="gecko servo-2013 servo-2020" extra_prefixes="moz:layout.css.prefixes.transitions webkit" sub_properties="transition-property transition-duration transition-timing-function @@ -189,7 +188,7 @@ macro_rules! try_parse_one { <%helpers:shorthand name="animation" - engines="gecko servo-2013" + engines="gecko servo-2013 servo-2020" extra_prefixes="moz:layout.css.prefixes.animations webkit" sub_properties="animation-name animation-duration animation-timing-function animation-delay diff --git a/tests/wpt/include-layout-2020.ini b/tests/wpt/include-layout-2020.ini index b5409f289a3..b7ed804bba8 100644 --- a/tests/wpt/include-layout-2020.ini +++ b/tests/wpt/include-layout-2020.ini @@ -9,6 +9,8 @@ skip: true skip: true [CSS2] skip: false + [css-animations] + skip: false [css-backgrounds] skip: false [css-content] @@ -23,6 +25,8 @@ skip: true skip: false [css-transforms] skip: false + [css-transitions] + skip: false [css-ui] skip: false [filter-effects] From acca20d544ee3f88e41e1c2191a67dcc25184339 Mon Sep 17 00:00:00 2001 From: Martin Robinson Date: Mon, 11 May 2020 15:35:54 +0200 Subject: [PATCH 2/2] Update test expectations --- .../line-height-interpolation.html.ini | 318 --------- ...ffect-getComputedTiming.tentative.html.ini | 130 ++++ ...tionEffect-updateTiming.tentative.html.ini | 16 + ...Animation-animationName.tentative.html.ini | 10 + .../CSSAnimation-canceling.tentative.html.ini | 28 + ...nimation-compositeOrder.tentative.html.ini | 7 + .../CSSAnimation-effect.tentative.html.ini | 22 + .../CSSAnimation-finished.tentative.html.ini | 10 + ...nimation-getCurrentTime.tentative.html.ini | 7 + .../CSSAnimation-id.tentative.html.ini | 4 + .../CSSAnimation-pausing.tentative.html.ini | 28 + .../CSSAnimation-playState.tentative.html.ini | 16 + .../CSSAnimation-ready.tentative.html.ini | 16 + .../CSSAnimation-startTime.tentative.html.ini | 10 + ...mations-dynamic-changes.tentative.html.ini | 16 + .../Element-getAnimations.tentative.html.ini | 67 ++ ...rameEffect-getKeyframes.tentative.html.ini | 76 ++ ...rameEffect-setKeyframes.tentative.html.ini | 10 + .../KeyframeEffect-target.tentative.html.ini | 10 + ...fore-initial-box-construction-001.html.ini | 5 + .../animation-delay-008.html.ini | 2 + .../animation-delay-009.html.ini | 2 + .../animation-delay-010.html.ini | 2 + .../animation-delay-011.html.ini | 2 + .../animation-important-002.html.ini | 2 +- ...mation-opacity-pause-and-set-time.html.ini | 2 + ...tion-transform-pause-and-set-time.html.ini | 2 + ...imationevent-marker-pseudoelement.html.ini | 5 + .../animationevent-pseudoelement.html.ini | 5 + .../animationevent-types.html.ini | 8 + .../computed-style-animation-parsing.html.ini | 16 + .../event-dispatch.tentative.html.ini | 82 +++ .../event-order.tentative.html.ini | 19 + .../css/css-animations/idlharness.html.ini | 37 + .../parsing/animation-computed.html.ini | 34 + ...nimation-timing-function-computed.html.ini | 13 + .../animation-timing-function-valid.html.ini | 13 + .../pending-style-changes-001.html.ini | 7 + .../responsive/column-rule-color-001.html.ini | 7 + .../responsive/column-width-001.html.ini | 10 + .../style-animation-parsing.html.ini | 16 + .../background-color-interpolation.html.ini | 324 --------- .../background-image-interpolation.html.ini | 351 ---------- ...ckground-position-x-interpolation.html.ini | 213 ------ ...ckground-position-y-interpolation.html.ini | 213 ------ .../background-size-interpolation.html.ini | 57 -- .../border-color-interpolation.html.ini | 222 ------ ...border-image-outset-interpolation.html.ini | 318 --------- .../border-image-slice-interpolation.html.ini | 435 ------------ ...border-image-source-interpolation.html.ini | 252 ++++--- .../border-image-width-interpolation.html.ini | 522 -------------- .../border-radius-interpolation.html.ini | 324 --------- .../border-width-interpolation.html.ini | 326 +-------- .../animation/color-interpolation.html.ini | 204 ------ .../animation/opacity-interpolation.html.ini | 168 +---- .../animation/list-interpolation.html.ini | 45 -- .../perspective-interpolation.html.ini | 138 ---- .../perspective-origin-interpolation.html.ini | 138 +--- .../transform-interpolation-001.html.ini | 522 +------------- .../transform-interpolation-002.html.ini | 390 ----------- .../transform-interpolation-003.html.ini | 279 -------- .../transform-interpolation-004.html.ini | 336 --------- .../transform-interpolation-005.html.ini | 651 ------------------ .../transform-interpolation-006.html.ini | 173 +---- .../transform-origin-interpolation.html.ini | 138 +--- ...ffect-getComputedTiming.tentative.html.ini | 67 ++ ...CSSTransition-canceling.tentative.html.ini | 34 + ...STransition-currentTime.tentative.html.ini | 13 + .../CSSTransition-effect.tentative.html.ini | 31 + .../CSSTransition-finished.tentative.html.ini | 4 + .../CSSTransition-ready.tentative.html.ini | 7 + ...CSSTransition-startTime.tentative.html.ini | 16 + ...tion-transitionProperty.tentative.html.ini | 4 + .../Element-getAnimations.tentative.html.ini | 22 + ...rameEffect-setKeyframes.tentative.html.ini | 16 + .../KeyframeEffect-target.tentative.html.ini | 10 + .../text-shadow-composition.html.ini | 91 +++ .../text-shadow-interpolation.html.ini | 433 ++++++++++++ .../vertical-align-composition.html.ini | 61 ++ .../vertical-align-interpolation.html.ini | 529 ++++++++++++++ .../animations/z-index-interpolation.html.ini | 235 +++++++ .../disconnected-element-001.html.ini | 8 + .../event-dispatch.tentative.html.ini | 79 +++ .../css/css-transitions/events-005.html.ini | 7 + .../css/css-transitions/events-006.html.ini | 8 + .../css/css-transitions/idlharness.html.ini | 19 + .../inherit-height-transition.html.ini | 4 + ...on-from-ua-to-blocking-stylesheet.html.ini | 2 - .../non-rendered-element-001.html.ini | 4 + .../non-rendered-element-002.html.ini | 5 + ...on-rendered-element-004.tentative.html.ini | 4 + .../parsing/transition-computed.html.ini | 22 + ...ansition-timing-function-computed.html.ini | 13 + .../transition-timing-function-valid.html.ini | 13 + .../properties-value-001.html.ini | 458 ++++-------- .../properties-value-002.html.ini | 7 + .../properties-value-003.html.ini | 48 +- .../properties-value-auto-001.html.ini | 91 +++ .../properties-value-implicit-001.html.ini | 31 + .../properties-value-inherit-001.html.ini | 264 +++++++ .../properties-value-inherit-002.html.ini | 458 ++++-------- .../properties-value-inherit-003.html.ini | 106 +++ .../pseudo-elements-001.html.ini | 13 + .../pseudo-elements-002.html.ini | 4 + .../transition-property-002.html.ini | 7 + .../transition-reparented.html.ini | 4 + ...zero-duration-multiple-transition.html.ini | 4 + ...animations-replaced-into-ib-split.html.ini | 4 - .../filter-interpolation-001.html.ini | 270 -------- .../filter-interpolation-002.html.ini | 198 ------ .../filter-interpolation-003.html.ini | 390 ----------- .../filter-interpolation-004.html.ini | 327 --------- .../animations/animation-fill-mode.html.ini | 16 - .../animations/basic-linear-width.html.ini | 5 - .../css/animations/mixed-units.html.ini | 5 - .../css/animations/transition-raf.html.ini | 5 - .../css/transitionend_event.html.ini | 4 - .../meta-layout-2020/mozilla/calc.html.ini | 6 - 118 files changed, 3472 insertions(+), 8845 deletions(-) create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/AnimationEffect-getComputedTiming.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/AnimationEffect-updateTiming.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-animationName.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-canceling.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-compositeOrder.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-effect.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-finished.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-getCurrentTime.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-id.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-pausing.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-playState.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-ready.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-startTime.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/Element-getAnimations-dynamic-changes.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/Element-getAnimations.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/KeyframeEffect-getKeyframes.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/KeyframeEffect-setKeyframes.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/KeyframeEffect-target.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/animation-before-initial-box-construction-001.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/animation-delay-008.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/animation-delay-009.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/animation-delay-010.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/animation-delay-011.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/animation-opacity-pause-and-set-time.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/animation-transform-pause-and-set-time.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/animationevent-marker-pseudoelement.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/animationevent-pseudoelement.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/animationevent-types.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/computed-style-animation-parsing.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/event-dispatch.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/event-order.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/idlharness.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/parsing/animation-computed.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/parsing/animation-timing-function-computed.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/parsing/animation-timing-function-valid.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/pending-style-changes-001.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/responsive/column-rule-color-001.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/responsive/column-width-001.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-animations/style-animation-parsing.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/AnimationEffect-getComputedTiming.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-canceling.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-currentTime.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-effect.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-finished.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-ready.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-startTime.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-transitionProperty.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/Element-getAnimations.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/KeyframeEffect-setKeyframes.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/KeyframeEffect-target.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/animations/text-shadow-composition.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/animations/text-shadow-interpolation.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/animations/vertical-align-composition.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/animations/vertical-align-interpolation.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/animations/z-index-interpolation.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/disconnected-element-001.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/event-dispatch.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/events-005.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/events-006.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/idlharness.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/inherit-height-transition.html.ini delete mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/no-transition-from-ua-to-blocking-stylesheet.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/non-rendered-element-001.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/non-rendered-element-002.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/non-rendered-element-004.tentative.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/parsing/transition-computed.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/parsing/transition-timing-function-computed.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/parsing/transition-timing-function-valid.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-002.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-auto-001.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-implicit-001.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-inherit-003.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/pseudo-elements-001.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/pseudo-elements-002.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/transition-property-002.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/transition-reparented.html.ini create mode 100644 tests/wpt/metadata-layout-2020/css/css-transitions/zero-duration-multiple-transition.html.ini delete mode 100644 tests/wpt/metadata-layout-2020/css/cssom/getComputedStyle-animations-replaced-into-ib-split.html.ini delete mode 100644 tests/wpt/mozilla/meta-layout-2020/css/animations/animation-fill-mode.html.ini delete mode 100644 tests/wpt/mozilla/meta-layout-2020/css/animations/basic-linear-width.html.ini delete mode 100644 tests/wpt/mozilla/meta-layout-2020/css/animations/mixed-units.html.ini delete mode 100644 tests/wpt/mozilla/meta-layout-2020/css/animations/transition-raf.html.ini delete mode 100644 tests/wpt/mozilla/meta-layout-2020/css/transitionend_event.html.ini diff --git a/tests/wpt/metadata-layout-2020/css/CSS2/linebox/animations/line-height-interpolation.html.ini b/tests/wpt/metadata-layout-2020/css/CSS2/linebox/animations/line-height-interpolation.html.ini index 0a0735afb86..ecf171bf407 100644 --- a/tests/wpt/metadata-layout-2020/css/CSS2/linebox/animations/line-height-interpolation.html.ini +++ b/tests/wpt/metadata-layout-2020/css/CSS2/linebox/animations/line-height-interpolation.html.ini @@ -332,48 +332,18 @@ [Web Animations: property from [normal\] to [14px\] at (0.5) should be [14px\]] expected: FAIL - [CSS Transitions: property from [unset\] to [20px\] at (0) should be [30px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [4px\] to [14px\] at (-1) should be [0px\]] - expected: FAIL - [CSS Animations: property from [14px\] to [normal\] at (0.5) should be [normal\]] expected: FAIL - [CSS Transitions: property from [4q\] to [14q\] at (1.5) should be [19q\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [20px\] at (0) should be [30px\]] expected: FAIL - [CSS Transitions: property from [4\] to [14\] at (0) should be [4\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (1.5) should be [15px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px\] at (-0.3) should be [7px\]] - expected: FAIL - - [CSS Animations: property from [4\] to [14\] at (0) should be [4\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [4\] to [14\] at (0) should be [4\]] - expected: FAIL - [CSS Animations: property from [4\] to [14px\] at (0.3) should be [4\]] expected: FAIL [CSS Animations: property from [4\] to [normal\] at (1.5) should be [normal\]] expected: FAIL - [CSS Transitions: property from [4px\] to [14px\] at (-1) should be [0px\]] - expected: FAIL - - [CSS Transitions: property from [4\] to [14\] at (1.5) should be [19\]] - expected: FAIL - [CSS Animations: property from [normal\] to [14px\] at (0.3) should be [normal\]] expected: FAIL @@ -383,36 +353,12 @@ [CSS Animations: property from [14px\] to [4\] at (1.5) should be [4\]] expected: FAIL - [CSS Transitions with transition: all: property from [4q\] to [14q\] at (-1) should be [0q\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [4q\] to [14q\] at (0.6) should be [10q\]] - expected: FAIL - - [CSS Animations: property from neutral to [20px\] at (0.6) should be [16px\]] - expected: FAIL - [CSS Animations: property from [initial\] to [20px\] at (0) should be [initial\]] expected: FAIL - [CSS Animations: property from neutral to [20px\] at (0.3) should be [13px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [4q\] to [14q\] at (0) should be [4q\]] - expected: FAIL - [CSS Animations: property from [14q\] to [normal\] at (0) should be [14q\]] expected: FAIL - [CSS Animations: property from [normal\] to [normal\] at (0.3) should be [normal\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px\] at (0) should be [30px\]] - expected: FAIL - - [CSS Transitions: property from [4px\] to [14px\] at (0.3) should be [7px\]] - expected: FAIL - [CSS Animations: property from [normal\] to [4\] at (0) should be [normal\]] expected: FAIL @@ -431,9 +377,6 @@ [CSS Animations: property from [4\] to [14q\] at (0) should be [4\]] expected: FAIL - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (0.3) should be [27px\]] - expected: FAIL - [CSS Animations: property from [4\] to [14px\] at (1.5) should be [14px\]] expected: FAIL @@ -443,237 +386,78 @@ [CSS Animations: property from [14px\] to [4\] at (0.3) should be [14px\]] expected: FAIL - [CSS Animations: property from [4px\] to [14px\] at (1) should be [14px\]] - expected: FAIL - [CSS Animations: property from [14px\] to [4\] at (-0.3) should be [14px\]] expected: FAIL - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (-1) should be [40px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [4\] to [14\] at (0.3) should be [7\]] - expected: FAIL - - [CSS Transitions: property from [4px\] to [14px\] at (0) should be [4px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px\] at (0.3) should be [13px\]] - expected: FAIL - [CSS Animations: property from [4\] to [normal\] at (0) should be [4\]] expected: FAIL - [CSS Transitions: property from [unset\] to [20px\] at (0.3) should be [27px\]] - expected: FAIL - - [CSS Animations: property from [4\] to [14\] at (1.5) should be [19\]] - expected: FAIL - [CSS Animations: property from [14px\] to [normal\] at (-0.3) should be [14px\]] expected: FAIL - [CSS Transitions with transition: all: property from [4px\] to [14px\] at (0.6) should be [10px\]] - expected: FAIL - [CSS Animations: property from [4\] to [14q\] at (-0.3) should be [4\]] expected: FAIL - [CSS Transitions: property from neutral to [20px\] at (0) should be [10px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [4q\] to [14q\] at (0.3) should be [7q\]] - expected: FAIL - - [CSS Animations: property from [normal\] to [normal\] at (0) should be [normal\]] - expected: FAIL - - [CSS Animations: property from [4q\] to [14q\] at (0.6) should be [10q\]] - expected: FAIL - [CSS Animations: property from [4\] to [14q\] at (0.5) should be [14q\]] expected: FAIL [CSS Animations: property from [normal\] to [14px\] at (0) should be [normal\]] expected: FAIL - [CSS Transitions: property from [4q\] to [14q\] at (0) should be [4q\]] - expected: FAIL - - [CSS Animations: property from [4\] to [14\] at (-0.3) should be [1\]] - expected: FAIL - [CSS Animations: property from [unset\] to [20px\] at (0.3) should be [27px\]] expected: FAIL - [CSS Transitions: property from [4q\] to [14q\] at (0.6) should be [10q\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px\] at (-1) should be [40px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [20px\] at (0.3) should be [27px\]] - expected: FAIL - [CSS Animations: property from [4\] to [14q\] at (0.6) should be [14q\]] expected: FAIL - [CSS Animations: property from [4q\] to [14q\] at (0.3) should be [7q\]] - expected: FAIL - - [CSS Transitions: property from [4q\] to [14q\] at (-0.3) should be [1q\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [20px\] at (-1) should be [40px\]] - expected: FAIL - - [CSS Animations: property from [4px\] to [14px\] at (0) should be [4px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (0.6) should be [24px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px\] at (-1) should be [0px\]] - expected: FAIL - [CSS Animations: property from [14px\] to [normal\] at (1) should be [normal\]] expected: FAIL [CSS Animations: property from [4\] to [normal\] at (-0.3) should be [4\]] expected: FAIL - [CSS Animations: property from [4\] to [14\] at (0.3) should be [7\]] - expected: FAIL - - [CSS Animations: property from neutral to [20px\] at (-1) should be [0px\]] - expected: FAIL - - [CSS Animations: property from [normal\] to [normal\] at (-0.3) should be [normal\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [4px\] to [14px\] at (0.3) should be [7px\]] - expected: FAIL - - [CSS Animations: property from [4\] to [14\] at (0.6) should be [10\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [20px\] at (0.6) should be [24px\]] - expected: FAIL - - [CSS Animations: property from [4q\] to [14q\] at (1.5) should be [19q\]] - expected: FAIL - - [CSS Animations: property from [inherit\] to [20px\] at (1) should be [20px\]] - expected: FAIL - [CSS Animations: property from [14px\] to [4\] at (0) should be [14px\]] expected: FAIL [CSS Animations: property from [4\] to [14px\] at (-0.3) should be [4\]] expected: FAIL - [CSS Animations: property from neutral to [20px\] at (1.5) should be [25px\]] - expected: FAIL - [CSS Animations: property from [normal\] to [4\] at (0.3) should be [normal\]] expected: FAIL [CSS Animations: property from [14px\] to [normal\] at (0.6) should be [normal\]] expected: FAIL - [CSS Transitions with transition: all: property from [4\] to [14\] at (1.5) should be [19\]] - expected: FAIL - - [CSS Animations: property from [4\] to [14\] at (-1) should be [0\]] - expected: FAIL - - [CSS Transitions: property from [4px\] to [14px\] at (-0.3) should be [1px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px\] at (0) should be [10px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [20px\] at (0.6) should be [24px\]] expected: FAIL - [CSS Transitions: property from [unset\] to [20px\] at (-0.3) should be [33px\]] - expected: FAIL - - [CSS Transitions: property from [4px\] to [14px\] at (0.6) should be [10px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [4\] to [14\] at (-0.3) should be [1\]] - expected: FAIL - [CSS Animations: property from [14px\] to [normal\] at (0.3) should be [14px\]] expected: FAIL - [CSS Transitions with transition: all: property from [4px\] to [14px\] at (1.5) should be [19px\]] - expected: FAIL - [CSS Animations: property from [normal\] to [4\] at (1.5) should be [4\]] expected: FAIL [CSS Animations: property from [14px\] to [4\] at (0.5) should be [4\]] expected: FAIL - [CSS Transitions with transition: all: property from [4q\] to [14q\] at (1.5) should be [19q\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px\] at (-0.3) should be [33px\]] - expected: FAIL - - [CSS Animations: property from [4px\] to [14px\] at (-1) should be [0px\]] - expected: FAIL - [CSS Animations: property from [4\] to [normal\] at (0.3) should be [4\]] expected: FAIL [CSS Animations: property from [4\] to [14px\] at (0.6) should be [14px\]] expected: FAIL - [CSS Animations: property from [4px\] to [14px\] at (1.5) should be [19px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [20px\] at (1.5) should be [25px\]] - expected: FAIL - [CSS Animations: property from [4\] to [14px\] at (1) should be [14px\]] expected: FAIL [CSS Animations: property from [4\] to [14q\] at (1.5) should be [14q\]] expected: FAIL - [CSS Animations: property from [4px\] to [14px\] at (0.3) should be [7px\]] - expected: FAIL - - [CSS Animations: property from neutral to [20px\] at (1) should be [20px\]] - expected: FAIL - [CSS Animations: property from [normal\] to [14px\] at (1.5) should be [14px\]] expected: FAIL - [CSS Transitions: property from [4q\] to [14q\] at (-1) should be [0q\]] - expected: FAIL - [CSS Animations: property from [14q\] to [normal\] at (1.5) should be [normal\]] expected: FAIL - [CSS Transitions: property from [4\] to [14\] at (0.3) should be [7\]] - expected: FAIL - - [CSS Transitions: property from neutral to [20px\] at (0.3) should be [13px\]] - expected: FAIL - - [CSS Transitions: property from [4px\] to [14px\] at (1.5) should be [19px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [4q\] to [14q\] at (-0.3) should be [1q\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [20px\] at (0) should be [30px\]] - expected: FAIL - [CSS Animations: property from [initial\] to [20px\] at (0.3) should be [initial\]] expected: FAIL @@ -683,27 +467,15 @@ [CSS Animations: property from [14q\] to [normal\] at (0.3) should be [14q\]] expected: FAIL - [CSS Animations: property from [unset\] to [20px\] at (1) should be [20px\]] - expected: FAIL - - [CSS Animations: property from [normal\] to [normal\] at (0.6) should be [normal\]] - expected: FAIL - [CSS Animations: property from [normal\] to [14px\] at (0.5) should be [14px\]] expected: FAIL - [CSS Transitions with transition: all: property from [4\] to [14\] at (-1) should be [0\]] - expected: FAIL - [CSS Animations: property from [normal\] to [4\] at (1) should be [4\]] expected: FAIL [CSS Animations: property from [inherit\] to [20px\] at (1.5) should be [15px\]] expected: FAIL - [CSS Transitions: property from [4\] to [14\] at (0.6) should be [10\]] - expected: FAIL - [CSS Animations: property from [14q\] to [normal\] at (1) should be [normal\]] expected: FAIL @@ -713,30 +485,12 @@ [CSS Animations: property from [initial\] to [20px\] at (1.5) should be [20px\]] expected: FAIL - [CSS Transitions: property from [4\] to [14\] at (-0.3) should be [1\]] - expected: FAIL - - [CSS Transitions: property from neutral to [20px\] at (-0.3) should be [7px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [20px\] at (0.6) should be [16px\]] - expected: FAIL - - [CSS Animations: property from [4px\] to [14px\] at (-0.3) should be [1px\]] - expected: FAIL - [CSS Animations: property from [unset\] to [20px\] at (0.6) should be [24px\]] expected: FAIL - [CSS Transitions with transition: all: property from [unset\] to [20px\] at (1.5) should be [15px\]] - expected: FAIL - [CSS Animations: property from [4\] to [normal\] at (1) should be [normal\]] expected: FAIL - [CSS Transitions: property from [4q\] to [14q\] at (0.3) should be [7q\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [20px\] at (-1) should be [40px\]] expected: FAIL @@ -746,66 +500,27 @@ [CSS Animations: property from [4\] to [14px\] at (0) should be [4\]] expected: FAIL - [CSS Transitions with transition: all: property from [4px\] to [14px\] at (0) should be [4px\]] - expected: FAIL - - [CSS Animations: property from [4q\] to [14q\] at (1) should be [14q\]] - expected: FAIL - [CSS Animations: property from [14px\] to [normal\] at (1.5) should be [normal\]] expected: FAIL - [CSS Transitions with transition: all: property from [unset\] to [20px\] at (0.6) should be [24px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [20px\] at (0.3) should be [27px\]] expected: FAIL - [CSS Animations: property from [normal\] to [normal\] at (1) should be [normal\]] - expected: FAIL - [CSS Animations: property from [normal\] to [14px\] at (0.6) should be [14px\]] expected: FAIL - [CSS Animations: property from [normal\] to [normal\] at (1.5) should be [normal\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [4px\] to [14px\] at (-0.3) should be [1px\]] - expected: FAIL - [CSS Animations: property from [4\] to [normal\] at (0.6) should be [normal\]] expected: FAIL - [CSS Transitions: property from [inherit\] to [20px\] at (1.5) should be [15px\]] - expected: FAIL - [CSS Animations: property from [4\] to [14q\] at (0.3) should be [4\]] expected: FAIL - [CSS Transitions: property from [inherit\] to [20px\] at (0.3) should be [27px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [20px\] at (-1) should be [0px\]] - expected: FAIL - [CSS Animations: property from [14q\] to [normal\] at (0.5) should be [normal\]] expected: FAIL [CSS Animations: property from [initial\] to [20px\] at (0.5) should be [20px\]] expected: FAIL - [CSS Transitions: property from [4\] to [14\] at (-1) should be [0\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [20px\] at (-1) should be [40px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (-0.3) should be [33px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px\] at (1.5) should be [25px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [20px\] at (-0.3) should be [33px\]] expected: FAIL @@ -821,57 +536,24 @@ [CSS Animations: property from [4\] to [14q\] at (1) should be [14q\]] expected: FAIL - [CSS Transitions: property from [unset\] to [20px\] at (1.5) should be [15px\]] - expected: FAIL - [CSS Animations: property from [14px\] to [4\] at (0.6) should be [4\]] expected: FAIL - [CSS Animations: property from [4\] to [14\] at (1) should be [14\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (0) should be [30px\]] - expected: FAIL - [CSS Animations: property from [normal\] to [14px\] at (-0.3) should be [normal\]] expected: FAIL - [CSS Transitions with transition: all: property from [4\] to [14\] at (0.6) should be [10\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px\] at (0.6) should be [16px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px\] at (0.6) should be [24px\]] - expected: FAIL - [CSS Animations: property from [initial\] to [20px\] at (1) should be [20px\]] expected: FAIL [CSS Animations: property from [14px\] to [4\] at (1) should be [4\]] expected: FAIL - [CSS Transitions with transition: all: property from [unset\] to [20px\] at (-0.3) should be [33px\]] - expected: FAIL - [CSS Animations: property from [initial\] to [20px\] at (-0.3) should be [initial\]] expected: FAIL [CSS Animations: property from [normal\] to [14px\] at (1) should be [14px\]] expected: FAIL - [CSS Animations: property from [4q\] to [14q\] at (0) should be [4q\]] - expected: FAIL - - [CSS Animations: property from [4q\] to [14q\] at (-1) should be [0q\]] - expected: FAIL - [CSS Animations: property from [unset\] to [20px\] at (-1) should be [40px\]] expected: FAIL - [CSS Animations: property from neutral to [20px\] at (-0.3) should be [7px\]] - expected: FAIL - - [CSS Animations: property from [4q\] to [14q\] at (-0.3) should be [1q\]] - expected: FAIL - diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/AnimationEffect-getComputedTiming.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/AnimationEffect-getComputedTiming.tentative.html.ini new file mode 100644 index 00000000000..9a320f98302 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/AnimationEffect-getComputedTiming.tentative.html.ini @@ -0,0 +1,130 @@ +[AnimationEffect-getComputedTiming.tentative.html] + [currentIteration of an animation with an integral iteration count] + expected: FAIL + + [currentIteration of a new animation is zero] + expected: FAIL + + [localTime reflects playbackRate immediately] + expected: FAIL + + [iterations of a finitely repeating animation] + expected: FAIL + + [activeDuration of a new animation] + expected: FAIL + + [progress of a non-integral repeating animation with alternate direction] + expected: FAIL + + [progress of a non-integral repeating zero-duration animation with alternate-reverse direction] + expected: FAIL + + [localTime of an animation is always equal to currentTime] + expected: FAIL + + [activeDuration of an infinitely repeating zero-duration animation] + expected: FAIL + + [Progress of a non-integral repeating zero-duration animation with reversing direction] + expected: FAIL + + [endTime of an animation with a negative delay] + expected: FAIL + + [localTime of an AnimationEffect without an Animation] + expected: FAIL + + [duration of a new animation] + expected: FAIL + + [Negative delay of a new animation] + expected: FAIL + + [currentIteration of a new animation with no backwards fill is unresolved in before phase] + expected: FAIL + + [localTime of a new animation] + expected: FAIL + + [progress of an animation with different fill modes] + expected: FAIL + + [delay of a new animation] + expected: FAIL + + [iterationStart of a new animation] + expected: FAIL + + [currentIteration of an animation with a non-integral iteration count] + expected: FAIL + + [progress of a non-integral repeating zero-duration animation] + expected: FAIL + + [endTime of an new animation] + expected: FAIL + + [progress of a non-integral repeating zero-duration animation with alternate direction] + expected: FAIL + + [currentIteration of an animation with a default iteration count] + expected: FAIL + + [currentIteration of an infinitely repeating zero-duration animation] + expected: FAIL + + [endDelay of a new animation] + expected: FAIL + + [iterations of an infinitely repeating animation] + expected: FAIL + + [direction of a new animation] + expected: FAIL + + [endTime of an animation that finishes before its startTime] + expected: FAIL + + [fill of a new animation] + expected: FAIL + + [endTime of an infinitely repeating zero-duration animation] + expected: FAIL + + [iterations of a new animation] + expected: FAIL + + [progress of a non-integral repeating animation with alternate-reversing direction] + expected: FAIL + + [activeDuration of an animation with zero iterations] + expected: FAIL + + [progress of an infinitely repeating zero-duration animation] + expected: FAIL + + [progress of a finitely repeating zero-duration animation] + expected: FAIL + + [currentIteration of an AnimationEffect without an Animation] + expected: FAIL + + [Positive delay of a new animation] + expected: FAIL + + [easing of a new animation] + expected: FAIL + + [progress of an integral repeating animation with normal direction] + expected: FAIL + + [endTime of an infinitely repeating animation] + expected: FAIL + + [currentIteration of a finitely repeating zero-duration animation] + expected: FAIL + + [activeDuration of an infinitely repeating animation] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/AnimationEffect-updateTiming.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/AnimationEffect-updateTiming.tentative.html.ini new file mode 100644 index 00000000000..963b484697e --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/AnimationEffect-updateTiming.tentative.html.ini @@ -0,0 +1,16 @@ +[AnimationEffect-updateTiming.tentative.html] + [AnimationEffect.updateTiming({ delay, fill }) causes changes to the animation-delay and animation-fill-mode to be ignored] + expected: FAIL + + [AnimationEffect.updateTiming({ duration }) causes changes to the animation-duration to be ignored] + expected: FAIL + + [AnimationEffect.updateTiming({ iterations, direction }) causes changes to the animation-iteration-count and animation-direction to be ignored] + expected: FAIL + + [AnimationEffect properties that do not map to animation-* properties should not be changed when animation-* style is updated] + expected: FAIL + + [AnimationEffect.updateTiming() does override to changes from animation-* properties if there is an error] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-animationName.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-animationName.tentative.html.ini new file mode 100644 index 00000000000..5b2b0f1d971 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-animationName.tentative.html.ini @@ -0,0 +1,10 @@ +[CSSAnimation-animationName.tentative.html] + [Animation name with hex-escape] + expected: FAIL + + [Animation name makes keyframe rule] + expected: FAIL + + [Escaped animation name] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-canceling.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-canceling.tentative.html.ini new file mode 100644 index 00000000000..9565d04e40e --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-canceling.tentative.html.ini @@ -0,0 +1,28 @@ +[CSSAnimation-canceling.tentative.html] + [Setting animation-name to 'none' cancels the animation] + expected: FAIL + + [Animated style is cleared after canceling a filling CSS animation] + expected: FAIL + + [Setting display:none on an element cancel its animations] + expected: FAIL + + [Setting display:none on an ancestor element cancels animations on descendants] + expected: FAIL + + [Animated style is cleared after canceling a running CSS animation] + expected: FAIL + + [After canceling an animation, updating animation properties doesn't make it live again] + expected: FAIL + + [After canceling an animation, it can still be re-used] + expected: FAIL + + [After canceling an animation, it can still be seeked] + expected: FAIL + + [After canceling an animation, updating animation-play-state doesn't make it live again] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-compositeOrder.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-compositeOrder.tentative.html.ini new file mode 100644 index 00000000000..b6cd49faf90 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-compositeOrder.tentative.html.ini @@ -0,0 +1,7 @@ +[CSSAnimation-compositeOrder.tentative.html] + [Web-animation replaces CSS animation] + expected: FAIL + + [Animations are composited by their order in the animation-name property.] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-effect.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-effect.tentative.html.ini new file mode 100644 index 00000000000..3e192e52ac0 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-effect.tentative.html.ini @@ -0,0 +1,22 @@ +[CSSAnimation-effect.tentative.html] + [Replacing an animation's effect with an effect that targets a different property should update both properties] + expected: FAIL + + [CSS animation events are dispatched at the original element even after setting an effect with a different target element] + expected: FAIL + + [Replacing the effect of a CSSAnimation causes subsequent changes to corresponding animation-* properties to be ignored] + expected: FAIL + + [Replacing an animation's effect with a shorter one that should have already finished, the animation finishes immediately] + expected: FAIL + + [A play-pending animation's effect whose effect is replaced still exits the pending state] + expected: FAIL + + [After replacing a finished animation's effect with a longer one it fires an animationstart event] + expected: FAIL + + [Setting a null effect on a running animation fires an animationend event] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-finished.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-finished.tentative.html.ini new file mode 100644 index 00000000000..64c403d71de --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-finished.tentative.html.ini @@ -0,0 +1,10 @@ +[CSSAnimation-finished.tentative.html] + [finished promise is rejected when an animation is canceled by changing the animation property] + expected: FAIL + + [finished promise is not reset when animationPlayState is set to running] + expected: FAIL + + [finished promise is rejected when an animation is canceled by resetting the animation property] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-getCurrentTime.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-getCurrentTime.tentative.html.ini new file mode 100644 index 00000000000..870cb238456 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-getCurrentTime.tentative.html.ini @@ -0,0 +1,7 @@ +[CSSAnimation-getCurrentTime.tentative.html] + [currentTime can be used to seek a CSS animation] + expected: FAIL + + [Setting currentTime to null on a CSS animation throws] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-id.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-id.tentative.html.ini new file mode 100644 index 00000000000..a1c8a827a89 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-id.tentative.html.ini @@ -0,0 +1,4 @@ +[CSSAnimation-id.tentative.html] + [Animation.id for CSS Animations] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-pausing.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-pausing.tentative.html.ini new file mode 100644 index 00000000000..468b4059ff8 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-pausing.tentative.html.ini @@ -0,0 +1,28 @@ +[CSSAnimation-pausing.tentative.html] + [reverse() overrides animation-play-state when it starts playing the animation] + expected: FAIL + + [Setting the startTime to non-null does NOT override the animation-play-state if the animation is already running] + expected: FAIL + + [reverse() does NOT override animation-play-state if the animation is already running] + expected: FAIL + + [Setting the startTime to null overrides animation-play-state if the animation is already running] + expected: FAIL + + [play() overrides animation-play-state] + expected: FAIL + + [Setting the current time completes a pending pause] + expected: FAIL + + [pause() overrides animation-play-state] + expected: FAIL + + [Setting the startTime to non-null overrides animation-play-state if the animation is paused] + expected: FAIL + + [play() does NOT override the animation-play-state if there was an error] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-playState.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-playState.tentative.html.ini new file mode 100644 index 00000000000..eda6e1a68ba --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-playState.tentative.html.ini @@ -0,0 +1,16 @@ +[CSSAnimation-playState.tentative.html] + [Animation.playState updates when resumed by setting style] + expected: FAIL + + [Animation returns correct playState when paused] + expected: FAIL + + [Animation.playState updates when paused by script] + expected: FAIL + + [A new CSS animation is initially play-pending] + expected: FAIL + + [Animation returns correct playState when canceled] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-ready.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-ready.tentative.html.ini new file mode 100644 index 00000000000..f589b6ab125 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-ready.tentative.html.ini @@ -0,0 +1,16 @@ +[CSSAnimation-ready.tentative.html] + [ready promise is rejected when an animation is canceled by resetting the animation property] + expected: FAIL + + [ready promise is rejected when an animation is canceled by updating the animation property] + expected: FAIL + + [Pausing twice re-uses the same Promise] + expected: FAIL + + [A new ready promise is created when setting animation-play-state: running] + expected: FAIL + + [A new ready promise is created when setting animation-play-state: paused] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-startTime.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-startTime.tentative.html.ini new file mode 100644 index 00000000000..40fabdf870e --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/CSSAnimation-startTime.tentative.html.ini @@ -0,0 +1,10 @@ +[CSSAnimation-startTime.tentative.html] + [The start time can be set to seek a CSS animation] + expected: FAIL + + [Seeking a CSS animation using the start time dispatches animation events] + expected: FAIL + + [The start time of a CSS animation can be set] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/Element-getAnimations-dynamic-changes.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/Element-getAnimations-dynamic-changes.tentative.html.ini new file mode 100644 index 00000000000..dc13d897c77 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/Element-getAnimations-dynamic-changes.tentative.html.ini @@ -0,0 +1,16 @@ +[Element-getAnimations-dynamic-changes.tentative.html] + [Animations preserve their startTime when changed] + expected: FAIL + + [Only the startTimes of existing animations are preserved] + expected: FAIL + + [Updated Animations maintain their order in the list] + expected: FAIL + + [Animations are removed from the start of the list while preserving the state of existing Animations] + expected: FAIL + + [Animation state is preserved when interleaving animations in list] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/Element-getAnimations.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/Element-getAnimations.tentative.html.ini new file mode 100644 index 00000000000..2a957b580cf --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/Element-getAnimations.tentative.html.ini @@ -0,0 +1,67 @@ +[Element-getAnimations.tentative.html] + [getAnimations for CSS Animations with animation-name: none] + expected: FAIL + + [getAnimations for multi-property animations] + expected: FAIL + + [{ subtree: true } on an element with many descendants returns animations from all the descendants] + expected: FAIL + + [getAnimations for CSS Animations] + expected: FAIL + + [{ subtree: false } on an element with a child returns only the element's animations] + expected: FAIL + + [getAnimations for zero-duration CSS Animations] + expected: FAIL + + [{ subtree: true } on a leaf element returns the element's animations and its pseudo-elements' animations] + expected: FAIL + + [getAnimations for CSS Animations with duplicated animation-name] + expected: FAIL + + [getAnimations for CSS Animations where the @keyframes rule is added later] + expected: FAIL + + [getAnimations for CSS Animations that are canceled] + expected: FAIL + + [getAnimations for CSS Animations with animation-name: missing] + expected: FAIL + + [getAnimations for CSS Animations that have finished but are forwards filling] + expected: FAIL + + [getAnimations returns objects with the same identity] + expected: FAIL + + [getAnimations for both CSS Animations and CSS Transitions at once] + expected: FAIL + + [{ subtree: true } on an element with a child returns animations from the element, its pseudo-elements, its child and its child pseudo-elements] + expected: FAIL + + [getAnimations for CSS Animations with empty keyframes rule] + expected: FAIL + + [getAnimations for non-animated content] + expected: FAIL + + [getAnimations returns CSSAnimation objects for CSS Animations] + expected: FAIL + + [getAnimations for CSS Animations that have finished] + expected: FAIL + + [{ subtree: false } on a leaf element returns the element's animations and ignore pseudo-elements] + expected: FAIL + + [getAnimations for CSS animations in delay phase] + expected: FAIL + + [getAnimations for CSS Animations follows animation-name order] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/KeyframeEffect-getKeyframes.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/KeyframeEffect-getKeyframes.tentative.html.ini new file mode 100644 index 00000000000..32cef197526 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/KeyframeEffect-getKeyframes.tentative.html.ini @@ -0,0 +1,76 @@ +[KeyframeEffect-getKeyframes.tentative.html] + [KeyframeEffect.getKeyframes() returns expected values for animations with only custom property in a keyframe] + expected: FAIL + + [KeyframeEffect.getKeyframes() returns expected frames for a simple animation that specifies a single shorthand property] + expected: FAIL + + [KeyframeEffect.getKeyframes() returns frames with expected easing values, when the easing is specified on each keyframe] + expected: FAIL + + [KeyframeEffect.getKeyframes() returns expected frames for an animation with different properties on different keyframes, all with the same easing function] + expected: FAIL + + [KeyframeEffect.getKeyframes() returns expected frames for an animation with a partially complete 100% keyframe (because the !important rule is ignored)] + expected: FAIL + + [KeyframeEffect.getKeyframes() returns expected frames for a simple animation] + expected: FAIL + + [KeyframeEffect.getKeyframes() returns expected values for animation with drop-shadow of filter property] + expected: FAIL + + [KeyframeEffect.getKeyframes() returns expected frames for an animation with multiple keyframes for the same time and with different but equivalent easing functions] + expected: FAIL + + [KeyframeEffect.getKeyframes() returns expected values for animations with a CSS variable which is overriden by the value in keyframe] + expected: FAIL + + [KeyframeEffect.getKeyframes() returns expected values for animations with filter properties and missing keyframes] + expected: FAIL + + [KeyframeEffect.getKeyframes() returns frames with expected easing values, when the easing comes from animation-timing-function on the element] + expected: FAIL + + [KeyframeEffect.getKeyframes() returns expected values for animations with background-size properties and missing keyframes] + expected: FAIL + + [KeyframeEffect.getKeyframes() reflects changes to @keyframes rules] + expected: FAIL + + [KeyframeEffect.getKeyframes() returns expected frames for an animation with a 100% keyframe and no 0% keyframe] + expected: FAIL + + [KeyframeEffect.getKeyframes() returns expected values for animations with text-shadow properties and missing keyframes] + expected: FAIL + + [KeyframeEffect.getKeyframes() returns frames with expected easing values, when the easing is specified on some keyframes] + expected: FAIL + + [KeyframeEffect.getKeyframes() returns expected frames for overlapping keyframes] + expected: FAIL + + [KeyframeEffect.getKeyframes() returns no frames for various kinds of empty enimations] + expected: FAIL + + [KeyframeEffect.getKeyframes() returns expected frames for an animation with a 0% keyframe and no 100% keyframe] + expected: FAIL + + [KeyframeEffect.getKeyframes() returns expected frames for an animation with different properties on different keyframes, with a different easing function on each] + expected: FAIL + + [KeyframeEffect.getKeyframes() returns expected frames for an animation with no 0% or 100% keyframe but with a 50% keyframe] + expected: FAIL + + [KeyframeEffect.getKeyframes() returns expected frames for an animation with multiple keyframes for the same time, and all with the same easing function] + expected: FAIL + + [KeyframeEffect.getKeyframes() returns expected values for animations with CSS variables as keyframe values] + expected: FAIL + + [KeyframeEffect.getKeyframes() returns expected frames for an animation with multiple keyframes for the same time and with different easing functions] + expected: FAIL + + [KeyframeEffect.getKeyframes() returns expected values for animations with CSS variables as keyframe values in a shorthand property] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/KeyframeEffect-setKeyframes.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/KeyframeEffect-setKeyframes.tentative.html.ini new file mode 100644 index 00000000000..55cfd751ecb --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/KeyframeEffect-setKeyframes.tentative.html.ini @@ -0,0 +1,10 @@ +[KeyframeEffect-setKeyframes.tentative.html] + [KeyframeEffect.setKeyframes() causes subsequent changes to animation-timing-function to be ignored] + expected: FAIL + + [KeyframeEffect.setKeyframes() causes subsequent changes to @keyframes rules to be ignored] + expected: FAIL + + [KeyframeEffect.setKeyframes() should NOT cause subsequent changes to @keyframes rules to be ignored if it threw] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/KeyframeEffect-target.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/KeyframeEffect-target.tentative.html.ini new file mode 100644 index 00000000000..bbeaa54de64 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/KeyframeEffect-target.tentative.html.ini @@ -0,0 +1,10 @@ +[KeyframeEffect-target.tentative.html] + [effect.target should return the same CSSPseudoElement object each time] + expected: FAIL + + [effect.target from the script-generated animation should return the same CSSPseudoElement object as that from the CSS generated animation] + expected: FAIL + + [Returned CSS animations have the correct effect target] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/animation-before-initial-box-construction-001.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/animation-before-initial-box-construction-001.html.ini new file mode 100644 index 00000000000..695b6eadc72 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/animation-before-initial-box-construction-001.html.ini @@ -0,0 +1,5 @@ +[animation-before-initial-box-construction-001.html] + expected: ERROR + [animations started before initial-containing-block creation properly function] + expected: TIMEOUT + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/animation-delay-008.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/animation-delay-008.html.ini new file mode 100644 index 00000000000..9daaa6465b7 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/animation-delay-008.html.ini @@ -0,0 +1,2 @@ +[animation-delay-008.html] + expected: TIMEOUT diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/animation-delay-009.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/animation-delay-009.html.ini new file mode 100644 index 00000000000..6b52057e84c --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/animation-delay-009.html.ini @@ -0,0 +1,2 @@ +[animation-delay-009.html] + expected: TIMEOUT diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/animation-delay-010.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/animation-delay-010.html.ini new file mode 100644 index 00000000000..fc9b4b878cc --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/animation-delay-010.html.ini @@ -0,0 +1,2 @@ +[animation-delay-010.html] + expected: FAIL diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/animation-delay-011.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/animation-delay-011.html.ini new file mode 100644 index 00000000000..78b88159561 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/animation-delay-011.html.ini @@ -0,0 +1,2 @@ +[animation-delay-011.html] + expected: FAIL diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/animation-important-002.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/animation-important-002.html.ini index 3e0c74fae76..3f47d2b7f71 100644 --- a/tests/wpt/metadata-layout-2020/css/css-animations/animation-important-002.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-animations/animation-important-002.html.ini @@ -1,2 +1,2 @@ [animation-important-002.html] - expected: FAIL + expected: TIMEOUT diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/animation-opacity-pause-and-set-time.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/animation-opacity-pause-and-set-time.html.ini new file mode 100644 index 00000000000..108602c6278 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/animation-opacity-pause-and-set-time.html.ini @@ -0,0 +1,2 @@ +[animation-opacity-pause-and-set-time.html] + expected: TIMEOUT diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/animation-transform-pause-and-set-time.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/animation-transform-pause-and-set-time.html.ini new file mode 100644 index 00000000000..20eb5078b50 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/animation-transform-pause-and-set-time.html.ini @@ -0,0 +1,2 @@ +[animation-transform-pause-and-set-time.html] + expected: TIMEOUT diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/animationevent-marker-pseudoelement.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/animationevent-marker-pseudoelement.html.ini new file mode 100644 index 00000000000..5af8ec0f754 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/animationevent-marker-pseudoelement.html.ini @@ -0,0 +1,5 @@ +[animationevent-marker-pseudoelement.html] + expected: TIMEOUT + [AnimationEvent should have the correct pseudoElement memeber] + expected: TIMEOUT + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/animationevent-pseudoelement.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/animationevent-pseudoelement.html.ini new file mode 100644 index 00000000000..fa19a3fabd9 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/animationevent-pseudoelement.html.ini @@ -0,0 +1,5 @@ +[animationevent-pseudoelement.html] + expected: TIMEOUT + [AnimationEvent should have the correct pseudoElement memeber] + expected: TIMEOUT + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/animationevent-types.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/animationevent-types.html.ini new file mode 100644 index 00000000000..d768d036d41 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/animationevent-types.html.ini @@ -0,0 +1,8 @@ +[animationevent-types.html] + expected: TIMEOUT + [animationiteration event is instanceof AnimationEvent] + expected: TIMEOUT + + [animationstart event is instanceof AnimationEvent] + expected: TIMEOUT + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/computed-style-animation-parsing.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/computed-style-animation-parsing.html.ini new file mode 100644 index 00000000000..6a1ab9d1ea0 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/computed-style-animation-parsing.html.ini @@ -0,0 +1,16 @@ +[computed-style-animation-parsing.html] + [Test an animation name that is the same as a possible animation fill-mode.] + expected: FAIL + + [Test an animation name that is the same as a possible running state.] + expected: FAIL + + [Test animation name being empty.] + expected: FAIL + + [Test a non-conflicting animation name.] + expected: FAIL + + [Test an animation name that is the same as a possible animation direction.] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/event-dispatch.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/event-dispatch.tentative.html.ini new file mode 100644 index 00000000000..71a270add94 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/event-dispatch.tentative.html.ini @@ -0,0 +1,82 @@ +[event-dispatch.tentative.html] + [After -> Before] + expected: FAIL + + [Call Animation.cancel after restarting animation immediately.] + expected: FAIL + + [Active -> Idle, setting Animation.timeline = null] + expected: FAIL + + [Active -> Active (forwards)] + expected: FAIL + + [Set timeline and play transition after clearing the timeline.] + expected: FAIL + + [Redundant change, active -> after, then back] + expected: FAIL + + [Idle -> Active] + expected: FAIL + + [Redundant change, active -> before, then back] + expected: FAIL + + [Redundant change, before -> active, then back] + expected: FAIL + + [Call Animation.cancel after canceling animation.] + expected: FAIL + + [Negative playbackRate sanity test(Before -> Active -> Before)] + expected: FAIL + + [Active -> Before] + expected: FAIL + + [Cancel the animation after clearing the target effect.] + expected: FAIL + + [Active -> Active (backwards)] + expected: FAIL + + [Active -> After] + expected: FAIL + + [Before -> Active] + expected: FAIL + + [Idle -> After] + expected: FAIL + + [Restart animation after canceling animation immediately.] + expected: FAIL + + [Active -> Idle, display: none] + expected: FAIL + + [Redundant change, after -> active, then back] + expected: FAIL + + [Active -> Idle, calling Animation.cancel()] + expected: FAIL + + [Redundant change, after -> before, then back] + expected: FAIL + + [Active -> Idle -> Active: animationstart is fired by restarting animation] + expected: FAIL + + [Before -> After] + expected: FAIL + + [Set null target effect after canceling the animation.] + expected: FAIL + + [After -> Active] + expected: FAIL + + [Redundant change, before -> after, then back] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/event-order.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/event-order.tentative.html.ini new file mode 100644 index 00000000000..ec95c7f4121 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/event-order.tentative.html.ini @@ -0,0 +1,19 @@ +[event-order.tentative.html] + [Same events are ordered by elements] + expected: FAIL + + [Start and iteration events are ordered by time] + expected: FAIL + + [Start and end events are sorted correctly when fired simultaneously] + expected: FAIL + + [Same events on pseudo-elements follow the prescribed order] + expected: FAIL + + [Same events on pseudo-elements follow the prescribed order (::marker)] + expected: FAIL + + [Iteration and end events are ordered by time] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/idlharness.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/idlharness.html.ini new file mode 100644 index 00000000000..26b53e03eec --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/idlharness.html.ini @@ -0,0 +1,37 @@ +[idlharness.html] + [HTMLElement interface: attribute onanimationiteration] + expected: FAIL + + [HTMLElement interface: attribute onanimationstart] + expected: FAIL + + [CSSKeyframeRule interface: keyframes.cssRules[0\] must inherit property "keyText" with the proper type] + expected: FAIL + + [Window interface: attribute onanimationcancel] + expected: FAIL + + [Document interface: attribute onanimationstart] + expected: FAIL + + [CSSKeyframeRule interface: attribute keyText] + expected: FAIL + + [Window interface: attribute onanimationstart] + expected: FAIL + + [Window interface: attribute onanimationiteration] + expected: FAIL + + [Document interface: attribute onanimationcancel] + expected: FAIL + + [CSSKeyframeRule interface: attribute style] + expected: FAIL + + [Document interface: attribute onanimationiteration] + expected: FAIL + + [HTMLElement interface: attribute onanimationcancel] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/parsing/animation-computed.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/parsing/animation-computed.html.ini new file mode 100644 index 00000000000..dbcba313b94 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/parsing/animation-computed.html.ini @@ -0,0 +1,34 @@ +[animation-computed.html] + [Property animation value '1s'] + expected: FAIL + + [Property animation value 'anim paused both reverse, 4 1s -3s cubic-bezier(0, -2, 1, 3)'] + expected: FAIL + + [Property animation value 'none'] + expected: FAIL + + [Property animation value 'cubic-bezier(0, -2, 1, 3)'] + expected: FAIL + + [Property animation value 'anim paused both reverse 4 1s -3s cubic-bezier(0, -2, 1, 3)'] + expected: FAIL + + [Property animation value '1s -3s'] + expected: FAIL + + [Property animation value 'anim'] + expected: FAIL + + [Property animation value 'paused'] + expected: FAIL + + [Property animation value 'both'] + expected: FAIL + + [Property animation value '4'] + expected: FAIL + + [Property animation value 'reverse'] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/parsing/animation-timing-function-computed.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/parsing/animation-timing-function-computed.html.ini new file mode 100644 index 00000000000..dddb6ec9ae4 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/parsing/animation-timing-function-computed.html.ini @@ -0,0 +1,13 @@ +[animation-timing-function-computed.html] + [Property animation-timing-function value 'steps(2, jump-start)'] + expected: FAIL + + [Property animation-timing-function value 'steps(2, jump-none)'] + expected: FAIL + + [Property animation-timing-function value 'steps(2, jump-end)'] + expected: FAIL + + [Property animation-timing-function value 'steps(2, jump-both)'] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/parsing/animation-timing-function-valid.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/parsing/animation-timing-function-valid.html.ini new file mode 100644 index 00000000000..063011bfbfc --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/parsing/animation-timing-function-valid.html.ini @@ -0,0 +1,13 @@ +[animation-timing-function-valid.html] + [e.style['animation-timing-function'\] = "steps(2, jump-end)" should set the property value] + expected: FAIL + + [e.style['animation-timing-function'\] = "steps(2, jump-both)" should set the property value] + expected: FAIL + + [e.style['animation-timing-function'\] = "steps(2, jump-none)" should set the property value] + expected: FAIL + + [e.style['animation-timing-function'\] = "steps(2, jump-start)" should set the property value] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/pending-style-changes-001.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/pending-style-changes-001.html.ini new file mode 100644 index 00000000000..73df716a2d8 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/pending-style-changes-001.html.ini @@ -0,0 +1,7 @@ +[pending-style-changes-001.html] + [Document::getAnimations() should be able to see a style-created CSS animation immediately] + expected: FAIL + + [Animatable::getAnimations() should be able to see a style-created CSS animation immediately] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/responsive/column-rule-color-001.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/responsive/column-rule-color-001.html.ini new file mode 100644 index 00000000000..8d962de6580 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/responsive/column-rule-color-001.html.ini @@ -0,0 +1,7 @@ +[column-rule-color-001.html] + [column-rule-color responds to inherited changes] + expected: FAIL + + [column-rule-color responds to currentColor changes] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/responsive/column-width-001.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/responsive/column-width-001.html.ini new file mode 100644 index 00000000000..94ad1f446a4 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/responsive/column-width-001.html.ini @@ -0,0 +1,10 @@ +[column-width-001.html] + [column-width responds to font-size changes] + expected: FAIL + + [column-width clamps to 0px] + expected: FAIL + + [column-width responds to inherited changes] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-animations/style-animation-parsing.html.ini b/tests/wpt/metadata-layout-2020/css/css-animations/style-animation-parsing.html.ini new file mode 100644 index 00000000000..46d53ea9343 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-animations/style-animation-parsing.html.ini @@ -0,0 +1,16 @@ +[style-animation-parsing.html] + [Test an animation name that is the same as a possible animation fill-mode.] + expected: FAIL + + [Test an animation name that is the same as a possible running state.] + expected: FAIL + + [Test animation name being empty.] + expected: FAIL + + [Test a non-conflicting animation name.] + expected: FAIL + + [Test an animation name that is the same as a possible animation direction.] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/background-color-interpolation.html.ini b/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/background-color-interpolation.html.ini index 1e5c3b108ee..611a998fdae 100644 --- a/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/background-color-interpolation.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/background-color-interpolation.html.ini @@ -128,342 +128,18 @@ [Web Animations: property from neutral to [green\] at (-0.3) should be [rgb(0, 0, 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from neutral to [green\] at (0.3) should be [rgb(0, 38, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [green\] at (0) should be [rgba(0, 0, 0, 0)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [green\] at (-0.3) should be [rgba(0, 0, 0, 0)\]] - expected: FAIL - - [CSS Animations: property from [white\] to [orange\] at (1.5) should be [rgb(255, 120, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [transparent\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]] - expected: FAIL - - [CSS Transitions: property from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (-0.5) should be [rgba(0, 0, 255, 0.38)\]] - expected: FAIL - - [CSS Transitions: property from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (0.5) should be [rgba(0, 153, 102, 0.63)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [green\] at (0) should be [rgb(0, 0, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (0.25) should be [rgba(0, 85, 170, 0.56)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [green\] at (0.6) should be [rgba(0, 128, 0, 0.6)\]] - expected: FAIL - - [CSS Animations: property from [white\] to [orange\] at (-0.3) should be [white\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [green\] at (0.6) should be [rgb(0, 77, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (1.5) should be [rgba(0, 255, 0, 0.88)\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [green\] at (-0.3) should be [rgb(255, 255, 255)\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [green\] at (0.3) should be [rgb(167, 205, 167)\]] expected: FAIL - [CSS Transitions: property from [white\] to [orange\] at (0.6) should be [rgb(255, 201, 102)\]] - expected: FAIL - - [CSS Animations: property from neutral to [green\] at (1.5) should be [rgb(0, 192, 0)\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [green\] at (1.5) should be [rgb(0, 73, 0)\]] - expected: FAIL - - [CSS Animations: property from [inherit\] to [green\] at (1) should be [rgb(0, 128, 0)\]] - expected: FAIL - - [CSS Transitions: property from [white\] to [orange\] at (1.5) should be [rgb(255, 120, 0)\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [green\] at (-0.3) should be [rgb(255, 255, 255)\]] expected: FAIL - [CSS Transitions with transition: all: property from neutral to [green\] at (1.5) should be [rgb(0, 192, 0)\]] - expected: FAIL - - [CSS Animations: property from [white\] to [orange\] at (0.6) should be [rgb(255, 201, 102)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [green\] at (0) should be [rgba(0, 0, 0, 0)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [green\] at (1) should be [rgb(0, 128, 0)\]] - expected: FAIL - - [CSS Animations: property from [transparent\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [green\] at (0.3) should be [rgba(0, 128, 0, 0.3)\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [green\] at (0) should be [rgb(238, 238, 238)\]] expected: FAIL - [CSS Animations: property from [transparent\] to [green\] at (1) should be [rgb(0, 128, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [green\] at (0.6) should be [rgba(0, 128, 0, 0.6)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [white\] to [orange\] at (-0.3) should be [white\]] - expected: FAIL - - [CSS Animations: property from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (0.5) should be [rgba(0, 153, 102, 0.63)\]] - expected: FAIL - - [CSS Transitions: property from [transparent\] to [green\] at (0.3) should be [rgba(0, 128, 0, 0.3)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [transparent\] to [green\] at (0) should be [rgba(0, 0, 0, 0)\]] - expected: FAIL - - [CSS Animations: property from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (1) should be [rgba(0, 255, 0, 0.75)\]] - expected: FAIL - - [CSS Animations: property from [white\] to [orange\] at (0) should be [white\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [green\] at (0.6) should be [rgb(95, 172, 95)\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [green\] at (0) should be [rgb(238, 238, 238)\]] - expected: FAIL - - [CSS Animations: property from neutral to [green\] at (0.3) should be [rgb(0, 38, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [green\] at (0) should be [rgba(0, 0, 0, 0)\]] - expected: FAIL - - [CSS Animations: property from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (-0.5) should be [rgba(0, 0, 255, 0.38)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [green\] at (1.5) should be [rgb(0, 73, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [green\] at (0) should be [rgb(238, 238, 238)\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [green\] at (0) should be [rgba(0, 0, 0, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [green\] at (-0.3) should be [rgb(255, 255, 255)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [green\] at (0.6) should be [rgba(0, 128, 0, 0.6)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (0.5) should be [rgba(0, 153, 102, 0.63)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [green\] at (0.3) should be [rgba(0, 128, 0, 0.3)\]] - expected: FAIL - - [CSS Transitions: property from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (0) should be [rgba(0, 0, 255, 0.5)\]] - expected: FAIL - - [CSS Animations: property from [white\] to [orange\] at (0.3) should be [rgb(255, 228, 179)\]] - expected: FAIL - - [CSS Animations: property from [white\] to [orange\] at (1) should be [orange\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [green\] at (0.6) should be [rgb(95, 172, 95)\]] expected: FAIL - [CSS Transitions with transition: all: property from [initial\] to [green\] at (-0.3) should be [rgba(0, 0, 0, 0)\]] - expected: FAIL - - [CSS Animations: property from [transparent\] to [green\] at (0.3) should be [rgba(0, 128, 0, 0.3)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [transparent\] to [green\] at (0.6) should be [rgba(0, 128, 0, 0.6)\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [green\] at (0.3) should be [rgba(0, 128, 0, 0.3)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [green\] at (0) should be [rgba(0, 0, 0, 0)\]] - expected: FAIL - - [CSS Animations: property from [transparent\] to [green\] at (0.6) should be [rgba(0, 128, 0, 0.6)\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [green\] at (-0.3) should be [rgba(0, 0, 0, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [green\] at (-0.3) should be [rgba(0, 0, 0, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [transparent\] to [green\] at (0.3) should be [rgba(0, 128, 0, 0.3)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (-0.5) should be [rgba(0, 0, 255, 0.38)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [green\] at (-0.3) should be [rgba(0, 0, 0, 0)\]] - expected: FAIL - - [CSS Animations: property from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (0) should be [rgba(0, 0, 255, 0.5)\]] - expected: FAIL - - [CSS Transitions: property from [white\] to [orange\] at (-0.3) should be [white\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (0.75) should be [rgba(0, 208, 47, 0.69)\]] - expected: FAIL - - [CSS Animations: property from neutral to [green\] at (0.6) should be [rgb(0, 77, 0)\]] - expected: FAIL - - [CSS Animations: property from [transparent\] to [green\] at (-0.3) should be [rgba(0, 0, 0, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [green\] at (0.3) should be [rgb(167, 205, 167)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [green\] at (-0.3) should be [rgb(0, 0, 0)\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [green\] at (1.5) should be [rgb(0, 73, 0)\]] expected: FAIL - [CSS Transitions: property from [unset\] to [green\] at (0.6) should be [rgba(0, 128, 0, 0.6)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [white\] to [orange\] at (1.5) should be [rgb(255, 120, 0)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [green\] at (0.3) should be [rgba(0, 128, 0, 0.3)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [green\] at (1.5) should be [rgb(0, 192, 0)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [green\] at (0.3) should be [rgb(0, 38, 0)\]] - expected: FAIL - - [CSS Transitions: property from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (0.75) should be [rgba(0, 208, 47, 0.69)\]] - expected: FAIL - - [CSS Animations: property from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (1.5) should be [rgba(0, 255, 0, 0.88)\]] - expected: FAIL - - [CSS Transitions: property from [white\] to [orange\] at (0) should be [white\]] - expected: FAIL - - [CSS Transitions: property from [transparent\] to [green\] at (-0.3) should be [rgba(0, 0, 0, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [green\] at (0) should be [rgb(0, 0, 0)\]] - expected: FAIL - - [CSS Transitions: property from [transparent\] to [green\] at (0) should be [rgba(0, 0, 0, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [white\] to [orange\] at (0.3) should be [rgb(255, 228, 179)\]] - expected: FAIL - - [CSS Transitions: property from [transparent\] to [green\] at (0.6) should be [rgba(0, 128, 0, 0.6)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [green\] at (0.6) should be [rgb(0, 77, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [white\] to [orange\] at (0) should be [white\]] - expected: FAIL - - [CSS Transitions: property from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (1.5) should be [rgba(0, 255, 0, 0.88)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [green\] at (1) should be [rgb(0, 128, 0)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [green\] at (0.6) should be [rgba(0, 128, 0, 0.6)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [green\] at (-0.3) should be [rgba(0, 0, 0, 0)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [green\] at (0.3) should be [rgba(0, 128, 0, 0.3)\]] - expected: FAIL - - [CSS Animations: property from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (0.75) should be [rgba(0, 208, 47, 0.69)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [green\] at (0) should be [rgba(0, 0, 0, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [green\] at (-0.3) should be [rgb(0, 0, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [green\] at (0.3) should be [rgba(0, 128, 0, 0.3)\]] - expected: FAIL - - [CSS Transitions: property from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (0.25) should be [rgba(0, 85, 170, 0.56)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [green\] at (0.6) should be [rgb(95, 172, 95)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [white\] to [orange\] at (0.6) should be [rgb(255, 201, 102)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]] - expected: FAIL - - [CSS Animations: property from [transparent\] to [green\] at (0) should be [rgba(0, 0, 0, 0)\]] - expected: FAIL - - [CSS Animations: property from neutral to [green\] at (1) should be [rgb(0, 128, 0)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (0) should be [rgba(0, 0, 255, 0.5)\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [green\] at (0.3) should be [rgb(167, 205, 167)\]] - expected: FAIL - - [CSS Animations: property from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (0.25) should be [rgba(0, 85, 170, 0.56)\]] - expected: FAIL - - [CSS Transitions: property from [white\] to [orange\] at (0.3) should be [rgb(255, 228, 179)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [green\] at (0.6) should be [rgba(0, 128, 0, 0.6)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [transparent\] to [green\] at (-0.3) should be [rgba(0, 0, 0, 0)\]] - expected: FAIL - - [CSS Transitions: property from [transparent\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]] - expected: FAIL - diff --git a/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/background-image-interpolation.html.ini b/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/background-image-interpolation.html.ini index 203a217ae6a..0b703780ded 100644 --- a/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/background-image-interpolation.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/background-image-interpolation.html.ini @@ -269,354 +269,3 @@ [CSS Animations: property from [url(../resources/blue-100.png)\] to [cross-fade(url(../resources/green-100.png), url(../resources/stripes-100.png), 0.5)\] at (1.5) should be [cross-fade(url(../resources/green-100.png), url(../resources/stripes-100.png), 0.5)\]] expected: FAIL - [CSS Animations: property from [none\] to [url(../resources/green-100.png)\] at (1) should be [url(../resources/green-100.png)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0) should be [linear-gradient(-45deg, red, yellow)\]] - expected: FAIL - - [CSS Animations: property from [url(../resources/blue-100.png), none\] to [url(../resources/stripes-100.png), url(../resources/green-100.png)\] at (1.5) should be [url(../resources/stripes-100.png), url(../resources/green-100.png)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [url(../resources/green-100.png)\] at (-0.3) should be [none\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [url(../resources/green-100.png)\] at (0) should be [none\]] - expected: FAIL - - [CSS Transitions: property from neutral to [url(../resources/green-100.png)\] at (0.3) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [url(../resources/blue-100.png), none\] to [url(../resources/stripes-100.png), url(../resources/green-100.png)\] at (0) should be [url(../resources/blue-100.png), none\]] - expected: FAIL - - [CSS Transitions: property from [url(../resources/blue-100.png)\] to [url(../resources/stripes-100.png), url(../resources/green-100.png)\] at (0.3) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [url(../resources/green-100.png)\] at (0) should be [none\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [url(../resources/green-100.png)\] at (0.3) should be [none\]] - expected: FAIL - - [CSS Animations: property from [inherit\] to [url(../resources/green-100.png)\] at (0.6) should be [url(../resources/green-100.png)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [url(../resources/green-100.png)\] at (0) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Transitions: property from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0) should be [linear-gradient(-45deg, red, yellow)\]] - expected: FAIL - - [CSS Transitions: property from [url(../resources/blue-100.png)\] to [linear-gradient(45deg, blue, orange)\] at (-0.3) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Animations: property from [url(../resources/stripes-100.png), url(../resources/blue-100.png)\] to [url(../resources/blue-100.png), url(../resources/stripes-100.png)\] at (1) should be [url(../resources/blue-100.png), url(../resources/stripes-100.png)\]] - expected: FAIL - - [CSS Transitions: property from [url(../resources/blue-100.png)\] to [url(../resources/stripes-100.png), url(../resources/green-100.png)\] at (-0.3) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Animations: property from [url(../resources/blue-100.png)\] to [linear-gradient(45deg, blue, orange)\] at (0.6) should be [linear-gradient(45deg, blue, orange)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [url(../resources/green-100.png)\] at (1.5) should be [url(../resources/green-100.png)\]] - expected: FAIL - - [CSS Transitions: property from [url(../resources/blue-100.png), none\] to [url(../resources/stripes-100.png), url(../resources/green-100.png)\] at (-0.3) should be [url(../resources/blue-100.png), none\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [url(../resources/green-100.png)\] at (-0.3) should be [none\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [url(../resources/green-100.png)\] at (1.5) should be [url(../resources/green-100.png)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [url(../resources/blue-100.png)\] to [url(../resources/stripes-100.png), url(../resources/green-100.png)\] at (-0.3) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [url(../resources/green-100.png)\] at (0.3) should be [none\]] - expected: FAIL - - [CSS Animations: property from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (1) should be [linear-gradient(45deg, blue, orange)\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [url(../resources/green-100.png)\] at (0) should be [none\]] - expected: FAIL - - [CSS Transitions: property from [url(../resources/blue-100.png), none\] to [url(../resources/stripes-100.png), url(../resources/green-100.png)\] at (0.3) should be [url(../resources/blue-100.png), none\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [url(../resources/stripes-100.png), url(../resources/blue-100.png)\] to [url(../resources/blue-100.png), url(../resources/stripes-100.png)\] at (0) should be [url(../resources/stripes-100.png), url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Animations: property from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0) should be [linear-gradient(-45deg, red, yellow)\]] - expected: FAIL - - [CSS Animations: property from [url(../resources/stripes-100.png), url(../resources/blue-100.png)\] to [url(../resources/blue-100.png), url(../resources/stripes-100.png)\] at (0.6) should be [url(../resources/blue-100.png), url(../resources/stripes-100.png)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [url(../resources/blue-100.png)\] to [linear-gradient(45deg, blue, orange)\] at (0) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Transitions: property from [url(../resources/stripes-100.png), url(../resources/blue-100.png)\] to [url(../resources/blue-100.png), url(../resources/stripes-100.png)\] at (-0.3) should be [url(../resources/stripes-100.png), url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [url(../resources/green-100.png)\] at (-0.3) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Transitions: property from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0.3) should be [linear-gradient(-45deg, red, yellow)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [url(../resources/green-100.png)\] at (0.3) should be [none\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [url(../resources/blue-100.png)\] to [url(../resources/stripes-100.png), url(../resources/green-100.png)\] at (0.3) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [url(../resources/green-100.png)\] at (0.3) should be [none\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [url(../resources/green-100.png)\] at (0) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [url(../resources/green-100.png)\] at (-0.3) should be [none\]] - expected: FAIL - - [CSS Animations: property from [url(../resources/blue-100.png)\] to [linear-gradient(45deg, blue, orange)\] at (1) should be [linear-gradient(45deg, blue, orange)\]] - expected: FAIL - - [CSS Animations: property from [url(../resources/blue-100.png)\] to [url(../resources/green-100.png)\] at (1.5) should be [url(../resources/green-100.png)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [url(../resources/green-100.png)\] at (0.3) should be [none\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (-0.3) should be [linear-gradient(-45deg, red, yellow)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [url(../resources/green-100.png)\] at (0) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Animations: property from [url(../resources/stripes-100.png), url(../resources/blue-100.png)\] to [url(../resources/blue-100.png), url(../resources/stripes-100.png)\] at (0) should be [url(../resources/stripes-100.png), url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Animations: property from [url(../resources/blue-100.png)\] to [url(../resources/stripes-100.png), url(../resources/green-100.png)\] at (1.5) should be [url(../resources/stripes-100.png), url(../resources/green-100.png)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [url(../resources/blue-100.png)\] to [url(../resources/green-100.png)\] at (0) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [url(../resources/green-100.png)\] at (-0.3) should be [none\]] - expected: FAIL - - [CSS Animations: property from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0.3) should be [linear-gradient(-45deg, red, yellow)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [url(../resources/blue-100.png)\] to [url(../resources/green-100.png)\] at (0.3) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Animations: property from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (-0.3) should be [linear-gradient(-45deg, red, yellow)\]] - expected: FAIL - - [CSS Animations: property from neutral to [url(../resources/green-100.png)\] at (1) should be [url(../resources/green-100.png)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [url(../resources/blue-100.png)\] to [linear-gradient(45deg, blue, orange)\] at (0.3) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Transitions: property from [url(../resources/blue-100.png)\] to [url(../resources/green-100.png)\] at (0.3) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [url(../resources/green-100.png)\] at (0) should be [none\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0.3) should be [linear-gradient(-45deg, red, yellow)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [url(../resources/blue-100.png)\] to [url(../resources/green-100.png)\] at (-0.3) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [url(../resources/stripes-100.png), url(../resources/blue-100.png)\] to [url(../resources/blue-100.png), url(../resources/stripes-100.png)\] at (0.3) should be [url(../resources/stripes-100.png), url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Animations: property from [url(../resources/blue-100.png)\] to [url(../resources/green-100.png)\] at (0.6) should be [url(../resources/green-100.png)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [url(../resources/green-100.png)\] at (1) should be [url(../resources/green-100.png)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [url(../resources/green-100.png)\] at (0) should be [none\]] - expected: FAIL - - [CSS Animations: property from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0.6) should be [linear-gradient(45deg, blue, orange)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [url(../resources/green-100.png)\] at (-0.3) should be [none\]] - expected: FAIL - - [CSS Animations: property from neutral to [url(../resources/green-100.png)\] at (0.6) should be [url(../resources/green-100.png)\]] - expected: FAIL - - [CSS Animations: property from [url(../resources/stripes-100.png), url(../resources/blue-100.png)\] to [url(../resources/blue-100.png), url(../resources/stripes-100.png)\] at (0.3) should be [url(../resources/stripes-100.png), url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [url(../resources/green-100.png)\] at (-0.3) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [url(../resources/green-100.png)\] at (1) should be [url(../resources/green-100.png)\]] - expected: FAIL - - [CSS Animations: property from [url(../resources/blue-100.png), none\] to [url(../resources/stripes-100.png), url(../resources/green-100.png)\] at (1) should be [url(../resources/stripes-100.png), url(../resources/green-100.png)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [url(../resources/green-100.png)\] at (-0.3) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [url(../resources/green-100.png)\] at (-0.3) should be [none\]] - expected: FAIL - - [CSS Animations: property from [url(../resources/blue-100.png), none\] to [url(../resources/stripes-100.png), url(../resources/green-100.png)\] at (0.6) should be [url(../resources/stripes-100.png), url(../resources/green-100.png)\]] - expected: FAIL - - [CSS Transitions: property from [url(../resources/blue-100.png)\] to [linear-gradient(45deg, blue, orange)\] at (0.3) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [url(../resources/green-100.png)\] at (0.6) should be [url(../resources/green-100.png)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [url(../resources/green-100.png)\] at (0.3) should be [none\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [url(../resources/green-100.png)\] at (0.3) should be [none\]] - expected: FAIL - - [CSS Animations: property from [url(../resources/blue-100.png), none\] to [url(../resources/stripes-100.png), url(../resources/green-100.png)\] at (0.3) should be [url(../resources/blue-100.png), none\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [url(../resources/green-100.png)\] at (0.6) should be [url(../resources/green-100.png)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [url(../resources/green-100.png)\] at (0.3) should be [none\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [url(../resources/green-100.png)\] at (0) should be [none\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [url(../resources/green-100.png)\] at (0) should be [none\]] - expected: FAIL - - [CSS Animations: property from [url(../resources/blue-100.png)\] to [url(../resources/green-100.png)\] at (1) should be [url(../resources/green-100.png)\]] - expected: FAIL - - [CSS Transitions: property from [url(../resources/blue-100.png)\] to [url(../resources/green-100.png)\] at (0) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [url(../resources/green-100.png)\] at (0) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [url(../resources/blue-100.png), none\] to [url(../resources/stripes-100.png), url(../resources/green-100.png)\] at (0.3) should be [url(../resources/blue-100.png), none\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [url(../resources/green-100.png)\] at (-0.3) should be [none\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [url(../resources/blue-100.png)\] to [linear-gradient(45deg, blue, orange)\] at (-0.3) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [url(../resources/green-100.png)\] at (0.3) should be [none\]] - expected: FAIL - - [CSS Animations: property from [url(../resources/blue-100.png)\] to [url(../resources/stripes-100.png), url(../resources/green-100.png)\] at (0.6) should be [url(../resources/stripes-100.png), url(../resources/green-100.png)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [url(../resources/green-100.png)\] at (0.3) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Animations: property from [url(../resources/blue-100.png)\] to [url(../resources/stripes-100.png), url(../resources/green-100.png)\] at (1) should be [url(../resources/stripes-100.png), url(../resources/green-100.png)\]] - expected: FAIL - - [CSS Animations: property from neutral to [url(../resources/green-100.png)\] at (1.5) should be [url(../resources/green-100.png)\]] - expected: FAIL - - [CSS Transitions: property from [url(../resources/blue-100.png)\] to [url(../resources/green-100.png)\] at (-0.3) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Animations: property from [url(../resources/blue-100.png), none\] to [url(../resources/stripes-100.png), url(../resources/green-100.png)\] at (0) should be [url(../resources/blue-100.png), none\]] - expected: FAIL - - [CSS Transitions: property from [url(../resources/blue-100.png), none\] to [url(../resources/stripes-100.png), url(../resources/green-100.png)\] at (0) should be [url(../resources/blue-100.png), none\]] - expected: FAIL - - [CSS Transitions: property from [url(../resources/blue-100.png)\] to [linear-gradient(45deg, blue, orange)\] at (0) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Animations: property from [inherit\] to [url(../resources/green-100.png)\] at (1) should be [url(../resources/green-100.png)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [url(../resources/green-100.png)\] at (-0.3) should be [none\]] - expected: FAIL - - [CSS Transitions: property from [url(../resources/blue-100.png)\] to [url(../resources/stripes-100.png), url(../resources/green-100.png)\] at (0) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [url(../resources/green-100.png)\] at (0.6) should be [url(../resources/green-100.png)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [url(../resources/green-100.png)\] at (0.3) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [url(../resources/green-100.png)\] at (0) should be [none\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [url(../resources/stripes-100.png), url(../resources/blue-100.png)\] to [url(../resources/blue-100.png), url(../resources/stripes-100.png)\] at (-0.3) should be [url(../resources/stripes-100.png), url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Animations: property from [url(../resources/blue-100.png)\] to [linear-gradient(45deg, blue, orange)\] at (1.5) should be [linear-gradient(45deg, blue, orange)\]] - expected: FAIL - - [CSS Transitions: property from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (-0.3) should be [linear-gradient(-45deg, red, yellow)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [url(../resources/blue-100.png), none\] to [url(../resources/stripes-100.png), url(../resources/green-100.png)\] at (-0.3) should be [url(../resources/blue-100.png), none\]] - expected: FAIL - - [CSS Transitions: property from [url(../resources/stripes-100.png), url(../resources/blue-100.png)\] to [url(../resources/blue-100.png), url(../resources/stripes-100.png)\] at (0.3) should be [url(../resources/stripes-100.png), url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Animations: property from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (1.5) should be [linear-gradient(45deg, blue, orange)\]] - expected: FAIL - - [CSS Animations: property from [url(../resources/blue-100.png), none\] to [url(../resources/stripes-100.png), url(../resources/green-100.png)\] at (-0.3) should be [url(../resources/blue-100.png), none\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [url(../resources/green-100.png)\] at (0.3) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Animations: property from [inherit\] to [url(../resources/green-100.png)\] at (1.5) should be [url(../resources/green-100.png)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [url(../resources/green-100.png)\] at (1.5) should be [url(../resources/green-100.png)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [url(../resources/green-100.png)\] at (-0.3) should be [none\]] - expected: FAIL - - [CSS Animations: property from [url(../resources/stripes-100.png), url(../resources/blue-100.png)\] to [url(../resources/blue-100.png), url(../resources/stripes-100.png)\] at (-0.3) should be [url(../resources/stripes-100.png), url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [url(../resources/green-100.png)\] at (-0.3) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [url(../resources/green-100.png)\] at (0) should be [none\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [url(../resources/blue-100.png)\] to [url(../resources/stripes-100.png), url(../resources/green-100.png)\] at (0) should be [url(../resources/blue-100.png)\]] - expected: FAIL - - [CSS Animations: property from [url(../resources/stripes-100.png), url(../resources/blue-100.png)\] to [url(../resources/blue-100.png), url(../resources/stripes-100.png)\] at (1.5) should be [url(../resources/blue-100.png), url(../resources/stripes-100.png)\]] - expected: FAIL - - [CSS Transitions: property from [url(../resources/stripes-100.png), url(../resources/blue-100.png)\] to [url(../resources/blue-100.png), url(../resources/stripes-100.png)\] at (0) should be [url(../resources/stripes-100.png), url(../resources/blue-100.png)\]] - expected: FAIL - diff --git a/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/background-position-x-interpolation.html.ini b/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/background-position-x-interpolation.html.ini index 1bfd3d780ac..2e6cd12a369 100644 --- a/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/background-position-x-interpolation.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/background-position-x-interpolation.html.ini @@ -83,234 +83,21 @@ [Web Animations: property from [inherit\] to [80px\] at (0.25) should be [65px\]] expected: FAIL - [CSS Transitions: property from [initial\] to [right\] at (0) should be [0%\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [80px\] at (0.75) should be [75px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [80px\] at (0.75) should be [70px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [80px\] at (-0.25) should be [30px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [80px\] at (-0.25) should be [55px\]] expected: FAIL - [CSS Animations: property from [300px, 400px\] to [500px, 600px, 700px\] at (0.25) should be [350px, 450px, 400px, 425px, 375px, 475px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [300px, 400px\] to [500px, 600px, 700px\] at (1.25) should be [550px, 650px, 800px, 525px, 675px, 775px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [80px\] at (0) should be [40px\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [right\] at (0.5) should be [50%\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [80px\] at (-0.25) should be [55px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [80px\] at (0.5) should be [70px\]] - expected: FAIL - - [CSS Transitions: property from [300px, 400px\] to [500px, 600px, 700px\] at (1) should be [500px, 600px, 700px, 500px, 600px, 700px\]] - expected: FAIL - - [CSS Animations: property from neutral to [80px\] at (-0.25) should be [30px\]] - expected: FAIL - - [CSS Animations: property from neutral to [80px\] at (0.75) should be [70px\]] - expected: FAIL - - [CSS Animations: property from [300px, 400px\] to [500px, 600px, 700px\] at (1.25) should be [550px, 650px, 800px, 525px, 675px, 775px\]] - expected: FAIL - - [CSS Transitions: property from [300px, 400px\] to [500px, 600px, 700px\] at (0) should be [300px, 400px, 300px, 400px, 300px, 400px\]] - expected: FAIL - - [CSS Animations: property from neutral to [80px\] at (1) should be [80px\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [right\] at (1) should be [100%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [80px\] at (1.25) should be [85px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [80px\] at (1.25) should be [85px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [80px\] at (-0.25) should be [55px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [80px\] at (0) should be [40px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [300px, 400px\] to [500px, 600px, 700px\] at (-0.25) should be [250px, 350px, 200px, 375px, 225px, 325px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [300px, 400px\] to [500px, 600px, 700px\] at (0.5) should be [400px, 500px, 500px, 450px, 450px, 550px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [300px, 400px\] to [500px, 600px, 700px\] at (0.75) should be [450px, 550px, 600px, 475px, 525px, 625px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [80px\] at (0.25) should be [50px\]] - expected: FAIL - - [CSS Animations: property from [300px, 400px\] to [500px, 600px, 700px\] at (-0.25) should be [250px, 350px, 200px, 375px, 225px, 325px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [80px\] at (0.75) should be [75px\]] expected: FAIL - [CSS Transitions with transition: all: property from neutral to [80px\] at (-0.25) should be [30px\]] - expected: FAIL - - [CSS Animations: property from neutral to [80px\] at (0.5) should be [60px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [300px, 400px\] to [500px, 600px, 700px\] at (1) should be [500px, 600px, 700px, 500px, 600px, 700px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [right\] at (0.5) should be [50%\]] - expected: FAIL - - [CSS Transitions: property from [300px, 400px\] to [500px, 600px, 700px\] at (-0.25) should be [250px, 350px, 200px, 375px, 225px, 325px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [80px\] at (0.75) should be [70px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [80px\] at (0.25) should be [65px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [80px\] at (1.25) should be [90px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [80px\] at (0.5) should be [70px\]] - expected: FAIL - - [CSS Animations: property from [300px, 400px\] to [500px, 600px, 700px\] at (0.5) should be [400px, 500px, 500px, 450px, 450px, 550px\]] - expected: FAIL - - [CSS Transitions: property from [300px, 400px\] to [500px, 600px, 700px\] at (1.25) should be [550px, 650px, 800px, 525px, 675px, 775px\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [right\] at (0.75) should be [75%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [80px\] at (0.5) should be [60px\]] - expected: FAIL - - [CSS Animations: property from [300px, 400px\] to [500px, 600px, 700px\] at (0) should be [300px, 400px, 300px, 400px, 300px, 400px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [80px\] at (0.25) should be [50px\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [right\] at (-0.25) should be [-25%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [80px\] at (0) should be [60px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [80px\] at (1.25) should be [85px\]] expected: FAIL - [CSS Transitions: property from [initial\] to [right\] at (0.5) should be [50%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [right\] at (1.25) should be [125%\]] - expected: FAIL - - [CSS Animations: property from [inherit\] to [80px\] at (1) should be [80px\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [right\] at (1.25) should be [125%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [80px\] at (0.75) should be [75px\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [right\] at (-0.25) should be [-25%\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [80px\] at (0.5) should be [70px\]] expected: FAIL - [CSS Animations: property from [initial\] to [right\] at (1.25) should be [125%\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [right\] at (0) should be [0%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [right\] at (0.75) should be [75%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [right\] at (-0.25) should be [-25%\]] - expected: FAIL - - [CSS Animations: property from neutral to [80px\] at (1.25) should be [90px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [80px\] at (0.5) should be [60px\]] - expected: FAIL - - [CSS Animations: property from [300px, 400px\] to [500px, 600px, 700px\] at (0.75) should be [450px, 550px, 600px, 475px, 525px, 625px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [300px, 400px\] to [500px, 600px, 700px\] at (0.25) should be [350px, 450px, 400px, 425px, 375px, 475px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [80px\] at (0) should be [60px\]] expected: FAIL - [CSS Transitions: property from [300px, 400px\] to [500px, 600px, 700px\] at (0.5) should be [400px, 500px, 500px, 450px, 450px, 550px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [80px\] at (0.25) should be [65px\]] expected: FAIL - [CSS Transitions: property from neutral to [80px\] at (1.25) should be [90px\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [right\] at (0.25) should be [25%\]] - expected: FAIL - - [CSS Animations: property from neutral to [80px\] at (0.25) should be [50px\]] - expected: FAIL - - [CSS Animations: property from [300px, 400px\] to [500px, 600px, 700px\] at (1) should be [500px, 600px, 700px, 500px, 600px, 700px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [80px\] at (0) should be [60px\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [right\] at (0.75) should be [75%\]] - expected: FAIL - - [CSS Transitions: property from [300px, 400px\] to [500px, 600px, 700px\] at (0.75) should be [450px, 550px, 600px, 475px, 525px, 625px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [right\] at (0.25) should be [25%\]] - expected: FAIL - - [CSS Transitions: property from [300px, 400px\] to [500px, 600px, 700px\] at (0.25) should be [350px, 450px, 400px, 425px, 375px, 475px\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [right\] at (0.25) should be [25%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [right\] at (0) should be [0%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [300px, 400px\] to [500px, 600px, 700px\] at (0) should be [300px, 400px, 300px, 400px, 300px, 400px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [80px\] at (0.25) should be [65px\]] - expected: FAIL - diff --git a/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/background-position-y-interpolation.html.ini b/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/background-position-y-interpolation.html.ini index 5d6cbdb5395..c6850c21256 100644 --- a/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/background-position-y-interpolation.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/background-position-y-interpolation.html.ini @@ -83,234 +83,21 @@ [Web Animations: property from neutral to [80px\] at (0.25) should be [50px\]] expected: FAIL - [CSS Transitions: property from [300px, 400px\] to [500px, 600px, 700px\] at (1) should be [500px, 600px, 700px, 500px, 600px, 700px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [80px\] at (0.25) should be [65px\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [bottom\] at (0) should be [0%\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [bottom\] at (-0.25) should be [-25%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [80px\] at (0.75) should be [70px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [80px\] at (1.25) should be [85px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [300px, 400px\] to [500px, 600px, 700px\] at (0.25) should be [350px, 450px, 400px, 425px, 375px, 475px\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [bottom\] at (1.25) should be [125%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [bottom\] at (0) should be [0%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [80px\] at (0.75) should be [75px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [80px\] at (0) should be [60px\]] - expected: FAIL - - [CSS Animations: property from neutral to [80px\] at (1) should be [80px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [80px\] at (0) should be [60px\]] expected: FAIL - [CSS Animations: property from [initial\] to [bottom\] at (0.25) should be [25%\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [80px\] at (-0.25) should be [55px\]] expected: FAIL - [CSS Animations: property from neutral to [80px\] at (1.25) should be [90px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [80px\] at (1.25) should be [90px\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [bottom\] at (0.75) should be [75%\]] - expected: FAIL - - [CSS Animations: property from neutral to [80px\] at (0.25) should be [50px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [80px\] at (1.25) should be [85px\]] expected: FAIL - [CSS Transitions: property from [300px, 400px\] to [500px, 600px, 700px\] at (0) should be [300px, 400px, 300px, 400px, 300px, 400px\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [bottom\] at (1.25) should be [125%\]] - expected: FAIL - - [CSS Animations: property from neutral to [80px\] at (0.5) should be [60px\]] - expected: FAIL - - [CSS Animations: property from [300px, 400px\] to [500px, 600px, 700px\] at (1.25) should be [550px, 650px, 800px, 525px, 675px, 775px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [80px\] at (0.5) should be [60px\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [bottom\] at (1) should be [100%\]] - expected: FAIL - - [CSS Transitions: property from neutral to [80px\] at (-0.25) should be [30px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [80px\] at (-0.25) should be [55px\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [bottom\] at (0) should be [0%\]] - expected: FAIL - - [CSS Animations: property from [300px, 400px\] to [500px, 600px, 700px\] at (0.5) should be [400px, 500px, 500px, 450px, 450px, 550px\]] - expected: FAIL - - [CSS Animations: property from neutral to [80px\] at (0.75) should be [70px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [300px, 400px\] to [500px, 600px, 700px\] at (1) should be [500px, 600px, 700px, 500px, 600px, 700px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [80px\] at (0.75) should be [75px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [80px\] at (0.5) should be [70px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [80px\] at (0.5) should be [60px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [300px, 400px\] to [500px, 600px, 700px\] at (-0.25) should be [250px, 350px, 200px, 375px, 225px, 325px\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [bottom\] at (-0.25) should be [-25%\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [bottom\] at (0.75) should be [75%\]] - expected: FAIL - - [CSS Transitions: property from neutral to [80px\] at (1.25) should be [90px\]] - expected: FAIL - - [CSS Animations: property from [300px, 400px\] to [500px, 600px, 700px\] at (0.25) should be [350px, 450px, 400px, 425px, 375px, 475px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [300px, 400px\] to [500px, 600px, 700px\] at (0.5) should be [400px, 500px, 500px, 450px, 450px, 550px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [80px\] at (0) should be [40px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [80px\] at (0.75) should be [70px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [bottom\] at (0.25) should be [25%\]] - expected: FAIL - - [CSS Animations: property from neutral to [80px\] at (-0.25) should be [30px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [80px\] at (0.5) should be [70px\]] - expected: FAIL - - [CSS Transitions: property from [300px, 400px\] to [500px, 600px, 700px\] at (0.75) should be [450px, 550px, 600px, 475px, 525px, 625px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [80px\] at (0.5) should be [70px\]] expected: FAIL - [CSS Transitions with transition: all: property from [300px, 400px\] to [500px, 600px, 700px\] at (0.75) should be [450px, 550px, 600px, 475px, 525px, 625px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [300px, 400px\] to [500px, 600px, 700px\] at (1.25) should be [550px, 650px, 800px, 525px, 675px, 775px\]] - expected: FAIL - - [CSS Transitions: property from [300px, 400px\] to [500px, 600px, 700px\] at (-0.25) should be [250px, 350px, 200px, 375px, 225px, 325px\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [bottom\] at (0.5) should be [50%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [bottom\] at (1.25) should be [125%\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [80px\] at (0.25) should be [65px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [80px\] at (0) should be [60px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [bottom\] at (0.75) should be [75%\]] - expected: FAIL - - [CSS Animations: property from [300px, 400px\] to [500px, 600px, 700px\] at (1) should be [500px, 600px, 700px, 500px, 600px, 700px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [80px\] at (0.75) should be [75px\]] expected: FAIL - [CSS Transitions: property from [300px, 400px\] to [500px, 600px, 700px\] at (0.5) should be [400px, 500px, 500px, 450px, 450px, 550px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [80px\] at (0.25) should be [50px\]] - expected: FAIL - - [CSS Transitions: property from [300px, 400px\] to [500px, 600px, 700px\] at (1.25) should be [550px, 650px, 800px, 525px, 675px, 775px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [300px, 400px\] to [500px, 600px, 700px\] at (0) should be [300px, 400px, 300px, 400px, 300px, 400px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [80px\] at (1.25) should be [85px\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [bottom\] at (0.5) should be [50%\]] - expected: FAIL - - [CSS Animations: property from [300px, 400px\] to [500px, 600px, 700px\] at (0.75) should be [450px, 550px, 600px, 475px, 525px, 625px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [80px\] at (0.25) should be [50px\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [bottom\] at (0.25) should be [25%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [bottom\] at (0.5) should be [50%\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [80px\] at (0.25) should be [65px\]] expected: FAIL - [CSS Animations: property from [300px, 400px\] to [500px, 600px, 700px\] at (0) should be [300px, 400px, 300px, 400px, 300px, 400px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [80px\] at (0) should be [40px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [bottom\] at (-0.25) should be [-25%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [80px\] at (-0.25) should be [30px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [80px\] at (-0.25) should be [55px\]] - expected: FAIL - - [CSS Animations: property from [300px, 400px\] to [500px, 600px, 700px\] at (-0.25) should be [250px, 350px, 200px, 375px, 225px, 325px\]] - expected: FAIL - - [CSS Transitions: property from [300px, 400px\] to [500px, 600px, 700px\] at (0.25) should be [350px, 450px, 400px, 425px, 375px, 475px\]] - expected: FAIL - - [CSS Animations: property from [inherit\] to [80px\] at (1) should be [80px\]] - expected: FAIL - diff --git a/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/background-size-interpolation.html.ini b/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/background-size-interpolation.html.ini index 7362eab5b74..a2fdfe14d86 100644 --- a/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/background-size-interpolation.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/background-size-interpolation.html.ini @@ -266,9 +266,6 @@ [CSS Transitions: property from [0px 0px, 80px 0px\] to [40px 40px, 80px 80px, 0px 80px\] at (0.5) should be [20px 20px, 80px 40px, 0px 40px, 60px 20px\]] expected: FAIL - [CSS Animations: property from [0px 0px, 0px 0px, 0px 0px, 0px 0px\] to [20px 20px, 40px 40px, 60px 60px, 100px 100px\] at (-0.25) should be [ 0px 0px, 0px 0px, 0px 0px, 0px 0px\]] - expected: FAIL - [CSS Transitions with transition: all: property from [0px\] to [80px\] at (1.25) should be [100px, 100px, 100px, 100px\]] expected: FAIL @@ -278,9 +275,6 @@ [CSS Transitions with transition: all: property from [0px\] to [80px\] at (0) should be [ 0px, 0px, 0px, 0px\]] expected: FAIL - [CSS Transitions with transition: all: property from [0px 0px, 0px 0px, 0px 0px, 0px 0px\] to [20px 20px, 40px 40px, 60px 60px, 100px 100px\] at (0.5) should be [10px 10px, 20px 20px, 30px 30px, 50px 50px\]] - expected: FAIL - [CSS Animations: property from [0px\] to [80px\] at (1.25) should be [100px, 100px, 100px, 100px\]] expected: FAIL @@ -293,18 +287,12 @@ [CSS Animations: property from [0px\] to [80px\] at (0.5) should be [ 40px, 40px, 40px, 40px\]] expected: FAIL - [CSS Transitions: property from [0px 0px, 0px 0px, 0px 0px, 0px 0px\] to [20px 20px, 40px 40px, 60px 60px, 100px 100px\] at (0.75) should be [15px 15px, 30px 30px, 45px 45px, 75px 75px\]] - expected: FAIL - [CSS Transitions with transition: all: property from [inherit\] to [20px 20px, 0px 0px\] at (1) should be [ 20px 20px, 0px 0px, 20px 20px, 0px 0px\]] expected: FAIL [CSS Transitions: property from [0px auto, 0px 0px, contain, cover\] to [40px auto, 40px 40px, contain, cover\] at (0.25) should be [10px auto, 10px 10px, contain, cover\]] expected: FAIL - [CSS Transitions: property from [0px 0px, 0px 0px, 0px 0px, 0px 0px\] to [20px 20px, 40px 40px, 60px 60px, 100px 100px\] at (0.5) should be [10px 10px, 20px 20px, 30px 30px, 50px 50px\]] - expected: FAIL - [CSS Transitions: property from [0px auto, 0px 0px, contain, cover\] to [40px auto, 40px 40px, contain, cover\] at (0) should be [ 0px auto, 0px 0px, contain, cover\]] expected: FAIL @@ -317,9 +305,6 @@ [CSS Transitions with transition: all: property from [0px 0px\] to [80px 80px\] at (0) should be [ 0px 0px, 0px 0px, 0px 0px, 0px 0px\]] expected: FAIL - [CSS Transitions with transition: all: property from [0px 0px, 0px 0px, 0px 0px, 0px 0px\] to [20px 20px, 40px 40px, 60px 60px, 100px 100px\] at (0) should be [ 0px 0px, 0px 0px, 0px 0px, 0px 0px\]] - expected: FAIL - [CSS Transitions with transition: all: property from [0px 0px, 80px 0px\] to [40px 40px, 80px 80px, 0px 80px\] at (-0.25) should be [ 0px 0px, 80px 0px, 0px 0px, 90px 0px\]] expected: FAIL @@ -356,9 +341,6 @@ [CSS Animations: property from [initial\] to [20px 20px, 0px 0px\] at (0.6) should be [20px 20px, 0px 0px\]] expected: FAIL - [CSS Transitions with transition: all: property from [0px 0px, 0px 0px, 0px 0px, 0px 0px\] to [20px 20px, 40px 40px, 60px 60px, 100px 100px\] at (0.75) should be [15px 15px, 30px 30px, 45px 45px, 75px 75px\]] - expected: FAIL - [CSS Animations: property from [unset\] to [20px 20px, 0px 0px\] at (0.3) should be [unset\]] expected: FAIL @@ -383,21 +365,12 @@ [CSS Transitions with transition: all: property from neutral to [20px 20px, 0px 0px\] at (0.75) should be [17.5px 17.5px, 2.5px 2.5px, 17.5px 17.5px, 2.5px 2.5px\]] expected: FAIL - [CSS Transitions with transition: all: property from [0px 0px, 0px 0px, 0px 0px, 0px 0px\] to [20px 20px, 40px 40px, 60px 60px, 100px 100px\] at (-0.25) should be [ 0px 0px, 0px 0px, 0px 0px, 0px 0px\]] - expected: FAIL - - [CSS Transitions: property from [0px 0px, 0px 0px, 0px 0px, 0px 0px\] to [20px 20px, 40px 40px, 60px 60px, 100px 100px\] at (0.25) should be [ 5px 5px, 10px 10px, 15px 15px, 25px 25px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [20px 20px, 0px 0px\] at (1) should be [ 20px 20px, 0px 0px, 20px 20px, 0px 0px\]] expected: FAIL [CSS Animations: property from [inherit\] to [20px 20px, 0px 0px\] at (0.25) should be [ 80px 80px, 75px 75px, 80px 80px, 75px 75px\]] expected: FAIL - [CSS Transitions: property from [0px 0px, 0px 0px, 0px 0px, 0px 0px\] to [20px 20px, 40px 40px, 60px 60px, 100px 100px\] at (1.25) should be [25px 25px, 50px 50px, 75px 75px, 125px 125px\]] - expected: FAIL - [CSS Transitions: property from [0px 0px, 80px 0px\] to [40px 40px, 80px 80px, 0px 80px\] at (1) should be [40px 40px, 80px 80px, 0px 80px, 40px 40px\]] expected: FAIL @@ -461,9 +434,6 @@ [CSS Transitions with transition: all: property from [0px 0px\] to [80px 80px\] at (0.75) should be [ 60px 60px, 60px 60px, 60px 60px, 60px 60px\]] expected: FAIL - [CSS Animations: property from [0px 0px, 0px 0px, 0px 0px, 0px 0px\] to [20px 20px, 40px 40px, 60px 60px, 100px 100px\] at (0.25) should be [ 5px 5px, 10px 10px, 15px 15px, 25px 25px\]] - expected: FAIL - [CSS Animations: property from [0px 0px\] to [80px 80px\] at (-0.25) should be [ 0px 0px, 0px 0px, 0px 0px, 0px 0px\]] expected: FAIL @@ -485,9 +455,6 @@ [CSS Animations: property from [0px 0px, 80px 0px\] to [40px 40px, 80px 80px, 0px 80px\] at (0.25) should be [10px 10px, 80px 20px, 0px 20px, 70px 10px\]] expected: FAIL - [CSS Animations: property from [0px 0px, 0px 0px, 0px 0px, 0px 0px\] to [20px 20px, 40px 40px, 60px 60px, 100px 100px\] at (0.75) should be [15px 15px, 30px 30px, 45px 45px, 75px 75px\]] - expected: FAIL - [CSS Transitions: property from [0px\] to [80px\] at (1.25) should be [100px, 100px, 100px, 100px\]] expected: FAIL @@ -503,9 +470,6 @@ [CSS Animations: property from [0px 0px\] to [80px 80px\] at (0) should be [ 0px 0px, 0px 0px, 0px 0px, 0px 0px\]] expected: FAIL - [CSS Animations: property from [0px 0px, 0px 0px, 0px 0px, 0px 0px\] to [20px 20px, 40px 40px, 60px 60px, 100px 100px\] at (1.25) should be [25px 25px, 50px 50px, 75px 75px, 125px 125px\]] - expected: FAIL - [CSS Animations: property from [0px\] to [80px\] at (-0.25) should be [ 0px, 0px, 0px, 0px\]] expected: FAIL @@ -551,12 +515,6 @@ [CSS Transitions with transition: all: property from [0px 0px\] to [80px 80px\] at (0.25) should be [ 20px 20px, 20px 20px, 20px 20px, 20px 20px\]] expected: FAIL - [CSS Transitions with transition: all: property from [0px 0px, 0px 0px, 0px 0px, 0px 0px\] to [20px 20px, 40px 40px, 60px 60px, 100px 100px\] at (1.25) should be [25px 25px, 50px 50px, 75px 75px, 125px 125px\]] - expected: FAIL - - [CSS Animations: property from [0px 0px, 0px 0px, 0px 0px, 0px 0px\] to [20px 20px, 40px 40px, 60px 60px, 100px 100px\] at (1) should be [20px 20px, 40px 40px, 60px 60px, 100px 100px\]] - expected: FAIL - [CSS Animations: property from [unset\] to [20px 20px, 0px 0px\] at (0.6) should be [20px 20px, 0px 0px\]] expected: FAIL @@ -581,9 +539,6 @@ [CSS Animations: property from [0px auto, 0px 0px, contain, cover\] to [40px auto, 40px 40px, contain, cover\] at (1) should be [40px auto, 40px 40px, contain, cover\]] expected: FAIL - [CSS Transitions: property from [0px 0px, 0px 0px, 0px 0px, 0px 0px\] to [20px 20px, 40px 40px, 60px 60px, 100px 100px\] at (0) should be [ 0px 0px, 0px 0px, 0px 0px, 0px 0px\]] - expected: FAIL - [CSS Transitions with transition: all: property from [0px auto, 0px 0px, contain, cover\] to [40px auto, 40px 40px, contain, cover\] at (-0.25) should be [ 0px auto, 0px 0px, contain, cover\]] expected: FAIL @@ -593,9 +548,6 @@ [CSS Animations: property from [unset\] to [20px 20px, 0px 0px\] at (0) should be [unset\]] expected: FAIL - [CSS Transitions: property from [0px 0px, 0px 0px, 0px 0px, 0px 0px\] to [20px 20px, 40px 40px, 60px 60px, 100px 100px\] at (-0.25) should be [ 0px 0px, 0px 0px, 0px 0px, 0px 0px\]] - expected: FAIL - [CSS Animations: property from [0px 0px\] to [80px 80px\] at (0.25) should be [ 20px 20px, 20px 20px, 20px 20px, 20px 20px\]] expected: FAIL @@ -635,9 +587,6 @@ [CSS Transitions: property from [inherit\] to [20px 20px, 0px 0px\] at (1.25) should be [ 0px 0px, 0px 0px, 0px 0px, 0px 0px\]] expected: FAIL - [CSS Transitions with transition: all: property from [0px 0px, 0px 0px, 0px 0px, 0px 0px\] to [20px 20px, 40px 40px, 60px 60px, 100px 100px\] at (0.25) should be [ 5px 5px, 10px 10px, 15px 15px, 25px 25px\]] - expected: FAIL - [CSS Animations: property from [0px\] to [80px\] at (1) should be [ 80px, 80px, 80px, 80px\]] expected: FAIL @@ -665,12 +614,6 @@ [CSS Animations: property from neutral to [20px 20px, 0px 0px\] at (0.5) should be [15.0px 15.0px, 5.0px 5.0px, 15.0px 15.0px, 5.0px 5.0px\]] expected: FAIL - [CSS Animations: property from [0px 0px, 0px 0px, 0px 0px, 0px 0px\] to [20px 20px, 40px 40px, 60px 60px, 100px 100px\] at (0) should be [ 0px 0px, 0px 0px, 0px 0px, 0px 0px\]] - expected: FAIL - - [CSS Animations: property from [0px 0px, 0px 0px, 0px 0px, 0px 0px\] to [20px 20px, 40px 40px, 60px 60px, 100px 100px\] at (0.5) should be [10px 10px, 20px 20px, 30px 30px, 50px 50px\]] - expected: FAIL - [CSS Animations: property from [unset\] to [20px 20px, 0px 0px\] at (1) should be [20px 20px, 0px 0px\]] expected: FAIL diff --git a/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-color-interpolation.html.ini b/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-color-interpolation.html.ini index 48dca6384aa..535b44bbe41 100644 --- a/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-color-interpolation.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-color-interpolation.html.ini @@ -161,240 +161,18 @@ [Web Animations: property from [white\] to [orange\] at (0.3) should be [rgb(255, 228, 179)\]] expected: FAIL - [CSS Animations: property from [white\] to [orange\] at (1.5) should be [rgb(255, 120, 0)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [orange\] at (0.3) should be [rgb(77, 50, 0)\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [orange\] at (0.3) should be [rgb(255, 228, 179)\]] expected: FAIL - [CSS Animations: property from [unset\] to [orange\] at (1) should be [rgb(255, 165, 0)\]] - expected: FAIL - - [CSS Animations: property from neutral to [orange\] at (0.6) should be [rgb(153, 99, 56)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [orange\] at (0) should be [rgb(0, 0, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [orange\] at (-0.3) should be [rgb(0, 0, 181)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [orange\] at (0.3) should be [rgb(255, 228, 179)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [orange\] at (1.5) should be [rgb(255, 248, 0)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [orange\] at (0) should be [rgb(0, 0, 0)\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [orange\] at (0.6) should be [rgb(153, 99, 0)\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [orange\] at (1.5) should be [rgb(255, 120, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [orange\] at (0.6) should be [rgb(153, 99, 0)\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [orange\] at (0.3) should be [rgb(255, 228, 179)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [orange\] at (0.6) should be [rgb(153, 99, 0)\]] - expected: FAIL - - [CSS Transitions: property from [white\] to [orange\] at (0.6) should be [rgb(255, 201, 102)\]] - expected: FAIL - - [CSS Animations: property from neutral to [orange\] at (1.5) should be [rgb(255, 248, 0)\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [orange\] at (0.6) should be [rgb(255, 201, 102)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [orange\] at (1.5) should be [rgb(255, 248, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [white\] to [orange\] at (0.6) should be [rgb(255, 201, 102)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [orange\] at (0.3) should be [rgb(77, 50, 97)\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [orange\] at (1.5) should be [rgb(255, 120, 0)\]] expected: FAIL - [CSS Animations: property from [white\] to [orange\] at (0.3) should be [rgb(255, 228, 179)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [orange\] at (-0.3) should be [rgb(0, 0, 0)\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [orange\] at (0) should be [rgb(0, 0, 0)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [orange\] at (-0.3) should be [rgb(0, 0, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [orange\] at (1.5) should be [rgb(255, 248, 0)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [orange\] at (1.5) should be [rgb(255, 248, 0)\]] - expected: FAIL - - [CSS Transitions: property from [white\] to [orange\] at (-0.3) should be [white\]] - expected: FAIL - - [CSS Transitions: property from [white\] to [orange\] at (0) should be [white\]] - expected: FAIL - - [CSS Animations: property from [white\] to [orange\] at (-0.3) should be [white\]] - expected: FAIL - - [CSS Transitions: property from neutral to [orange\] at (-0.3) should be [rgb(0, 0, 181)\]] - expected: FAIL - - [CSS Animations: property from neutral to [orange\] at (0.3) should be [rgb(77, 50, 97)\]] - expected: FAIL - - [CSS Transitions: property from [white\] to [orange\] at (0.3) should be [rgb(255, 228, 179)\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [orange\] at (0) should be [rgb(255, 255, 255)\]] expected: FAIL [CSS Animations: property from [inherit\] to [orange\] at (0.6) should be [rgb(255, 201, 102)\]] expected: FAIL - [CSS Transitions with transition: all: property from [unset\] to [orange\] at (0.3) should be [rgb(77, 50, 0)\]] - expected: FAIL - - [CSS Animations: property from [white\] to [orange\] at (0) should be [white\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [orange\] at (0.3) should be [rgb(77, 50, 0)\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [orange\] at (-0.3) should be [rgb(255, 255, 255)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [orange\] at (0.6) should be [rgb(153, 99, 0)\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [orange\] at (-0.3) should be [rgb(255, 255, 255)\]] expected: FAIL - [CSS Animations: property from [unset\] to [orange\] at (0.6) should be [rgb(153, 99, 0)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [orange\] at (-0.3) should be [rgb(0, 0, 0)\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [orange\] at (-0.3) should be [rgb(0, 0, 0)\]] - expected: FAIL - - [CSS Animations: property from neutral to [orange\] at (1) should be [rgb(255, 165, 0)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [orange\] at (0.3) should be [rgb(77, 50, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [white\] to [orange\] at (0.3) should be [rgb(255, 228, 179)\]] - expected: FAIL - - [CSS Animations: property from [white\] to [orange\] at (0.6) should be [rgb(255, 201, 102)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [orange\] at (1.5) should be [rgb(255, 120, 0)\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [orange\] at (1.5) should be [rgb(255, 248, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [white\] to [orange\] at (1.5) should be [rgb(255, 120, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [orange\] at (0) should be [rgb(0, 0, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [orange\] at (0.3) should be [rgb(77, 50, 97)\]] - expected: FAIL - - [CSS Animations: property from [inherit\] to [orange\] at (1) should be [rgb(255, 165, 0)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [orange\] at (0.6) should be [rgb(153, 99, 56)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [orange\] at (1.5) should be [rgb(255, 248, 0)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [orange\] at (1) should be [rgb(255, 165, 0)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [orange\] at (0.6) should be [rgb(153, 99, 0)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [orange\] at (0) should be [rgb(0, 0, 0)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [orange\] at (1.5) should be [rgb(255, 248, 0)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [orange\] at (-0.3) should be [rgb(0, 0, 0)\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [orange\] at (0) should be [rgb(255, 255, 255)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [orange\] at (0) should be [rgb(0, 0, 139)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [orange\] at (0) should be [rgb(0, 0, 0)\]] - expected: FAIL - - [CSS Animations: property from [white\] to [orange\] at (1) should be [orange\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [orange\] at (0) should be [rgb(0, 0, 139)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [orange\] at (0.6) should be [rgb(153, 99, 56)\]] - expected: FAIL - - [CSS Transitions: property from [white\] to [orange\] at (1.5) should be [rgb(255, 120, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [orange\] at (1.5) should be [rgb(255, 248, 0)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [orange\] at (0.3) should be [rgb(77, 50, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [orange\] at (0) should be [rgb(255, 255, 255)\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [orange\] at (0.3) should be [rgb(77, 50, 0)\]] - expected: FAIL - - [CSS Animations: property from neutral to [orange\] at (-0.3) should be [rgb(0, 0, 181)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [orange\] at (-0.3) should be [rgb(255, 255, 255)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [orange\] at (-0.3) should be [rgb(0, 0, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [white\] to [orange\] at (-0.3) should be [white\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [white\] to [orange\] at (0) should be [white\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [orange\] at (0.6) should be [rgb(255, 201, 102)\]] - expected: FAIL - diff --git a/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-image-outset-interpolation.html.ini b/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-image-outset-interpolation.html.ini index f83f3a20586..93ecad77d08 100644 --- a/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-image-outset-interpolation.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-image-outset-interpolation.html.ini @@ -125,336 +125,18 @@ [Web Animations: property from [0\] to [1\] at (-0.3) should be [0\]] expected: FAIL - [CSS Transitions: property from neutral to [2px\] at (1.5) should be [2.5px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [2px\] at (0) should be [1px\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [2\] at (0) should be [0\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0\] to [1\] at (0.3) should be [0.3\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0\] to [1\] at (-0.3) should be [0\]] - expected: FAIL - - [CSS Animations: property from [1 2 3px 4px\] to [101 102 103px 104px\] at (-0.3) should be [0 0 0px 0px\]] - expected: FAIL - - [CSS Transitions: property from [1 2 3px 4px\] to [101 102 103px 104px\] at (0.3) should be [31 32 33px 34px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [2\] at (1.5) should be [3\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [2px\] at (0.3) should be [7.6px\]] - expected: FAIL - - [CSS Animations: property from [0\] to [1\] at (0) should be [0\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [2\] at (-0.3) should be [0\]] - expected: FAIL - - [CSS Animations: property from [0\] to [1\] at (0.3) should be [0.3\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [2\] at (0.3) should be [0.6\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [2\] at (-0.3) should be [0\]] - expected: FAIL - - [CSS Animations: property from [0\] to [1\] at (0.6) should be [0.6\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [2\] at (0) should be [0\]] - expected: FAIL - - [CSS Transitions: property from [0px\] to [5px\] at (1.5) should be [7.5px\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [2\] at (0.6) should be [1.2\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0\] to [1\] at (0) should be [0\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [2px\] at (0.6) should be [5.2px\]] expected: FAIL - [CSS Transitions with transition: all: property from [0px\] to [5px\] at (-0.3) should be [0px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [2px\] at (0.3) should be [1.3px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [2\] at (0.6) should be [1.2\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [2\] at (1.5) should be [3\]] - expected: FAIL - - [CSS Animations: property from [0px\] to [5px\] at (0.3) should be [1.5px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [2\] at (0.3) should be [0.6\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [2\] at (0.3) should be [0.6\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [1 2 3px 4px\] to [101 102 103px 104px\] at (0) should be [1 2 3px 4px\]] - expected: FAIL - - [CSS Animations: property from [0\] to [1\] at (-0.3) should be [0\]] - expected: FAIL - - [CSS Animations: property from [0px\] to [5px\] at (-0.3) should be [0px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [1 2 3px 4px\] to [101 102 103px 104px\] at (0.3) should be [31 32 33px 34px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [2px\] at (-0.3) should be [12.4px\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [2\] at (0.3) should be [0.6\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [2\] at (1) should be [2\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [2\] at (0.6) should be [1.2\]] - expected: FAIL - - [CSS Animations: property from neutral to [2px\] at (0.6) should be [1.6px\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [2\] at (1.5) should be [3\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [2\] at (1.5) should be [3\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [2px\] at (0.3) should be [7.6px\]] - expected: FAIL - - [CSS Transitions: property from [0px\] to [5px\] at (0) should be [0px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [2px\] at (1.5) should be [2.5px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [2px\] at (0) should be [1px\]] - expected: FAIL - - [CSS Animations: property from neutral to [2px\] at (0.3) should be [1.3px\]] - expected: FAIL - - [CSS Animations: property from [0px\] to [5px\] at (0.6) should be [3px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [2px\] at (0.3) should be [7.6px\]] expected: FAIL - [CSS Transitions with transition: all: property from [1 2 3px 4px\] to [101 102 103px 104px\] at (0.6) should be [61 62 63px 64px\]] - expected: FAIL - - [CSS Animations: property from neutral to [2px\] at (1) should be [2px\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [2\] at (1.5) should be [3\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [2px\] at (1.5) should be [0px\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [2\] at (1) should be [2\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0px\] to [5px\] at (1.5) should be [7.5px\]] - expected: FAIL - - [CSS Transitions: property from [1 2 3px 4px\] to [101 102 103px 104px\] at (0.6) should be [61 62 63px 64px\]] - expected: FAIL - - [CSS Transitions: property from [0px\] to [5px\] at (-0.3) should be [0px\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [2\] at (0) should be [0\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [2px\] at (1.5) should be [0px\]] expected: FAIL - [CSS Transitions with transition: all: property from [inherit\] to [2px\] at (0) should be [10px\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [2\] at (0.3) should be [0.6\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0px\] to [5px\] at (0.6) should be [3px\]] - expected: FAIL - - [CSS Transitions: property from [1 2 3px 4px\] to [101 102 103px 104px\] at (-0.3) should be [0 0 0px 0px\]] - expected: FAIL - - [CSS Animations: property from [0\] to [1\] at (1) should be [1\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [1 2 3px 4px\] to [101 102 103px 104px\] at (-0.3) should be [0 0 0px 0px\]] - expected: FAIL - - [CSS Transitions: property from [1 2 3px 4px\] to [101 102 103px 104px\] at (0) should be [1 2 3px 4px\]] - expected: FAIL - - [CSS Transitions: property from [0px\] to [5px\] at (0.3) should be [1.5px\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [2\] at (0.6) should be [1.2\]] - expected: FAIL - - [CSS Transitions: property from [0\] to [1\] at (1.5) should be [1.5\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0px\] to [5px\] at (0.3) should be [1.5px\]] - expected: FAIL - - [CSS Transitions: property from [0px\] to [5px\] at (0.6) should be [3px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [2px\] at (0.3) should be [1.3px\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [2\] at (-0.3) should be [0\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [2px\] at (-0.3) should be [12.4px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [2px\] at (0) should be [10px\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [2\] at (0) should be [0\]] - expected: FAIL - - [CSS Animations: property from [inherit\] to [2px\] at (1) should be [2px\]] - expected: FAIL - - [CSS Transitions: property from [0\] to [1\] at (-0.3) should be [0\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [2\] at (0.6) should be [1.2\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [2px\] at (-0.3) should be [0.7px\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [2\] at (-0.3) should be [0\]] - expected: FAIL - - [CSS Transitions: property from neutral to [2px\] at (-0.3) should be [0.7px\]] - expected: FAIL - - [CSS Animations: property from neutral to [2px\] at (1.5) should be [2.5px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [2px\] at (1.5) should be [0px\]] - expected: FAIL - - [CSS Animations: property from [1 2 3px 4px\] to [101 102 103px 104px\] at (0.6) should be [61 62 63px 64px\]] - expected: FAIL - - [CSS Animations: property from neutral to [2px\] at (-0.3) should be [0.7px\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [2\] at (1.5) should be [3\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [2\] at (0) should be [0\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [2px\] at (-0.3) should be [12.4px\]] expected: FAIL - [CSS Transitions: property from [0\] to [1\] at (0.3) should be [0.3\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [2\] at (0) should be [0\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [1 2 3px 4px\] to [101 102 103px 104px\] at (1.5) should be [151 152 153px 154px\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [2\] at (0.6) should be [1.2\]] - expected: FAIL - - [CSS Transitions: property from [1 2 3px 4px\] to [101 102 103px 104px\] at (1.5) should be [151 152 153px 154px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [2px\] at (0) should be [10px\]] expected: FAIL - [CSS Animations: property from [1 2 3px 4px\] to [101 102 103px 104px\] at (0) should be [1 2 3px 4px\]] - expected: FAIL - - [CSS Transitions: property from [0\] to [1\] at (0.6) should be [0.6\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0\] to [1\] at (0.6) should be [0.6\]] - expected: FAIL - - [CSS Animations: property from [1 2 3px 4px\] to [101 102 103px 104px\] at (1.5) should be [151 152 153px 154px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0px\] to [5px\] at (0) should be [0px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0\] to [1\] at (1.5) should be [1.5\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [2\] at (-0.3) should be [0\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [2px\] at (0.6) should be [1.6px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [2\] at (-0.3) should be [0\]] - expected: FAIL - - [CSS Animations: property from [0px\] to [5px\] at (1.5) should be [7.5px\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [2\] at (0.3) should be [0.6\]] - expected: FAIL - - [CSS Animations: property from [1 2 3px 4px\] to [101 102 103px 104px\] at (1) should be [101 102 103px 104px\]] - expected: FAIL - - [CSS Transitions: property from [0\] to [1\] at (0) should be [0\]] - expected: FAIL - - [CSS Animations: property from [1 2 3px 4px\] to [101 102 103px 104px\] at (0.3) should be [31 32 33px 34px\]] - expected: FAIL - - [CSS Animations: property from [0px\] to [5px\] at (0) should be [0px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [2px\] at (0.6) should be [1.6px\]] - expected: FAIL - - [CSS Animations: property from [0px\] to [5px\] at (1) should be [5px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [2px\] at (0.6) should be [5.2px\]] - expected: FAIL - - [CSS Animations: property from [0\] to [1\] at (1.5) should be [1.5\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [2px\] at (0.6) should be [5.2px\]] - expected: FAIL - diff --git a/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-image-slice-interpolation.html.ini b/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-image-slice-interpolation.html.ini index f1bb9fca427..582f3207fb4 100644 --- a/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-image-slice-interpolation.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-image-slice-interpolation.html.ini @@ -275,285 +275,72 @@ [CSS Animations: property from [50%\] to [100\] at (1.5) should be [100\]] expected: FAIL - [CSS Animations: property from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (-0.5) should be [0% 0 0% 10 fill\]] - expected: FAIL - [CSS Animations: property from [0% fill\] to [50%\] at (1) should be [50%\]] expected: FAIL - [CSS Transitions with transition: all: property from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (-0.5) should be [0% 0 0% 10 fill\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [10%\] at (-0.3) should be [127%\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [10%\] at (1) should be [10%\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [10%\] at (0.6) should be [46%\]] - expected: FAIL - - [CSS Animations: property from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (0.6) should be [24 34 44 54 fill\]] - expected: FAIL - - [CSS Animations: property from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (0.3) should be [12 22 32 42 fill\]] - expected: FAIL - - [CSS Animations: property from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (1) should be [40% 50% 60% 70%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [10%\] at (-0.3) should be [62%\]] - expected: FAIL - - [CSS Transitions: property from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (0) should be [0% 10% 20% 30%\]] - expected: FAIL - [CSS Animations: property from [0% 10 20 30 fill\] to [40 50 60% 70\] at (0.5) should be [40 50 60% 70\]] expected: FAIL - [CSS Transitions: property from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (-0.5) should be [0% 0 0% 10 fill\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [10%\] at (-0.3) should be [127%\]] - expected: FAIL - - [CSS Animations: property from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (0) should be [0% 10% 20% 30%\]] - expected: FAIL - - [CSS Animations: property from neutral to [10%\] at (0.3) should be [17%\]] - expected: FAIL - [CSS Animations: property from [50% fill\] to [100 fill\] at (0.6) should be [100 fill\]] expected: FAIL - [CSS Animations: property from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (0) should be [0 10 20 30 fill\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (0.5) should be [20% 30 40% 50 fill\]] - expected: FAIL - [CSS Animations: property from [50%\] to [100\] at (0.3) should be [50%\]] expected: FAIL [CSS Animations: property from [50%\] to [100\] at (0.5) should be [100\]] expected: FAIL - [CSS Transitions with transition: all: property from [initial\] to [10%\] at (0) should be [100%\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [10%\] at (0.3) should be [73%\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [10%\] at (0.5) should be [55%\]] - expected: FAIL - [CSS Animations: property from [0% 10 20% 30 fill\] to [40% 50 60% 70\] at (0.6) should be [40% 50 60% 70\]] expected: FAIL [CSS Animations: property from [0% 10 20 30 fill\] to [40 50 60% 70\] at (1.5) should be [40 50 60% 70\]] expected: FAIL - [CSS Animations: property from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (1) should be [40 50 60 70 fill\]] - expected: FAIL - [CSS Animations: property from [0% 10 20% 30 fill\] to [40% 50 60% 70\] at (-0.3) should be [0% 10 20% 30 fill\]] expected: FAIL - [CSS Transitions: property from [unset\] to [10%\] at (-0.3) should be [127%\]] - expected: FAIL - - [CSS Transitions: property from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (0.3) should be [12% 22% 32% 42%\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [10%\] at (0.5) should be [55%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [10%\] at (1.5) should be [0%\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [10%\] at (0.6) should be [46%\]] - expected: FAIL - [CSS Animations: property from [0% fill\] to [50%\] at (1.5) should be [50%\]] expected: FAIL - [CSS Transitions with transition: all: property from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (0.3) should be [12% 22 32% 42 fill\]] - expected: FAIL - - [CSS Animations: property from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (0.5) should be [20 30 40 50 fill\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [10%\] at (0.5) should be [30%\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [10%\] at (0.6) should be [26%\]] expected: FAIL - [CSS Transitions: property from neutral to [10%\] at (0.3) should be [17%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [10%\] at (0.5) should be [15%\]] - expected: FAIL - [CSS Animations: property from [0% fill\] to [50%\] at (0.3) should be [0% fill\]] expected: FAIL - [CSS Transitions with transition: all: property from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (0) should be [0% 10% 20% 30%\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [10%\] at (0) should be [50%\]] expected: FAIL - [CSS Animations: property from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (0.5) should be [20% 30 40% 50 fill\]] - expected: FAIL - [CSS Animations: property from [50% fill\] to [100 fill\] at (1.5) should be [100 fill\]] expected: FAIL - [CSS Transitions: property from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (0) should be [0 10 20 30 fill\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0%\] to [50%\] at (-0.3) should be [0%\]] - expected: FAIL - - [CSS Transitions: property from neutral to [10%\] at (0.5) should be [15%\]] - expected: FAIL - - [CSS Animations: property from neutral to [10%\] at (0.5) should be [15%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [10%\] at (1.5) should be [0%\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [10%\] at (0) should be [100%\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [10%\] at (0.5) should be [55%\]] - expected: FAIL - [CSS Animations: property from [0% fill\] to [50%\] at (-0.3) should be [0% fill\]] expected: FAIL - [CSS Animations: property from [initial\] to [10%\] at (0) should be [100%\]] - expected: FAIL - - [CSS Animations: property from [0%\] to [50%\] at (0.5) should be [25%\]] - expected: FAIL - [CSS Animations: property from [0% 10 20% 30 fill\] to [40% 50 60% 70\] at (1.5) should be [40% 50 60% 70\]] expected: FAIL [CSS Animations: property from [50%\] to [100\] at (0.6) should be [100\]] expected: FAIL - [CSS Transitions: property from [inherit\] to [10%\] at (-0.3) should be [62%\]] - expected: FAIL - - [CSS Animations: property from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (-0.5) should be [0% 0% 0% 10%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [10%\] at (0.3) should be [73%\]] - expected: FAIL - - [CSS Transitions: property from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (0.5) should be [20% 30% 40% 50%\]] - expected: FAIL - - [CSS Transitions: property from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (0.6) should be [24 34 44 54 fill\]] - expected: FAIL - [CSS Animations: property from [0% 10 20% 30 fill\] to [40% 50 60% 70\] at (1) should be [40% 50 60% 70\]] expected: FAIL [CSS Animations: property from [inherit\] to [10%\] at (0.5) should be [30%\]] expected: FAIL - [CSS Transitions: property from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (0.6) should be [24% 34 44% 54 fill\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (1.5) should be [60 70 80 90 fill\]] - expected: FAIL - - [CSS Transitions: property from [0%\] to [50%\] at (0) should be [0%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0%\] to [50%\] at (0.3) should be [15%\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [10%\] at (-0.3) should be [62%\]] expected: FAIL - [CSS Animations: property from [0%\] to [50%\] at (1.5) should be [75%\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [10%\] at (1.5) should be [0%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (1.5) should be [60% 70% 80% 90%\]] - expected: FAIL - - [CSS Animations: property from neutral to [10%\] at (1.5) should be [5%\]] - expected: FAIL - [CSS Animations: property from [0% 10 20 30 fill\] to [40 50 60% 70\] at (0.3) should be [0% 10 20 30 fill\]] expected: FAIL [CSS Animations: property from [50% fill\] to [100 fill\] at (-0.3) should be [50% fill\]] expected: FAIL - [CSS Transitions: property from [initial\] to [10%\] at (0) should be [100%\]] - expected: FAIL - [CSS Animations: property from [0% 10 20 30 fill\] to [40 50 60% 70\] at (1) should be [40 50 60% 70\]] expected: FAIL - [CSS Transitions with transition: all: property from [initial\] to [10%\] at (1.5) should be [0%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [10%\] at (0) should be [50%\]] - expected: FAIL - - [CSS Animations: property from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (1.5) should be [60 70 80 90 fill\]] - expected: FAIL - - [CSS Transitions: property from [0%\] to [50%\] at (1.5) should be [75%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [10%\] at (-0.3) should be [127%\]] - expected: FAIL - - [CSS Transitions: property from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (0) should be [0% 10 20% 30 fill\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [10%\] at (0.3) should be [38%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (0.6) should be [24% 34 44% 54 fill\]] - expected: FAIL - - [CSS Animations: property from [0%\] to [50%\] at (-0.3) should be [0%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0%\] to [50%\] at (1.5) should be [75%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (0) should be [0% 10 20% 30 fill\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [10%\] at (0) should be [20%\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [10%\] at (0.3) should be [38%\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [10%\] at (0.6) should be [26%\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [10%\] at (0.5) should be [55%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [10%\] at (0.6) should be [46%\]] - expected: FAIL - [CSS Animations: property from [50% fill\] to [100 fill\] at (0.3) should be [50% fill\]] expected: FAIL @@ -563,21 +350,12 @@ [CSS Animations: property from [50% fill\] to [100 fill\] at (0) should be [50% fill\]] expected: FAIL - [CSS Transitions: property from [initial\] to [10%\] at (1.5) should be [0%\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [10%\] at (0.3) should be [38%\]] expected: FAIL [CSS Animations: property from [0% 10 20% 30 fill\] to [40% 50 60% 70\] at (0) should be [0% 10 20% 30 fill\]] expected: FAIL - [CSS Transitions: property from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (0.3) should be [12% 22 32% 42 fill\]] - expected: FAIL - - [CSS Transitions: property from [0%\] to [50%\] at (0.6) should be [30%\]] - expected: FAIL - [CSS Animations: property from [50% fill\] to [100 fill\] at (1) should be [100 fill\]] expected: FAIL @@ -587,246 +365,33 @@ [CSS Animations: property from [0% 10 20 30 fill\] to [40 50 60% 70\] at (0.6) should be [40 50 60% 70\]] expected: FAIL - [CSS Transitions with transition: all: property from neutral to [10%\] at (0.6) should be [14%\]] - expected: FAIL - - [CSS Animations: property from [0%\] to [50%\] at (0.6) should be [30%\]] - expected: FAIL - - [CSS Animations: property from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (0.6) should be [24% 34 44% 54 fill\]] - expected: FAIL - - [CSS Animations: property from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (0.5) should be [20% 30% 40% 50%\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [10%\] at (-0.3) should be [127%\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [10%\] at (0) should be [50%\]] - expected: FAIL - - [CSS Animations: property from neutral to [10%\] at (1) should be [10%\]] - expected: FAIL - - [CSS Transitions: property from [0%\] to [50%\] at (0.3) should be [15%\]] - expected: FAIL - - [CSS Animations: property from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (1.5) should be [60% 70% 80% 90%\]] - expected: FAIL - - [CSS Transitions: property from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (0.5) should be [20 30 40 50 fill\]] - expected: FAIL - - [CSS Transitions: property from neutral to [10%\] at (0.6) should be [14%\]] - expected: FAIL - [CSS Animations: property from [0% 10 20 30 fill\] to [40 50 60% 70\] at (0) should be [0% 10 20 30 fill\]] expected: FAIL [CSS Animations: property from [inherit\] to [10%\] at (1.5) should be [0%\]] expected: FAIL - [CSS Transitions with transition: all: property from neutral to [10%\] at (0.3) should be [17%\]] - expected: FAIL - - [CSS Animations: property from neutral to [10%\] at (0.6) should be [14%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (0.5) should be [20% 30% 40% 50%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (0.6) should be [24% 34% 44% 54%\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [10%\] at (0.6) should be [46%\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [10%\] at (0.3) should be [73%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [10%\] at (-0.3) should be [23%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (0.3) should be [12 22 32 42 fill\]] - expected: FAIL - - [CSS Animations: property from neutral to [10%\] at (-0.3) should be [23%\]] - expected: FAIL - - [CSS Animations: property from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (0.3) should be [12% 22 32% 42 fill\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [10%\] at (0.3) should be [73%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (-0.5) should be [0 0 0 10 fill\]] - expected: FAIL - - [CSS Transitions: property from neutral to [10%\] at (1.5) should be [5%\]] - expected: FAIL - [CSS Animations: property from [0% fill\] to [50%\] at (0) should be [0% fill\]] expected: FAIL - [CSS Transitions: property from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (0.3) should be [12 22 32 42 fill\]] - expected: FAIL - - [CSS Animations: property from [0%\] to [50%\] at (0) should be [0%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (0) should be [0 10 20 30 fill\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [10%\] at (0.5) should be [55%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0%\] to [50%\] at (0) should be [0%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (0.5) should be [20 30 40 50 fill\]] - expected: FAIL - - [CSS Transitions: property from [0%\] to [50%\] at (-0.3) should be [0%\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [10%\] at (0.6) should be [46%\]] - expected: FAIL - - [CSS Transitions: property from [0%\] to [50%\] at (0.5) should be [25%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (-0.5) should be [0% 0% 0% 10%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (0.3) should be [12% 22% 32% 42%\]] - expected: FAIL - - [CSS Transitions: property from neutral to [10%\] at (-0.3) should be [23%\]] - expected: FAIL - [CSS Animations: property from [0% 10 20% 30 fill\] to [40% 50 60% 70\] at (0.5) should be [40% 50 60% 70\]] expected: FAIL - [CSS Transitions with transition: all: property from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (1.5) should be [60% 70 80% 90 fill\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [10%\] at (0.3) should be [73%\]] - expected: FAIL - [CSS Animations: property from [0% 10 20% 30 fill\] to [40% 50 60% 70\] at (0.3) should be [0% 10 20% 30 fill\]] expected: FAIL - [CSS Animations: property from [unset\] to [10%\] at (0) should be [100%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [10%\] at (0.5) should be [30%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [10%\] at (0.6) should be [26%\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [10%\] at (1) should be [10%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [10%\] at (1.5) should be [5%\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [10%\] at (1.5) should be [0%\]] - expected: FAIL - - [CSS Transitions: property from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (-0.5) should be [0% 0% 0% 10%\]] - expected: FAIL - - [CSS Transitions: property from neutral to [10%\] at (0) should be [20%\]] - expected: FAIL - - [CSS Animations: property from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (0.6) should be [24% 34% 44% 54%\]] - expected: FAIL - - [CSS Transitions: property from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (1.5) should be [60% 70 80% 90 fill\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [10%\] at (-0.3) should be [127%\]] - expected: FAIL - - [CSS Transitions: property from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (1.5) should be [60 70 80 90 fill\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [10%\] at (0.6) should be [46%\]] - expected: FAIL - - [CSS Transitions: property from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (1.5) should be [60% 70% 80% 90%\]] - expected: FAIL - [CSS Animations: property from [50% fill\] to [100 fill\] at (0.5) should be [100 fill\]] expected: FAIL [CSS Animations: property from [0% fill\] to [50%\] at (0.5) should be [50%\]] expected: FAIL - [CSS Animations: property from [0%\] to [50%\] at (1) should be [50%\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [10%\] at (1.5) should be [0%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [10%\] at (0.5) should be [55%\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [10%\] at (0.3) should be [73%\]] - expected: FAIL - - [CSS Animations: property from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (0.3) should be [12% 22% 32% 42%\]] - expected: FAIL - - [CSS Transitions: property from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (0.6) should be [24% 34% 44% 54%\]] - expected: FAIL - [CSS Animations: property from [50%\] to [100\] at (-0.3) should be [50%\]] expected: FAIL [CSS Animations: property from [50%\] to [100\] at (0) should be [50%\]] expected: FAIL - [CSS Transitions with transition: all: property from [0%\] to [50%\] at (0.5) should be [25%\]] - expected: FAIL - - [CSS Animations: property from [inherit\] to [10%\] at (1) should be [10%\]] - expected: FAIL - - [CSS Animations: property from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (1) should be [40% 50 60% 70 fill\]] - expected: FAIL - - [CSS Animations: property from [0%\] to [50%\] at (0.3) should be [15%\]] - expected: FAIL - - [CSS Transitions: property from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (0.5) should be [20% 30 40% 50 fill\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [10%\] at (0) should be [100%\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [10%\] at (1.5) should be [0%\]] - expected: FAIL - - [CSS Animations: property from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (-0.5) should be [0 0 0 10 fill\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (0.6) should be [24 34 44 54 fill\]] - expected: FAIL - - [CSS Animations: property from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (0) should be [0% 10 20% 30 fill\]] - expected: FAIL - - [CSS Animations: property from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (1.5) should be [60% 70 80% 90 fill\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0%\] to [50%\] at (0.6) should be [30%\]] - expected: FAIL - - [CSS Transitions: property from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (-0.5) should be [0 0 0 10 fill\]] - expected: FAIL - [CSS Animations: property from [0% fill\] to [50%\] at (0.6) should be [50%\]] expected: FAIL diff --git a/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-image-source-interpolation.html.ini b/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-image-source-interpolation.html.ini index fccc9141016..2a62e2376ec 100644 --- a/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-image-source-interpolation.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-image-source-interpolation.html.ini @@ -146,150 +146,138 @@ [Web Animations: property from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (-0.3) should be [linear-gradient(-45deg, red, yellow)\]] expected: FAIL - [CSS Animations: property from [url(../support/aqua_color.png)\] to [linear-gradient(45deg, blue, orange)\] at (0.6) should be [linear-gradient(45deg, blue, orange)\]] - expected: FAIL - - [CSS Animations: property from [url(../support/aqua_color.png)\] to [url(../support/orange_color.png)\] at (0.6) should be [url(../support/orange_color.png)\]] - expected: FAIL - - [CSS Animations: property from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0.5) should be [linear-gradient(45deg, blue, orange)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [url(../support/orange_color.png)\] at (0.5) should be [url(../support/orange_color.png)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [url(../support/orange_color.png)\] at (0.6) should be [url(../support/orange_color.png)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [url(../support/orange_color.png)\] at (1) should be [url(../support/orange_color.png)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [url(../support/orange_color.png)\] at (0) should be [initial\]] - expected: FAIL - - [CSS Animations: property from [none\] to [url(../support/orange_color.png)\] at (1) should be [url(../support/orange_color.png)\]] - expected: FAIL - - [CSS Animations: property from [url(../support/aqua_color.png)\] to [linear-gradient(45deg, blue, orange)\] at (1) should be [linear-gradient(45deg, blue, orange)\]] - expected: FAIL - - [CSS Animations: property from [inherit\] to [url(../support/orange_color.png)\] at (1.5) should be [url(../support/orange_color.png)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [url(../support/orange_color.png)\] at (0) should be [unset\]] - expected: FAIL - - [CSS Animations: property from [url(../support/aqua_color.png)\] to [url(../support/orange_color.png)\] at (-0.3) should be [url(../support/aqua_color.png)\]] - expected: FAIL - - [CSS Animations: property from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (1) should be [linear-gradient(45deg, blue, orange)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [url(../support/orange_color.png)\] at (0.3) should be [unset\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [url(../support/orange_color.png)\] at (-0.3) should be [inherit\]] expected: FAIL - [CSS Animations: property from [url(../support/aqua_color.png)\] to [linear-gradient(45deg, blue, orange)\] at (0.5) should be [linear-gradient(45deg, blue, orange)\]] - expected: FAIL - - [CSS Animations: property from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (-0.3) should be [linear-gradient(-45deg, red, yellow)\]] - expected: FAIL - - [CSS Animations: property from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (1.5) should be [linear-gradient(45deg, blue, orange)\]] - expected: FAIL - - [CSS Animations: property from [url(../support/aqua_color.png)\] to [url(../support/orange_color.png)\] at (0.5) should be [url(../support/orange_color.png)\]] - expected: FAIL - - [CSS Animations: property from [url(../support/aqua_color.png)\] to [url(../support/orange_color.png)\] at (0) should be [url(../support/aqua_color.png)\]] - expected: FAIL - - [CSS Animations: property from [url(../support/aqua_color.png)\] to [linear-gradient(45deg, blue, orange)\] at (-0.3) should be [url(../support/aqua_color.png)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [url(../support/orange_color.png)\] at (0.5) should be [url(../support/orange_color.png)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [url(../support/orange_color.png)\] at (1) should be [url(../support/orange_color.png)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [url(../support/orange_color.png)\] at (1.5) should be [url(../support/orange_color.png)\]] - expected: FAIL - - [CSS Animations: property from [url(../support/aqua_color.png)\] to [linear-gradient(45deg, blue, orange)\] at (1.5) should be [linear-gradient(45deg, blue, orange)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [url(../support/orange_color.png)\] at (1.5) should be [url(../support/orange_color.png)\]] - expected: FAIL - - [CSS Animations: property from [inherit\] to [url(../support/orange_color.png)\] at (0.5) should be [url(../support/orange_color.png)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [url(../support/orange_color.png)\] at (0.6) should be [url(../support/orange_color.png)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [url(../support/orange_color.png)\] at (-0.3) should be [initial\]] - expected: FAIL - - [CSS Animations: property from [inherit\] to [url(../support/orange_color.png)\] at (1) should be [url(../support/orange_color.png)\]] - expected: FAIL - - [CSS Animations: property from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0) should be [linear-gradient(-45deg, red, yellow)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [url(../support/orange_color.png)\] at (0.3) should be [none\]] - expected: FAIL - - [CSS Animations: property from [url(../support/aqua_color.png)\] to [linear-gradient(45deg, blue, orange)\] at (0.3) should be [url(../support/aqua_color.png)\]] - expected: FAIL - - [CSS Animations: property from [url(../support/aqua_color.png)\] to [url(../support/orange_color.png)\] at (1) should be [url(../support/orange_color.png)\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [url(../support/orange_color.png)\] at (0) should be [inherit\]] expected: FAIL - [CSS Animations: property from [unset\] to [url(../support/orange_color.png)\] at (1.5) should be [url(../support/orange_color.png)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [url(../support/orange_color.png)\] at (0.6) should be [url(../support/orange_color.png)\]] - expected: FAIL - - [CSS Animations: property from [url(../support/aqua_color.png)\] to [url(../support/orange_color.png)\] at (1.5) should be [url(../support/orange_color.png)\]] - expected: FAIL - - [CSS Animations: property from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0.3) should be [linear-gradient(-45deg, red, yellow)\]] - expected: FAIL - - [CSS Animations: property from [url(../support/aqua_color.png)\] to [linear-gradient(45deg, blue, orange)\] at (0) should be [url(../support/aqua_color.png)\]] - expected: FAIL - - [CSS Animations: property from [url(../support/aqua_color.png)\] to [url(../support/orange_color.png)\] at (0.3) should be [url(../support/aqua_color.png)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [url(../support/orange_color.png)\] at (0.5) should be [url(../support/orange_color.png)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [url(../support/orange_color.png)\] at (0) should be [none\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [url(../support/orange_color.png)\] at (0.3) should be [initial\]] - expected: FAIL - - [CSS Animations: property from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0.6) should be [linear-gradient(45deg, blue, orange)\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [url(../support/orange_color.png)\] at (0.3) should be [inherit\]] expected: FAIL - [CSS Animations: property from [none\] to [url(../support/orange_color.png)\] at (-0.3) should be [none\]] + [CSS Transitions: property from [inherit\] to [url(../support/orange_color.png)\] at (-0.3) should be [url(../support/orange_color.png)\]] expected: FAIL - [CSS Animations: property from [unset\] to [url(../support/orange_color.png)\] at (-0.3) should be [unset\]] + [CSS Transitions with transition: all: property from [inherit\] to [url(../support/orange_color.png)\] at (0.3) should be [url(../support/orange_color.png)\]] expected: FAIL - [CSS Animations: property from [inherit\] to [url(../support/orange_color.png)\] at (0.6) should be [url(../support/orange_color.png)\]] + [CSS Transitions: property from [unset\] to [url(../support/orange_color.png)\] at (0.3) should be [url(../support/orange_color.png)\]] + expected: FAIL + + [CSS Transitions: property from [initial\] to [url(../support/orange_color.png)\] at (-0.3) should be [url(../support/orange_color.png)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [url(../support/aqua_color.png)\] to [linear-gradient(45deg, blue, orange)\] at (0) should be [linear-gradient(45deg, blue, orange)\]] + expected: FAIL + + [CSS Transitions: property from [url(../support/aqua_color.png)\] to [url(../support/orange_color.png)\] at (0.3) should be [url(../support/orange_color.png)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [url(../support/aqua_color.png)\] to [url(../support/orange_color.png)\] at (0.3) should be [url(../support/orange_color.png)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [initial\] to [url(../support/orange_color.png)\] at (0.3) should be [url(../support/orange_color.png)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [initial\] to [url(../support/orange_color.png)\] at (-0.3) should be [url(../support/orange_color.png)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [unset\] to [url(../support/orange_color.png)\] at (-0.3) should be [url(../support/orange_color.png)\]] + expected: FAIL + + [CSS Transitions: property from [unset\] to [url(../support/orange_color.png)\] at (-0.3) should be [url(../support/orange_color.png)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [inherit\] to [url(../support/orange_color.png)\] at (-0.3) should be [url(../support/orange_color.png)\]] + expected: FAIL + + [CSS Transitions: property from [none\] to [url(../support/orange_color.png)\] at (0.3) should be [url(../support/orange_color.png)\]] + expected: FAIL + + [CSS Transitions: property from [initial\] to [url(../support/orange_color.png)\] at (0) should be [url(../support/orange_color.png)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [unset\] to [url(../support/orange_color.png)\] at (0) should be [url(../support/orange_color.png)\]] + expected: FAIL + + [CSS Transitions: property from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (-0.3) should be [linear-gradient(45deg, blue, orange)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [url(../support/aqua_color.png)\] to [linear-gradient(45deg, blue, orange)\] at (-0.3) should be [linear-gradient(45deg, blue, orange)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [url(../support/aqua_color.png)\] to [url(../support/orange_color.png)\] at (-0.3) should be [url(../support/orange_color.png)\]] + expected: FAIL + + [CSS Transitions: property from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0.3) should be [linear-gradient(45deg, blue, orange)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0.3) should be [linear-gradient(45deg, blue, orange)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [none\] to [url(../support/orange_color.png)\] at (-0.3) should be [url(../support/orange_color.png)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [initial\] to [url(../support/orange_color.png)\] at (0) should be [url(../support/orange_color.png)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [unset\] to [url(../support/orange_color.png)\] at (0.3) should be [url(../support/orange_color.png)\]] + expected: FAIL + + [CSS Transitions: property from [inherit\] to [url(../support/orange_color.png)\] at (0) should be [url(../support/orange_color.png)\]] + expected: FAIL + + [CSS Transitions: property from [url(../support/aqua_color.png)\] to [url(../support/orange_color.png)\] at (0) should be [url(../support/orange_color.png)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [url(../support/aqua_color.png)\] to [url(../support/orange_color.png)\] at (0) should be [url(../support/orange_color.png)\]] + expected: FAIL + + [CSS Transitions: property from [initial\] to [url(../support/orange_color.png)\] at (0.3) should be [url(../support/orange_color.png)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [inherit\] to [url(../support/orange_color.png)\] at (0) should be [url(../support/orange_color.png)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [url(../support/aqua_color.png)\] to [linear-gradient(45deg, blue, orange)\] at (0.3) should be [linear-gradient(45deg, blue, orange)\]] + expected: FAIL + + [CSS Transitions: property from [url(../support/aqua_color.png)\] to [url(../support/orange_color.png)\] at (-0.3) should be [url(../support/orange_color.png)\]] + expected: FAIL + + [CSS Transitions: property from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0) should be [linear-gradient(45deg, blue, orange)\]] + expected: FAIL + + [CSS Transitions: property from [url(../support/aqua_color.png)\] to [linear-gradient(45deg, blue, orange)\] at (-0.3) should be [linear-gradient(45deg, blue, orange)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0) should be [linear-gradient(45deg, blue, orange)\]] + expected: FAIL + + [CSS Transitions: property from [url(../support/aqua_color.png)\] to [linear-gradient(45deg, blue, orange)\] at (0) should be [linear-gradient(45deg, blue, orange)\]] + expected: FAIL + + [CSS Transitions: property from [url(../support/aqua_color.png)\] to [linear-gradient(45deg, blue, orange)\] at (0.3) should be [linear-gradient(45deg, blue, orange)\]] + expected: FAIL + + [CSS Transitions: property from [none\] to [url(../support/orange_color.png)\] at (-0.3) should be [url(../support/orange_color.png)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [none\] to [url(../support/orange_color.png)\] at (0.3) should be [url(../support/orange_color.png)\]] + expected: FAIL + + [CSS Transitions: property from [inherit\] to [url(../support/orange_color.png)\] at (0.3) should be [url(../support/orange_color.png)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [none\] to [url(../support/orange_color.png)\] at (0) should be [url(../support/orange_color.png)\]] + expected: FAIL + + [CSS Transitions: property from [unset\] to [url(../support/orange_color.png)\] at (0) should be [url(../support/orange_color.png)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (-0.3) should be [linear-gradient(45deg, blue, orange)\]] + expected: FAIL + + [CSS Transitions: property from [none\] to [url(../support/orange_color.png)\] at (0) should be [url(../support/orange_color.png)\]] expected: FAIL diff --git a/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-image-width-interpolation.html.ini b/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-image-width-interpolation.html.ini index ecb86f7ceec..ccef1e8ac27 100644 --- a/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-image-width-interpolation.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-image-width-interpolation.html.ini @@ -344,624 +344,150 @@ [Web Animations: property from [10px\] to [20\] at (0.3) should be [10px\]] expected: FAIL - [CSS Transitions: property from [0\] to [20\] at (1.5) should be [30\]] - expected: FAIL - - [CSS Transitions: property from neutral to [20px\] at (0.3) should be [13px\]] - expected: FAIL - [CSS Animations: property from [10px auto auto 20\] to [110px auto 120 auto\] at (1.5) should be [110px auto 120 auto\]] expected: FAIL [CSS Animations: property from [10\] to [20%\] at (1) should be [20%\]] expected: FAIL - [CSS Animations: property from [0\] to [20\] at (-0.3) should be [0\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px\] at (0.6) should be [16px\]] - expected: FAIL - - [CSS Animations: property from [0px\] to [20px\] at (0.3) should be [6px\]] - expected: FAIL - [CSS Animations: property from [10px\] to [20\] at (0.6) should be [20\]] expected: FAIL - [CSS Animations: property from neutral to [20px\] at (0.3) should be [13px\]] - expected: FAIL - [CSS Animations: property from [10px auto auto 20\] to [110px auto 120 auto\] at (0.5) should be [110px auto 120 auto\]] expected: FAIL [CSS Animations: property from [10%\] to [20\] at (0.5) should be [20\]] expected: FAIL - [CSS Transitions with transition: all: property from [10px auto auto 20\] to [110px auto auto 120\] at (0) should be [ 10px auto auto 20\]] - expected: FAIL - - [CSS Transitions: property from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (0) should be [10px 20% 30 40px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0px\] to [20px\] at (0.3) should be [6px\]] - expected: FAIL - - [CSS Transitions: property from [0px\] to [20px\] at (0.6) should be [12px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0%\] to [20%\] at (-0.3) should be [0%\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px\] at (0.6) should be [52px\]] - expected: FAIL - - [CSS Animations: property from [10px\] to [20%\] at (0.6) should be [calc(4px + 12%)\]] - expected: FAIL - - [CSS Transitions: property from [10px\] to [20%\] at (-0.3) should be [calc(13px + -6%)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10%\] to [20px\] at (0.3) should be [calc(7% + 6px)\]] - expected: FAIL - - [CSS Animations: property from neutral to [20px\] at (-0.3) should be [7px\]] - expected: FAIL - - [CSS Transitions: property from [0px\] to [20px\] at (5) should be [100px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10px auto auto 20\] to [110px auto auto 120\] at (0.6) should be [ 70px auto auto 80\]] - expected: FAIL - [CSS Animations: property from [10px auto auto 20\] to [110px auto 120 auto\] at (0) should be [10px auto auto 20\]] expected: FAIL - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (0.3) should be [76px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [20px\] at (5) should be [0px\]] expected: FAIL [CSS Animations: property from [10px\] to [20\] at (1.5) should be [20\]] expected: FAIL - [CSS Transitions: property from [0%\] to [20%\] at (1.5) should be [30%\]] - expected: FAIL - - [CSS Animations: property from [10%\] to [20px\] at (1.5) should be [calc(-5% + 30px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0%\] to [20%\] at (0) should be [0%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (1.5) should be [0px\]] - expected: FAIL - - [CSS Animations: property from [0px\] to [20px\] at (0) should be [0px\]] - expected: FAIL - [CSS Animations: property from [10\] to [20%\] at (1.5) should be [20%\]] expected: FAIL - [CSS Transitions: property from [inherit\] to [20px\] at (1.5) should be [0px\]] - expected: FAIL - - [CSS Animations: property from [0%\] to [20%\] at (1) should be [20%\]] - expected: FAIL - - [CSS Animations: property from [0px\] to [20px\] at (1) should be [20px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0%\] to [20%\] at (0.6) should be [12%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0%\] to [20%\] at (1.5) should be [30%\]] - expected: FAIL - - [CSS Animations: property from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (0.3) should be [31px 35% 39 43px\]] - expected: FAIL - - [CSS Transitions: property from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (10) should be [710px 520% 330 140px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10px\] to [20%\] at (1.5) should be [calc(-5px + 30%)\]] - expected: FAIL - [CSS Animations: property from [initial\] to [20px\] at (0.5) should be [20px\]] expected: FAIL - [CSS Transitions: property from [10px auto auto 20\] to [110px auto auto 120\] at (0) should be [ 10px auto auto 20\]] - expected: FAIL - - [CSS Transitions: property from [10%\] to [20px\] at (0.3) should be [calc(7% + 6px)\]] - expected: FAIL - - [CSS Animations: property from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (1) should be [80px 70% 60 50px\]] - expected: FAIL - - [CSS Transitions: property from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (1.5) should be [115px 95% 75 55px\]] - expected: FAIL - - [CSS Animations: property from neutral to [20px\] at (1.5) should be [25px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10%\] to [20px\] at (1.5) should be [calc(-5% + 30px)\]] - expected: FAIL - - [CSS Animations: property from [0px\] to [20px\] at (0.6) should be [12px\]] - expected: FAIL - - [CSS Transitions: property from [10px\] to [20%\] at (1.5) should be [calc(-5px + 30%)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0\] to [20\] at (1.5) should be [30\]] - expected: FAIL - - [CSS Animations: property from [10px auto auto 20\] to [110px auto auto 120\] at (-0.3) should be [ 0px auto auto 0\]] - expected: FAIL - - [CSS Animations: property from neutral to [20px\] at (10) should be [110px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0px\] to [20px\] at (10) should be [200px\]] - expected: FAIL - [CSS Animations: property from [10%\] to [20\] at (1.5) should be [20\]] expected: FAIL - [CSS Transitions: property from [10px auto auto 20\] to [110px auto auto 120\] at (1.5) should be [160px auto auto 170\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px\] at (10) should be [110px\]] - expected: FAIL - [CSS Animations: property from [10\] to [20px\] at (-0.3) should be [10\]] expected: FAIL - [CSS Animations: property from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (-0.3) should be [0px 5% 21 37px\]] - expected: FAIL - [CSS Animations: property from [10\] to [20%\] at (0.3) should be [10\]] expected: FAIL - [CSS Animations: property from [0%\] to [20%\] at (0.3) should be [6%\]] - expected: FAIL - - [CSS Transitions: property from [0%\] to [20%\] at (0.6) should be [12%\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [20px\] at (10) should be [0px\]] expected: FAIL [CSS Animations: property from [unset\] to [20px\] at (-0.3) should be [unset\]] expected: FAIL - [CSS Transitions: property from [0\] to [20\] at (0) should be [0\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10%\] to [20px\] at (-0.3) should be [calc(13% + -6px)\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px\] at (10) should be [0px\]] - expected: FAIL - - [CSS Transitions: property from [0px\] to [20px\] at (10) should be [200px\]] - expected: FAIL - [CSS Animations: property from [10\] to [20%\] at (-0.3) should be [10\]] expected: FAIL - [CSS Animations: property from [0px\] to [20px\] at (10) should be [200px\]] - expected: FAIL - [CSS Animations: property from [10px auto auto 20\] to [110px auto 120 auto\] at (0.3) should be [10px auto auto 20\]] expected: FAIL - [CSS Transitions with transition: all: property from [0\] to [20\] at (0.6) should be [12\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [20px\] at (0.6) should be [52px\]] expected: FAIL [CSS Animations: property from [inherit\] to [20px\] at (0) should be [100px\]] expected: FAIL - [CSS Transitions with transition: all: property from [10%\] to [20px\] at (1) should be [calc(0% + 20px)\]] - expected: FAIL - - [CSS Transitions: property from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (0.6) should be [52px 50% 48 46px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [20px\] at (1.5) should be [0px\]] expected: FAIL [CSS Animations: property from [unset\] to [20px\] at (0.6) should be [20px\]] expected: FAIL - [CSS Transitions: property from [10%\] to [20px\] at (0.6) should be [calc(4% + 12px)\]] - expected: FAIL - [CSS Animations: property from [10%\] to [20\] at (-0.3) should be [10%\]] expected: FAIL - [CSS Animations: property from [0%\] to [20%\] at (-0.3) should be [0%\]] - expected: FAIL - [CSS Animations: property from [10\] to [20px\] at (1) should be [20px\]] expected: FAIL - [CSS Transitions: property from [0\] to [20\] at (10) should be [200\]] - expected: FAIL - - [CSS Animations: property from [10px\] to [20%\] at (1.5) should be [calc(-5px + 30%)\]] - expected: FAIL - - [CSS Animations: property from [0\] to [20\] at (5) should be [100\]] - expected: FAIL - [CSS Animations: property from [unset\] to [20px\] at (0) should be [unset\]] expected: FAIL [CSS Animations: property from [initial\] to [20px\] at (0.3) should be [initial\]] expected: FAIL - [CSS Transitions with transition: all: property from [0\] to [20\] at (-0.3) should be [0\]] - expected: FAIL - - [CSS Transitions: property from [0\] to [20\] at (-0.3) should be [0\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px\] at (0.3) should be [76px\]] - expected: FAIL - - [CSS Animations: property from [0\] to [20\] at (1.5) should be [30\]] - expected: FAIL - [CSS Animations: property from [10px auto auto 20\] to [110px auto 120 auto\] at (1) should be [110px auto 120 auto\]] expected: FAIL - [CSS Transitions with transition: all: property from [10%\] to [20px\] at (0.6) should be [calc(4% + 12px)\]] - expected: FAIL - - [CSS Transitions: property from [10px\] to [20%\] at (0.6) should be [calc(4px + 12%)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10px\] to [20%\] at (-0.3) should be [calc(13px + -6%)\]] - expected: FAIL - [CSS Animations: property from [10\] to [20px\] at (0.5) should be [20px\]] expected: FAIL - [CSS Animations: property from [10%\] to [20px\] at (0.6) should be [calc(4% + 12px)\]] - expected: FAIL - [CSS Animations: property from [10\] to [20px\] at (1.5) should be [20px\]] expected: FAIL [CSS Animations: property from [10\] to [20%\] at (0.5) should be [20%\]] expected: FAIL - [CSS Transitions with transition: all: property from neutral to [20px\] at (1.5) should be [25px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10px\] to [20%\] at (0.3) should be [calc(7px + 6%)\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [20px\] at (0.3) should be [76px\]] expected: FAIL - [CSS Animations: property from [0px\] to [20px\] at (5) should be [100px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0px\] to [20px\] at (0.6) should be [12px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [20px\] at (-0.3) should be [124px\]] expected: FAIL - [CSS Animations: property from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (0.6) should be [52px 50% 48 46px\]] - expected: FAIL - [CSS Animations: property from [unset\] to [20px\] at (0.3) should be [unset\]] expected: FAIL [CSS Animations: property from [initial\] to [20px\] at (-0.3) should be [initial\]] expected: FAIL - [CSS Transitions: property from [10%\] to [20px\] at (1.5) should be [calc(-5% + 30px)\]] - expected: FAIL - - [CSS Animations: property from [0\] to [20\] at (0.6) should be [12\]] - expected: FAIL - - [CSS Animations: property from [10%\] to [20px\] at (-0.3) should be [calc(13% + -6px)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [20px\] at (1.5) should be [25px\]] - expected: FAIL - [CSS Animations: property from [10px\] to [20\] at (1) should be [20\]] expected: FAIL [CSS Animations: property from [initial\] to [20px\] at (1.5) should be [20px\]] expected: FAIL - [CSS Transitions with transition: all: property from [10px\] to [20%\] at (0.6) should be [calc(4px + 12%)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (10) should be [0px\]] - expected: FAIL - [CSS Animations: property from [10\] to [20%\] at (0) should be [10\]] expected: FAIL - [CSS Animations: property from [0%\] to [20%\] at (1.5) should be [30%\]] - expected: FAIL - - [CSS Animations: property from [0%\] to [20%\] at (10) should be [200%\]] - expected: FAIL - - [CSS Animations: property from [10px\] to [20%\] at (1) should be [20%\]] - expected: FAIL - - [CSS Animations: property from [0px\] to [20px\] at (-0.3) should be [0px\]] - expected: FAIL - [CSS Animations: property from [10%\] to [20\] at (1) should be [20\]] expected: FAIL - [CSS Transitions: property from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (5) should be [360px 270% 180 90px\]] - expected: FAIL - - [CSS Animations: property from [10%\] to [20px\] at (0) should be [10%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0%\] to [20%\] at (5) should be [100%\]] - expected: FAIL - [CSS Animations: property from [10px auto auto 20\] to [110px auto 120 auto\] at (0.6) should be [110px auto 120 auto\]] expected: FAIL - [CSS Animations: property from [0\] to [20\] at (0) should be [0\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0\] to [20\] at (5) should be [100\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px\] at (0) should be [100px\]] - expected: FAIL - - [CSS Transitions: property from [0%\] to [20%\] at (10) should be [200%\]] - expected: FAIL - [CSS Animations: property from [10\] to [20px\] at (0.6) should be [20px\]] expected: FAIL - [CSS Animations: property from [0\] to [20\] at (10) should be [200\]] - expected: FAIL - - [CSS Animations: property from [10px auto auto 20\] to [110px auto auto 120\] at (0.6) should be [ 70px auto auto 80\]] - expected: FAIL - - [CSS Transitions: property from [10px\] to [20%\] at (0) should be [calc(0% + 10px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (-0.3) should be [124px\]] - expected: FAIL - [CSS Animations: property from [unset\] to [20px\] at (0.5) should be [20px\]] expected: FAIL - [CSS Animations: property from [10%\] to [20px\] at (0.3) should be [calc(7% + 6px)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [20px\] at (5) should be [60px\]] - expected: FAIL - - [CSS Animations: property from [10px auto auto 20\] to [110px auto auto 120\] at (0.3) should be [ 40px auto auto 50\]] - expected: FAIL - - [CSS Animations: property from [0px\] to [20px\] at (1.5) should be [30px\]] - expected: FAIL - - [CSS Animations: property from [0%\] to [20%\] at (0) should be [0%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10px\] to [20%\] at (0) should be [calc(0% + 10px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0\] to [20\] at (10) should be [200\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px\] at (5) should be [60px\]] - expected: FAIL - - [CSS Animations: property from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (5) should be [360px 270% 180 90px\]] - expected: FAIL - - [CSS Animations: property from [10px\] to [20%\] at (-0.3) should be [calc(13px + -6%)\]] - expected: FAIL - [CSS Animations: property from [initial\] to [20px\] at (0) should be [initial\]] expected: FAIL - [CSS Animations: property from [inherit\] to [20px\] at (1) should be [20px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (0.3) should be [31px 35% 39 43px\]] - expected: FAIL - - [CSS Transitions: property from [0%\] to [20%\] at (0.3) should be [6%\]] - expected: FAIL - [CSS Animations: property from [10%\] to [20\] at (0.6) should be [20\]] expected: FAIL [CSS Animations: property from [initial\] to [20px\] at (0.6) should be [20px\]] expected: FAIL - [CSS Transitions: property from [10px auto auto 20\] to [110px auto auto 120\] at (0.3) should be [ 40px auto auto 50\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0\] to [20\] at (0.3) should be [6\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0px\] to [20px\] at (-0.3) should be [0px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (0.6) should be [52px 50% 48 46px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0px\] to [20px\] at (0) should be [0px\]] - expected: FAIL - - [CSS Animations: property from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (1.5) should be [115px 95% 75 55px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [20px\] at (10) should be [110px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px\] at (5) should be [0px\]] - expected: FAIL - [CSS Animations: property from [unset\] to [20px\] at (1.5) should be [20px\]] expected: FAIL - [CSS Transitions with transition: all: property from [10%\] to [20px\] at (0) should be [10%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px\] at (0.3) should be [13px\]] - expected: FAIL - - [CSS Transitions: property from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (-0.3) should be [0px 5% 21 37px\]] - expected: FAIL - - [CSS Transitions: property from [0%\] to [20%\] at (0) should be [0%\]] - expected: FAIL - - [CSS Transitions: property from [0%\] to [20%\] at (-0.3) should be [0%\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px\] at (-0.3) should be [124px\]] - expected: FAIL - - [CSS Animations: property from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (10) should be [710px 520% 330 140px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0\] to [20\] at (0) should be [0\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (0) should be [100px\]] - expected: FAIL - - [CSS Transitions: property from [0\] to [20\] at (0.6) should be [12\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px\] at (-0.3) should be [7px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px\] at (0) should be [10px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (1.5) should be [115px 95% 75 55px\]] - expected: FAIL - - [CSS Animations: property from [10px auto auto 20\] to [110px auto auto 120\] at (0) should be [ 10px auto auto 20\]] - expected: FAIL - - [CSS Transitions: property from [10%\] to [20px\] at (1) should be [calc(0% + 20px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0px\] to [20px\] at (1.5) should be [30px\]] - expected: FAIL - - [CSS Transitions: property from [10%\] to [20px\] at (-0.3) should be [calc(13% + -6px)\]] - expected: FAIL - - [CSS Animations: property from [10px auto auto 20\] to [110px auto auto 120\] at (1) should be [110px auto auto 120\]] - expected: FAIL - [CSS Animations: property from [initial\] to [20px\] at (1) should be [20px\]] expected: FAIL - [CSS Transitions: property from [0px\] to [20px\] at (1.5) should be [30px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10px auto auto 20\] to [110px auto auto 120\] at (0.3) should be [ 40px auto auto 50\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10px auto auto 20\] to [110px auto auto 120\] at (1.5) should be [160px auto auto 170\]] - expected: FAIL - - [CSS Animations: property from [0%\] to [20%\] at (0.6) should be [12%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10px auto auto 20\] to [110px auto auto 120\] at (-0.3) should be [ 0px auto auto 0\]] - expected: FAIL - - [CSS Transitions: property from neutral to [20px\] at (-0.3) should be [7px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [20px\] at (0) should be [10px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0%\] to [20%\] at (0.3) should be [6%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (-0.3) should be [0px 5% 21 37px\]] - expected: FAIL - - [CSS Animations: property from [10px\] to [20%\] at (0) should be [calc(0% + 10px)\]] - expected: FAIL - [CSS Animations: property from [10px auto auto 20\] to [110px auto 120 auto\] at (-0.3) should be [10px auto auto 20\]] expected: FAIL - [CSS Transitions: property from [0px\] to [20px\] at (0) should be [0px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (5) should be [360px 270% 180 90px\]] - expected: FAIL - - [CSS Animations: property from [0%\] to [20%\] at (5) should be [100%\]] - expected: FAIL - - [CSS Animations: property from neutral to [20px\] at (5) should be [60px\]] - expected: FAIL - - [CSS Transitions: property from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (0.3) should be [31px 35% 39 43px\]] - expected: FAIL - - [CSS Animations: property from [10%\] to [20px\] at (1) should be [calc(0% + 20px)\]] - expected: FAIL - - [CSS Transitions: property from [0\] to [20\] at (0.3) should be [6\]] - expected: FAIL - [CSS Animations: property from [unset\] to [20px\] at (1) should be [20px\]] expected: FAIL - [CSS Transitions with transition: all: property from [0px\] to [20px\] at (5) should be [100px\]] - expected: FAIL - - [CSS Animations: property from neutral to [20px\] at (1) should be [20px\]] - expected: FAIL - [CSS Animations: property from [10%\] to [20\] at (0) should be [10%\]] expected: FAIL - [CSS Transitions: property from [10px\] to [20%\] at (0.3) should be [calc(7px + 6%)\]] - expected: FAIL - - [CSS Transitions: property from [0%\] to [20%\] at (5) should be [100%\]] - expected: FAIL - - [CSS Transitions: property from [0\] to [20\] at (5) should be [100\]] - expected: FAIL - - [CSS Animations: property from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (0) should be [10px 20% 30 40px\]] - expected: FAIL - [CSS Animations: property from [10\] to [20px\] at (0.3) should be [10\]] expected: FAIL @@ -971,57 +497,9 @@ [CSS Animations: property from [10px\] to [20\] at (0.5) should be [20\]] expected: FAIL - [CSS Transitions: property from [0px\] to [20px\] at (0.3) should be [6px\]] - expected: FAIL - - [CSS Transitions: property from [10px auto auto 20\] to [110px auto auto 120\] at (0.6) should be [ 70px auto auto 80\]] - expected: FAIL - - [CSS Animations: property from neutral to [20px\] at (0.6) should be [16px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (0) should be [10px 20% 30 40px\]] - expected: FAIL - - [CSS Animations: property from [0\] to [20\] at (1) should be [20\]] - expected: FAIL - - [CSS Transitions: property from [0px\] to [20px\] at (-0.3) should be [0px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (5) should be [0px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [20px\] at (0.6) should be [16px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (0.6) should be [52px\]] - expected: FAIL - - [CSS Transitions: property from [10px auto auto 20\] to [110px auto auto 120\] at (-0.3) should be [ 0px auto auto 0\]] - expected: FAIL - - [CSS Animations: property from [10px\] to [20%\] at (0.3) should be [calc(7px + 6%)\]] - expected: FAIL - - [CSS Animations: property from [10px auto auto 20\] to [110px auto auto 120\] at (1.5) should be [160px auto auto 170\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (10) should be [710px 520% 330 140px\]] - expected: FAIL - - [CSS Transitions: property from [10%\] to [20px\] at (0) should be [10%\]] - expected: FAIL - [CSS Animations: property from [10\] to [20px\] at (0) should be [10\]] expected: FAIL - [CSS Transitions with transition: all: property from [0%\] to [20%\] at (10) should be [200%\]] - expected: FAIL - [CSS Animations: property from [10%\] to [20\] at (0.3) should be [10%\]] expected: FAIL - [CSS Animations: property from [0\] to [20\] at (0.3) should be [6\]] - expected: FAIL - diff --git a/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-radius-interpolation.html.ini b/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-radius-interpolation.html.ini index 6ec5debdce9..9d7dbf12b6b 100644 --- a/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-radius-interpolation.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-radius-interpolation.html.ini @@ -200,342 +200,18 @@ [Web Animations: property from [unset\] to [20px\] at (0.3) should be [6px\]] expected: FAIL - [CSS Animations: property from [10px\] to [100%\] at (1) should be [100%\]] - expected: FAIL - - [CSS Animations: property from neutral to [20px\] at (0.6) should be [16px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10px\] to [50px\] at (0.6) should be [34px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10px\] to [50px\] at (-0.3) should be [0px\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [20px\] at (1.5) should be [30px\]] - expected: FAIL - - [CSS Animations: property from [10px\] to [50px\] at (0.3) should be [22px\]] - expected: FAIL - - [CSS Animations: property from neutral to [20px\] at (1.5) should be [25px\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [20px\] at (1) should be [20px\]] - expected: FAIL - - [CSS Animations: property from [10px\] to [50px\] at (0.6) should be [34px\]] - expected: FAIL - - [CSS Animations: property from [20px\] to [10px 30px\] at (1.5) should be [5px 35px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (1.5) should be [15px\]] - expected: FAIL - - [CSS Animations: property from [20px\] to [10px 30px\] at (0) should be [20px\]] - expected: FAIL - - [CSS Animations: property from [10px\] to [50px\] at (-0.3) should be [0px\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [20px\] at (-0.3) should be [0px\]] - expected: FAIL - - [CSS Transitions: property from [10px\] to [50px\] at (1.5) should be [70px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [20px\] at (0.6) should be [16px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10px\] to [50px\] at (0) should be [10px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px\] at (-0.3) should be [33px\]] - expected: FAIL - - [CSS Animations: property from [10px\] to [100%\] at (0) should be [calc(10px + 0%)\]] - expected: FAIL - - [CSS Animations: property from [20px\] to [10px 30px\] at (-0.3) should be [23px 17px\]] - expected: FAIL - - [CSS Animations: property from [20px\] to [10px 30px\] at (-2) should be [40px 0px\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [20px\] at (0.6) should be [12px\]] - expected: FAIL - - [CSS Animations: property from [10px\] to [100%\] at (0.6) should be [calc(4px + 60%)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [20px\] at (-0.3) should be [7px\]] - expected: FAIL - - [CSS Transitions: property from [10px\] to [100%\] at (0.6) should be [calc(4px + 60%)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [20px\] at (1.5) should be [30px\]] - expected: FAIL - - [CSS Transitions: property from [10px\] to [50px\] at (-0.3) should be [0px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (0.3) should be [27px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [20px\] at (0.6) should be [12px\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [20px\] at (0.3) should be [6px\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [20px\] at (0) should be [0px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [20px\] at (0.6) should be [24px\]] expected: FAIL - [CSS Transitions: property from [10px\] to [100%\] at (-0.3) should be [calc(13px + -30%)\]] - expected: FAIL - - [CSS Animations: property from [10px\] to [50px\] at (1) should be [50px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10px\] to [100%\] at (-0.3) should be [calc(13px + -30%)\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [20px\] at (1.5) should be [30px\]] - expected: FAIL - - [CSS Transitions: property from [10px\] to [50px\] at (0.6) should be [34px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [20px\] at (0.3) should be [13px\]] - expected: FAIL - - [CSS Animations: property from [20px\] to [10px 30px\] at (1) should be [10px 30px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [20px\] at (0) should be [10px\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [20px\] at (0) should be [0px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [20px\] at (1.5) should be [30px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [20px\] at (1.5) should be [25px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px\] at (0.3) should be [27px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [20px\] at (-0.3) should be [0px\]] - expected: FAIL - - [CSS Transitions: property from [20px\] to [10px 30px\] at (-2) should be [40px 0px\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [20px\] at (0.6) should be [12px\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [20px\] at (1.5) should be [30px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (0) should be [30px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [20px\] at (0.3) should be [27px\]] expected: FAIL - [CSS Animations: property from [unset\] to [20px\] at (0.6) should be [12px\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [20px\] at (0.3) should be [6px\]] - expected: FAIL - - [CSS Animations: property from [10px\] to [100%\] at (1.5) should be [calc(-5px + 150%)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [20px\] at (-0.3) should be [0px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [20px\] at (0.3) should be [6px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [20px\] to [10px 30px\] at (-2) should be [40px 0px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10px\] to [100%\] at (1.5) should be [calc(-5px + 150%)\]] - expected: FAIL - - [CSS Transitions: property from [20px\] to [10px 30px\] at (0.3) should be [17px 23px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [20px\] to [10px 30px\] at (1.5) should be [5px 35px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [20px\] at (0.3) should be [6px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10px\] to [100%\] at (0) should be [calc(10px + 0%)\]] - expected: FAIL - - [CSS Animations: property from [10px\] to [50px\] at (1.5) should be [70px\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [20px\] at (0.3) should be [6px\]] - expected: FAIL - - [CSS Animations: property from [10px\] to [100%\] at (0.3) should be [calc(7px + 30%)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [20px\] at (1) should be [20px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px\] at (0) should be [30px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (0.6) should be [24px\]] - expected: FAIL - - [CSS Transitions: property from [20px\] to [10px 30px\] at (0) should be [20px\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [20px\] at (0.3) should be [6px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [20px\] to [10px 30px\] at (0) should be [20px\]] - expected: FAIL - - [CSS Animations: property from [10px\] to [100%\] at (-0.3) should be [calc(13px + -30%)\]] - expected: FAIL - - [CSS Animations: property from [20px\] to [10px 30px\] at (0.6) should be [14px 26px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (-0.3) should be [33px\]] - expected: FAIL - - [CSS Animations: property from neutral to [20px\] at (0.3) should be [13px\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [20px\] at (-0.3) should be [0px\]] - expected: FAIL - - [CSS Transitions: property from [10px\] to [100%\] at (0) should be [calc(10px + 0%)\]] - expected: FAIL - - [CSS Animations: property from [inherit\] to [20px\] at (1) should be [20px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [20px\] at (0.6) should be [12px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10px\] to [50px\] at (1.5) should be [70px\]] - expected: FAIL - - [CSS Animations: property from neutral to [20px\] at (-0.3) should be [7px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px\] at (0.6) should be [24px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10px\] to [50px\] at (0.3) should be [22px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [20px\] at (-0.3) should be [33px\]] expected: FAIL - [CSS Transitions: property from [initial\] to [20px\] at (0) should be [0px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px\] at (0.6) should be [16px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px\] at (0) should be [10px\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [20px\] at (-0.3) should be [0px\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [20px\] at (0.6) should be [12px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [20px\] at (0) should be [0px\]] - expected: FAIL - - [CSS Transitions: property from [20px\] to [10px 30px\] at (0.6) should be [14px 26px\]] - expected: FAIL - - [CSS Transitions: property from [20px\] to [10px 30px\] at (-0.3) should be [23px 17px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [20px\] at (-0.3) should be [0px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [20px\] to [10px 30px\] at (0.3) should be [17px 23px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [20px\] to [10px 30px\] at (-0.3) should be [23px 17px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px\] at (1.5) should be [15px\]] - expected: FAIL - - [CSS Transitions: property from [10px\] to [50px\] at (0.3) should be [22px\]] - expected: FAIL - - [CSS Animations: property from neutral to [20px\] at (1) should be [20px\]] - expected: FAIL - - [CSS Transitions: property from [10px\] to [100%\] at (1.5) should be [calc(-5px + 150%)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px\] at (1.5) should be [25px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px\] at (0.3) should be [13px\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [20px\] at (0) should be [0px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [20px\] at (0) should be [0px\]] - expected: FAIL - - [CSS Transitions: property from [10px\] to [100%\] at (0.3) should be [calc(7px + 30%)\]] - expected: FAIL - - [CSS Transitions: property from [20px\] to [10px 30px\] at (1.5) should be [5px 35px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [20px\] at (0) should be [30px\]] expected: FAIL - [CSS Transitions with transition: all: property from neutral to [20px\] at (-0.3) should be [7px\]] - expected: FAIL - - [CSS Animations: property from [20px\] to [10px 30px\] at (0.3) should be [17px 23px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10px\] to [100%\] at (0.3) should be [calc(7px + 30%)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [20px\] to [10px 30px\] at (0.6) should be [14px 26px\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [20px\] at (1.5) should be [30px\]] - expected: FAIL - - [CSS Transitions: property from [10px\] to [50px\] at (0) should be [10px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [20px\] at (1.5) should be [15px\]] expected: FAIL - [CSS Transitions with transition: all: property from [10px\] to [100%\] at (0.6) should be [calc(4px + 60%)\]] - expected: FAIL - diff --git a/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-width-interpolation.html.ini b/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-width-interpolation.html.ini index b1bd57cbb96..7bcd3962913 100644 --- a/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-width-interpolation.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-backgrounds/animations/border-width-interpolation.html.ini @@ -245,417 +245,114 @@ [Web Animations: property from [0px\] to [10px\] at (1) should be [10px\]] expected: FAIL - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (-0.3) should be [0px\]] - expected: FAIL - [CSS Animations: property from [medium\] to [13px\] at (1) should be [13px\]] expected: FAIL [CSS Animations: property from [thick\] to [15px\] at (1) should be [15px\]] expected: FAIL - [CSS Transitions with transition: all: property from [15px\] to [thick\] at (-0.3) should be [18px\]] - expected: FAIL - [CSS Animations: property from [unset\] to [20px\] at (1.5) should be [28.5px\]] expected: FAIL - [CSS Animations: property from [0px\] to [10px\] at (-0.3) should be [0px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [15px\] to [thick\] at (-2) should be [35px\]] - expected: FAIL - [CSS Animations: property from [medium\] to [13px\] at (0.3) should be [6px\]] expected: FAIL - [CSS Transitions: property from [15px\] to [thick\] at (0) should be [15px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [thick\] to [15px\] at (0.3) should be [8px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [thin\] to [11px\] at (0) should be [1px\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [20px\] at (0.6) should be [13.2px\]] - expected: FAIL - [CSS Animations: property from [15px\] to [thick\] at (-2) should be [35px\]] expected: FAIL - [CSS Animations: property from [15px\] to [thick\] at (1.5) should be [0px\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [20px\] at (0.3) should be [8.1px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0px\] to [10px\] at (1.5) should be [15px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [15px\] to [thick\] at (0.6) should be [9px\]] - expected: FAIL - - [CSS Transitions: property from [thin\] to [11px\] at (0) should be [1px\]] - expected: FAIL - - [CSS Transitions: property from [15px\] to [thick\] at (0.6) should be [9px\]] - expected: FAIL - - [CSS Transitions: property from [medium\] to [13px\] at (-0.25) should be [0.5px\]] - expected: FAIL - [CSS Animations: property from [thin\] to [11px\] at (0) should be [1px\]] expected: FAIL - [CSS Animations: property from [thick\] to [15px\] at (-2) should be [0px\]] - expected: FAIL - - [CSS Animations: property from [inherit\] to [20px\] at (0) should be [0px\]] - expected: FAIL - - [CSS Animations: property from [medium\] to [13px\] at (-2) should be [0px\]] - expected: FAIL - [CSS Animations: property from [medium\] to [13px\] at (0.6) should be [9px\]] expected: FAIL - [CSS Transitions: property from [thin\] to [11px\] at (-0.3) should be [0px\]] - expected: FAIL - [CSS Animations: property from neutral to [20px\] at (0.6) should be [16px\]] expected: FAIL - [CSS Transitions with transition: all: property from [medium\] to [13px\] at (-0.25) should be [0.5px\]] - expected: FAIL - - [CSS Transitions: property from [thick\] to [15px\] at (0) should be [5px\]] - expected: FAIL - - [CSS Transitions: property from [0px\] to [10px\] at (-0.3) should be [0px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px\] at (-0.3) should be [7px\]] - expected: FAIL - [CSS Animations: property from neutral to [20px\] at (-0.3) should be [7px\]] expected: FAIL - [CSS Transitions with transition: all: property from [15px\] to [thick\] at (0) should be [15px\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [20px\] at (0.3) should be [8.1px\]] - expected: FAIL - [CSS Animations: property from [0px\] to [10px\] at (0.3) should be [3px\]] expected: FAIL - [CSS Animations: property from [thin\] to [11px\] at (-0.3) should be [0px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px\] at (0.3) should be [6px\]] - expected: FAIL - [CSS Animations: property from [15px\] to [thick\] at (0.3) should be [12px\]] expected: FAIL [CSS Animations: property from [thick\] to [15px\] at (0) should be [5px\]] expected: FAIL - [CSS Transitions with transition: all: property from [thin\] to [11px\] at (-2) should be [0px\]] - expected: FAIL - [CSS Animations: property from [0px\] to [10px\] at (1.5) should be [15px\]] expected: FAIL - [CSS Transitions: property from [initial\] to [20px\] at (1.5) should be [28.5px\]] - expected: FAIL - - [CSS Transitions: property from [thick\] to [15px\] at (0.3) should be [8px\]] - expected: FAIL - [CSS Animations: property from [initial\] to [20px\] at (1.5) should be [28.5px\]] expected: FAIL - [CSS Transitions with transition: all: property from neutral to [20px\] at (0.3) should be [13px\]] - expected: FAIL - [CSS Animations: property from [unset\] to [20px\] at (1) should be [20px\]] expected: FAIL - [CSS Transitions with transition: all: property from [0px\] to [10px\] at (0.3) should be [3px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [thick\] to [15px\] at (0.6) should be [11px\]] - expected: FAIL - [CSS Animations: property from [thin\] to [11px\] at (1.5) should be [16px\]] expected: FAIL - [CSS Animations: property from [initial\] to [20px\] at (-0.3) should be [0px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px\] at (0) should be [0px\]] - expected: FAIL - [CSS Animations: property from [thin\] to [11px\] at (0.3) should be [4px\]] expected: FAIL - [CSS Transitions with transition: all: property from [15px\] to [thick\] at (0.3) should be [12px\]] - expected: FAIL - - [CSS Transitions: property from [thin\] to [11px\] at (0.3) should be [4px\]] - expected: FAIL - [CSS Animations: property from [thick\] to [15px\] at (0.3) should be [8px\]] expected: FAIL [CSS Animations: property from neutral to [20px\] at (1) should be [20px\]] expected: FAIL - [CSS Transitions: property from neutral to [20px\] at (0.3) should be [13px\]] - expected: FAIL - - [CSS Transitions: property from [15px\] to [thick\] at (1.5) should be [0px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [20px\] at (-0.3) should be [0px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [medium\] to [13px\] at (-2) should be [0px\]] - expected: FAIL - - [CSS Transitions: property from [medium\] to [13px\] at (-2) should be [0px\]] - expected: FAIL - [CSS Animations: property from [0px\] to [10px\] at (0.6) should be [6px\]] expected: FAIL - [CSS Transitions with transition: all: property from [medium\] to [13px\] at (0.3) should be [6px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [20px\] at (0) should be [3px\]] - expected: FAIL - [CSS Animations: property from [unset\] to [20px\] at (0) should be [3px\]] expected: FAIL - [CSS Transitions: property from [thick\] to [15px\] at (1.5) should be [20px\]] - expected: FAIL - - [CSS Transitions: property from [15px\] to [thick\] at (-2) should be [35px\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [20px\] at (0) should be [3px\]] - expected: FAIL - [CSS Animations: property from [initial\] to [20px\] at (1) should be [20px\]] expected: FAIL - [CSS Transitions: property from [unset\] to [20px\] at (-0.3) should be [0px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [20px\] at (0.6) should be [12px\]] expected: FAIL - [CSS Transitions with transition: all: property from [unset\] to [20px\] at (-0.3) should be [0px\]] - expected: FAIL - - [CSS Transitions: property from [0px\] to [10px\] at (0.6) should be [6px\]] - expected: FAIL - [CSS Animations: property from [medium\] to [13px\] at (1.5) should be [18px\]] expected: FAIL - [CSS Transitions: property from [medium\] to [13px\] at (1.5) should be [18px\]] - expected: FAIL - - [CSS Animations: property from [thin\] to [11px\] at (-2) should be [0px\]] - expected: FAIL - - [CSS Transitions: property from [thick\] to [15px\] at (0.6) should be [11px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [thick\] to [15px\] at (0) should be [5px\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [20px\] at (0.6) should be [13.2px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0px\] to [10px\] at (0.6) should be [6px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [thin\] to [11px\] at (-0.3) should be [0px\]] - expected: FAIL - [CSS Animations: property from [medium\] to [13px\] at (0) should be [3px\]] expected: FAIL - [CSS Transitions: property from neutral to [20px\] at (1.5) should be [25px\]] - expected: FAIL - [CSS Animations: property from [thick\] to [15px\] at (1.5) should be [20px\]] expected: FAIL [CSS Animations: property from [initial\] to [20px\] at (0) should be [3px\]] expected: FAIL - [CSS Transitions: property from neutral to [20px\] at (-0.3) should be [7px\]] - expected: FAIL - - [CSS Animations: property from [inherit\] to [20px\] at (-0.3) should be [0px\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [20px\] at (1.5) should be [28.5px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (1.5) should be [30px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [20px\] at (0.3) should be [6px\]] expected: FAIL - [CSS Transitions: property from [medium\] to [13px\] at (0.6) should be [9px\]] - expected: FAIL - [CSS Animations: property from [initial\] to [20px\] at (0.3) should be [8.1px\]] expected: FAIL - [CSS Transitions with transition: all: property from [medium\] to [13px\] at (0.6) should be [9px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px\] at (0.6) should be [16px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px\] at (0.6) should be [12px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [thin\] to [11px\] at (0.6) should be [7px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [15px\] to [thick\] at (1.5) should be [0px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [thick\] to [15px\] at (-2) should be [0px\]] - expected: FAIL - [CSS Animations: property from [unset\] to [20px\] at (0.3) should be [8.1px\]] expected: FAIL - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (0) should be [0px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [thick\] to [15px\] at (1.5) should be [20px\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [20px\] at (-0.3) should be [0px\]] - expected: FAIL - [CSS Animations: property from [15px\] to [thick\] at (0.6) should be [9px\]] expected: FAIL - [CSS Transitions with transition: all: property from [initial\] to [20px\] at (0) should be [3px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0px\] to [10px\] at (-0.3) should be [0px\]] - expected: FAIL - [CSS Animations: property from [medium\] to [13px\] at (-0.25) should be [0.5px\]] expected: FAIL - [CSS Transitions with transition: all: property from neutral to [20px\] at (1.5) should be [25px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px\] at (1.5) should be [30px\]] - expected: FAIL - [CSS Animations: property from [15px\] to [thick\] at (-0.3) should be [18px\]] expected: FAIL - [CSS Transitions with transition: all: property from neutral to [20px\] at (0) should be [10px\]] - expected: FAIL - - [CSS Transitions: property from [0px\] to [10px\] at (0) should be [0px\]] - expected: FAIL - - [CSS Transitions: property from [thin\] to [11px\] at (0.6) should be [7px\]] - expected: FAIL - - [CSS Transitions: property from [thick\] to [15px\] at (-2) should be [0px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [20px\] at (1.5) should be [30px\]] expected: FAIL - [CSS Transitions: property from [thick\] to [15px\] at (-0.3) should be [2px\]] - expected: FAIL - - [CSS Transitions: property from [15px\] to [thick\] at (0.3) should be [12px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [20px\] at (0.3) should be [8.1px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (0.3) should be [6px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [medium\] to [13px\] at (1.5) should be [18px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [20px\] at (0.6) should be [13.2px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [20px\] at (1) should be [20px\]] expected: FAIL - [CSS Transitions with transition: all: property from [initial\] to [20px\] at (1.5) should be [28.5px\]] - expected: FAIL - - [CSS Transitions: property from [15px\] to [thick\] at (-0.3) should be [18px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [medium\] to [13px\] at (0) should be [3px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [20px\] at (0.6) should be [16px\]] - expected: FAIL - - [CSS Animations: property from [0px\] to [10px\] at (0) should be [0px\]] - expected: FAIL - - [CSS Transitions: property from [0px\] to [10px\] at (1.5) should be [15px\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [20px\] at (0) should be [3px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (0.6) should be [12px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [20px\] at (0.6) should be [13.2px\]] - expected: FAIL - - [CSS Transitions: property from [medium\] to [13px\] at (0.3) should be [6px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [20px\] at (1.5) should be [28.5px\]] - expected: FAIL - - [CSS Transitions: property from [0px\] to [10px\] at (0.3) should be [3px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [thin\] to [11px\] at (0.3) should be [4px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px\] at (-0.3) should be [0px\]] - expected: FAIL - [CSS Animations: property from [15px\] to [thick\] at (0) should be [15px\]] expected: FAIL - [CSS Transitions: property from [thin\] to [11px\] at (-2) should be [0px\]] - expected: FAIL - [CSS Animations: property from [thin\] to [11px\] at (0.6) should be [7px\]] expected: FAIL @@ -668,42 +365,21 @@ [CSS Animations: property from [thin\] to [11px\] at (1) should be [11px\]] expected: FAIL - [CSS Transitions: property from neutral to [20px\] at (0) should be [10px\]] - expected: FAIL - [CSS Animations: property from [15px\] to [thick\] at (1) should be [5px\]] expected: FAIL - [CSS Animations: property from [unset\] to [20px\] at (-0.3) should be [0px\]] - expected: FAIL - [CSS Animations: property from neutral to [20px\] at (1.5) should be [25px\]] expected: FAIL - [CSS Transitions: property from [thin\] to [11px\] at (1.5) should be [16px\]] - expected: FAIL - [CSS Animations: property from neutral to [20px\] at (0.3) should be [13px\]] expected: FAIL - [CSS Transitions with transition: all: property from [0px\] to [10px\] at (0) should be [0px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [thick\] to [15px\] at (-0.3) should be [2px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [thin\] to [11px\] at (1.5) should be [16px\]] - expected: FAIL - [CSS Animations: property from [thick\] to [15px\] at (0.6) should be [11px\]] expected: FAIL - [CSS Transitions: property from [medium\] to [13px\] at (0) should be [3px\]] - expected: FAIL - [CSS Animations: property from [unset\] to [20px\] at (0.6) should be [13.2px\]] expected: FAIL - [CSS Transitions with transition: all: property from [unset\] to [20px\] at (0.3) should be [8.1px\]] + [CSS Animations: property from [0px\] to [10px\] at (1) should be [10px\]] expected: FAIL diff --git a/tests/wpt/metadata-layout-2020/css/css-color/animation/color-interpolation.html.ini b/tests/wpt/metadata-layout-2020/css/css-color/animation/color-interpolation.html.ini index 485d49568d2..a54cec5b770 100644 --- a/tests/wpt/metadata-layout-2020/css/css-color/animation/color-interpolation.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-color/animation/color-interpolation.html.ini @@ -89,237 +89,33 @@ [Web Animations: property from [inherit\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from [initial\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [green\] at (0.6) should be [rgb(0, 77, 0)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]] - expected: FAIL - - [CSS Animations: property from [black\] to [orange\] at (1.5) should be [rgb(255, 248, 0)\]] - expected: FAIL - - [CSS Animations: property from [black\] to [orange\] at (1) should be [rgb(255, 165, 0)\]] - expected: FAIL - - [CSS Animations: property from [black\] to [orange\] at (-0.3) should be [rgb(0, 0, 0)\]] - expected: FAIL - - [CSS Transitions: property from [black\] to [orange\] at (0.3) should be [rgb(77, 50, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [green\] at (0) should be [rgb(0, 0, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [black\] to [orange\] at (0.3) should be [rgb(77, 50, 0)\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [green\] at (0.6) should be [rgb(0, 77, 102)\]] expected: FAIL - [CSS Transitions with transition: all: property from [initial\] to [green\] at (0.6) should be [rgb(0, 77, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [green\] at (0.3) should be [rgb(0, 38, 179)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [green\] at (1.5) should be [rgb(0, 65, 0)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [green\] at (0) should be [rgb(0, 0, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [green\] at (0) should be [rgb(255, 255, 0)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [green\] at (-0.3) should be [rgb(0, 0, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [green\] at (0.3) should be [rgb(0, 38, 179)\]] - expected: FAIL - [CSS Animations: property from [unset\] to [green\] at (0.3) should be [rgb(0, 38, 179)\]] expected: FAIL - [CSS Transitions: property from [initial\] to [green\] at (0.6) should be [rgb(0, 77, 0)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [green\] at (1) should be [rgb(0, 128, 0)\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [green\] at (0.3) should be [rgb(0, 38, 179)\]] - expected: FAIL - [CSS Animations: property from [unset\] to [green\] at (-0.3) should be [rgb(0, 0, 255)\]] expected: FAIL - [CSS Animations: property from [black\] to [orange\] at (0) should be [rgb(0, 0, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [green\] at (-0.3) should be [rgb(0, 0, 255)\]] - expected: FAIL - - [CSS Transitions: property from [black\] to [orange\] at (1.5) should be [rgb(255, 248, 0)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [green\] at (0) should be [rgb(255, 255, 0)\]] - expected: FAIL - - [CSS Animations: property from neutral to [green\] at (1.5) should be [rgb(0, 65, 0)\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [green\] at (0.6) should be [rgb(0, 77, 102)\]] - expected: FAIL - - [CSS Transitions: property from [black\] to [orange\] at (0) should be [rgb(0, 0, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]] - expected: FAIL - - [CSS Animations: property from neutral to [green\] at (0.3) should be [rgb(179, 217, 0)\]] - expected: FAIL - - [CSS Animations: property from [black\] to [orange\] at (0.3) should be [rgb(77, 50, 0)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [green\] at (-0.3) should be [rgb(0, 0, 0)\]] - expected: FAIL - - [CSS Animations: property from neutral to [green\] at (1) should be [rgb(0, 128, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [black\] to [orange\] at (1.5) should be [rgb(255, 248, 0)\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [green\] at (0.3) should be [rgb(0, 38, 179)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [green\] at (0.6) should be [rgb(0, 77, 102)\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [green\] at (0) should be [rgb(0, 0, 255)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [green\] at (-0.3) should be [rgb(255, 255, 0)\]] - expected: FAIL - [CSS Animations: property from [unset\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]] expected: FAIL - [CSS Animations: property from neutral to [green\] at (0.6) should be [rgb(102, 179, 0)\]] - expected: FAIL - - [CSS Transitions: property from [black\] to [orange\] at (0.6) should be [rgb(153, 99, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [green\] at (-0.3) should be [rgb(0, 0, 255)\]] expected: FAIL - [CSS Transitions with transition: all: property from [unset\] to [green\] at (0.6) should be [rgb(0, 77, 102)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [green\] at (0.3) should be [rgb(179, 217, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [black\] to [orange\] at (-0.3) should be [rgb(0, 0, 0)\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [green\] at (0) should be [rgb(0, 0, 255)\]] expected: FAIL - [CSS Transitions: property from [inherit\] to [green\] at (-0.3) should be [rgb(0, 0, 255)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [green\] at (0.3) should be [rgb(0, 38, 0)\]] - expected: FAIL - - [CSS Animations: property from [black\] to [orange\] at (0.6) should be [rgb(153, 99, 0)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [green\] at (0.3) should be [rgb(0, 38, 0)\]] - expected: FAIL - [CSS Animations: property from [unset\] to [green\] at (0) should be [rgb(0, 0, 255)\]] expected: FAIL - [CSS Transitions with transition: all: property from neutral to [green\] at (0.6) should be [rgb(102, 179, 0)\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [black\] to [orange\] at (0) should be [rgb(0, 0, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [green\] at (-0.3) should be [rgb(255, 255, 0)\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [green\] at (-0.3) should be [rgb(0, 0, 255)\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]] expected: FAIL - [CSS Transitions: property from [unset\] to [green\] at (0) should be [rgb(0, 0, 255)\]] - expected: FAIL - [CSS Animations: property from [unset\] to [green\] at (0.6) should be [rgb(0, 77, 102)\]] expected: FAIL - [CSS Transitions with transition: all: property from [black\] to [orange\] at (0.6) should be [rgb(153, 99, 0)\]] - expected: FAIL - - [CSS Transitions: property from [black\] to [orange\] at (-0.3) should be [rgb(0, 0, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [green\] at (0) should be [rgb(0, 0, 255)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [green\] at (0.3) should be [rgb(179, 217, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [green\] at (0) should be [rgb(0, 0, 255)\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [green\] at (-0.3) should be [rgb(0, 0, 255)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [green\] at (0) should be [rgb(0, 0, 0)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [green\] at (0.6) should be [rgb(102, 179, 0)\]] - expected: FAIL - - [CSS Animations: property from [inherit\] to [green\] at (1) should be [rgb(0, 128, 0)\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [green\] at (0.3) should be [rgb(0, 38, 179)\]] expected: FAIL - [CSS Animations: property from [initial\] to [green\] at (0.3) should be [rgb(0, 38, 0)\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [green\] at (0.6) should be [rgb(0, 77, 102)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [green\] at (1.5) should be [rgb(0, 65, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [green\] at (-0.3) should be [rgb(0, 0, 0)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [green\] at (1) should be [rgb(0, 128, 0)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]] - expected: FAIL - diff --git a/tests/wpt/metadata-layout-2020/css/css-color/animation/opacity-interpolation.html.ini b/tests/wpt/metadata-layout-2020/css/css-color/animation/opacity-interpolation.html.ini index f7f39d4f165..5fa392b95f6 100644 --- a/tests/wpt/metadata-layout-2020/css/css-color/animation/opacity-interpolation.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-color/animation/opacity-interpolation.html.ini @@ -89,156 +89,42 @@ [Web Animations: property from [initial\] to [0.2\] at (0.3) should be [0.76\]] expected: FAIL - [CSS Transitions: property from neutral to [0.2\] at (0) should be [0.1\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [0.2\] at (0.3) should be [0.13\]] - expected: FAIL - [CSS Transitions with transition: all: property from [inherit\] to [0.2\] at (1.5) should be [0\]] expected: FAIL - [CSS Transitions with transition: all: property from [unset\] to [0.2\] at (0.3) should be [0.76\]] - expected: FAIL - [CSS Transitions with transition: all: property from [initial\] to [0.2\] at (1.5) should be [0\]] expected: FAIL - [CSS Transitions with transition: all: property from [initial\] to [0.2\] at (0.6) should be [0.52\]] - expected: FAIL - [CSS Transitions: property from [inherit\] to [0.2\] at (1.5) should be [0\]] expected: FAIL - [CSS Transitions: property from [unset\] to [0.2\] at (0.3) should be [0.76\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [0.2\] at (0) should be [0.1\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [0.2\] at (0.6) should be [0.16\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [0.2\] at (1) should be [0.2\]] - expected: FAIL - - [CSS Animations: property from neutral to [0.2\] at (-0.3) should be [0.07\]] - expected: FAIL - [CSS Transitions with transition: all: property from [unset\] to [0.2\] at (1.5) should be [0\]] expected: FAIL - [CSS Transitions: property from [unset\] to [0.2\] at (0.6) should be [0.52\]] - expected: FAIL - - [CSS Transitions: property from [0\] to [1\] at (0) should be [0\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [0.2\] at (0) should be [1\]] - expected: FAIL - - [CSS Transitions: property from [0\] to [1\] at (0.6) should be [0.6\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [0.2\] at (0) should be [1\]] - expected: FAIL - [CSS Transitions with transition: all: property from [0\] to [1\] at (-0.3) should be [0\]] expected: FAIL - [CSS Animations: property from neutral to [0.2\] at (0.3) should be [0.13\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [0.2\] at (-0.3) should be [0.98\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [0.2\] at (1.5) should be [0\]] expected: FAIL - [CSS Transitions: property from [initial\] to [0.2\] at (0.6) should be [0.52\]] - expected: FAIL - [CSS Transitions: property from [initial\] to [0.2\] at (1.5) should be [0\]] expected: FAIL [CSS Animations: property from [unset\] to [0.2\] at (-0.3) should be [1\]] expected: FAIL - [CSS Transitions: property from neutral to [0.2\] at (1.5) should be [0.25\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [0.2\] at (0.3) should be [0.62\]] - expected: FAIL - - [CSS Transitions: property from neutral to [0.2\] at (-0.3) should be [0.07\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [0.2\] at (0) should be [1\]] - expected: FAIL - [CSS Transitions: property from [unset\] to [0.2\] at (1.5) should be [0\]] expected: FAIL - [CSS Transitions with transition: all: property from [inherit\] to [0.2\] at (-0.3) should be [0.98\]] - expected: FAIL - - [CSS Animations: property from neutral to [0.2\] at (1) should be [0.2\]] - expected: FAIL - - [CSS Animations: property from neutral to [0.2\] at (0.6) should be [0.16\]] - expected: FAIL - - [CSS Transitions: property from neutral to [0.2\] at (0.6) should be [0.16\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [0.2\] at (0) should be [0.8\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [0.2\] at (0) should be [0.8\]] - expected: FAIL - [CSS Animations: property from [0\] to [1\] at (1.5) should be [1\]] expected: FAIL - [CSS Animations: property from [0\] to [1\] at (0) should be [0\]] - expected: FAIL - - [CSS Animations: property from [inherit\] to [0.2\] at (1) should be [0.2\]] - expected: FAIL - - [CSS Animations: property from [0\] to [1\] at (1) should be [1\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [0.2\] at (-0.3) should be [0.07\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [0.2\] at (0) should be [1\]] - expected: FAIL - [CSS Animations: property from [initial\] to [0.2\] at (1.5) should be [0\]] expected: FAIL - [CSS Animations: property from [initial\] to [0.2\] at (1) should be [0.2\]] - expected: FAIL - [CSS Animations: property from [0\] to [1\] at (-0.3) should be [0\]] expected: FAIL - [CSS Transitions: property from [initial\] to [0.2\] at (0) should be [1\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [0.2\] at (0.3) should be [0.76\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [0.2\] at (0.6) should be [0.52\]] - expected: FAIL - - [CSS Transitions: property from neutral to [0.2\] at (0.3) should be [0.13\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0\] to [1\] at (0.6) should be [0.6\]] - expected: FAIL - [CSS Transitions: property from [initial\] to [0.2\] at (-0.3) should be [1\]] expected: FAIL @@ -248,75 +134,33 @@ [CSS Transitions with transition: all: property from [initial\] to [0.2\] at (-0.3) should be [1\]] expected: FAIL - [CSS Animations: property from neutral to [0.2\] at (1.5) should be [0.25\]] - expected: FAIL - [CSS Transitions: property from [0\] to [1\] at (-0.3) should be [0\]] expected: FAIL - [CSS Animations: property from [unset\] to [0.2\] at (0) should be [1\]] - expected: FAIL - [CSS Transitions: property from [unset\] to [0.2\] at (-0.3) should be [1\]] expected: FAIL - [CSS Transitions with transition: all: property from [0\] to [1\] at (0.3) should be [0.3\]] - expected: FAIL - - [CSS Transitions: property from [0\] to [1\] at (0.3) should be [0.3\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [0.2\] at (0.3) should be [0.76\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [0.2\] at (0.6) should be [0.44\]] expected: FAIL - [CSS Animations: property from [unset\] to [0.2\] at (0.6) should be [0.52\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [0.2\] at (0.6) should be [0.44\]] - expected: FAIL - - [CSS Animations: property from [0\] to [1\] at (0.6) should be [0.6\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [0.2\] at (1.5) should be [0.25\]] - expected: FAIL - [CSS Transitions with transition: all: property from [unset\] to [0.2\] at (-0.3) should be [1\]] expected: FAIL [CSS Animations: property from [inherit\] to [0.2\] at (0) should be [0.8\]] expected: FAIL - [CSS Animations: property from [0\] to [1\] at (0.3) should be [0.3\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [0.2\] at (0.3) should be [0.62\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0\] to [1\] at (0) should be [0\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [0.2\] at (0.6) should be [0.44\]] - expected: FAIL - [CSS Animations: property from [initial\] to [0.2\] at (-0.3) should be [1\]] expected: FAIL - [CSS Transitions: property from [initial\] to [0.2\] at (0.3) should be [0.76\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [0.2\] at (0.3) should be [0.76\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [0.2\] at (-0.3) should be [0.98\]] expected: FAIL - [CSS Animations: property from [initial\] to [0.2\] at (0.6) should be [0.52\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [0.2\] at (0.3) should be [0.62\]] expected: FAIL + [CSS Transitions: property from [0\] to [1\] at (1.5) should be [1\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [0\] to [1\] at (1.5) should be [1\]] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transforms/animation/list-interpolation.html.ini b/tests/wpt/metadata-layout-2020/css/css-transforms/animation/list-interpolation.html.ini index f2303feb42a..cd47ea3f710 100644 --- a/tests/wpt/metadata-layout-2020/css/css-transforms/animation/list-interpolation.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-transforms/animation/list-interpolation.html.ini @@ -56,9 +56,6 @@ [Web Animations: property from [none\] to [translate(200px) rotate(720deg)\] at (0.25) should be [translate(50px) rotate(180deg)\]] expected: FAIL - [CSS Animations: property from [none\] to [translate(200px) rotate(720deg)\] at (0.25) should be [translate(50px) rotate(180deg)\]] - expected: FAIL - [CSS Animations: property from [rotate(720deg) translateX(0px) scaleX(2)\] to [rotate(0deg) scaleX(1)\] at (0.25) should be [rotate(540deg) matrix(1.75, 0, 0, 1, 0, 0)\]] expected: FAIL @@ -71,9 +68,6 @@ [CSS Transitions with transition: all: property from [scaleX(-3) scaleY(2)\] to [scaleY(-3) translateX(0px) scaleX(2)\] at (0.25) should be [scale(-2, 0) matrix(1.25, 0, 0, 1.75, 0, 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from [translate(100px) rotate(720deg)\] to [translate(200px)\] at (0.25) should be [translate(125px) rotate(540deg)\]] - expected: FAIL - [CSS Animations: property from [scaleY(-3) translateX(0px)\] to [scaleX(-3) scaleY(2)\] at (0.25) should be [scale(0, -2) matrix(1, 0, 0, 1.25, 0, 0)\]] expected: FAIL @@ -83,9 +77,6 @@ [CSS Transitions: property from [scale(2) rotate(0deg) translate(100px)\] to [rotate(720deg) scale(2) translate(200px)\] at (0.25) should be [matrix(2, 0, 0, 2, 250, 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from [none\] to [translate(200px) rotate(720deg)\] at (0.25) should be [translate(50px) rotate(180deg)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [translateX(100px) scaleX(3) translate(500px) scale(2)\] to [translateY(200px) scale(5) translateX(100px) scaleY(3)\] at (0.25) should be [translate(75px, 50px) scale(3.5, 2) translate(400px, 0px) scale(1.75, 2.25)\]] expected: FAIL @@ -95,18 +86,6 @@ [CSS Transitions with transition: all: property from [rotateX(90deg) translateX(100px)\] to [rotate3d(50, 0, 0, 180deg) translateY(200px)\] at (0.25) should be [rotateX(112.5deg) translate(75px, 50px)\]] expected: FAIL - [CSS Animations: property from [translate(200px) rotate(720deg)\] to [none\] at (0.25) should be [translate(150px) rotate(540deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [translate(200px) rotate(720deg)\] to [none\] at (0.25) should be [translate(150px) rotate(540deg)\]] - expected: FAIL - - [CSS Transitions: property from [scale(2) rotate(360deg) translate(100px) matrix(1, 0, 0, 1, 100, 0) skew(0deg)\] to [scale(3) rotate(1080deg) translate(200px) matrix(1, 0, 0, 1, 0, 200) skew(720deg)\] at (0.25) should be [scale(2.25) rotate(540deg) translate(125px) matrix(1, 0, 0, 1, 75, 50) skew(180deg)\]] - expected: FAIL - - [CSS Animations: property from [translate(100px) rotate(720deg)\] to [translate(200px)\] at (0.25) should be [translate(125px) rotate(540deg)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [rotate(0deg) translate(100px)\] to [rotate(720deg) scale(2) translate(200px)\] at (0.25) should be [rotate(180deg) matrix(1.25, 0, 0, 1.25, 175, 0)\]] expected: FAIL @@ -134,9 +113,6 @@ [CSS Animations: property from [rotateX(90deg) translateX(100px)\] to [rotate3d(50, 0, 0, 180deg) translateY(200px)\] at (0.25) should be [rotateX(112.5deg) translate(75px, 50px)\]] expected: FAIL - [CSS Transitions: property from [none\] to [translate(200px) rotate(720deg)\] at (0.25) should be [translate(50px) rotate(180deg)\]] - expected: FAIL - [CSS Transitions: property from [rotateX(90deg) translateX(100px)\] to [rotateY(0deg) translateY(200px)\] at (0.25) should be [rotateX(67.5deg) translate(75px, 50px)\]] expected: FAIL @@ -155,27 +131,18 @@ [CSS Animations: property from [rotate(0deg) translate(100px)\] to [rotate(720deg) scale(2) translate(200px)\] at (0.25) should be [rotate(180deg) matrix(1.25, 0, 0, 1.25, 175, 0)\]] expected: FAIL - [CSS Animations: property from [scale(2) rotate(360deg) translate(100px) matrix(1, 0, 0, 1, 100, 0) skew(0deg)\] to [scale(3) rotate(1080deg) translate(200px) matrix(1, 0, 0, 1, 0, 200) skew(720deg)\] at (0.25) should be [scale(2.25) rotate(540deg) translate(125px) matrix(1, 0, 0, 1, 75, 50) skew(180deg)\]] - expected: FAIL - [CSS Animations: property from [translateX(100px) scaleX(3) translate(500px) scale(2)\] to [translateY(200px) scale(5) translateX(100px) scaleY(3)\] at (0.25) should be [translate(75px, 50px) scale(3.5, 2) translate(400px, 0px) scale(1.75, 2.25)\]] expected: FAIL [CSS Transitions with transition: all: property from [scale(2) rotate(0deg) translate(100px)\] to [rotate(720deg) scale(2) translate(200px)\] at (0.25) should be [matrix(2, 0, 0, 2, 250, 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from [scale(2) rotate(360deg) translate(100px) matrix(1, 0, 0, 1, 100, 0) skew(0deg)\] to [scale(3) rotate(1080deg) translate(200px) matrix(1, 0, 0, 1, 0, 200) skew(720deg)\] at (0.25) should be [scale(2.25) rotate(540deg) translate(125px) matrix(1, 0, 0, 1, 75, 50) skew(180deg)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [scaleY(-3) translateX(0px) scaleX(2)\] to [scaleX(-3) scaleY(2)\] at (0.25) should be [scale(0, -2) matrix(1.75, 0, 0, 1.25, 0, 0)\]] expected: FAIL [CSS Transitions with transition: all: property from [rotate(720deg) translateX(0px) scaleX(2)\] to [rotate(0deg) scaleX(1)\] at (0.25) should be [rotate(540deg) matrix(1.75, 0, 0, 1, 0, 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from [translate(100px)\] to [translate(200px) rotate(720deg)\] at (0.25) should be [translate(125px) rotate(180deg)\]] - expected: FAIL - [CSS Animations: property from [scale(2) rotate(0deg) translate(100px)\] to [rotate(720deg) scale(2) translate(200px)\] at (0.25) should be [matrix(2, 0, 0, 2, 250, 0)\]] expected: FAIL @@ -194,24 +161,12 @@ [CSS Animations: property from [scaleY(-3) translateX(0px) scaleX(2)\] to [scaleX(-3) scaleY(2)\] at (0.25) should be [scale(0, -2) matrix(1.75, 0, 0, 1.25, 0, 0)\]] expected: FAIL - [CSS Transitions: property from [translate(100px) rotate(720deg)\] to [translate(200px)\] at (0.25) should be [translate(125px) rotate(540deg)\]] - expected: FAIL - [CSS Transitions: property from [rotateX(90deg) translateX(100px)\] to [rotate3d(50, 0, 0, 180deg) translateY(200px)\] at (0.25) should be [rotateX(112.5deg) translate(75px, 50px)\]] expected: FAIL [CSS Transitions with transition: all: property from [scaleY(-3) translateX(0px)\] to [scaleX(-3) scaleY(2)\] at (0.25) should be [scale(0, -2) matrix(1, 0, 0, 1.25, 0, 0)\]] expected: FAIL - [CSS Transitions: property from [translate(200px) rotate(720deg)\] to [none\] at (0.25) should be [translate(150px) rotate(540deg)\]] - expected: FAIL - - [CSS Transitions: property from [translate(100px)\] to [translate(200px) rotate(720deg)\] at (0.25) should be [translate(125px) rotate(180deg)\]] - expected: FAIL - - [CSS Animations: property from [translate(100px)\] to [translate(200px) rotate(720deg)\] at (0.25) should be [translate(125px) rotate(180deg)\]] - expected: FAIL - [CSS Transitions: property from [scaleY(-3) translateX(0px) scaleX(2)\] to [scaleX(-3) scaleY(2)\] at (0.25) should be [scale(0, -2) matrix(1.75, 0, 0, 1.25, 0, 0)\]] expected: FAIL diff --git a/tests/wpt/metadata-layout-2020/css/css-transforms/animation/perspective-interpolation.html.ini b/tests/wpt/metadata-layout-2020/css/css-transforms/animation/perspective-interpolation.html.ini index 20274ce67ac..eaa93e1c7c5 100644 --- a/tests/wpt/metadata-layout-2020/css/css-transforms/animation/perspective-interpolation.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-transforms/animation/perspective-interpolation.html.ini @@ -134,33 +134,15 @@ [Web Animations: property from [inherit\] to [20px\] at (0.3) should be [27px\]] expected: FAIL - [CSS Transitions: property from [inherit\] to [20px\] at (-0.3) should be [33px\]] - expected: FAIL - - [CSS Transitions: property from [50px\] to [100px\] at (1.5) should be [125px\]] - expected: FAIL - [CSS Animations: property from [50px\] to [none\] at (1) should be [none\]] expected: FAIL [CSS Animations: property from [50px\] to [none\] at (0.3) should be [50px\]] expected: FAIL - [CSS Animations: property from [inherit\] to [20px\] at (1) should be [20px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [20px\] at (0) should be [30px\]] expected: FAIL - [CSS Transitions: property from neutral to [20px\] at (1.5) should be [25px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [50px\] to [100px\] at (0) should be [50px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [50px\] to [100px\] at (-0.3) should be [35px\]] - expected: FAIL - [CSS Transitions: property from [50px\] to [100px\] at (-20) should be [none\]] expected: FAIL @@ -170,30 +152,12 @@ [CSS Transitions with transition: all: property from [50px\] to [100px\] at (-1) should be [none\]] expected: FAIL - [CSS Animations: property from neutral to [20px\] at (0.6) should be [16px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px\] at (0.6) should be [16px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [50px\] to [100px\] at (1.5) should be [125px\]] - expected: FAIL - - [CSS Animations: property from [50px\] to [100px\] at (1.5) should be [125px\]] - expected: FAIL - [CSS Transitions with transition: all: property from neutral to [20px\] at (-20) should be [none\]] expected: FAIL [CSS Animations: property from neutral to [20px\] at (-20) should be [none\]] expected: FAIL - [CSS Animations: property from [50px\] to [100px\] at (-0.3) should be [35px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px\] at (0) should be [30px\]] - expected: FAIL - [CSS Animations: property from [initial\] to [20px\] at (-0.3) should be [initial\]] expected: FAIL @@ -212,9 +176,6 @@ [CSS Animations: property from [50px\] to [none\] at (0) should be [50px\]] expected: FAIL - [CSS Transitions with transition: all: property from neutral to [20px\] at (1.5) should be [25px\]] - expected: FAIL - [CSS Transitions with transition: all: property from [50px\] to [100px\] at (-20) should be [none\]] expected: FAIL @@ -224,63 +185,21 @@ [CSS Animations: property from [inherit\] to [20px\] at (1.5) should be [15px\]] expected: FAIL - [CSS Transitions with transition: all: property from [50px\] to [100px\] at (0.3) should be [65px\]] - expected: FAIL - [CSS Animations: property from [initial\] to [20px\] at (0) should be [initial\]] expected: FAIL - [CSS Transitions: property from [inherit\] to [20px\] at (0.6) should be [24px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px\] at (-1) should be [40px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [50px\] to [100px\] at (0.6) should be [80px\]] - expected: FAIL - - [CSS Animations: property from [50px\] to [100px\] at (1) should be [100px\]] - expected: FAIL - - [CSS Animations: property from [50px\] to [100px\] at (0.3) should be [65px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [20px\] at (0.6) should be [24px\]] expected: FAIL - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (0.6) should be [24px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px\] at (-0.3) should be [7px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px\] at (0.3) should be [27px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (-20) should be [230px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (1.5) should be [15px\]] - expected: FAIL - [CSS Animations: property from [unset\] to [20px\] at (1) should be [20px\]] expected: FAIL [CSS Transitions with transition: all: property from neutral to [20px\] at (-1) should be [none\]] expected: FAIL - [CSS Transitions: property from [50px\] to [100px\] at (0) should be [50px\]] - expected: FAIL - [CSS Animations: property from [50px\] to [none\] at (0.5) should be [none\]] expected: FAIL - [CSS Animations: property from [50px\] to [100px\] at (0.6) should be [80px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (0.3) should be [27px\]] - expected: FAIL - [CSS Animations: property from [50px\] to [none\] at (-0.3) should be [50px\]] expected: FAIL @@ -290,81 +209,30 @@ [CSS Animations: property from [unset\] to [20px\] at (0.5) should be [20px\]] expected: FAIL - [CSS Transitions: property from [50px\] to [100px\] at (0.6) should be [80px\]] - expected: FAIL - [CSS Animations: property from [50px\] to [100px\] at (-20) should be [none\]] expected: FAIL - [CSS Transitions: property from neutral to [20px\] at (0.3) should be [13px\]] - expected: FAIL - - [CSS Animations: property from neutral to [20px\] at (0.3) should be [13px\]] - expected: FAIL - [CSS Animations: property from [initial\] to [20px\] at (0.5) should be [20px\]] expected: FAIL [CSS Animations: property from [inherit\] to [20px\] at (-0.3) should be [33px\]] expected: FAIL - [CSS Transitions: property from [inherit\] to [20px\] at (-20) should be [230px\]] - expected: FAIL - [CSS Animations: property from [initial\] to [20px\] at (0.6) should be [20px\]] expected: FAIL - [CSS Transitions with transition: all: property from neutral to [20px\] at (0) should be [10px\]] - expected: FAIL - [CSS Animations: property from neutral to [20px\] at (-1) should be [none\]] expected: FAIL [CSS Transitions: property from neutral to [20px\] at (-20) should be [none\]] expected: FAIL - [CSS Transitions with transition: all: property from neutral to [20px\] at (0.3) should be [13px\]] - expected: FAIL - - [CSS Animations: property from neutral to [20px\] at (1) should be [20px\]] - expected: FAIL - - [CSS Transitions: property from [50px\] to [100px\] at (-0.3) should be [35px\]] - expected: FAIL - - [CSS Animations: property from neutral to [20px\] at (1.5) should be [25px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [20px\] at (-0.3) should be [7px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (0) should be [30px\]] - expected: FAIL - - [CSS Transitions: property from [50px\] to [100px\] at (0.3) should be [65px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px\] at (1.5) should be [15px\]] - expected: FAIL - [CSS Animations: property from [initial\] to [20px\] at (1) should be [20px\]] expected: FAIL - [CSS Animations: property from neutral to [20px\] at (-0.3) should be [7px\]] - expected: FAIL - [CSS Animations: property from [unset\] to [20px\] at (0.6) should be [20px\]] expected: FAIL - [CSS Transitions: property from neutral to [20px\] at (0.6) should be [16px\]] - expected: FAIL - - [CSS Animations: property from [50px\] to [100px\] at (0) should be [50px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (-0.3) should be [33px\]] - expected: FAIL - [CSS Animations: property from [50px\] to [none\] at (1.5) should be [none\]] expected: FAIL @@ -374,9 +242,6 @@ [CSS Animations: property from [inherit\] to [20px\] at (-1) should be [40px\]] expected: FAIL - [CSS Transitions with transition: all: property from [inherit\] to [20px\] at (-1) should be [40px\]] - expected: FAIL - [CSS Animations: property from [initial\] to [20px\] at (1.5) should be [20px\]] expected: FAIL @@ -389,6 +254,3 @@ [CSS Animations: property from [inherit\] to [20px\] at (0.3) should be [27px\]] expected: FAIL - [CSS Transitions: property from neutral to [20px\] at (0) should be [10px\]] - expected: FAIL - diff --git a/tests/wpt/metadata-layout-2020/css/css-transforms/animation/perspective-origin-interpolation.html.ini b/tests/wpt/metadata-layout-2020/css/css-transforms/animation/perspective-origin-interpolation.html.ini index 73876152ba0..3c0375b3cb2 100644 --- a/tests/wpt/metadata-layout-2020/css/css-transforms/animation/perspective-origin-interpolation.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-transforms/animation/perspective-origin-interpolation.html.ini @@ -92,78 +92,30 @@ [CSS Transitions: property from [unset\] to [20px 20px\] at (1.5) should be [17.5px 17.5px\]] expected: FAIL - [CSS Animations: property from [0% 50%\] to [100% 150%\] at (0.6) should be [60% 110%\]] - expected: FAIL - [CSS Animations: property from [unset\] to [20px 20px\] at (0) should be [25px 25px\]] expected: FAIL - [CSS Animations: property from [0% 50%\] to [100% 150%\] at (1) should be [100% 150%\]] - expected: FAIL - [CSS Animations: property from [initial\] to [20px 20px\] at (0.6) should be [22px 22px\]] expected: FAIL - [CSS Transitions with transition: all: property from [inherit\] to [20px 20px\] at (0.6) should be [24px 16px\]] - expected: FAIL - [CSS Transitions with transition: all: property from [initial\] to [20px 20px\] at (0.3) should be [23.5px 23.5px\]] expected: FAIL - [CSS Animations: property from neutral to [20px 20px\] at (0.6) should be [16px 24px\]] - expected: FAIL - - [CSS Animations: property from [inherit\] to [20px 20px\] at (1) should be [20px 20px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px 20px\] at (0.3) should be [27px 13px\]] - expected: FAIL - [CSS Animations: property from [initial\] to [20px 20px\] at (0.3) should be [23.5px 23.5px\]] expected: FAIL - [CSS Transitions with transition: all: property from [0% 50%\] to [100% 150%\] at (-0.3) should be [-30% 20%\]] - expected: FAIL - - [CSS Animations: property from neutral to [20px 20px\] at (1) should be [20px 20px\]] - expected: FAIL - - [CSS Transitions: property from [0% 50%\] to [100% 150%\] at (0.3) should be [30% 80%\]] - expected: FAIL - - [CSS Transitions: property from neutral to [20px 20px\] at (0.3) should be [13px 27px\]] - expected: FAIL - - [CSS Animations: property from [0% 50%\] to [100% 150%\] at (1.5) should be [150% 200%\]] - expected: FAIL - [CSS Transitions: property from [unset\] to [20px 20px\] at (-0.3) should be [26.5px 26.5px\]] expected: FAIL - [CSS Transitions: property from [inherit\] to [20px 20px\] at (-0.3) should be [33px 7px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px 20px\] at (0.3) should be [27px 13px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px 20px\] at (0.6) should be [16px 24px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [20px 20px\] at (0.3) should be [27px 13px\]] expected: FAIL - [CSS Transitions with transition: all: property from [inherit\] to [20px 20px\] at (0) should be [30px 10px\]] - expected: FAIL - [CSS Transitions with transition: all: property from [unset\] to [20px 20px\] at (0.3) should be [23.5px 23.5px\]] expected: FAIL [CSS Transitions: property from [unset\] to [20px 20px\] at (0) should be [25px 25px\]] expected: FAIL - [CSS Animations: property from neutral to [20px 20px\] at (0.3) should be [13px 27px\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [20px 20px\] at (0.6) should be [24px 16px\]] expected: FAIL @@ -179,30 +131,12 @@ [CSS Transitions: property from [unset\] to [20px 20px\] at (0.3) should be [23.5px 23.5px\]] expected: FAIL - [CSS Transitions: property from neutral to [20px 20px\] at (0.6) should be [16px 24px\]] - expected: FAIL - [CSS Animations: property from [unset\] to [20px 20px\] at (1.5) should be [17.5px 17.5px\]] expected: FAIL [CSS Transitions with transition: all: property from [initial\] to [20px 20px\] at (0.6) should be [22px 22px\]] expected: FAIL - [CSS Transitions: property from [0% 50%\] to [100% 150%\] at (1.5) should be [150% 200%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px 20px\] at (-0.3) should be [7px 33px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px 20px\] at (0) should be [10px 30px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0% 50%\] to [100% 150%\] at (0.3) should be [30% 80%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px 20px\] at (-0.3) should be [33px 7px\]] - expected: FAIL - [CSS Animations: property from [initial\] to [20px 20px\] at (-0.3) should be [26.5px 26.5px\]] expected: FAIL @@ -215,15 +149,6 @@ [CSS Animations: property from [unset\] to [20px 20px\] at (-0.3) should be [26.5px 26.5px\]] expected: FAIL - [CSS Transitions: property from [inherit\] to [20px 20px\] at (0.6) should be [24px 16px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0% 50%\] to [100% 150%\] at (0) should be [0% 50%\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px 20px\] at (0) should be [30px 10px\]] - expected: FAIL - [CSS Transitions: property from [initial\] to [20px 20px\] at (0) should be [25px 25px\]] expected: FAIL @@ -233,9 +158,6 @@ [CSS Transitions with transition: all: property from [initial\] to [20px 20px\] at (1.5) should be [17.5px 17.5px\]] expected: FAIL - [CSS Transitions: property from [inherit\] to [20px 20px\] at (1.5) should be [15px 25px\]] - expected: FAIL - [CSS Animations: property from [unset\] to [20px 20px\] at (1) should be [20px 20px\]] expected: FAIL @@ -248,21 +170,9 @@ [CSS Animations: property from [unset\] to [20px 20px\] at (0.3) should be [23.5px 23.5px\]] expected: FAIL - [CSS Animations: property from [0% 50%\] to [100% 150%\] at (-0.3) should be [-30% 20%\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px 20px\] at (0.3) should be [13px 27px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px 20px\] at (1.5) should be [15px 25px\]] - expected: FAIL - [CSS Transitions with transition: all: property from [unset\] to [20px 20px\] at (1.5) should be [17.5px 17.5px\]] expected: FAIL - [CSS Transitions: property from [0% 50%\] to [100% 150%\] at (0) should be [0% 50%\]] - expected: FAIL - [CSS Transitions: property from [initial\] to [20px 20px\] at (0.6) should be [22px 22px\]] expected: FAIL @@ -272,57 +182,33 @@ [CSS Transitions: property from [initial\] to [20px 20px\] at (-0.3) should be [26.5px 26.5px\]] expected: FAIL - [CSS Animations: property from neutral to [20px 20px\] at (1.5) should be [25px 15px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px 20px\] at (1.5) should be [25px 15px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0% 50%\] to [100% 150%\] at (0.6) should be [60% 110%\]] - expected: FAIL - - [CSS Transitions: property from [0% 50%\] to [100% 150%\] at (-0.3) should be [-30% 20%\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [20px 20px\] at (-0.3) should be [33px 7px\]] expected: FAIL [CSS Transitions with transition: all: property from [unset\] to [20px 20px\] at (0.6) should be [22px 22px\]] expected: FAIL - [CSS Transitions: property from [0% 50%\] to [100% 150%\] at (0.6) should be [60% 110%\]] - expected: FAIL - [CSS Transitions with transition: all: property from [initial\] to [20px 20px\] at (-0.3) should be [26.5px 26.5px\]] expected: FAIL - [CSS Transitions with transition: all: property from [0% 50%\] to [100% 150%\] at (1.5) should be [150% 200%\]] - expected: FAIL - [CSS Animations: property from [initial\] to [20px 20px\] at (1) should be [20px 20px\]] expected: FAIL - [CSS Transitions: property from neutral to [20px 20px\] at (0) should be [10px 30px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [20px 20px\] at (-0.3) should be [7px 33px\]] - expected: FAIL - - [CSS Animations: property from neutral to [20px 20px\] at (-0.3) should be [7px 33px\]] - expected: FAIL - [CSS Transitions with transition: all: property from [unset\] to [20px 20px\] at (0) should be [25px 25px\]] expected: FAIL - [CSS Animations: property from [0% 50%\] to [100% 150%\] at (0.3) should be [30% 80%\]] - expected: FAIL - - [CSS Animations: property from [0% 50%\] to [100% 150%\] at (0) should be [0% 50%\]] - expected: FAIL - - [CSS Transitions: property from neutral to [20px 20px\] at (1.5) should be [25px 15px\]] - expected: FAIL - [CSS Transitions: property from [initial\] to [20px 20px\] at (0.3) should be [23.5px 23.5px\]] expected: FAIL + [CSS Transitions with transition: all: property from [initial\] to [20px 20px\] at (1) should be [20px 20px\]] + expected: FAIL + + [CSS Transitions: property from [unset\] to [20px 20px\] at (1) should be [20px 20px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [unset\] to [20px 20px\] at (1) should be [20px 20px\]] + expected: FAIL + + [CSS Transitions: property from [initial\] to [20px 20px\] at (1) should be [20px 20px\]] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-interpolation-001.html.ini b/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-interpolation-001.html.ini index c4beea8fce4..3b3377c24e5 100644 --- a/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-interpolation-001.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-interpolation-001.html.ini @@ -320,81 +320,30 @@ [CSS Animations: property from [perspective(400px)\] to [perspective(500px)\] at (2) should be [perspective(600px)\]] expected: FAIL - [CSS Transitions with transition: all: property from [rotate(90deg)\] to [none\] at (1) should be [rotate(0deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotateX(0deg) rotateY(0deg) rotateZ(0deg)\] to [rotateX(700deg) rotateY(800deg) rotateZ(900deg)\] at (0) should be [rotateX(0deg) rotateY(0deg) rotateZ(0deg)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [skewX(10rad) perspective(400px)\] to [skewX(20rad) perspective(500px)\] at (-1) should be [skewX(0rad) perspective(300px)\]] expected: FAIL - [CSS Animations: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 2, 0, 450deg)\] at (1) should be [rotate3d(0, 1, 0, 450deg)\]] - expected: FAIL - - [CSS Animations: property from [rotate3d(1, 1, 0, 90deg)\] to [rotate3d(0, 1, 1, 180deg)\] at (0.25) should be [rotate3d(0.524083, 0.804261, 0.280178, 106.91deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 2, 0, 450deg)\] at (0.25) should be [rotate3d(0, 1, 0, 112.5deg)\]] - expected: FAIL - [CSS Transitions: property from [scaleZ(1) perspective(400px)\] to [scaleZ(2) perspective(500px)\] at (2) should be [scaleZ(3) perspective(600px)\]] expected: FAIL - [CSS Transitions with transition: all: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 2, 0, 450deg)\] at (0.75) should be [rotate3d(0, 1, 0, 337.5deg)\]] - expected: FAIL - [CSS Animations: property from [scaleZ(1) perspective(400px)\] to [scaleZ(2) perspective(500px)\] at (2) should be [scaleZ(3) perspective(600px)\]] expected: FAIL - [CSS Transitions with transition: all: property from [none\] to [rotate(90deg)\] at (0.25) should be [rotate(22.5deg)\]] - expected: FAIL - - [CSS Animations: property from [skewX(10rad) perspective(400px)\] to [skewX(20rad) perspective(500px)\] at (0) should be [skewX(10rad) perspective(400px)\]] - expected: FAIL - [CSS Transitions: property from [rotateY(900deg)\] to [rotateZ(0deg)\] at (0) should be [rotateY(900deg)\]] expected: FAIL - [CSS Transitions: property from [none\] to [rotate(90deg)\] at (0.75) should be [rotate(67.5deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotateX(0deg) rotateY(0deg) rotateZ(0deg)\] to [rotateX(700deg) rotateY(800deg) rotateZ(900deg)\] at (-1) should be [rotateX(-700deg) rotateY(-800deg) rotateZ(-900deg)\]] - expected: FAIL - - [CSS Transitions: property from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (0.75) should be [rotateZ(675deg)\]] - expected: FAIL - [CSS Animations: property from [scaleZ(1) perspective(400px)\] to [scaleZ(2) perspective(500px)\] at (0.25) should be [scaleZ(1.25) perspective(425px)\]] expected: FAIL - [CSS Transitions with transition: all: property from [skewX(10rad) perspective(400px)\] to [skewX(20rad) perspective(500px)\] at (0) should be [skewX(10rad) perspective(400px)\]] - expected: FAIL - - [CSS Animations: property from [rotate(90deg)\] to [none\] at (-1) should be [rotate(180deg)\]] - expected: FAIL - - [CSS Animations: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 2, 0, 450deg)\] at (2) should be [rotate3d(0, 1, 0, 900deg)\]] - expected: FAIL - [CSS Animations: property from [skewX(10rad) perspective(400px)\] to [skewX(20rad) perspective(500px)\] at (2) should be [skewX(30rad) perspective(600px)\]] expected: FAIL [CSS Animations: property from [rotate3d(1, 1, 0, 90deg)\] to [rotate3d(0, 1, 1, 180deg)\] at (2) should be [rotate3d(0.71, 0, -0.71, 90deg)\]] expected: FAIL - [CSS Transitions: property from [rotate(90deg)\] to [none\] at (1) should be [rotate(0deg)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [rotate3d(7, 8, 9, 0deg)\] to [rotate3d(7, 8, 9, 450deg)\] at (0.75) should be [rotate3d(7, 8, 9, 337.5deg)\]] expected: FAIL - [CSS Transitions: property from [rotateY(0deg)\] to [rotateY(800deg)\] at (2) should be [rotateY(1600deg)\]] - expected: FAIL - - [CSS Animations: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 1, 0, 450deg)\] at (0) should be [rotate3d(0, 1, 0, 0deg)\]] - expected: FAIL - [CSS Animations: property from [rotate3d(7, 8, 9, 0deg)\] to [rotate3d(7, 8, 9, 450deg)\] at (1) should be [rotate3d(7, 8, 9, 450deg)\]] expected: FAIL @@ -407,45 +356,18 @@ [CSS Transitions: property from [rotate3d(7, 8, 9, 0deg)\] to [rotate3d(7, 8, 9, 450deg)\] at (2) should be [rotate3d(7, 8, 9, 900deg)\]] expected: FAIL - [CSS Transitions with transition: all: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 1, 0, 450deg)\] at (0.75) should be [rotate3d(0, 1, 0, 337.5deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotate(90deg)\] to [none\] at (-1) should be [rotate(180deg)\]] - expected: FAIL - - [CSS Animations: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 2, 0, 450deg)\] at (0.75) should be [rotate3d(0, 1, 0, 337.5deg)\]] - expected: FAIL - - [CSS Transitions: property from [scaleZ(1) perspective(400px)\] to [scaleZ(2) perspective(500px)\] at (0) should be [scaleZ(1) perspective(400px)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [rotateY(900deg)\] to [rotateZ(0deg)\] at (0.25) should be [rotateY(675deg)\]] expected: FAIL - [CSS Animations: property from [perspective(400px)\] to [perspective(500px)\] at (1) should be [perspective(500px)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [rotate3d(1, 1, 0, 90deg)\] to [rotate3d(0, 1, 1, 180deg)\] at (0.75) should be [rotate3d(0.163027, 0.774382, 0.611354, 153.99deg)\]] expected: FAIL - [CSS Animations: property from [rotateX(0deg) rotateY(0deg) rotateZ(0deg)\] to [rotateX(700deg) rotateY(800deg) rotateZ(900deg)\] at (-1) should be [rotateX(-700deg) rotateY(-800deg) rotateZ(-900deg)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [scaleZ(1) perspective(400px)\] to [scaleZ(2) perspective(500px)\] at (2) should be [scaleZ(3) perspective(600px)\]] expected: FAIL - [CSS Transitions: property from [rotateX(0deg) rotateY(0deg) rotateZ(0deg)\] to [rotateX(700deg) rotateY(800deg) rotateZ(900deg)\] at (-1) should be [rotateX(-700deg) rotateY(-800deg) rotateZ(-900deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 1, 0, 450deg)\] at (2) should be [rotate3d(0, 1, 0, 900deg)\]] - expected: FAIL - [CSS Animations: property from [rotateX(0deg)\] to [rotateY(900deg)\] at (0) should be [rotateY(0deg)\]] expected: FAIL - [CSS Animations: property from [skewX(10rad) perspective(400px)\] to [skewX(20rad) perspective(500px)\] at (1) should be [skewX(20rad) perspective(500px)\]] - expected: FAIL - [CSS Animations: property from [rotate3d(1, 1, 0, 90deg)\] to [rotate3d(0, 1, 1, 180deg)\] at (1) should be [rotate3d(0, 1, 1, 180deg)\]] expected: FAIL @@ -455,48 +377,12 @@ [CSS Animations: property from [rotate3d(1, 1, 0, 90deg)\] to [rotate3d(0, 1, 1, 180deg)\] at (0.75) should be [rotate3d(0.163027, 0.774382, 0.611354, 153.99deg)\]] expected: FAIL - [CSS Animations: property from [rotateX(0deg)\] to [rotateX(700deg)\] at (0.25) should be [rotateX(175deg)\]] - expected: FAIL - - [CSS Animations: property from [rotateY(0deg)\] to [rotateY(800deg)\] at (0.75) should be [rotateY(600deg)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [rotateX(0deg)\] to [rotateY(900deg)\] at (0.25) should be [rotateY(225deg)\]] expected: FAIL - [CSS Transitions: property from [none\] to [rotate(90deg)\] at (0.25) should be [rotate(22.5deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [rotate(90deg)\] at (0) should be [rotate(0deg)\]] - expected: FAIL - - [CSS Animations: property from [rotateX(0deg)\] to [rotateX(700deg)\] at (1) should be [rotateX(700deg)\]] - expected: FAIL - - [CSS Transitions: property from [rotate3d(1, 1, 0, 90deg)\] to [rotate3d(0, 1, 1, 180deg)\] at (0.25) should be [rotate3d(0.524083, 0.804261, 0.280178, 106.91deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 2, 0, 450deg)\] at (0) should be [rotate3d(0, 1, 0, 0deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotate(30deg)\] to [rotate(330deg)\] at (2) should be [rotate(630deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotate(30deg)\] to [rotate(330deg)\] at (0.25) should be [rotate(105deg)\]] - expected: FAIL - [CSS Animations: property from [rotate3d(7, 8, 9, 100deg)\] to [rotate3d(7, 8, 9, 260deg)\] at (-1) should be [rotate3d(7, 8, 9, -60deg)\]] expected: FAIL - [CSS Transitions with transition: all: property from [rotate3d(1, 1, 0, 90deg)\] to [rotate3d(0, 1, 1, 180deg)\] at (-1) should be [rotate3d(0.41, -0.41, -0.82, 120deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotateY(0deg)\] to [rotateY(800deg)\] at (0.75) should be [rotateY(600deg)\]] - expected: FAIL - - [CSS Transitions: property from [rotate(90deg)\] to [none\] at (2) should be [rotate(-90deg)\]] - expected: FAIL - [CSS Transitions: property from [perspective(400px)\] to [perspective(500px)\] at (-1) should be [perspective(300px)\]] expected: FAIL @@ -506,48 +392,21 @@ [CSS Transitions: property from [perspective(400px)\] to [perspective(500px)\] at (2) should be [perspective(600px)\]] expected: FAIL - [CSS Animations: property from [scaleZ(1) perspective(400px)\] to [scaleZ(2) perspective(500px)\] at (0) should be [scaleZ(1) perspective(400px)\]] - expected: FAIL - - [CSS Transitions: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 2, 0, 450deg)\] at (0.75) should be [rotate3d(0, 1, 0, 337.5deg)\]] - expected: FAIL - [CSS Transitions: property from [rotate3d(7, 8, 9, 0deg)\] to [rotate3d(7, 8, 9, 450deg)\] at (0.25) should be [rotate3d(7, 8, 9, 112.5deg)\]] expected: FAIL - [CSS Transitions with transition: all: property from [none\] to [rotate(90deg)\] at (0.75) should be [rotate(67.5deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [rotate(90deg)\] at (-1) should be [rotate(-90deg)\]] - expected: FAIL - [CSS Transitions: property from [rotateX(0deg)\] to [rotateY(900deg)\] at (-1) should be [rotateY(-900deg)\]] expected: FAIL - [CSS Transitions with transition: all: property from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (0) should be [rotateZ(0deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotateX(0deg)\] to [rotateX(700deg)\] at (0.75) should be [rotateX(525deg)\]] - expected: FAIL - - [CSS Animations: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 1, 0, 450deg)\] at (0.75) should be [rotate3d(0, 1, 0, 337.5deg)\]] - expected: FAIL - [CSS Animations: property from [rotateX(0deg)\] to [rotateY(900deg)\] at (1) should be [rotateY(900deg)\]] expected: FAIL - [CSS Transitions with transition: all: property from [rotateX(0deg) rotateY(0deg) rotateZ(0deg)\] to [rotateX(700deg) rotateY(800deg) rotateZ(900deg)\] at (0.75) should be [rotateX(525deg) rotateY(600deg) rotateZ(675deg)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [rotate3d(7, 8, 9, 100deg)\] to [rotate3d(7, 8, 9, 260deg)\] at (0) should be [rotate3d(7, 8, 9, 100deg)\]] expected: FAIL [CSS Transitions with transition: all: property from [rotateX(0deg)\] to [rotateY(900deg)\] at (0) should be [rotateY(0deg)\]] expected: FAIL - [CSS Transitions with transition: all: property from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (0.75) should be [rotateZ(675deg)\]] - expected: FAIL - [CSS Animations: property from [rotate3d(7, 8, 9, 100deg)\] to [rotate3d(7, 8, 9, 260deg)\] at (1) should be [rotate3d(7, 8, 9, 260deg)\]] expected: FAIL @@ -557,138 +416,42 @@ [CSS Transitions: property from [scaleZ(1) perspective(400px)\] to [scaleZ(2) perspective(500px)\] at (-1) should be [scaleZ(0) perspective(300px)\]] expected: FAIL - [CSS Animations: property from [rotateY(0deg)\] to [rotateY(800deg)\] at (-1) should be [rotateY(-800deg)\]] - expected: FAIL - - [CSS Transitions: property from [rotate(90deg)\] to [none\] at (0.25) should be [rotate(67.5deg)\]] - expected: FAIL - - [CSS Transitions: property from [rotateX(0deg) rotateY(0deg) rotateZ(0deg)\] to [rotateX(700deg) rotateY(800deg) rotateZ(900deg)\] at (2) should be [rotateX(1400deg) rotateY(1600deg) rotateZ(1800deg)\]] - expected: FAIL - - [CSS Animations: property from [rotateX(0deg)\] to [rotateX(700deg)\] at (0) should be [rotateX(0deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotateY(0deg)\] to [rotateY(800deg)\] at (2) should be [rotateY(1600deg)\]] - expected: FAIL - - [CSS Transitions: property from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (0.25) should be [rotateZ(225deg)\]] - expected: FAIL - [CSS Animations: property from [rotateY(900deg)\] to [rotateZ(0deg)\] at (0.25) should be [rotateY(675deg)\]] expected: FAIL [CSS Transitions with transition: all: property from [rotateY(900deg)\] to [rotateZ(0deg)\] at (2) should be [rotateY(-900deg)\]] expected: FAIL - [CSS Transitions with transition: all: property from [rotateY(0deg)\] to [rotateY(800deg)\] at (-1) should be [rotateY(-800deg)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [scaleZ(1) perspective(400px)\] to [scaleZ(2) perspective(500px)\] at (0.25) should be [scaleZ(1.25) perspective(425px)\]] expected: FAIL - [CSS Animations: property from [none\] to [rotate(90deg)\] at (0.75) should be [rotate(67.5deg)\]] - expected: FAIL - - [CSS Animations: property from [rotate3d(1, 1, 0, 90deg)\] to [rotate3d(0, 1, 1, 180deg)\] at (-1) should be [rotate3d(0.41, -0.41, -0.82, 120deg)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [rotate3d(7, 8, 9, 100deg)\] to [rotate3d(7, 8, 9, 260deg)\] at (0.25) should be [rotate3d(7, 8, 9, 140deg)\]] expected: FAIL - [CSS Transitions: property from [rotateX(0deg)\] to [rotateX(700deg)\] at (0) should be [rotateX(0deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotateX(0deg)\] to [rotateX(700deg)\] at (-1) should be [rotateX(-700deg)\]] - expected: FAIL - - [CSS Transitions: property from [rotateX(0deg) rotateY(0deg) rotateZ(0deg)\] to [rotateX(700deg) rotateY(800deg) rotateZ(900deg)\] at (0) should be [rotateX(0deg) rotateY(0deg) rotateZ(0deg)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [rotateY(900deg)\] to [rotateZ(0deg)\] at (0) should be [rotateY(900deg)\]] expected: FAIL - [CSS Transitions: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 1, 0, 450deg)\] at (0.25) should be [rotate3d(0, 1, 0, 112.5deg)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [rotate(90deg)\] at (0) should be [rotate(0deg)\]] - expected: FAIL - - [CSS Animations: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 1, 0, 450deg)\] at (-1) should be [rotate3d(0, 1, 0, -450deg)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [rotate3d(7, 8, 9, 100deg)\] to [rotate3d(7, 8, 9, 260deg)\] at (2) should be [rotate3d(7, 8, 9, 420deg)\]] expected: FAIL - [CSS Transitions with transition: all: property from [rotateX(0deg) rotateY(0deg) rotateZ(0deg)\] to [rotateX(700deg) rotateY(800deg) rotateZ(900deg)\] at (2) should be [rotateX(1400deg) rotateY(1600deg) rotateZ(1800deg)\]] - expected: FAIL - - [CSS Animations: property from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (-1) should be [rotateZ(-900deg)\]] - expected: FAIL - [CSS Animations: property from [rotate3d(7, 8, 9, 0deg)\] to [rotate3d(7, 8, 9, 450deg)\] at (0) should be [rotate3d(7, 8, 9, 0deg)\]] expected: FAIL - [CSS Transitions: property from [rotate3d(1, 1, 0, 90deg)\] to [rotate3d(0, 1, 1, 180deg)\] at (-1) should be [rotate3d(0.41, -0.41, -0.82, 120deg)\]] - expected: FAIL - - [CSS Animations: property from [scaleZ(1) perspective(400px)\] to [scaleZ(2) perspective(500px)\] at (1) should be [scaleZ(2) perspective(500px)\]] - expected: FAIL - - [CSS Transitions: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 2, 0, 450deg)\] at (1) should be [rotate3d(0, 1, 0, 450deg)\]] - expected: FAIL - [CSS Animations: property from [rotate3d(7, 8, 9, 100deg)\] to [rotate3d(7, 8, 9, 260deg)\] at (0.25) should be [rotate3d(7, 8, 9, 140deg)\]] expected: FAIL [CSS Transitions with transition: all: property from [rotate3d(7, 8, 9, 100deg)\] to [rotate3d(7, 8, 9, 260deg)\] at (0.75) should be [rotate3d(7, 8, 9, 220deg)\]] expected: FAIL - [CSS Animations: property from [rotateX(0deg) rotateY(0deg) rotateZ(0deg)\] to [rotateX(700deg) rotateY(800deg) rotateZ(900deg)\] at (0.25) should be [rotateX(175deg) rotateY(200deg) rotateZ(225deg)\]] - expected: FAIL - - [CSS Animations: property from [rotateX(0deg) rotateY(0deg) rotateZ(0deg)\] to [rotateX(700deg) rotateY(800deg) rotateZ(900deg)\] at (1) should be [rotateX(700deg) rotateY(800deg) rotateZ(900deg)\]] - expected: FAIL - - [CSS Transitions: property from [rotateX(0deg)\] to [rotateX(700deg)\] at (2) should be [rotateX(1400deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (2) should be [rotateZ(1800deg)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [skewX(10rad) perspective(400px)\] to [skewX(20rad) perspective(500px)\] at (0.25) should be [skewX(12.5rad) perspective(425px)\]] expected: FAIL - [CSS Animations: property from [rotate(90deg)\] to [none\] at (2) should be [rotate(-90deg)\]] - expected: FAIL - - [CSS Transitions: property from [rotate(30deg)\] to [rotate(330deg)\] at (2) should be [rotate(630deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotate3d(1, 1, 0, 90deg)\] to [rotate3d(0, 1, 1, 180deg)\] at (0.25) should be [rotate3d(0.524083, 0.804261, 0.280178, 106.91deg)\]] - expected: FAIL - [CSS Transitions: property from [rotate3d(1, 1, 0, 90deg)\] to [rotate3d(0, 1, 1, 180deg)\] at (2) should be [rotate3d(0.71, 0, -0.71, 90deg)\]] expected: FAIL - [CSS Transitions: property from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (2) should be [rotateZ(1800deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotate(30deg)\] to [rotate(330deg)\] at (-1) should be [rotate(-270deg)\]] - expected: FAIL - [CSS Transitions: property from [rotate3d(1, 1, 0, 90deg)\] to [rotate3d(0, 1, 1, 180deg)\] at (0.75) should be [rotate3d(0.163027, 0.774382, 0.611354, 153.99deg)\]] expected: FAIL - [CSS Transitions: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 1, 0, 450deg)\] at (2) should be [rotate3d(0, 1, 0, 900deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 2, 0, 450deg)\] at (1) should be [rotate3d(0, 1, 0, 450deg)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [rotate(90deg)\] at (2) should be [rotate(180deg)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [rotate3d(1, 1, 0, 90deg)\] to [rotate3d(0, 1, 1, 180deg)\] at (2) should be [rotate3d(0.71, 0, -0.71, 90deg)\]] expected: FAIL @@ -704,15 +467,6 @@ [CSS Transitions: property from [rotate3d(7, 8, 9, 100deg)\] to [rotate3d(7, 8, 9, 260deg)\] at (0.75) should be [rotate3d(7, 8, 9, 220deg)\]] expected: FAIL - [CSS Animations: property from [none\] to [rotate(90deg)\] at (-1) should be [rotate(-90deg)\]] - expected: FAIL - - [CSS Transitions: property from [rotate(90deg)\] to [none\] at (0.75) should be [rotate(22.5deg)\]] - expected: FAIL - - [CSS Transitions: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 2, 0, 450deg)\] at (-1) should be [rotate3d(0, 1, 0, -450deg)\]] - expected: FAIL - [CSS Animations: property from [rotate3d(1, 1, 0, 90deg)\] to [rotate3d(0, 1, 1, 180deg)\] at (0) should be [rotate3d(1, 1, 0, 90deg)\]] expected: FAIL @@ -725,42 +479,15 @@ [CSS Transitions: property from [rotateY(900deg)\] to [rotateZ(0deg)\] at (1) should be [rotateY(0deg)\]] expected: FAIL - [CSS Animations: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 1, 0, 450deg)\] at (1) should be [rotate3d(0, 1, 0, 450deg)\]] - expected: FAIL - - [CSS Transitions: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 1, 0, 450deg)\] at (-1) should be [rotate3d(0, 1, 0, -450deg)\]] - expected: FAIL - - [CSS Animations: property from [rotateX(0deg) rotateY(0deg) rotateZ(0deg)\] to [rotateX(700deg) rotateY(800deg) rotateZ(900deg)\] at (2) should be [rotateX(1400deg) rotateY(1600deg) rotateZ(1800deg)\]] - expected: FAIL - - [CSS Transitions: property from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (-1) should be [rotateZ(-900deg)\]] - expected: FAIL - [CSS Animations: property from [rotateX(0deg)\] to [rotateY(900deg)\] at (2) should be [rotateY(1800deg)\]] expected: FAIL [CSS Animations: property from [skewX(10rad) perspective(400px)\] to [skewX(20rad) perspective(500px)\] at (-1) should be [skewX(0rad) perspective(300px)\]] expected: FAIL - [CSS Animations: property from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (0) should be [rotateZ(0deg)\]] - expected: FAIL - - [CSS Animations: property from [perspective(400px)\] to [perspective(500px)\] at (0) should be [perspective(400px)\]] - expected: FAIL - - [CSS Transitions: property from [rotateY(0deg)\] to [rotateY(800deg)\] at (0.75) should be [rotateY(600deg)\]] - expected: FAIL - - [CSS Transitions: property from [rotate(90deg)\] to [none\] at (0) should be [rotate(90deg)\]] - expected: FAIL - [CSS Transitions: property from [rotateX(0deg)\] to [rotateY(900deg)\] at (0.75) should be [rotateY(675deg)\]] expected: FAIL - [CSS Animations: property from [rotateY(0deg)\] to [rotateY(800deg)\] at (1) should be [rotateY(800deg)\]] - expected: FAIL - [CSS Animations: property from [skewX(10rad) perspective(400px)\] to [skewX(20rad) perspective(500px)\] at (0.75) should be [skewX(17.5rad) perspective(475px)\]] expected: FAIL @@ -770,54 +497,15 @@ [CSS Transitions with transition: all: property from [rotate3d(7, 8, 9, 0deg)\] to [rotate3d(7, 8, 9, 450deg)\] at (-1) should be [rotate3d(7, 8, 9, -450deg)\]] expected: FAIL - [CSS Animations: property from [rotate(30deg)\] to [rotate(330deg)\] at (-1) should be [rotate(-270deg)\]] - expected: FAIL - - [CSS Transitions: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 1, 0, 450deg)\] at (0) should be [rotate3d(0, 1, 0, 0deg)\]] - expected: FAIL - [CSS Transitions: property from [skewX(10rad) perspective(400px)\] to [skewX(20rad) perspective(500px)\] at (-1) should be [skewX(0rad) perspective(300px)\]] expected: FAIL - [CSS Animations: property from [rotate(30deg)\] to [rotate(330deg)\] at (0.75) should be [rotate(255deg)\]] - expected: FAIL - - [CSS Animations: property from [rotateX(0deg)\] to [rotateX(700deg)\] at (-1) should be [rotateX(-700deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [perspective(400px)\] to [perspective(500px)\] at (0) should be [perspective(400px)\]] - expected: FAIL - - [CSS Animations: property from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (1) should be [rotateZ(900deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotate(90deg)\] to [none\] at (0) should be [rotate(90deg)\]] - expected: FAIL - - [CSS Animations: property from [rotate(90deg)\] to [none\] at (0) should be [rotate(90deg)\]] - expected: FAIL - [CSS Transitions: property from [rotateY(900deg)\] to [rotateZ(0deg)\] at (2) should be [rotateY(-900deg)\]] expected: FAIL - [CSS Animations: property from [rotateY(0deg)\] to [rotateY(800deg)\] at (2) should be [rotateY(1600deg)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [rotate(90deg)\] at (2) should be [rotate(180deg)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [rotateX(0deg)\] to [rotateY(900deg)\] at (-1) should be [rotateY(-900deg)\]] expected: FAIL - [CSS Transitions: property from [rotateX(0deg) rotateY(0deg) rotateZ(0deg)\] to [rotateX(700deg) rotateY(800deg) rotateZ(900deg)\] at (0.25) should be [rotateX(175deg) rotateY(200deg) rotateZ(225deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (-1) should be [rotateZ(-900deg)\]] - expected: FAIL - - [CSS Transitions: property from [perspective(400px)\] to [perspective(500px)\] at (0) should be [perspective(400px)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [rotateY(900deg)\] to [rotateZ(0deg)\] at (-1) should be [rotateY(1800deg)\]] expected: FAIL @@ -827,18 +515,9 @@ [CSS Transitions with transition: all: property from [rotateY(900deg)\] to [rotateZ(0deg)\] at (0.75) should be [rotateY(225deg)\]] expected: FAIL - [CSS Animations: property from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (0.75) should be [rotateZ(675deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotate(90deg)\] to [none\] at (0.75) should be [rotate(22.5deg)\]] - expected: FAIL - [CSS Animations: property from [perspective(400px)\] to [perspective(500px)\] at (0.75) should be [perspective(475px)\]] expected: FAIL - [CSS Transitions with transition: all: property from [rotateX(0deg)\] to [rotateX(700deg)\] at (0.25) should be [rotateX(175deg)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [rotateY(900deg)\] to [rotateZ(0deg)\] at (1) should be [rotateY(0deg)\]] expected: FAIL @@ -860,12 +539,6 @@ [CSS Transitions: property from [scaleZ(1) perspective(400px)\] to [scaleZ(2) perspective(500px)\] at (0.25) should be [scaleZ(1.25) perspective(425px)\]] expected: FAIL - [CSS Transitions: property from [rotate(30deg)\] to [rotate(330deg)\] at (0.25) should be [rotate(105deg)\]] - expected: FAIL - - [CSS Transitions: property from [rotate(30deg)\] to [rotate(330deg)\] at (-1) should be [rotate(-270deg)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [perspective(400px)\] to [perspective(500px)\] at (-1) should be [perspective(300px)\]] expected: FAIL @@ -875,186 +548,66 @@ [CSS Transitions: property from [rotate3d(7, 8, 9, 100deg)\] to [rotate3d(7, 8, 9, 260deg)\] at (0) should be [rotate3d(7, 8, 9, 100deg)\]] expected: FAIL - [CSS Transitions: property from [rotateY(0deg)\] to [rotateY(800deg)\] at (0.25) should be [rotateY(200deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (0.25) should be [rotateZ(225deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotateX(0deg) rotateY(0deg) rotateZ(0deg)\] to [rotateX(700deg) rotateY(800deg) rotateZ(900deg)\] at (0.25) should be [rotateX(175deg) rotateY(200deg) rotateZ(225deg)\]] - expected: FAIL - - [CSS Transitions: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 2, 0, 450deg)\] at (2) should be [rotate3d(0, 1, 0, 900deg)\]] - expected: FAIL - - [CSS Animations: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 1, 0, 450deg)\] at (0.25) should be [rotate3d(0, 1, 0, 112.5deg)\]] - expected: FAIL - [CSS Transitions: property from [rotateX(0deg)\] to [rotateY(900deg)\] at (2) should be [rotateY(1800deg)\]] expected: FAIL - [CSS Transitions: property from [rotateX(0deg)\] to [rotateX(700deg)\] at (0.75) should be [rotateX(525deg)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [rotateX(0deg)\] to [rotateY(900deg)\] at (0.75) should be [rotateY(675deg)\]] expected: FAIL - [CSS Animations: property from [rotate(90deg)\] to [none\] at (0.75) should be [rotate(22.5deg)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [rotate3d(7, 8, 9, 100deg)\] to [rotate3d(7, 8, 9, 260deg)\] at (-1) should be [rotate3d(7, 8, 9, -60deg)\]] expected: FAIL - [CSS Transitions with transition: all: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 2, 0, 450deg)\] at (-1) should be [rotate3d(0, 1, 0, -450deg)\]] - expected: FAIL - - [CSS Animations: property from [rotateY(0deg)\] to [rotateY(800deg)\] at (0) should be [rotateY(0deg)\]] - expected: FAIL - [CSS Animations: property from [perspective(400px)\] to [perspective(500px)\] at (-1) should be [perspective(300px)\]] expected: FAIL - [CSS Animations: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 2, 0, 450deg)\] at (0.25) should be [rotate3d(0, 1, 0, 112.5deg)\]] - expected: FAIL - - [CSS Animations: property from [rotate(90deg)\] to [none\] at (1) should be [rotate(0deg)\]] - expected: FAIL - [CSS Animations: property from [scaleZ(1) perspective(400px)\] to [scaleZ(2) perspective(500px)\] at (-1) should be [scaleZ(0) perspective(300px)\]] expected: FAIL - [CSS Transitions with transition: all: property from [rotateY(0deg)\] to [rotateY(800deg)\] at (0.25) should be [rotateY(200deg)\]] - expected: FAIL - [CSS Transitions: property from [scaleZ(1) perspective(400px)\] to [scaleZ(2) perspective(500px)\] at (0.75) should be [scaleZ(1.75) perspective(475px)\]] expected: FAIL - [CSS Transitions with transition: all: property from [rotate(30deg)\] to [rotate(330deg)\] at (0.75) should be [rotate(255deg)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [perspective(400px)\] to [perspective(500px)\] at (0.25) should be [perspective(425px)\]] expected: FAIL - [CSS Animations: property from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (2) should be [rotateZ(1800deg)\]] - expected: FAIL - [CSS Animations: property from [rotateY(900deg)\] to [rotateZ(0deg)\] at (1) should be [rotateY(0deg)\]] expected: FAIL [CSS Transitions: property from [rotateY(900deg)\] to [rotateZ(0deg)\] at (0.25) should be [rotateY(675deg)\]] expected: FAIL - [CSS Transitions: property from [rotateY(0deg)\] to [rotateY(800deg)\] at (0) should be [rotateY(0deg)\]] - expected: FAIL - - [CSS Transitions: property from [rotate(30deg)\] to [rotate(330deg)\] at (0) should be [rotate(30deg)\]] - expected: FAIL - - [CSS Transitions: property from [rotate(30deg)\] to [rotate(330deg)\] at (0.75) should be [rotate(255deg)\]] - expected: FAIL - - [CSS Transitions: property from [rotateX(0deg)\] to [rotateX(700deg)\] at (-1) should be [rotateX(-700deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotateX(0deg)\] to [rotateX(700deg)\] at (0) should be [rotateX(0deg)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [scaleZ(1) perspective(400px)\] to [scaleZ(2) perspective(500px)\] at (-1) should be [scaleZ(0) perspective(300px)\]] expected: FAIL [CSS Animations: property from [rotateX(0deg)\] to [rotateY(900deg)\] at (-1) should be [rotateY(-900deg)\]] expected: FAIL - [CSS Animations: property from [rotate(90deg)\] to [none\] at (0.25) should be [rotate(67.5deg)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [rotate3d(7, 8, 9, 0deg)\] to [rotate3d(7, 8, 9, 450deg)\] at (2) should be [rotate3d(7, 8, 9, 900deg)\]] expected: FAIL - [CSS Transitions: property from [none\] to [rotate(90deg)\] at (-1) should be [rotate(-90deg)\]] - expected: FAIL - - [CSS Transitions: property from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (0) should be [rotateZ(0deg)\]] - expected: FAIL - [CSS Transitions: property from [rotateY(900deg)\] to [rotateZ(0deg)\] at (-1) should be [rotateY(1800deg)\]] expected: FAIL - [CSS Transitions with transition: all: property from [scaleZ(1) perspective(400px)\] to [scaleZ(2) perspective(500px)\] at (0) should be [scaleZ(1) perspective(400px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotateY(0deg)\] to [rotateY(800deg)\] at (0) should be [rotateY(0deg)\]] - expected: FAIL - [CSS Animations: property from [rotateY(900deg)\] to [rotateZ(0deg)\] at (0) should be [rotateY(900deg)\]] expected: FAIL [CSS Transitions: property from [perspective(400px)\] to [perspective(500px)\] at (0.25) should be [perspective(425px)\]] expected: FAIL - [CSS Transitions: property from [rotateX(0deg) rotateY(0deg) rotateZ(0deg)\] to [rotateX(700deg) rotateY(800deg) rotateZ(900deg)\] at (0.75) should be [rotateX(525deg) rotateY(600deg) rotateZ(675deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 1, 0, 450deg)\] at (-1) should be [rotate3d(0, 1, 0, -450deg)\]] - expected: FAIL - [CSS Transitions: property from [rotate3d(7, 8, 9, 0deg)\] to [rotate3d(7, 8, 9, 450deg)\] at (0) should be [rotate3d(7, 8, 9, 0deg)\]] expected: FAIL - [CSS Transitions: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 2, 0, 450deg)\] at (0) should be [rotate3d(0, 1, 0, 0deg)\]] - expected: FAIL - [CSS Animations: property from [rotate3d(7, 8, 9, 0deg)\] to [rotate3d(7, 8, 9, 450deg)\] at (0.75) should be [rotate3d(7, 8, 9, 337.5deg)\]] expected: FAIL - [CSS Animations: property from [rotateX(0deg) rotateY(0deg) rotateZ(0deg)\] to [rotateX(700deg) rotateY(800deg) rotateZ(900deg)\] at (0.75) should be [rotateX(525deg) rotateY(600deg) rotateZ(675deg)\]] - expected: FAIL - - [CSS Animations: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 1, 0, 450deg)\] at (2) should be [rotate3d(0, 1, 0, 900deg)\]] - expected: FAIL - [CSS Animations: property from [rotate3d(7, 8, 9, 100deg)\] to [rotate3d(7, 8, 9, 260deg)\] at (2) should be [rotate3d(7, 8, 9, 420deg)\]] expected: FAIL - [CSS Transitions with transition: all: property from [rotate(30deg)\] to [rotate(330deg)\] at (0) should be [rotate(30deg)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [perspective(400px)\] to [perspective(500px)\] at (0.75) should be [perspective(475px)\]] expected: FAIL - [CSS Animations: property from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (0.25) should be [rotateZ(225deg)\]] - expected: FAIL - - [CSS Transitions: property from [rotate(90deg)\] to [none\] at (-1) should be [rotate(180deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 1, 0, 450deg)\] at (0) should be [rotate3d(0, 1, 0, 0deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotateX(0deg)\] to [rotateX(700deg)\] at (2) should be [rotateX(1400deg)\]] - expected: FAIL - [CSS Animations: property from [skewX(10rad) perspective(400px)\] to [skewX(20rad) perspective(500px)\] at (0.25) should be [skewX(12.5rad) perspective(425px)\]] expected: FAIL - [CSS Animations: property from [rotate(30deg)\] to [rotate(330deg)\] at (2) should be [rotate(630deg)\]] - expected: FAIL - - [CSS Transitions: property from [rotateY(0deg)\] to [rotateY(800deg)\] at (-1) should be [rotateY(-800deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [rotate(90deg)\] at (2) should be [rotate(180deg)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [rotate(90deg)\] at (0) should be [rotate(0deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 1, 0, 450deg)\] at (0.25) should be [rotate3d(0, 1, 0, 112.5deg)\]] - expected: FAIL - - [CSS Animations: property from [rotate(30deg)\] to [rotate(330deg)\] at (0) should be [rotate(30deg)\]] - expected: FAIL - [CSS Animations: property from [perspective(400px)\] to [perspective(500px)\] at (0.25) should be [perspective(425px)\]] expected: FAIL @@ -1064,66 +617,15 @@ [CSS Transitions: property from [skewX(10rad) perspective(400px)\] to [skewX(20rad) perspective(500px)\] at (0.75) should be [skewX(17.5rad) perspective(475px)\]] expected: FAIL - [CSS Animations: property from [rotateX(0deg) rotateY(0deg) rotateZ(0deg)\] to [rotateX(700deg) rotateY(800deg) rotateZ(900deg)\] at (0) should be [rotateX(0deg) rotateY(0deg) rotateZ(0deg)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [rotate(90deg)\] at (1) should be [rotate(90deg)\]] - expected: FAIL - - [CSS Animations: property from [rotateY(0deg)\] to [rotateY(800deg)\] at (0.25) should be [rotateY(200deg)\]] - expected: FAIL - - [CSS Animations: property from [rotateX(0deg)\] to [rotateX(700deg)\] at (0.75) should be [rotateX(525deg)\]] - expected: FAIL - - [CSS Animations: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 2, 0, 450deg)\] at (-1) should be [rotate3d(0, 1, 0, -450deg)\]] - expected: FAIL - - [CSS Animations: property from [rotate(30deg)\] to [rotate(330deg)\] at (1) should be [rotate(330deg)\]] - expected: FAIL - - [CSS Animations: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 2, 0, 450deg)\] at (0) should be [rotate3d(0, 1, 0, 0deg)\]] - expected: FAIL - - [CSS Animations: property from [rotateX(0deg)\] to [rotateX(700deg)\] at (2) should be [rotateX(1400deg)\]] - expected: FAIL - - [CSS Transitions: property from [skewX(10rad) perspective(400px)\] to [skewX(20rad) perspective(500px)\] at (0) should be [skewX(10rad) perspective(400px)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [skewX(10rad) perspective(400px)\] to [skewX(20rad) perspective(500px)\] at (0.75) should be [skewX(17.5rad) perspective(475px)\]] expected: FAIL - [CSS Transitions: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 2, 0, 450deg)\] at (0.25) should be [rotate3d(0, 1, 0, 112.5deg)\]] - expected: FAIL - - [CSS Transitions: property from [rotateX(0deg)\] to [rotateX(700deg)\] at (0.25) should be [rotateX(175deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotate(90deg)\] to [none\] at (2) should be [rotate(-90deg)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [rotate(90deg)\] at (0.25) should be [rotate(22.5deg)\]] - expected: FAIL - - [CSS Animations: property from [rotate(30deg)\] to [rotate(330deg)\] at (0.25) should be [rotate(105deg)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [rotate3d(7, 8, 9, 0deg)\] to [rotate3d(7, 8, 9, 450deg)\] at (0.25) should be [rotate3d(7, 8, 9, 112.5deg)\]] expected: FAIL - [CSS Transitions: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 1, 0, 450deg)\] at (0.75) should be [rotate3d(0, 1, 0, 337.5deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 2, 0, 450deg)\] at (2) should be [rotate3d(0, 1, 0, 900deg)\]] - expected: FAIL - [CSS Animations: property from [rotateY(900deg)\] to [rotateZ(0deg)\] at (2) should be [rotateY(-900deg)\]] expected: FAIL - [CSS Transitions with transition: all: property from [rotate(90deg)\] to [none\] at (0.25) should be [rotate(67.5deg)\]] - expected: FAIL - [CSS Animations: property from [rotate3d(7, 8, 9, 0deg)\] to [rotate3d(7, 8, 9, 450deg)\] at (0.25) should be [rotate3d(7, 8, 9, 112.5deg)\]] expected: FAIL @@ -1139,3 +641,27 @@ [CSS Transitions: property from [rotateY(900deg)\] to [rotateZ(0deg)\] at (0.75) should be [rotateY(225deg)\]] expected: FAIL + [CSS Transitions: property from [rotateX(0deg)\] to [rotateY(900deg)\] at (1) should be [rotateY(900deg)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [rotate3d(7, 8, 9, 0deg)\] to [rotate3d(7, 8, 9, 450deg)\] at (1) should be [rotate3d(7, 8, 9, 450deg)\]] + expected: FAIL + + [CSS Transitions: property from [rotate3d(1, 1, 0, 90deg)\] to [rotate3d(0, 1, 1, 180deg)\] at (1) should be [rotate3d(0, 1, 1, 180deg)\]] + expected: FAIL + + [CSS Transitions: property from [rotate3d(7, 8, 9, 0deg)\] to [rotate3d(7, 8, 9, 450deg)\] at (1) should be [rotate3d(7, 8, 9, 450deg)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [rotate3d(1, 1, 0, 90deg)\] to [rotate3d(0, 1, 1, 180deg)\] at (1) should be [rotate3d(0, 1, 1, 180deg)\]] + expected: FAIL + + [CSS Transitions: property from [rotate3d(7, 8, 9, 100deg)\] to [rotate3d(7, 8, 9, 260deg)\] at (1) should be [rotate3d(7, 8, 9, 260deg)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [rotateX(0deg)\] to [rotateY(900deg)\] at (1) should be [rotateY(900deg)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [rotate3d(7, 8, 9, 100deg)\] to [rotate3d(7, 8, 9, 260deg)\] at (1) should be [rotate3d(7, 8, 9, 260deg)\]] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-interpolation-002.html.ini b/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-interpolation-002.html.ini index 80e5634c648..f552d5d5479 100644 --- a/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-interpolation-002.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-interpolation-002.html.ini @@ -161,447 +161,57 @@ [Web Animations: property from [scaleX(10) scaleY(0.5) scaleZ(1)\] to [scaleX(20) scaleY(1) scaleZ(2)\] at (0.75) should be [scaleX(17.5) scaleY(0.875) scaleZ(1.75)\]] expected: FAIL - [CSS Transitions: property from [scale(10, 5)\] to [scale(20, 9)\] at (0) should be [scale(10, 5)\]] - expected: FAIL - - [CSS Transitions: property from [scaleZ(1)\] to [scaleZ(2)\] at (0.75) should be [scaleZ(1.75)\]] - expected: FAIL - - [CSS Animations: property from [scaleY(5)\] to [scaleY(9)\] at (0.25) should be [scaleY(6)\]] - expected: FAIL - [CSS Animations: property from [scaleX(0)\] to [scaleY(0)\] at (2) should be [scale(2, -1)\]] expected: FAIL - [CSS Animations: property from [scale3d(2, 3, 5)\] to [none\] at (0) should be [scale3d(2, 3, 5)\]] - expected: FAIL - - [CSS Transitions: property from [scaleZ(1)\] to [scaleZ(2)\] at (0) should be [scaleZ(1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [scale3d(2, 3, 5)\] at (2) should be [scale3d(3, 5, 9)\]] - expected: FAIL - - [CSS Transitions: property from [scale3d(2, 3, 5)\] to [none\] at (0) should be [scale3d(2, 3, 5)\]] - expected: FAIL - - [CSS Transitions: property from [scaleX(10) scaleY(0.5) scaleZ(1)\] to [scaleX(20) scaleY(1) scaleZ(2)\] at (2) should be [scaleX(30) scaleY(1.5) scaleZ(3)\]] - expected: FAIL - - [CSS Animations: property from [scale(10, 5)\] to [scale(20, 9)\] at (1) should be [scale(20, 9)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scale3d(2, 3, 5)\] to [none\] at (-1) should be [scale3d(3, 5, 9)\]] - expected: FAIL - - [CSS Transitions: property from [scaleX(10) scaleY(0.5) scaleZ(1)\] to [scaleX(20) scaleY(1) scaleZ(2)\] at (0.25) should be [scaleX(12.5) scaleY(0.625) scaleZ(1.25)\]] - expected: FAIL - [CSS Transitions: property from [scaleX(0)\] to [scaleY(0)\] at (1) should be [scale(1, 0)\]] expected: FAIL - [CSS Transitions: property from [scale3d(2, 3, 5)\] to [none\] at (2) should be [scale3d(0, -1, -3)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scale(10, 5)\] to [scale(20, 9)\] at (0.75) should be [scale(17.5, 8)\]] - expected: FAIL - - [CSS Transitions: property from [scaleZ(1)\] to [scaleZ(2)\] at (-1) should be [scaleZ(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scaleX(10)\] to [scaleX(20)\] at (-1) should be [scaleX(0)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [scale3d(2, 3, 5)\] at (0.25) should be [scale3d(1.25, 1.5, 2)\]] - expected: FAIL - [CSS Animations: property from [scaleX(0)\] to [scaleY(0)\] at (0.25) should be [scale(0.25, 0.75)\]] expected: FAIL - [CSS Animations: property from [scaleZ(1)\] to [scaleZ(2)\] at (2) should be [scaleZ(3)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [scaleX(0)\] to [scaleY(0)\] at (0) should be [scale(0, 1)\]] expected: FAIL - [CSS Transitions: property from [scaleX(10) scaleY(0.5) scaleZ(1)\] to [scaleX(20) scaleY(1) scaleZ(2)\] at (-1) should be [scaleX(0) scaleY(0) scaleZ(0)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [scaleX(0)\] to [scaleY(0)\] at (2) should be [scale(2, -1)\]] expected: FAIL [CSS Transitions with transition: all: property from [scaleX(0)\] to [scaleY(0)\] at (0.25) should be [scale(0.25, 0.75)\]] expected: FAIL - [CSS Animations: property from [scaleX(10) scaleY(0.5) scaleZ(1)\] to [scaleX(20) scaleY(1) scaleZ(2)\] at (0) should be [scaleX(10) scaleY(0.5) scaleZ(1)\]] - expected: FAIL - - [CSS Animations: property from [scale(10, 5)\] to [scale(20, 9)\] at (0.25) should be [scale(12.5, 6)\]] - expected: FAIL - - [CSS Animations: property from [scale3d(10, 0.5, 1)\] to [scale3d(20, 1, 2)\] at (2) should be [scale3d(30, 1.5, 3)\]] - expected: FAIL - - [CSS Transitions: property from [scale3d(10, 0.5, 1)\] to [scale3d(20, 1, 2)\] at (0.25) should be [scale3d(12.5, 0.625, 1.25)\]] - expected: FAIL - - [CSS Animations: property from [scale3d(10, 0.5, 1)\] to [scale3d(20, 1, 2)\] at (-1) should be [scale3d(0, 0, 0)\]] - expected: FAIL - - [CSS Animations: property from [scale(10, 5)\] to [scale(20, 9)\] at (0.75) should be [scale(17.5, 8)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scale3d(2, 3, 5)\] to [none\] at (0.75) should be [scale3d(1.25, 1.5, 2)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scaleZ(1)\] to [scaleZ(2)\] at (0.75) should be [scaleZ(1.75)\]] - expected: FAIL - [CSS Animations: property from [scaleX(0)\] to [scaleY(0)\] at (-1) should be [scale(-1, 2)\]] expected: FAIL - [CSS Transitions with transition: all: property from [none\] to [scale3d(2, 3, 5)\] at (0.25) should be [scale3d(1.25, 1.5, 2)\]] - expected: FAIL - - [CSS Transitions: property from [scale3d(10, 0.5, 1)\] to [scale3d(20, 1, 2)\] at (-1) should be [scale3d(0, 0, 0)\]] - expected: FAIL - - [CSS Animations: property from [scaleZ(1)\] to [scaleZ(2)\] at (0) should be [scaleZ(1)\]] - expected: FAIL - - [CSS Animations: property from [scaleY(5)\] to [scaleY(9)\] at (0) should be [scaleY(5)\]] - expected: FAIL - - [CSS Animations: property from [scaleX(10) scaleY(0.5) scaleZ(1)\] to [scaleX(20) scaleY(1) scaleZ(2)\] at (0.25) should be [scaleX(12.5) scaleY(0.625) scaleZ(1.25)\]] - expected: FAIL - - [CSS Transitions: property from [scale(10, 5)\] to [scale(20, 9)\] at (2) should be [scale(30, 13)\]] - expected: FAIL - - [CSS Animations: property from [scale(10, 5)\] to [scale(20, 9)\] at (2) should be [scale(30, 13)\]] - expected: FAIL - - [CSS Animations: property from [scale3d(10, 0.5, 1)\] to [scale3d(20, 1, 2)\] at (0.25) should be [scale3d(12.5, 0.625, 1.25)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scaleX(10)\] to [scaleX(20)\] at (0) should be [scaleX(10)\]] - expected: FAIL - - [CSS Transitions: property from [scaleX(10) scaleY(0.5) scaleZ(1)\] to [scaleX(20) scaleY(1) scaleZ(2)\] at (0.75) should be [scaleX(17.5) scaleY(0.875) scaleZ(1.75)\]] - expected: FAIL - - [CSS Transitions: property from [scaleY(5)\] to [scaleY(9)\] at (0.75) should be [scaleY(8)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [scale3d(2, 3, 5)\] at (0) should be [scale3d(1, 1, 1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scale3d(10, 0.5, 1)\] to [scale3d(20, 1, 2)\] at (2) should be [scale3d(30, 1.5, 3)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scale3d(10, 0.5, 1)\] to [scale3d(20, 1, 2)\] at (0.75) should be [scale3d(17.5, 0.875, 1.75)\]] - expected: FAIL - - [CSS Transitions: property from [scaleX(10)\] to [scaleX(20)\] at (2) should be [scaleX(30)\]] - expected: FAIL - - [CSS Transitions: property from [scale(10, 5)\] to [scale(20, 9)\] at (-1) should be [scale(0, 1)\]] - expected: FAIL - [CSS Transitions: property from [scaleX(0)\] to [scaleY(0)\] at (0.75) should be [scale(0.75, 0.25)\]] expected: FAIL - [CSS Transitions: property from [scaleX(10)\] to [scaleX(20)\] at (-1) should be [scaleX(0)\]] - expected: FAIL - - [CSS Animations: property from [scaleX(10)\] to [scaleX(20)\] at (0.25) should be [scaleX(12.5)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [scale3d(2, 3, 5)\] at (0.75) should be [scale3d(1.75, 2.5, 4)\]] - expected: FAIL - - [CSS Animations: property from [scaleX(10)\] to [scaleX(20)\] at (0.75) should be [scaleX(17.5)\]] - expected: FAIL - [CSS Animations: property from [scaleX(0)\] to [scaleY(0)\] at (0.75) should be [scale(0.75, 0.25)\]] expected: FAIL - [CSS Transitions with transition: all: property from [none\] to [scale3d(2, 3, 5)\] at (-1) should be [scale3d(0, -1, -3)\]] - expected: FAIL - - [CSS Transitions: property from [scaleY(5)\] to [scaleY(9)\] at (-1) should be [scaleY(1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scale3d(2, 3, 5)\] to [none\] at (0.25) should be [scale3d(1.75, 2.5, 4)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scaleY(5)\] to [scaleY(9)\] at (0.25) should be [scaleY(6)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scaleY(5)\] to [scaleY(9)\] at (0) should be [scaleY(5)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scale3d(10, 0.5, 1)\] to [scale3d(20, 1, 2)\] at (-1) should be [scale3d(0, 0, 0)\]] - expected: FAIL - - [CSS Animations: property from [scale(10, 5)\] to [scale(20, 9)\] at (0) should be [scale(10, 5)\]] - expected: FAIL - - [CSS Transitions: property from [scale3d(10, 0.5, 1)\] to [scale3d(20, 1, 2)\] at (0.75) should be [scale3d(17.5, 0.875, 1.75)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scaleX(10) scaleY(0.5) scaleZ(1)\] to [scaleX(20) scaleY(1) scaleZ(2)\] at (0) should be [scaleX(10) scaleY(0.5) scaleZ(1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scale(10, 5)\] to [scale(20, 9)\] at (2) should be [scale(30, 13)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [scale3d(2, 3, 5)\] at (0.25) should be [scale3d(1.25, 1.5, 2)\]] - expected: FAIL - - [CSS Animations: property from [scale3d(10, 0.5, 1)\] to [scale3d(20, 1, 2)\] at (0) should be [scale3d(10, 0.5, 1)\]] - expected: FAIL - [CSS Transitions: property from [scaleX(0)\] to [scaleY(0)\] at (0) should be [scale(0, 1)\]] expected: FAIL - [CSS Animations: property from [scaleZ(1)\] to [scaleZ(2)\] at (1) should be [scaleZ(2)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scale3d(2, 3, 5)\] to [none\] at (2) should be [scale3d(0, -1, -3)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [scaleX(0)\] to [scaleY(0)\] at (-1) should be [scale(-1, 2)\]] expected: FAIL [CSS Animations: property from [scaleX(0)\] to [scaleY(0)\] at (0) should be [scale(0, 1)\]] expected: FAIL - [CSS Transitions: property from [scaleX(10)\] to [scaleX(20)\] at (0.75) should be [scaleX(17.5)\]] - expected: FAIL - - [CSS Animations: property from [scale3d(10, 0.5, 1)\] to [scale3d(20, 1, 2)\] at (0.75) should be [scale3d(17.5, 0.875, 1.75)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scaleX(10) scaleY(0.5) scaleZ(1)\] to [scaleX(20) scaleY(1) scaleZ(2)\] at (2) should be [scaleX(30) scaleY(1.5) scaleZ(3)\]] - expected: FAIL - - [CSS Animations: property from [scaleX(10) scaleY(0.5) scaleZ(1)\] to [scaleX(20) scaleY(1) scaleZ(2)\] at (1) should be [scaleX(20) scaleY(1) scaleZ(2)\]] - expected: FAIL - - [CSS Animations: property from [scaleX(10) scaleY(0.5) scaleZ(1)\] to [scaleX(20) scaleY(1) scaleZ(2)\] at (0.75) should be [scaleX(17.5) scaleY(0.875) scaleZ(1.75)\]] - expected: FAIL - - [CSS Animations: property from [scale3d(2, 3, 5)\] to [none\] at (2) should be [scale3d(0, -1, -3)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scaleX(10) scaleY(0.5) scaleZ(1)\] to [scaleX(20) scaleY(1) scaleZ(2)\] at (0.75) should be [scaleX(17.5) scaleY(0.875) scaleZ(1.75)\]] - expected: FAIL - - [CSS Animations: property from [scaleX(10)\] to [scaleX(20)\] at (1) should be [scaleX(20)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [scale3d(2, 3, 5)\] at (2) should be [scale3d(3, 5, 9)\]] - expected: FAIL - - [CSS Transitions: property from [scale3d(2, 3, 5)\] to [none\] at (1) should be [scale3d(1, 1, 1)\]] - expected: FAIL - - [CSS Transitions: property from [scale3d(2, 3, 5)\] to [none\] at (0.25) should be [scale3d(1.75, 2.5, 4)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [scale3d(2, 3, 5)\] at (2) should be [scale3d(3, 5, 9)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scaleZ(1)\] to [scaleZ(2)\] at (0.25) should be [scaleZ(1.25)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scale(10, 5)\] to [scale(20, 9)\] at (-1) should be [scale(0, 1)\]] - expected: FAIL - - [CSS Animations: property from [scale(10, 5)\] to [scale(20, 9)\] at (-1) should be [scale(0, 1)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [scale3d(2, 3, 5)\] at (0.75) should be [scale3d(1.75, 2.5, 4)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scaleZ(1)\] to [scaleZ(2)\] at (-1) should be [scaleZ(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scaleX(10)\] to [scaleX(20)\] at (0.75) should be [scaleX(17.5)\]] - expected: FAIL - - [CSS Transitions: property from [scale3d(2, 3, 5)\] to [none\] at (-1) should be [scale3d(3, 5, 9)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scale(10, 5)\] to [scale(20, 9)\] at (0) should be [scale(10, 5)\]] - expected: FAIL - - [CSS Animations: property from [scaleY(5)\] to [scaleY(9)\] at (-1) should be [scaleY(1)\]] - expected: FAIL - - [CSS Animations: property from [scaleX(10)\] to [scaleX(20)\] at (-1) should be [scaleX(0)\]] - expected: FAIL - - [CSS Animations: property from [scaleX(10)\] to [scaleX(20)\] at (2) should be [scaleX(30)\]] - expected: FAIL - [CSS Animations: property from [scaleX(0)\] to [scaleY(0)\] at (1) should be [scale(1, 0)\]] expected: FAIL - [CSS Animations: property from [scaleX(10) scaleY(0.5) scaleZ(1)\] to [scaleX(20) scaleY(1) scaleZ(2)\] at (2) should be [scaleX(30) scaleY(1.5) scaleZ(3)\]] - expected: FAIL - - [CSS Animations: property from [scaleY(5)\] to [scaleY(9)\] at (1) should be [scaleY(9)\]] - expected: FAIL - - [CSS Transitions: property from [scale(10, 5)\] to [scale(20, 9)\] at (0.25) should be [scale(12.5, 6)\]] - expected: FAIL - - [CSS Transitions: property from [scale3d(10, 0.5, 1)\] to [scale3d(20, 1, 2)\] at (2) should be [scale3d(30, 1.5, 3)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [scale3d(2, 3, 5)\] at (0) should be [scale3d(1, 1, 1)\]] - expected: FAIL - - [CSS Animations: property from [scaleZ(1)\] to [scaleZ(2)\] at (-1) should be [scaleZ(0)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [scale3d(2, 3, 5)\] at (-1) should be [scale3d(0, -1, -3)\]] - expected: FAIL - - [CSS Animations: property from [scale3d(2, 3, 5)\] to [none\] at (1) should be [scale3d(1, 1, 1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scaleY(5)\] to [scaleY(9)\] at (0.75) should be [scaleY(8)\]] - expected: FAIL - - [CSS Animations: property from [scale3d(2, 3, 5)\] to [none\] at (-1) should be [scale3d(3, 5, 9)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scaleZ(1)\] to [scaleZ(2)\] at (0) should be [scaleZ(1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scaleX(10) scaleY(0.5) scaleZ(1)\] to [scaleX(20) scaleY(1) scaleZ(2)\] at (-1) should be [scaleX(0) scaleY(0) scaleZ(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scale3d(10, 0.5, 1)\] to [scale3d(20, 1, 2)\] at (0) should be [scale3d(10, 0.5, 1)\]] - expected: FAIL - - [CSS Transitions: property from [scale3d(10, 0.5, 1)\] to [scale3d(20, 1, 2)\] at (0) should be [scale3d(10, 0.5, 1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scale3d(10, 0.5, 1)\] to [scale3d(20, 1, 2)\] at (0.25) should be [scale3d(12.5, 0.625, 1.25)\]] - expected: FAIL - - [CSS Transitions: property from [scaleX(10)\] to [scaleX(20)\] at (0.25) should be [scaleX(12.5)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scaleX(10) scaleY(0.5) scaleZ(1)\] to [scaleX(20) scaleY(1) scaleZ(2)\] at (0.25) should be [scaleX(12.5) scaleY(0.625) scaleZ(1.25)\]] - expected: FAIL - [CSS Transitions: property from [scaleX(0)\] to [scaleY(0)\] at (0.25) should be [scale(0.25, 0.75)\]] expected: FAIL - [CSS Transitions with transition: all: property from [scaleZ(1)\] to [scaleZ(2)\] at (2) should be [scaleZ(3)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [scale3d(2, 3, 5)\] at (-1) should be [scale3d(0, -1, -3)\]] - expected: FAIL - - [CSS Animations: property from [scale3d(2, 3, 5)\] to [none\] at (0.75) should be [scale3d(1.25, 1.5, 2)\]] - expected: FAIL - - [CSS Transitions: property from [scale(10, 5)\] to [scale(20, 9)\] at (0.75) should be [scale(17.5, 8)\]] - expected: FAIL - - [CSS Animations: property from [scaleX(10)\] to [scaleX(20)\] at (0) should be [scaleX(10)\]] - expected: FAIL - - [CSS Transitions: property from [scaleZ(1)\] to [scaleZ(2)\] at (2) should be [scaleZ(3)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scale3d(2, 3, 5)\] to [none\] at (0) should be [scale3d(2, 3, 5)\]] - expected: FAIL - - [CSS Transitions: property from [scale3d(2, 3, 5)\] to [none\] at (0.75) should be [scale3d(1.25, 1.5, 2)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [scale3d(2, 3, 5)\] at (0.75) should be [scale3d(1.75, 2.5, 4)\]] - expected: FAIL - - [CSS Animations: property from [scale3d(2, 3, 5)\] to [none\] at (0.25) should be [scale3d(1.75, 2.5, 4)\]] - expected: FAIL - - [CSS Animations: property from [scaleZ(1)\] to [scaleZ(2)\] at (0.75) should be [scaleZ(1.75)\]] - expected: FAIL - - [CSS Animations: property from [scale3d(10, 0.5, 1)\] to [scale3d(20, 1, 2)\] at (1) should be [scale3d(20, 1, 2)\]] - expected: FAIL - - [CSS Animations: property from [scaleX(10) scaleY(0.5) scaleZ(1)\] to [scaleX(20) scaleY(1) scaleZ(2)\] at (-1) should be [scaleX(0) scaleY(0) scaleZ(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scaleY(5)\] to [scaleY(9)\] at (-1) should be [scaleY(1)\]] - expected: FAIL - [CSS Transitions: property from [scaleX(0)\] to [scaleY(0)\] at (2) should be [scale(2, -1)\]] expected: FAIL - [CSS Transitions: property from [scaleY(5)\] to [scaleY(9)\] at (2) should be [scaleY(13)\]] - expected: FAIL - - [CSS Transitions: property from [scaleZ(1)\] to [scaleZ(2)\] at (0.25) should be [scaleZ(1.25)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [scaleX(0)\] to [scaleY(0)\] at (0.75) should be [scale(0.75, 0.25)\]] expected: FAIL - [CSS Transitions with transition: all: property from [scaleX(10)\] to [scaleX(20)\] at (0.25) should be [scaleX(12.5)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scale(10, 5)\] to [scale(20, 9)\] at (0.25) should be [scale(12.5, 6)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [scale3d(2, 3, 5)\] at (0) should be [scale3d(1, 1, 1)\]] - expected: FAIL - - [CSS Transitions: property from [scaleY(5)\] to [scaleY(9)\] at (0.25) should be [scaleY(6)\]] - expected: FAIL - [CSS Transitions: property from [scaleX(0)\] to [scaleY(0)\] at (-1) should be [scale(-1, 2)\]] expected: FAIL - [CSS Transitions with transition: all: property from [scale3d(2, 3, 5)\] to [none\] at (1) should be [scale3d(1, 1, 1)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [scale3d(2, 3, 5)\] at (1) should be [scale3d(2, 3, 5)\]] - expected: FAIL - - [CSS Animations: property from [scaleZ(1)\] to [scaleZ(2)\] at (0.25) should be [scaleZ(1.25)\]] - expected: FAIL - - [CSS Transitions: property from [scaleY(5)\] to [scaleY(9)\] at (0) should be [scaleY(5)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scaleY(5)\] to [scaleY(9)\] at (2) should be [scaleY(13)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [scaleX(0)\] to [scaleY(0)\] at (1) should be [scale(1, 0)\]] expected: FAIL - [CSS Animations: property from [scaleY(5)\] to [scaleY(9)\] at (2) should be [scaleY(13)\]] - expected: FAIL - - [CSS Transitions: property from [scaleX(10) scaleY(0.5) scaleZ(1)\] to [scaleX(20) scaleY(1) scaleZ(2)\] at (0) should be [scaleX(10) scaleY(0.5) scaleZ(1)\]] - expected: FAIL - - [CSS Animations: property from [scaleY(5)\] to [scaleY(9)\] at (0.75) should be [scaleY(8)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [scaleX(10)\] to [scaleX(20)\] at (2) should be [scaleX(30)\]] - expected: FAIL - - [CSS Transitions: property from [scaleX(10)\] to [scaleX(20)\] at (0) should be [scaleX(10)\]] - expected: FAIL - diff --git a/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-interpolation-003.html.ini b/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-interpolation-003.html.ini index dd1fc889827..46da28061ea 100644 --- a/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-interpolation-003.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-interpolation-003.html.ini @@ -125,126 +125,27 @@ [Web Animations: property from [translateY(70%) scaleZ(1)\] to [translateY(90%) scaleZ(2)\] at (0) should be [translateY(70%) scaleZ(1)\]] expected: FAIL - [CSS Transitions: property from [skewX(10rad)\] to [skewX(20rad)\] at (2) should be [skewX(30rad)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [skewX(10rad) scaleZ(1)\] to [skewX(20rad) scaleZ(2)\] at (0.25) should be [skewX(12.5rad) scaleZ(1.25)\]] - expected: FAIL - - [CSS Animations: property from [skewX(10rad) scaleZ(1)\] to [skewX(20rad) scaleZ(2)\] at (0.75) should be [skewX(17.5rad) scaleZ(1.75)\]] - expected: FAIL - - [CSS Transitions: property from [translateY(70%) scaleZ(1)\] to [translateY(90%) scaleZ(2)\] at (-1) should be [translateY(50%) scaleZ(0)\]] - expected: FAIL - - [CSS Transitions: property from [skewY(10rad)\] to [skewY(20rad)\] at (0.75) should be [skewY(17.5rad)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (2) should be [translateY(110%) scaleZ(3)\]] - expected: FAIL - - [CSS Animations: property from [translateY(70%) scaleZ(1)\] to [translateY(90%) scaleZ(2)\] at (0.25) should be [translateY(75%) scaleZ(1.25)\]] - expected: FAIL - - [CSS Transitions: property from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (2) should be [translateY(110%) scaleZ(3)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [skewX(10rad)\] to [skewX(20rad)\] at (0.75) should be [skewX(17.5rad)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [scaleZ(3) perspective(400px)\] to [scaleZ(4) skewX(1rad) perspective(500px)\] at (0.25) should be [scaleZ(3.25) matrix3d(1, 0, 0, 0, 0.389352, 1, 0, 0, 0, 0, 1, -0.002375, 0, 0, 0, 1)\]] expected: FAIL - [CSS Animations: property from [skewX(10rad) scaleZ(1)\] to [skewX(20rad) scaleZ(2)\] at (2) should be [skewX(30rad) scaleZ(3)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [scaleZ(3) perspective(400px)\] to [scaleZ(4) skewX(1rad) perspective(500px)\] at (0.75) should be [scaleZ(3.75) matrix3d(1, 0, 0, 0, 1.16806, 1, 0, 0, 0, 0, 1, -0.002125, 0, 0, 0, 1)\]] expected: FAIL - [CSS Animations: property from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (0.75) should be [translateY(85%) scaleZ(1.75)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [skewX(10rad)\] to [skewX(20rad)\] at (2) should be [skewX(30rad)\]] - expected: FAIL - - [CSS Animations: property from [skewY(10rad)\] to [skewY(20rad)\] at (0.25) should be [skewY(12.5rad)\]] - expected: FAIL - [CSS Transitions: property from [scaleZ(3) perspective(400px)\] to [scaleZ(4) skewX(1rad) perspective(500px)\] at (0.75) should be [scaleZ(3.75) matrix3d(1, 0, 0, 0, 1.16806, 1, 0, 0, 0, 0, 1, -0.002125, 0, 0, 0, 1)\]] expected: FAIL - [CSS Transitions with transition: all: property from [translateY(70%) scaleZ(1)\] to [translateY(90%) scaleZ(2)\] at (0.75) should be [translateY(85%) scaleZ(1.75)\]] - expected: FAIL - - [CSS Animations: property from [skewX(10rad)\] to [skewX(20rad)\] at (2) should be [skewX(30rad)\]] - expected: FAIL - - [CSS Animations: property from [translateY(70%) scaleZ(1)\] to [translateY(90%) scaleZ(2)\] at (0) should be [translateY(70%) scaleZ(1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [skewX(10rad) scaleZ(1)\] to [skewX(20rad) scaleZ(2)\] at (0.75) should be [skewX(17.5rad) scaleZ(1.75)\]] - expected: FAIL - [CSS Animations: property from [scaleZ(3) perspective(400px)\] to [scaleZ(4) skewX(1rad) perspective(500px)\] at (0.75) should be [scaleZ(3.75) matrix3d(1, 0, 0, 0, 1.16806, 1, 0, 0, 0, 0, 1, -0.002125, 0, 0, 0, 1)\]] expected: FAIL [CSS Transitions: property from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (0) should be [translateY(70%)\]] expected: FAIL - [CSS Transitions with transition: all: property from [translateY(70%) scaleZ(1)\] to [translateY(90%) scaleZ(2)\] at (2) should be [translateY(110%) scaleZ(3)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [skewY(10rad)\] to [skewY(20rad)\] at (2) should be [skewY(30rad)\]] - expected: FAIL - - [CSS Animations: property from [skewX(10rad) scaleZ(1)\] to [skewX(20rad) scaleZ(2)\] at (0) should be [skewX(10rad) scaleZ(1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [skewY(10rad)\] to [skewY(20rad)\] at (0.75) should be [skewY(17.5rad)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (0.75) should be [translateY(85%) scaleZ(1.75)\]] - expected: FAIL - - [CSS Animations: property from [skewX(10rad)\] to [skewX(20rad)\] at (0.25) should be [skewX(12.5rad)\]] - expected: FAIL - [CSS Animations: property from [scaleZ(3) perspective(400px)\] to [scaleZ(4) skewX(1rad) perspective(500px)\] at (1) should be [scaleZ(4) matrix3d(1, 0, 0, 0, 1.55741, 1, 0, 0, 0, 0, 1, -0.002, 0, 0, 0, 1)\]] expected: FAIL - [CSS Transitions with transition: all: property from [skewX(10rad)\] to [skewX(20rad)\] at (0.25) should be [skewX(12.5rad)\]] - expected: FAIL - - [CSS Animations: property from [skewX(10rad) scaleZ(1)\] to [skewX(20rad) scaleZ(2)\] at (1) should be [skewX(20rad) scaleZ(2)\]] - expected: FAIL - - [CSS Transitions: property from [skewY(10rad)\] to [skewY(20rad)\] at (2) should be [skewY(30rad)\]] - expected: FAIL - - [CSS Animations: property from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (-1) should be [skewX(0rad) scaleZ(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (0) should be [skewX(10rad) scaleZ(1)\]] - expected: FAIL - [CSS Transitions: property from [scaleZ(3) perspective(400px)\] to [scaleZ(4) skewX(1rad) perspective(500px)\] at (1) should be [scaleZ(4) matrix3d(1, 0, 0, 0, 1.55741, 1, 0, 0, 0, 0, 1, -0.002, 0, 0, 0, 1)\]] expected: FAIL - [CSS Transitions: property from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (0.75) should be [translateY(85%) scaleZ(1.75)\]] - expected: FAIL - - [CSS Animations: property from [skewY(10rad)\] to [skewY(20rad)\] at (2) should be [skewY(30rad)\]] - expected: FAIL - - [CSS Animations: property from [translateY(70%) scaleZ(1)\] to [translateY(90%) scaleZ(2)\] at (-1) should be [translateY(50%) scaleZ(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [translateY(70%) scaleZ(1)\] to [translateY(90%) scaleZ(2)\] at (0.25) should be [translateY(75%) scaleZ(1.25)\]] - expected: FAIL - - [CSS Transitions: property from [skewX(10rad)\] to [skewX(20rad)\] at (0) should be [skewX(10rad)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [scaleZ(3) perspective(400px)\] to [scaleZ(4) skewX(1rad) perspective(500px)\] at (1) should be [scaleZ(4) matrix3d(1, 0, 0, 0, 1.55741, 1, 0, 0, 0, 0, 1, -0.002, 0, 0, 0, 1)\]] expected: FAIL @@ -254,216 +155,36 @@ [CSS Transitions with transition: all: property from [scaleZ(3) perspective(400px)\] to [scaleZ(4) skewX(1rad) perspective(500px)\] at (2) should be [scaleZ(5) matrix3d(1, 0, 0, 0, 3.11482, 1, 0, 0, 0, 0, 1, -0.0015, 0, 0, 0, 1)\]] expected: FAIL - [CSS Transitions with transition: all: property from [skewX(10rad)\] to [skewX(20rad)\] at (0) should be [skewX(10rad)\]] - expected: FAIL - [CSS Transitions: property from [scaleZ(3) perspective(400px)\] to [scaleZ(4) skewX(1rad) perspective(500px)\] at (0) should be [scaleZ(3) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, -0.0025, 0, 0, 0, 1)\]] expected: FAIL - [CSS Animations: property from [skewX(10rad)\] to [skewX(20rad)\] at (-1) should be [skewX(0rad)\]] - expected: FAIL - - [CSS Animations: property from [skewX(10rad) scaleZ(1)\] to [skewX(20rad) scaleZ(2)\] at (-1) should be [skewX(0rad) scaleZ(0)\]] - expected: FAIL - - [CSS Animations: property from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (1) should be [translateY(90%) scaleZ(2)\]] - expected: FAIL - - [CSS Transitions: property from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (0) should be [skewX(10rad) scaleZ(1)\]] - expected: FAIL - - [CSS Transitions: property from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (-1) should be [skewX(0rad) scaleZ(0)\]] - expected: FAIL - - [CSS Animations: property from [skewX(10rad) scaleZ(1)\] to [skewX(20rad) scaleZ(2)\] at (0.25) should be [skewX(12.5rad) scaleZ(1.25)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (0) should be [translateY(70%)\]] expected: FAIL - [CSS Transitions with transition: all: property from [skewX(10rad) scaleZ(1)\] to [skewX(20rad) scaleZ(2)\] at (2) should be [skewX(30rad) scaleZ(3)\]] - expected: FAIL - [CSS Animations: property from [scaleZ(3) perspective(400px)\] to [scaleZ(4) skewX(1rad) perspective(500px)\] at (0.25) should be [scaleZ(3.25) matrix3d(1, 0, 0, 0, 0.389352, 1, 0, 0, 0, 0, 1, -0.002375, 0, 0, 0, 1)\]] expected: FAIL - [CSS Transitions: property from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (2) should be [skewX(30rad) scaleZ(3)\]] - expected: FAIL - [CSS Transitions: property from [scaleZ(3) perspective(400px)\] to [scaleZ(4) skewX(1rad) perspective(500px)\] at (-1) should be [scaleZ(2) matrix3d(1, 0, 0, 0, -1.55741, 1, 0, 0, 0, 0, 1, -0.003, 0, 0, 0, 1)\]] expected: FAIL - [CSS Animations: property from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (0.75) should be [skewX(17.5rad) scaleZ(1.75)\]] - expected: FAIL - - [CSS Animations: property from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (2) should be [skewX(30rad) scaleZ(3)\]] - expected: FAIL - - [CSS Transitions: property from [translateY(70%) scaleZ(1)\] to [translateY(90%) scaleZ(2)\] at (0) should be [translateY(70%) scaleZ(1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (-1) should be [translateY(50%) scaleZ(0)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [scaleZ(3) perspective(400px)\] to [scaleZ(4) skewX(1rad) perspective(500px)\] at (-1) should be [scaleZ(2) matrix3d(1, 0, 0, 0, -1.55741, 1, 0, 0, 0, 0, 1, -0.003, 0, 0, 0, 1)\]] expected: FAIL - [CSS Transitions with transition: all: property from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (0.75) should be [skewX(17.5rad) scaleZ(1.75)\]] - expected: FAIL - - [CSS Transitions: property from [skewX(10rad) scaleZ(1)\] to [skewX(20rad) scaleZ(2)\] at (0.25) should be [skewX(12.5rad) scaleZ(1.25)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [skewY(10rad)\] to [skewY(20rad)\] at (0.25) should be [skewY(12.5rad)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [translateY(70%) scaleZ(1)\] to [translateY(90%) scaleZ(2)\] at (0) should be [translateY(70%) scaleZ(1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [skewX(10rad) scaleZ(1)\] to [skewX(20rad) scaleZ(2)\] at (-1) should be [skewX(0rad) scaleZ(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [translateY(70%) scaleZ(1)\] to [translateY(90%) scaleZ(2)\] at (-1) should be [translateY(50%) scaleZ(0)\]] - expected: FAIL - - [CSS Transitions: property from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (0.25) should be [translateY(75%) scaleZ(1.25)\]] - expected: FAIL - - [CSS Animations: property from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (0.25) should be [skewX(12.5rad) scaleZ(1.25)\]] - expected: FAIL - - [CSS Animations: property from [translateY(70%) scaleZ(1)\] to [translateY(90%) scaleZ(2)\] at (2) should be [translateY(110%) scaleZ(3)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [skewY(10rad)\] to [skewY(20rad)\] at (-1) should be [skewY(0rad)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [scaleZ(3) perspective(400px)\] to [scaleZ(4) skewX(1rad) perspective(500px)\] at (0) should be [scaleZ(3) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, -0.0025, 0, 0, 0, 1)\]] expected: FAIL - [CSS Animations: property from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (2) should be [translateY(110%) scaleZ(3)\]] - expected: FAIL - [CSS Transitions: property from [scaleZ(3) perspective(400px)\] to [scaleZ(4) skewX(1rad) perspective(500px)\] at (2) should be [scaleZ(5) matrix3d(1, 0, 0, 0, 3.11482, 1, 0, 0, 0, 0, 1, -0.0015, 0, 0, 0, 1)\]] expected: FAIL - [CSS Animations: property from [translateY(70%) scaleZ(1)\] to [translateY(90%) scaleZ(2)\] at (0.75) should be [translateY(85%) scaleZ(1.75)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (-1) should be [skewX(0rad) scaleZ(0)\]] - expected: FAIL - - [CSS Transitions: property from [skewX(10rad)\] to [skewX(20rad)\] at (-1) should be [skewX(0rad)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (2) should be [skewX(30rad) scaleZ(3)\]] - expected: FAIL - - [CSS Transitions: property from [skewX(10rad) scaleZ(1)\] to [skewX(20rad) scaleZ(2)\] at (2) should be [skewX(30rad) scaleZ(3)\]] - expected: FAIL - - [CSS Animations: property from [translateY(70%) scaleZ(1)\] to [translateY(90%) scaleZ(2)\] at (1) should be [translateY(90%) scaleZ(2)\]] - expected: FAIL - - [CSS Animations: property from [skewY(10rad)\] to [skewY(20rad)\] at (0) should be [skewY(10rad)\]] - expected: FAIL - - [CSS Animations: property from [skewY(10rad)\] to [skewY(20rad)\] at (0.75) should be [skewY(17.5rad)\]] - expected: FAIL - - [CSS Transitions: property from [skewX(10rad) scaleZ(1)\] to [skewX(20rad) scaleZ(2)\] at (0) should be [skewX(10rad) scaleZ(1)\]] - expected: FAIL - - [CSS Transitions: property from [skewY(10rad)\] to [skewY(20rad)\] at (0) should be [skewY(10rad)\]] - expected: FAIL - - [CSS Animations: property from [skewY(10rad)\] to [skewY(20rad)\] at (-1) should be [skewY(0rad)\]] - expected: FAIL - [CSS Animations: property from [scaleZ(3) perspective(400px)\] to [scaleZ(4) skewX(1rad) perspective(500px)\] at (2) should be [scaleZ(5) matrix3d(1, 0, 0, 0, 3.11482, 1, 0, 0, 0, 0, 1, -0.0015, 0, 0, 0, 1)\]] expected: FAIL - [CSS Animations: property from [skewX(10rad)\] to [skewX(20rad)\] at (0) should be [skewX(10rad)\]] - expected: FAIL - - [CSS Transitions: property from [skewX(10rad)\] to [skewX(20rad)\] at (0.75) should be [skewX(17.5rad)\]] - expected: FAIL - - [CSS Transitions: property from [skewX(10rad) scaleZ(1)\] to [skewX(20rad) scaleZ(2)\] at (-1) should be [skewX(0rad) scaleZ(0)\]] - expected: FAIL - - [CSS Animations: property from [skewX(10rad)\] to [skewX(20rad)\] at (1) should be [skewX(20rad)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (0.25) should be [translateY(75%) scaleZ(1.25)\]] - expected: FAIL - - [CSS Animations: property from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (0) should be [skewX(10rad) scaleZ(1)\]] - expected: FAIL - - [CSS Animations: property from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (-1) should be [translateY(50%) scaleZ(0)\]] - expected: FAIL - - [CSS Transitions: property from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (0.75) should be [skewX(17.5rad) scaleZ(1.75)\]] - expected: FAIL - - [CSS Animations: property from [skewX(10rad)\] to [skewX(20rad)\] at (0.75) should be [skewX(17.5rad)\]] - expected: FAIL - - [CSS Animations: property from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (1) should be [skewX(20rad) scaleZ(2)\]] - expected: FAIL - - [CSS Transitions: property from [skewX(10rad) scaleZ(1)\] to [skewX(20rad) scaleZ(2)\] at (0.75) should be [skewX(17.5rad) scaleZ(1.75)\]] - expected: FAIL - - [CSS Transitions: property from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (0.25) should be [skewX(12.5rad) scaleZ(1.25)\]] - expected: FAIL - [CSS Animations: property from [scaleZ(3) perspective(400px)\] to [scaleZ(4) skewX(1rad) perspective(500px)\] at (0) should be [scaleZ(3) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, -0.0025, 0, 0, 0, 1)\]] expected: FAIL [CSS Transitions: property from [scaleZ(3) perspective(400px)\] to [scaleZ(4) skewX(1rad) perspective(500px)\] at (0.25) should be [scaleZ(3.25) matrix3d(1, 0, 0, 0, 0.389352, 1, 0, 0, 0, 0, 1, -0.002375, 0, 0, 0, 1)\]] expected: FAIL - [CSS Transitions: property from [skewY(10rad)\] to [skewY(20rad)\] at (0.25) should be [skewY(12.5rad)\]] - expected: FAIL - - [CSS Transitions: property from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (-1) should be [translateY(50%) scaleZ(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [skewX(10rad) scaleZ(1)\] to [skewX(20rad) scaleZ(2)\] at (0) should be [skewX(10rad) scaleZ(1)\]] - expected: FAIL - - [CSS Transitions: property from [skewY(10rad)\] to [skewY(20rad)\] at (-1) should be [skewY(0rad)\]] - expected: FAIL - - [CSS Transitions: property from [translateY(70%) scaleZ(1)\] to [translateY(90%) scaleZ(2)\] at (0.25) should be [translateY(75%) scaleZ(1.25)\]] - expected: FAIL - - [CSS Transitions: property from [translateY(70%) scaleZ(1)\] to [translateY(90%) scaleZ(2)\] at (0.75) should be [translateY(85%) scaleZ(1.75)\]] - expected: FAIL - - [CSS Transitions: property from [skewX(10rad)\] to [skewX(20rad)\] at (0.25) should be [skewX(12.5rad)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (0.25) should be [skewX(12.5rad) scaleZ(1.25)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [skewX(10rad)\] to [skewX(20rad)\] at (-1) should be [skewX(0rad)\]] - expected: FAIL - - [CSS Transitions: property from [translateY(70%) scaleZ(1)\] to [translateY(90%) scaleZ(2)\] at (2) should be [translateY(110%) scaleZ(3)\]] - expected: FAIL - - [CSS Animations: property from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (0.25) should be [translateY(75%) scaleZ(1.25)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [skewY(10rad)\] to [skewY(20rad)\] at (0) should be [skewY(10rad)\]] - expected: FAIL - [CSS Animations: property from [scaleZ(3) perspective(400px)\] to [scaleZ(4) skewX(1rad) perspective(500px)\] at (-1) should be [scaleZ(2) matrix3d(1, 0, 0, 0, -1.55741, 1, 0, 0, 0, 0, 1, -0.003, 0, 0, 0, 1)\]] expected: FAIL - [CSS Animations: property from [skewY(10rad)\] to [skewY(20rad)\] at (1) should be [skewY(20rad)\]] - expected: FAIL - diff --git a/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-interpolation-004.html.ini b/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-interpolation-004.html.ini index b959b6d06ee..0050674ab78 100644 --- a/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-interpolation-004.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-interpolation-004.html.ini @@ -218,117 +218,39 @@ [CSS Transitions with transition: all: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) skewX(2rad) scaleY(2)\] at (0.25) should be [translate3d(7px, -6px, 11px) skewX(1.25rad) matrix3d(1, 0, 0, 0, 0, 1.25, 0, 0, 0, 0, 1, -0.001875, 0, 0, 0, 1)\]] expected: FAIL - [CSS Animations: property from [translateX(12px) translateY(70%) translateZ(2em)\] to [translateX(13px) translateY(90%) translateZ(3em)\] at (-1) should be [translateX(11px) translateY(50%) translateZ(1em)\]] - expected: FAIL - - [CSS Animations: property from [translateX(12px) translateY(70%) translateZ(2em)\] to [translateX(13px) translateY(90%) translateZ(3em)\] at (0.75) should be [translateX(12.75px) translateY(85%) translateZ(2.75em)\]] - expected: FAIL - - [CSS Transitions: property from [translateY(70%)\] to [translateY(90%)\] at (-1) should be [translateY(50%)\]] - expected: FAIL - - [CSS Transitions: property from [translate3d(12px, 70%, 2em)\] to [translate3d(13px, 90%, 3em)\] at (0.75) should be [translate3d(12.75px, 85%, 2.75em)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [skewX(10rad) translateY(70%)\] to [skewX(20rad) translateY(90%)\] at (0.75) should be [skewX(17.5rad) translateY(85%)\]] - expected: FAIL - - [CSS Animations: property from [skewX(10rad) translateY(70%)\] to [skewX(20rad) translateY(90%)\] at (0.25) should be [skewX(12.5rad) translateY(75%)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [translateY(70%)\] to [translateY(90%)\] at (0.75) should be [translateY(85%)\]] - expected: FAIL - - [CSS Transitions: property from [translate3d(12px, 70%, 2em)\] to [translate3d(13px, 90%, 3em)\] at (0.25) should be [translate3d(12.25px, 75%, 2.25em)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) skewX(2rad) scaleY(2)\] at (-1) should be [translate3d(12px, 4px, 16px) skewX(0rad) matrix3d(1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -0.005, 0, 0, 0, 1)\]] expected: FAIL - [CSS Animations: property from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (0) should be [translate(12px, 70%)\]] - expected: FAIL - - [CSS Transitions: property from [translateZ(2em)\] to [translateZ(3em)\] at (0.75) should be [translateZ(2.75em)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) scaleY(2) perspective(500px)\] at (-1) should be [translate3d(12px, 4px, 16px) matrix3d(1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -0.003, 0, 0, 0, 1)\]] expected: FAIL [CSS Transitions: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) scaleY(2) perspective(500px)\] at (-1) should be [translate3d(12px, 4px, 16px) matrix3d(1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -0.003, 0, 0, 0, 1)\]] expected: FAIL - [CSS Transitions with transition: all: property from [translateZ(2em)\] to [translateZ(3em)\] at (0.75) should be [translateZ(2.75em)\]] - expected: FAIL - - [CSS Animations: property from [translateX(12px)\] to [translateX(13px)\] at (2) should be [translateX(14px)\]] - expected: FAIL - [CSS Transitions: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [scaleY(2) skewX(2rad) perspective(500px)\] at (0) should be [matrix3d(1, 0, 0, 0, 1.5574077246549023, 1, 0, 0, -0.02, 0.01, 0.97, -0.0025, 8, -4, 12, 1)\]] expected: FAIL - [CSS Animations: property from [translateX(12px)\] to [translateX(13px)\] at (0.25) should be [translateX(12.25px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [skewX(10rad) translateY(70%)\] to [skewX(20rad) translateY(90%)\] at (0) should be [skewX(10rad) translateY(70%)\]] - expected: FAIL - - [CSS Animations: property from [translateY(70%)\] to [translateY(90%)\] at (0) should be [translateY(70%)\]] - expected: FAIL - - [CSS Transitions: property from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (0.75) should be [translate(12.75px, 85%)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (0.25) should be [translate(12.25px, 75%)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (2) should be [translate(14px, 110%)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [scaleY(2) skewX(2rad) perspective(500px)\] at (2) should be [matrix3d(1, 0, 0, 0, -11.227342763749263, 3, 0, 0, 0.021237113402061854, -0.010618556701030927, 1.03, -0.0014653608247422677, -8, 4, -12, 0.9861443298969074)\]] expected: FAIL - [CSS Transitions: property from [translateY(70%)\] to [translateY(90%)\] at (0.25) should be [translateY(75%)\]] - expected: FAIL - [CSS Animations: property from [translate3D(100px, 200px, 300px)\] to [none\] at (-1) should be [matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 200, 400, 600, 1)\]] expected: FAIL - [CSS Animations: property from [translateZ(2em)\] to [translateZ(3em)\] at (-1) should be [translateZ(1em)\]] - expected: FAIL - [CSS Animations: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) skewX(2rad) scaleY(2)\] at (0.25) should be [translate3d(7px, -6px, 11px) skewX(1.25rad) matrix3d(1, 0, 0, 0, 0, 1.25, 0, 0, 0, 0, 1, -0.001875, 0, 0, 0, 1)\]] expected: FAIL [CSS Animations: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) scaleY(2) perspective(500px)\] at (0) should be [translate3d(8px, -4px, 12px) matrix3d(1, 0, 0, 0, 1.55741, 1, 0, 0, 0, 0, 1, -0.0025, 0, 0, 0, 1)\]] expected: FAIL - [CSS Transitions: property from [translateX(12px)\] to [translateX(13px)\] at (0.75) should be [translateX(12.75px)\]] - expected: FAIL - - [CSS Animations: property from [translateY(70%)\] to [translateY(90%)\] at (0.75) should be [translateY(85%)\]] - expected: FAIL - [CSS Transitions: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [scaleY(2) skewX(2rad) perspective(500px)\] at (0.25) should be [matrix3d(1, 0, 0, 0, 1.1186572632293585, 1.25, 0, 0, -0.0151159793814433, 0.00755798969072165, 0.9775, -0.002378247422680413, 6, -3, 9, 1.0012989690721648)\]] expected: FAIL - [CSS Transitions with transition: all: property from [translateX(12px) translateY(70%) translateZ(2em)\] to [translateX(13px) translateY(90%) translateZ(3em)\] at (0) should be [translateX(12px) translateY(70%) translateZ(2em)\]] - expected: FAIL - [CSS Animations: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) skewX(2rad) scaleY(2)\] at (2) should be [translate3d(0px, -20px, 4px) skewX(3rad) matrix3d(1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0.0025, 0, 0, 0, 1)\]] expected: FAIL [CSS Animations: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [scaleY(2) skewX(2rad) perspective(500px)\] at (0.75) should be [matrix3d(1, 0, 0, 0, -0.7525665307288518, 1.75, 0, 0, -0.005115979381443298, 0.002557989690721649, 0.9924999999999999, -0.002128247422680412, 2, -1, 3, 1.001298969072165)\]] expected: FAIL - [CSS Transitions with transition: all: property from [translateX(12px)\] to [translateX(13px)\] at (0.25) should be [translateX(12.25px)\]] - expected: FAIL - - [CSS Animations: property from [translate3d(12px, 70%, 2em)\] to [translate3d(13px, 90%, 3em)\] at (1) should be [translate3d(13px, 90%, 3em)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [translate3d(12px, 70%, 2em)\] to [translate3d(13px, 90%, 3em)\] at (-1) should be [translate3d(11px, 50%, 1em)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [translate3D(100px, 200px, 300px)\] to [none\] at (-1) should be [matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 200, 400, 600, 1)\]] expected: FAIL @@ -341,45 +263,21 @@ [CSS Animations: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [scaleY(2) skewX(2rad) perspective(500px)\] at (-1) should be [matrix3d(1, 0, 0, 0, 0, 0, 0, 0, -0.03876288659793814, 0.01938144329896907, 0.94, -0.0029653608247422686, 16, -8, 24, 0.986144329896907)\]] expected: FAIL - [CSS Animations: property from [translate3d(12px, 70%, 2em)\] to [translate3d(13px, 90%, 3em)\] at (2) should be [translate3d(14px, 110%, 4em)\]] - expected: FAIL - [CSS Animations: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) skewX(2rad) scaleY(2)\] at (0.75) should be [translate3d(5px, -10px, 9px) skewX(1.75rad) matrix3d(1, 0, 0, 0, 0, 1.75, 0, 0, 0, 0, 1, -0.000625, 0, 0, 0, 1)\]] expected: FAIL [CSS Animations: property from [skewX(1rad)\] to [translate3d(8px, -4px, 12px) skewX(2rad)\] at (0.25) should be [matrix3d(1, 0, 0, 0, 0.621795827675797, 1, 0, 0, 0, 0, 1, 0, 2, -1, 3, 1)\]] expected: FAIL - [CSS Transitions with transition: all: property from [translateX(12px)\] to [translateX(13px)\] at (0) should be [translateX(12px)\]] - expected: FAIL - [CSS Animations: property from [translate3D(100px, 200px, 300px)\] to [none\] at (0.25) should be [matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 75, 150, 225, 1)\]] expected: FAIL [CSS Transitions: property from [skewX(1rad)\] to [translate3d(8px, -4px, 12px) skewX(2rad)\] at (0) should be [matrix(1, 0, 1.5574077246549023, 1, 0, 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from [translateX(12px) translateY(70%) translateZ(2em)\] to [translateX(13px) translateY(90%) translateZ(3em)\] at (0.75) should be [translateX(12.75px) translateY(85%) translateZ(2.75em)\]] - expected: FAIL - [CSS Transitions: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [scaleY(2) skewX(2rad) perspective(500px)\] at (2) should be [matrix3d(1, 0, 0, 0, -11.227342763749263, 3, 0, 0, 0.021237113402061854, -0.010618556701030927, 1.03, -0.0014653608247422677, -8, 4, -12, 0.9861443298969074)\]] expected: FAIL - [CSS Transitions with transition: all: property from [translateX(12px) translateY(70%) translateZ(2em)\] to [translateX(13px) translateY(90%) translateZ(3em)\] at (0.25) should be [translateX(12.25px) translateY(75%) translateZ(2.25em)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [translateY(70%)\] to [translateY(90%)\] at (0.25) should be [translateY(75%)\]] - expected: FAIL - - [CSS Transitions: property from [translateX(12px)\] to [translateX(13px)\] at (2) should be [translateX(14px)\]] - expected: FAIL - - [CSS Animations: property from [translateX(12px) translateY(70%) translateZ(2em)\] to [translateX(13px) translateY(90%) translateZ(3em)\] at (2) should be [translateX(14px) translateY(110%) translateZ(4em)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [translateX(12px)\] to [translateX(13px)\] at (2) should be [translateX(14px)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [scaleY(2) skewX(2rad) perspective(500px)\] at (-1) should be [matrix3d(1, 0, 0, 0, 0, 0, 0, 0, -0.03876288659793814, 0.01938144329896907, 0.94, -0.0029653608247422686, 16, -8, 24, 0.986144329896907)\]] expected: FAIL @@ -395,147 +293,51 @@ [CSS Animations: property from [skewX(1rad)\] to [translate3d(8px, -4px, 12px) skewX(2rad)\] at (1) should be [matrix3d(1, 0, 0, 0, -2.185039863261519, 1, 0, 0, 0, 0, 1, 0, 8, -4, 12, 1)\]] expected: FAIL - [CSS Transitions: property from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (-1) should be [translate(11px, 50%)\]] - expected: FAIL - [CSS Transitions: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) scaleY(2) perspective(500px)\] at (2) should be [translate3d(0px, -20px, 4px) matrix3d(1, 0, 0, 0, -4.67222, 3, 0, 0, 0, 0, 1, -0.0015, 0, 0, 0, 1)\]] expected: FAIL - [CSS Animations: property from [translateY(70%)\] to [translateY(90%)\] at (0.25) should be [translateY(75%)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) skewX(2rad) scaleY(2)\] at (0) should be [translate3d(8px, -4px, 12px) skewX(1rad) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, -0.0025, 0, 0, 0, 1)\]] expected: FAIL [CSS Transitions: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [scaleY(2) skewX(2rad) perspective(500px)\] at (1) should be [matrix3d(1, 0, 0, 0, -2.185039863261519, 2, 0, 0, 0, 0, 1, -0.002, 0, 0, 0, 1)\]] expected: FAIL - [CSS Transitions with transition: all: property from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (0.75) should be [translate(12.75px, 85%)\]] - expected: FAIL - - [CSS Animations: property from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (2) should be [translate(14px, 110%)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [skewX(1rad)\] to [translate3d(8px, -4px, 12px) skewX(2rad)\] at (0.75) should be [matrix3d(1, 0, 0, 0, -1.2494279662824135, 1, 0, 0, 0, 0, 1, 0, 6, -3, 9, 1)\]] expected: FAIL - [CSS Transitions with transition: all: property from [skewX(10rad) translateY(70%)\] to [skewX(20rad) translateY(90%)\] at (0.25) should be [skewX(12.5rad) translateY(75%)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [skewX(1rad)\] to [translate3d(8px, -4px, 12px) skewX(2rad)\] at (2) should be [matrix3d(1, 0, 0, 0, -5.9274874511779405, 1, 0, 0, 0, 0, 1, 0, 16, -8, 24, 1)\]] expected: FAIL - [CSS Transitions with transition: all: property from [translate3d(12px, 70%, 2em)\] to [translate3d(13px, 90%, 3em)\] at (0.25) should be [translate3d(12.25px, 75%, 2.25em)\]] - expected: FAIL - - [CSS Transitions: property from [translateX(12px) translateY(70%) translateZ(2em)\] to [translateX(13px) translateY(90%) translateZ(3em)\] at (-1) should be [translateX(11px) translateY(50%) translateZ(1em)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (0) should be [translate(12px, 70%)\]] - expected: FAIL - - [CSS Animations: property from [translateZ(2em)\] to [translateZ(3em)\] at (0.75) should be [translateZ(2.75em)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [translate3D(100px, 200px, 300px)\] to [none\] at (1) should be [matrix(1, 0, 0, 1, 0, 0) \]] expected: FAIL - [CSS Transitions with transition: all: property from [translateZ(2em)\] to [translateZ(3em)\] at (0) should be [translateZ(2em)\]] - expected: FAIL - [CSS Animations: property from [translate3D(100px, 200px, 300px)\] to [none\] at (0) should be [matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 100, 200, 300, 1)\]] expected: FAIL [CSS Animations: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) skewX(2rad) scaleY(2)\] at (-1) should be [translate3d(12px, 4px, 16px) skewX(0rad) matrix3d(1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -0.005, 0, 0, 0, 1)\]] expected: FAIL - [CSS Transitions: property from [translate3d(12px, 70%, 2em)\] to [translate3d(13px, 90%, 3em)\] at (-1) should be [translate3d(11px, 50%, 1em)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (-1) should be [translate(11px, 50%)\]] - expected: FAIL - - [CSS Transitions: property from [translateX(12px)\] to [translateX(13px)\] at (0.25) should be [translateX(12.25px)\]] - expected: FAIL - - [CSS Animations: property from [translate3d(12px, 70%, 2em)\] to [translate3d(13px, 90%, 3em)\] at (0.25) should be [translate3d(12.25px, 75%, 2.25em)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [translateX(12px) translateY(70%) translateZ(2em)\] to [translateX(13px) translateY(90%) translateZ(3em)\] at (2) should be [translateX(14px) translateY(110%) translateZ(4em)\]] - expected: FAIL - - [CSS Animations: property from [skewX(10rad) translateY(70%)\] to [skewX(20rad) translateY(90%)\] at (2) should be [skewX(30rad) translateY(110%)\]] - expected: FAIL - - [CSS Animations: property from [translateX(12px) translateY(70%) translateZ(2em)\] to [translateX(13px) translateY(90%) translateZ(3em)\] at (0.25) should be [translateX(12.25px) translateY(75%) translateZ(2.25em)\]] - expected: FAIL - - [CSS Animations: property from [translateY(70%)\] to [translateY(90%)\] at (-1) should be [translateY(50%)\]] - expected: FAIL - - [CSS Transitions: property from [skewX(10rad) translateY(70%)\] to [skewX(20rad) translateY(90%)\] at (-1) should be [skewX(0rad) translateY(50%)\]] - expected: FAIL - [CSS Animations: property from [skewX(1rad)\] to [translate3d(8px, -4px, 12px) skewX(2rad)\] at (0) should be [matrix(1, 0, 1.5574077246549023, 1, 0, 0)\]] expected: FAIL - [CSS Animations: property from [translate3d(12px, 70%, 2em)\] to [translate3d(13px, 90%, 3em)\] at (-1) should be [translate3d(11px, 50%, 1em)\]] - expected: FAIL - [CSS Animations: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [scaleY(2) skewX(2rad) perspective(500px)\] at (1) should be [matrix3d(1, 0, 0, 0, -2.185039863261519, 2, 0, 0, 0, 0, 1, -0.002, 0, 0, 0, 1)\]] expected: FAIL - [CSS Animations: property from [translateZ(2em)\] to [translateZ(3em)\] at (0.25) should be [translateZ(2.25em)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [translateY(70%)\] to [translateY(90%)\] at (2) should be [translateY(110%)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [translate3D(100px, 200px, 300px)\] to [none\] at (2) should be [matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -100, -200, -300, 1)\]] expected: FAIL - [CSS Animations: property from [translateX(12px) translateY(70%) translateZ(2em)\] to [translateX(13px) translateY(90%) translateZ(3em)\] at (0) should be [translateX(12px) translateY(70%) translateZ(2em)\]] - expected: FAIL - - [CSS Animations: property from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (1) should be [translate(13px, 90%)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) scaleY(2) perspective(500px)\] at (0) should be [translate3d(8px, -4px, 12px) matrix3d(1, 0, 0, 0, 1.55741, 1, 0, 0, 0, 0, 1, -0.0025, 0, 0, 0, 1)\]] expected: FAIL - [CSS Animations: property from [translateY(70%)\] to [translateY(90%)\] at (2) should be [translateY(110%)\]] - expected: FAIL - - [CSS Animations: property from [skewX(10rad) translateY(70%)\] to [skewX(20rad) translateY(90%)\] at (1) should be [skewX(20rad) translateY(90%)\]] - expected: FAIL - [CSS Transitions: property from [translate3D(100px, 200px, 300px)\] to [none\] at (1) should be [matrix(1, 0, 0, 1, 0, 0) \]] expected: FAIL - [CSS Transitions: property from [translateZ(2em)\] to [translateZ(3em)\] at (-1) should be [translateZ(1em)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [translateZ(2em)\] to [translateZ(3em)\] at (0.25) should be [translateZ(2.25em)\]] - expected: FAIL - [CSS Animations: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [scaleY(2) skewX(2rad) perspective(500px)\] at (0) should be [matrix3d(1, 0, 0, 0, 1.5574077246549023, 1, 0, 0, -0.02, 0.01, 0.97, -0.0025, 8, -4, 12, 1)\]] expected: FAIL - [CSS Transitions: property from [translate3d(12px, 70%, 2em)\] to [translate3d(13px, 90%, 3em)\] at (0) should be [translate3d(12px, 70%, 2em)\]] - expected: FAIL - - [CSS Transitions: property from [translate3d(12px, 70%, 2em)\] to [translate3d(13px, 90%, 3em)\] at (2) should be [translate3d(14px, 110%, 4em)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [skewX(10rad) translateY(70%)\] to [skewX(20rad) translateY(90%)\] at (-1) should be [skewX(0rad) translateY(50%)\]] - expected: FAIL - [CSS Transitions: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) skewX(2rad) scaleY(2)\] at (2) should be [translate3d(0px, -20px, 4px) skewX(3rad) matrix3d(1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0.0025, 0, 0, 0, 1)\]] expected: FAIL - [CSS Transitions: property from [translateX(12px) translateY(70%) translateZ(2em)\] to [translateX(13px) translateY(90%) translateZ(3em)\] at (0.25) should be [translateX(12.25px) translateY(75%) translateZ(2.25em)\]] - expected: FAIL - [CSS Transitions: property from [translate3D(100px, 200px, 300px)\] to [none\] at (0) should be [matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 100, 200, 300, 1)\]] expected: FAIL @@ -548,36 +350,15 @@ [CSS Transitions with transition: all: property from [skewX(1rad)\] to [translate3d(8px, -4px, 12px) skewX(2rad)\] at (0.25) should be [matrix3d(1, 0, 0, 0, 0.621795827675797, 1, 0, 0, 0, 0, 1, 0, 2, -1, 3, 1)\]] expected: FAIL - [CSS Transitions: property from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (2) should be [translate(14px, 110%)\]] - expected: FAIL - [CSS Animations: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) scaleY(2) perspective(500px)\] at (2) should be [translate3d(0px, -20px, 4px) matrix3d(1, 0, 0, 0, -4.67222, 3, 0, 0, 0, 0, 1, -0.0015, 0, 0, 0, 1)\]] expected: FAIL [CSS Animations: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) scaleY(2) perspective(500px)\] at (-1) should be [translate3d(12px, 4px, 16px) matrix3d(1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -0.003, 0, 0, 0, 1)\]] expected: FAIL - [CSS Animations: property from [skewX(10rad) translateY(70%)\] to [skewX(20rad) translateY(90%)\] at (0) should be [skewX(10rad) translateY(70%)\]] - expected: FAIL - - [CSS Animations: property from [translateZ(2em)\] to [translateZ(3em)\] at (0) should be [translateZ(2em)\]] - expected: FAIL - - [CSS Transitions: property from [translateY(70%)\] to [translateY(90%)\] at (2) should be [translateY(110%)\]] - expected: FAIL - [CSS Transitions: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [scaleY(2) skewX(2rad) perspective(500px)\] at (0.75) should be [matrix3d(1, 0, 0, 0, -0.7525665307288518, 1.75, 0, 0, -0.005115979381443298, 0.002557989690721649, 0.9924999999999999, -0.002128247422680412, 2, -1, 3, 1.001298969072165)\]] expected: FAIL - [CSS Animations: property from [translateX(12px)\] to [translateX(13px)\] at (1) should be [translateX(13px)\]] - expected: FAIL - - [CSS Transitions: property from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (0.25) should be [translate(12.25px, 75%)\]] - expected: FAIL - - [CSS Animations: property from [translateZ(2em)\] to [translateZ(3em)\] at (2) should be [translateZ(4em)\]] - expected: FAIL - [CSS Transitions: property from [skewX(1rad)\] to [translate3d(8px, -4px, 12px) skewX(2rad)\] at (1) should be [matrix3d(1, 0, 0, 0, -2.185039863261519, 1, 0, 0, 0, 0, 1, 0, 8, -4, 12, 1)\]] expected: FAIL @@ -590,45 +371,21 @@ [CSS Transitions with transition: all: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) scaleY(2) perspective(500px)\] at (1) should be [translate3d(4px, -12px, 8px) matrix3d(1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, -0.002, 0, 0, 0, 1)\]] expected: FAIL - [CSS Animations: property from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (-1) should be [translate(11px, 50%)\]] - expected: FAIL - [CSS Transitions: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) scaleY(2) perspective(500px)\] at (0.25) should be [translate3d(7px, -6px, 11px) matrix3d(1, 0, 0, 0, 1.46007, 1.25, 0, 0, 0, 0, 1, -0.002375, 0, 0, 0, 1)\]] expected: FAIL - [CSS Transitions: property from [translateY(70%)\] to [translateY(90%)\] at (0) should be [translateY(70%)\]] - expected: FAIL - - [CSS Animations: property from [translateX(12px)\] to [translateX(13px)\] at (0.75) should be [translateX(12.75px)\]] - expected: FAIL - - [CSS Transitions: property from [skewX(10rad) translateY(70%)\] to [skewX(20rad) translateY(90%)\] at (0.75) should be [skewX(17.5rad) translateY(85%)\]] - expected: FAIL - [CSS Animations: property from [skewX(1rad)\] to [translate3d(8px, -4px, 12px) skewX(2rad)\] at (-1) should be [matrix3d(1, 0, 0, 0, 5.2998553125713235, 1, 0, 0, 0, 0, 1, 0, -8, 4, -12, 1)\]] expected: FAIL - [CSS Transitions: property from [translateX(12px) translateY(70%) translateZ(2em)\] to [translateX(13px) translateY(90%) translateZ(3em)\] at (0) should be [translateX(12px) translateY(70%) translateZ(2em)\]] - expected: FAIL - - [CSS Transitions: property from [skewX(10rad) translateY(70%)\] to [skewX(20rad) translateY(90%)\] at (0.25) should be [skewX(12.5rad) translateY(75%)\]] - expected: FAIL - [CSS Transitions: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) scaleY(2) perspective(500px)\] at (0.75) should be [translate3d(5px, -10px, 9px) matrix3d(1, 0, 0, 0, 0.681366, 1.75, 0, 0, 0, 0, 1, -0.002125, 0, 0, 0, 1)\]] expected: FAIL - [CSS Transitions with transition: all: property from [translate3d(12px, 70%, 2em)\] to [translate3d(13px, 90%, 3em)\] at (2) should be [translate3d(14px, 110%, 4em)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) scaleY(2) perspective(500px)\] at (0.25) should be [translate3d(7px, -6px, 11px) matrix3d(1, 0, 0, 0, 1.46007, 1.25, 0, 0, 0, 0, 1, -0.002375, 0, 0, 0, 1)\]] expected: FAIL [CSS Transitions with transition: all: property from [translate3D(100px, 200px, 300px)\] to [none\] at (0.25) should be [matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 75, 150, 225, 1)\]] expected: FAIL - [CSS Transitions: property from [translateZ(2em)\] to [translateZ(3em)\] at (0) should be [translateZ(2em)\]] - expected: FAIL - [CSS Animations: property from [translate3D(100px, 200px, 300px)\] to [none\] at (2) should be [matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -100, -200, -300, 1)\]] expected: FAIL @@ -638,63 +395,24 @@ [CSS Animations: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [scaleY(2) skewX(2rad) perspective(500px)\] at (2) should be [matrix3d(1, 0, 0, 0, -11.227342763749263, 3, 0, 0, 0.021237113402061854, -0.010618556701030927, 1.03, -0.0014653608247422677, -8, 4, -12, 0.9861443298969074)\]] expected: FAIL - [CSS Transitions: property from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (0) should be [translate(12px, 70%)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [translate3d(12px, 70%, 2em)\] to [translate3d(13px, 90%, 3em)\] at (0) should be [translate3d(12px, 70%, 2em)\]] - expected: FAIL - - [CSS Animations: property from [translateZ(2em)\] to [translateZ(3em)\] at (1) should be [translateZ(3em)\]] - expected: FAIL - [CSS Animations: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) skewX(2rad) scaleY(2)\] at (0) should be [translate3d(8px, -4px, 12px) skewX(1rad) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, -0.0025, 0, 0, 0, 1)\]] expected: FAIL - [CSS Transitions: property from [translateX(12px) translateY(70%) translateZ(2em)\] to [translateX(13px) translateY(90%) translateZ(3em)\] at (0.75) should be [translateX(12.75px) translateY(85%) translateZ(2.75em)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [translateY(70%)\] to [translateY(90%)\] at (-1) should be [translateY(50%)\]] - expected: FAIL - [CSS Animations: property from [skewX(1rad)\] to [translate3d(8px, -4px, 12px) skewX(2rad)\] at (2) should be [matrix3d(1, 0, 0, 0, -5.9274874511779405, 1, 0, 0, 0, 0, 1, 0, 16, -8, 24, 1)\]] expected: FAIL [CSS Transitions with transition: all: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) skewX(2rad) scaleY(2)\] at (0.75) should be [translate3d(5px, -10px, 9px) skewX(1.75rad) matrix3d(1, 0, 0, 0, 0, 1.75, 0, 0, 0, 0, 1, -0.000625, 0, 0, 0, 1)\]] expected: FAIL - [CSS Transitions: property from [translateX(12px)\] to [translateX(13px)\] at (0) should be [translateX(12px)\]] - expected: FAIL - [CSS Transitions: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) scaleY(2) perspective(500px)\] at (0) should be [translate3d(8px, -4px, 12px) matrix3d(1, 0, 0, 0, 1.55741, 1, 0, 0, 0, 0, 1, -0.0025, 0, 0, 0, 1)\]] expected: FAIL [CSS Animations: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) scaleY(2) perspective(500px)\] at (0.75) should be [translate3d(5px, -10px, 9px) matrix3d(1, 0, 0, 0, 0.681366, 1.75, 0, 0, 0, 0, 1, -0.002125, 0, 0, 0, 1)\]] expected: FAIL - [CSS Transitions with transition: all: property from [translate3d(12px, 70%, 2em)\] to [translate3d(13px, 90%, 3em)\] at (0.75) should be [translate3d(12.75px, 85%, 2.75em)\]] - expected: FAIL - - [CSS Transitions: property from [translateX(12px) translateY(70%) translateZ(2em)\] to [translateX(13px) translateY(90%) translateZ(3em)\] at (2) should be [translateX(14px) translateY(110%) translateZ(4em)\]] - expected: FAIL - - [CSS Animations: property from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (0.75) should be [translate(12.75px, 85%)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [translateZ(2em)\] to [translateZ(3em)\] at (2) should be [translateZ(4em)\]] - expected: FAIL - - [CSS Animations: property from [translateX(12px)\] to [translateX(13px)\] at (0) should be [translateX(12px)\]] - expected: FAIL - - [CSS Animations: property from [translate3d(12px, 70%, 2em)\] to [translate3d(13px, 90%, 3em)\] at (0.75) should be [translate3d(12.75px, 85%, 2.75em)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [scaleY(2) skewX(2rad) perspective(500px)\] at (0.25) should be [matrix3d(1, 0, 0, 0, 1.1186572632293585, 1.25, 0, 0, -0.0151159793814433, 0.00755798969072165, 0.9775, -0.002378247422680413, 6, -3, 9, 1.0012989690721648)\]] expected: FAIL - [CSS Transitions with transition: all: property from [translateX(12px) translateY(70%) translateZ(2em)\] to [translateX(13px) translateY(90%) translateZ(3em)\] at (-1) should be [translateX(11px) translateY(50%) translateZ(1em)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) skewX(2rad) scaleY(2)\] at (1) should be [translate3d(4px, -12px, 8px) skewX(2rad) matrix(1, 0, 0, 2, 0, 0)\]] expected: FAIL @@ -707,45 +425,24 @@ [CSS Transitions: property from [translate3D(100px, 200px, 300px)\] to [none\] at (-1) should be [matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 200, 400, 600, 1)\]] expected: FAIL - [CSS Animations: property from [skewX(10rad) translateY(70%)\] to [skewX(20rad) translateY(90%)\] at (-1) should be [skewX(0rad) translateY(50%)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [translateY(70%)\] to [translateY(90%)\] at (0) should be [translateY(70%)\]] - expected: FAIL - [CSS Transitions: property from [skewX(1rad)\] to [translate3d(8px, -4px, 12px) skewX(2rad)\] at (0.75) should be [matrix3d(1, 0, 0, 0, -1.2494279662824135, 1, 0, 0, 0, 0, 1, 0, 6, -3, 9, 1)\]] expected: FAIL [CSS Animations: property from [skewX(1rad)\] to [translate3d(8px, -4px, 12px) skewX(2rad)\] at (0.75) should be [matrix3d(1, 0, 0, 0, -1.2494279662824135, 1, 0, 0, 0, 0, 1, 0, 6, -3, 9, 1)\]] expected: FAIL - [CSS Animations: property from [translateX(12px)\] to [translateX(13px)\] at (-1) should be [translateX(11px)\]] - expected: FAIL - [CSS Transitions: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) skewX(2rad) scaleY(2)\] at (1) should be [translate3d(4px, -12px, 8px) skewX(2rad) matrix(1, 0, 0, 2, 0, 0)\]] expected: FAIL - [CSS Transitions: property from [skewX(10rad) translateY(70%)\] to [skewX(20rad) translateY(90%)\] at (2) should be [skewX(30rad) translateY(110%)\]] - expected: FAIL - [CSS Transitions: property from [translate3D(100px, 200px, 300px)\] to [none\] at (0.75) should be [matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 25, 50, 75, 1)\]] expected: FAIL - [CSS Transitions with transition: all: property from [translateX(12px)\] to [translateX(13px)\] at (-1) should be [translateX(11px)\]] - expected: FAIL - [CSS Transitions: property from [translate3D(100px, 200px, 300px)\] to [none\] at (2) should be [matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -100, -200, -300, 1)\]] expected: FAIL [CSS Transitions: property from [skewX(1rad)\] to [translate3d(8px, -4px, 12px) skewX(2rad)\] at (0.25) should be [matrix3d(1, 0, 0, 0, 0.621795827675797, 1, 0, 0, 0, 0, 1, 0, 2, -1, 3, 1)\]] expected: FAIL - [CSS Transitions with transition: all: property from [skewX(10rad) translateY(70%)\] to [skewX(20rad) translateY(90%)\] at (2) should be [skewX(30rad) translateY(110%)\]] - expected: FAIL - - [CSS Animations: property from [skewX(10rad) translateY(70%)\] to [skewX(20rad) translateY(90%)\] at (0.75) should be [skewX(17.5rad) translateY(85%)\]] - expected: FAIL - [CSS Animations: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) scaleY(2) perspective(500px)\] at (0.25) should be [translate3d(7px, -6px, 11px) matrix3d(1, 0, 0, 0, 1.46007, 1.25, 0, 0, 0, 0, 1, -0.002375, 0, 0, 0, 1)\]] expected: FAIL @@ -755,27 +452,15 @@ [CSS Transitions with transition: all: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) scaleY(2) perspective(500px)\] at (2) should be [translate3d(0px, -20px, 4px) matrix3d(1, 0, 0, 0, -4.67222, 3, 0, 0, 0, 0, 1, -0.0015, 0, 0, 0, 1)\]] expected: FAIL - [CSS Animations: property from [translate3d(12px, 70%, 2em)\] to [translate3d(13px, 90%, 3em)\] at (0) should be [translate3d(12px, 70%, 2em)\]] - expected: FAIL - - [CSS Transitions: property from [translateY(70%)\] to [translateY(90%)\] at (0.75) should be [translateY(85%)\]] - expected: FAIL - [CSS Transitions: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) skewX(2rad) scaleY(2)\] at (-1) should be [translate3d(12px, 4px, 16px) skewX(0rad) matrix3d(1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -0.005, 0, 0, 0, 1)\]] expected: FAIL - [CSS Animations: property from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (0.25) should be [translate(12.25px, 75%)\]] - expected: FAIL - [CSS Transitions: property from [skewX(1rad)\] to [translate3d(8px, -4px, 12px) skewX(2rad)\] at (2) should be [matrix3d(1, 0, 0, 0, -5.9274874511779405, 1, 0, 0, 0, 0, 1, 0, 16, -8, 24, 1)\]] expected: FAIL [CSS Transitions: property from [skewX(1rad)\] to [translate3d(8px, -4px, 12px) skewX(2rad)\] at (-1) should be [matrix3d(1, 0, 0, 0, 5.2998553125713235, 1, 0, 0, 0, 0, 1, 0, -8, 4, -12, 1)\]] expected: FAIL - [CSS Transitions with transition: all: property from [translateX(12px)\] to [translateX(13px)\] at (0.75) should be [translateX(12.75px)\]] - expected: FAIL - [CSS Transitions: property from [translate3D(100px, 200px, 300px)\] to [none\] at (0.25) should be [matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 75, 150, 225, 1)\]] expected: FAIL @@ -788,36 +473,15 @@ [CSS Animations: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) scaleY(2) perspective(500px)\] at (1) should be [translate3d(4px, -12px, 8px) matrix3d(1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, -0.002, 0, 0, 0, 1)\]] expected: FAIL - [CSS Animations: property from [translateY(70%)\] to [translateY(90%)\] at (1) should be [translateY(90%)\]] - expected: FAIL - - [CSS Transitions: property from [translateX(12px)\] to [translateX(13px)\] at (-1) should be [translateX(11px)\]] - expected: FAIL - - [CSS Animations: property from [translateX(12px) translateY(70%) translateZ(2em)\] to [translateX(13px) translateY(90%) translateZ(3em)\] at (1) should be [translateX(13px) translateY(90%) translateZ(3em)\]] - expected: FAIL - [CSS Transitions: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [translate3d(4px, -12px, 8px) skewX(2rad) scaleY(2)\] at (0.75) should be [translate3d(5px, -10px, 9px) skewX(1.75rad) matrix3d(1, 0, 0, 0, 0, 1.75, 0, 0, 0, 0, 1, -0.000625, 0, 0, 0, 1)\]] expected: FAIL [CSS Transitions with transition: all: property from [translate3D(100px, 200px, 300px)\] to [none\] at (0) should be [matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 100, 200, 300, 1)\]] expected: FAIL - [CSS Transitions: property from [translateZ(2em)\] to [translateZ(3em)\] at (0.25) should be [translateZ(2.25em)\]] - expected: FAIL - - [CSS Transitions: property from [translateZ(2em)\] to [translateZ(3em)\] at (2) should be [translateZ(4em)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)\] to [scaleY(2) skewX(2rad) perspective(500px)\] at (1) should be [matrix3d(1, 0, 0, 0, -2.185039863261519, 2, 0, 0, 0, 0, 1, -0.002, 0, 0, 0, 1)\]] expected: FAIL - [CSS Transitions: property from [skewX(10rad) translateY(70%)\] to [skewX(20rad) translateY(90%)\] at (0) should be [skewX(10rad) translateY(70%)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [translateZ(2em)\] to [translateZ(3em)\] at (-1) should be [translateZ(1em)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [skewX(1rad)\] to [translate3d(8px, -4px, 12px) skewX(2rad)\] at (-1) should be [matrix3d(1, 0, 0, 0, 5.2998553125713235, 1, 0, 0, 0, 0, 1, 0, -8, 4, -12, 1)\]] expected: FAIL diff --git a/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-interpolation-005.html.ini b/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-interpolation-005.html.ini index 9fbbc0e53d4..a41d668994b 100644 --- a/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-interpolation-005.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-interpolation-005.html.ini @@ -266,654 +266,72 @@ [Web Animations: property from [rotate(180deg)\] to [none\] at (0.75) should be [rotate(45deg)\]] expected: FAIL - [CSS Transitions with transition: all: property from [matrix(3, 0, 0, 5, 0, -6)\] to [none\] at (0.25) should be [matrix(2.5, 0, 0, 4, 0, -4.5)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [rotate(180deg)\] at (0.75) should be [rotate(135deg)\]] - expected: FAIL - - [CSS Animations: property from [matrix(0, 7, -1, 0, 6, 0)\] to [matrix(1, 0, 0, 1, 0, -6)\] at (0.3333333333333333) should be [matrix(2.5000000000000004, 4.330127018922193, -0.8660254037844386, 0.5000000000000001, 4, -2)\]] - expected: FAIL - [CSS Animations: property from [none\] to [matrix(7, 0, 2, 2, 6, 0)\] at (0.75) should be [matrix(5.5, 0, 1.31, 1.75, 4.5, 0)\]] expected: FAIL [CSS Transitions: property from [none\] to [matrix(7, 0, 2, 2, 6, 0)\] at (2) should be [matrix(13, 0, 6, 3, 12, 0)\]] expected: FAIL - [CSS Transitions: property from [rotate(180deg)\] to [none\] at (0.25) should be [rotate(135deg)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [matrix(7, 0, 2, 2, 6, 0)\] at (1) should be [matrix(7, 0, 2, 2, 6, 0)\]] - expected: FAIL - - [CSS Animations: property from [matrix(1, 0, 0, 1, 0, -6)\] to [matrix(0, 7, -1, 0, 6, 0)\] at (-1) should be [matrix(0, 5, 1, 0, -6, -12)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [rotate(360deg)\] at (2) should be [rotate(720deg)\]] - expected: FAIL - - [CSS Animations: property from [matrix(0, 7, -1, 0, 6, 0)\] to [matrix(1, 0, 0, 1, 0, -6)\] at (1) should be [matrix(1, 0, 0, 1, 0, -6)\]] - expected: FAIL - - [CSS Transitions: property from [matrix3d(2.3505561943, 0.0, 0.0, 0.0, 0.0, 2.6068943664, 0.0, 0.0, 0.0, 0.0, 2.6591082592, 0.0, 20.3339914256, 20.6709033765, 20.9147808456, 1.0)\] to [matrix3d(2.7133590938, 0.0, 0.0, 0.0, 0.0, 2.4645137761, 0.0, 0.0, 0.0, 0.0, 2.801687476, 0.0, 20.4335882254, 20.2330661998, 20.4583968206, 1.0)\] at (0.25) should be [matrix3d(2.441256919175, 0.0, 0.0, 0.0, 0.0, 2.571299218825, 0.0, 0.0, 0.0, 0.0, 2.6947530634, 0.0, 20.35889062555, 20.561444082325, 20.800684839349998, 1.0)\]] - expected: FAIL - - [CSS Transitions: property from [matrix3d(2.3505561943, 0.0, 0.0, 0.0, 0.0, 2.6068943664, 0.0, 0.0, 0.0, 0.0, 2.6591082592, 0.0, 20.3339914256, 20.6709033765, 20.9147808456, 1.0)\] to [matrix3d(2.7133590938, 0.0, 0.0, 0.0, 0.0, 2.4645137761, 0.0, 0.0, 0.0, 0.0, 2.801687476, 0.0, 20.4335882254, 20.2330661998, 20.4583968206, 1.0)\] at (2) should be [matrix3d(3.0761619932999995, 0.0, 0.0, 0.0, 0.0, 2.3221331858, 0.0, 0.0, 0.0, 0.0, 2.9442666928000003, 0.0, 20.5331850252, 19.7952290231, 20.002012795600002, 1.0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] at (0) should be [matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] to [none\] at (2) should be [matrix3d(0, 0, 0, 0, 0, -1, 0, 0, 1.682941969615793, 0, -1.0806046117362795, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Animations: property from [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] to [none\] at (0) should be [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix(3, 0, 0, 5, 0, -6)\] to [none\] at (0.5) should be [matrix(2, 0, 0, 3, 0, -3)\]] - expected: FAIL - [CSS Animations: property from [matrix(1, 0, 0, 7, 0, 0)\] to [matrix(7, 0, 1, 1, 0, 0)\] at (0.3333333333333333) should be [matrix(3, 0, 1.6667, 5, 0, 0)\]] expected: FAIL - [CSS Animations: property from [none\] to [rotate(360deg)\] at (-1) should be [rotate(-360deg)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [rotate(360deg)\] at (0.75) should be [rotate(270deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix3d(2.3505561943, 0.0, 0.0, 0.0, 0.0, 2.6068943664, 0.0, 0.0, 0.0, 0.0, 2.6591082592, 0.0, 20.3339914256, 20.6709033765, 20.9147808456, 1.0)\] to [matrix3d(2.7133590938, 0.0, 0.0, 0.0, 0.0, 2.4645137761, 0.0, 0.0, 0.0, 0.0, 2.801687476, 0.0, 20.4335882254, 20.2330661998, 20.4583968206, 1.0)\] at (0) should be [matrix3d(2.3505561943, 0.0, 0.0, 0.0, 0.0, 2.6068943664, 0.0, 0.0, 0.0, 0.0, 2.6591082592, 0.0, 20.3339914256, 20.6709033765, 20.9147808456, 1.0)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [matrix(7, 0, 2, 2, 6, 0)\] at (0) should be [matrix(1, 0, 0, 1, 0, 0)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] at (2) should be [matrix3d(-1.2484405096414273, 0, -2.727892280477045, 0, 0, 5, 0, 0, 6.365081987779772, 0, -2.9130278558299967, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Animations: property from [matrix(0, 7, -1, 0, 6, 0)\] to [matrix(1, 0, 0, 1, 0, -6)\] at (0.5) should be [matrix(2.8284271247461903, 2.82842712474619, -0.7071067811865475, 0.7071067811865476, 3, -3)\]] - expected: FAIL - - [CSS Animations: property from [matrix(3, 0, 0, 5, 0, -6)\] to [none\] at (0.25) should be [matrix(2.5, 0, 0, 4, 0, -4.5)\]] - expected: FAIL - - [CSS Animations: property from [rotate(180deg)\] to [none\] at (-1) should be [rotate(360deg)\]] - expected: FAIL - - [CSS Transitions: property from [matrix(0, 7, -1, 0, 6, 0)\] to [matrix(1, 0, 0, 1, 0, -6)\] at (0.3333333333333333) should be [matrix(2.5000000000000004, 4.330127018922193, -0.8660254037844386, 0.5000000000000001, 4, -2)\]] - expected: FAIL - - [CSS Animations: property from [rotate(180deg)\] to [none\] at (0.75) should be [rotate(45deg)\]] - expected: FAIL - - [CSS Transitions: property from [matrix(3, 0, 0, 5, 0, -6)\] to [none\] at (-1) should be [matrix(5, 0, 0, 9, 0, -12)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [rotate(180deg)\] at (1) should be [rotate(180deg)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [rotate(360deg)\] at (1) should be [rotate(360deg)\]] - expected: FAIL - - [CSS Animations: property from [matrix(1, 0, 0, 7, 0, 0)\] to [matrix(7, 0, 1, 1, 0, 0)\] at (1) should be [matrix(7, 0, 1, 1, 0, 0)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] at (-1) should be [matrix3d(0, 0, 0, 0, 0, -1, 0, 0, 1.682941969615793, 0, -1.0806046117362795, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [rotate(360deg)\] at (0.75) should be [rotate(270deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] to [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] at (0) should be [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] at (0.25) should be [matrix3d(1.211140527138306, 0, -0.30925494906815365, 0, 0, 1.5, 0, 0, 0.43295692869541513, 0, 1.6955967379936283, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Animations: property from [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] to [none\] at (2) should be [matrix3d(0, 0, 0, 0, 0, -1, 0, 0, 1.682941969615793, 0, -1.0806046117362795, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Animations: property from [matrix(1, 0, 0, 1, 0, -6)\] to [matrix(0, 7, -1, 0, 6, 0)\] at (1) should be [matrix(0, 7, -1, 0, 6, 0)\]] - expected: FAIL - - [CSS Animations: property from [matrix3d(2.3505561943, 0.0, 0.0, 0.0, 0.0, 2.6068943664, 0.0, 0.0, 0.0, 0.0, 2.6591082592, 0.0, 20.3339914256, 20.6709033765, 20.9147808456, 1.0)\] to [matrix3d(2.7133590938, 0.0, 0.0, 0.0, 0.0, 2.4645137761, 0.0, 0.0, 0.0, 0.0, 2.801687476, 0.0, 20.4335882254, 20.2330661998, 20.4583968206, 1.0)\] at (-1) should be [matrix3d(1.9877532948000005, 0.0, 0.0, 0.0, 0.0, 2.7492749567000003, 0.0, 0.0, 0.0, 0.0, 2.5165290423999997, 0.0, 20.2343946258, 21.1087405532, 21.371164870599998, 1.0)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [rotate(360deg)\] at (2) should be [rotate(720deg)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] at (1) should be [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [rotate(180deg)\] at (0) should be [rotate(0deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix(3, 0, 0, 5, 0, -6)\] to [none\] at (0) should be [matrix(3, 0, 0, 5, 0, -6)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] at (0) should be [matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Transitions: property from [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] to [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] at (-1) should be [matrix3d(-0.6299594065765657, -0.10825090106268696, -0.20133311671001855, 5.485724217214554, 6.358051978686152, 0.16496896269344588, 1.5760051143537075, -54.21568355620423, 0.7106057459805782, -1.1596356050622005, -0.11495342545397585, -4.913752963990824, -1.03125, -1.125, 3.5625, -5.901513951904114)\]] - expected: FAIL - - [CSS Transitions: property from [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] to [none\] at (0) should be [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\]] - expected: FAIL - - [CSS Animations: property from [matrix3d(2.3505561943, 0.0, 0.0, 0.0, 0.0, 2.6068943664, 0.0, 0.0, 0.0, 0.0, 2.6591082592, 0.0, 20.3339914256, 20.6709033765, 20.9147808456, 1.0)\] to [matrix3d(2.7133590938, 0.0, 0.0, 0.0, 0.0, 2.4645137761, 0.0, 0.0, 0.0, 0.0, 2.801687476, 0.0, 20.4335882254, 20.2330661998, 20.4583968206, 1.0)\] at (1) should be [matrix3d(2.7133590938, 0.0, 0.0, 0.0, 0.0, 2.4645137761, 0.0, 0.0, 0.0, 0.0, 2.801687476, 0.0, 20.4335882254, 20.2330661998, 20.4583968206, 1.0)\]] - expected: FAIL - - [CSS Transitions: property from [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] to [none\] at (1) should be [matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix3d(2.3505561943, 0.0, 0.0, 0.0, 0.0, 2.6068943664, 0.0, 0.0, 0.0, 0.0, 2.6591082592, 0.0, 20.3339914256, 20.6709033765, 20.9147808456, 1.0)\] to [matrix3d(2.7133590938, 0.0, 0.0, 0.0, 0.0, 2.4645137761, 0.0, 0.0, 0.0, 0.0, 2.801687476, 0.0, 20.4335882254, 20.2330661998, 20.4583968206, 1.0)\] at (0.75) should be [matrix3d(2.622658368925, 0.0, 0.0, 0.0, 0.0, 2.500108923675, 0.0, 0.0, 0.0, 0.0, 2.7660426718, 0.0, 20.408689025450002, 20.342525493975, 20.572492826850002, 1.0)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [matrix(1, 0, 0, 7, 0, 0)\] to [matrix(7, 0, 1, 1, 0, 0)\] at (0.6666666666666666) should be [matrix(5, 0, 2, 3, 0, 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] to [none\] at (-1) should be [matrix3d(-1.2484405096414273, 0, -2.727892280477045, 0, 0, 5, 0, 0, 6.365081987779772, 0, -2.9130278558299967, 0, 0, 0, 0, 1)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [matrix(1, 0, 0, 7, 0, 0)\] to [matrix(7, 0, 1, 1, 0, 0)\] at (2) should be [matrix(13, 0, -10, -5, 0, 0)\]] expected: FAIL - [CSS Transitions: property from [none\] to [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] at (0) should be [matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Animations: property from [matrix(3, 0, 0, 5, 0, -6)\] to [none\] at (2) should be [matrix(-1, 0, 0, -3, 0, 6)\]] - expected: FAIL - - [CSS Animations: property from [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] to [none\] at (-1) should be [matrix3d(-1.2484405096414273, 0, -2.727892280477045, 0, 0, 5, 0, 0, 6.365081987779772, 0, -2.9130278558299967, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] at (0.25) should be [matrix3d(0.9041890962319094, 0.3522701519297133, -0.15240204298176957, -0.1428256720529315, -0.7579798772527586, 0.6803606288839232, -0.05133336076757235, 0.37904689530895724, -0.1957679784745485, 0.38554138029509327, 0.8226186974340638, 0.3370288143441876, -0.296875, -0.015625, 0.328125, 0.5930529142680923)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [rotate(360deg)\] at (0) should be [rotate(0deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix(1, 0, 0, 7, 0, 0)\] to [matrix(7, 0, 1, 1, 0, 0)\] at (0) should be [matrix(1, 0, 0, 7, 0, 0)\]] - expected: FAIL - [CSS Animations: property from [matrix(1, 0, 0, 7, 0, 0)\] to [matrix(7, 0, 1, 1, 0, 0)\] at (-1) should be [matrix(-5, 0, -13, 13, 0, 0)\]] expected: FAIL - [CSS Transitions: property from [matrix(3, 0, 0, 5, 0, -6)\] to [none\] at (1) should be [matrix(1, 0, 0, 1, 0, 0)\]] - expected: FAIL - - [CSS Animations: property from [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] to [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] at (0) should be [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix(3, 0, 0, 5, 0, -6)\] to [none\] at (0.75) should be [matrix(1.5, 0, 0, 2, 0, -1.5)\]] - expected: FAIL - - [CSS Animations: property from [matrix(1, 0, 0, 7, 0, 0)\] to [matrix(7, 0, 1, 1, 0, 0)\] at (0) should be [matrix(1, 0, 0, 7, 0, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix(0, 7, -1, 0, 6, 0)\] to [matrix(1, 0, 0, 1, 0, -6)\] at (-1) should be [matrix(-13, 0, 0, -1, 12, 6)\]] - expected: FAIL - - [CSS Transitions: property from [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] to [none\] at (1) should be [matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Animations: property from [matrix(3, 0, 0, 5, 0, -6)\] to [none\] at (0.5) should be [matrix(2, 0, 0, 3, 0, -3)\]] - expected: FAIL - [CSS Transitions: property from [matrix(1, 0, 0, 7, 0, 0)\] to [matrix(7, 0, 1, 1, 0, 0)\] at (2) should be [matrix(13, 0, -10, -5, 0, 0)\]] expected: FAIL - [CSS Transitions: property from [matrix(1, 0, 0, 1, 0, -6)\] to [matrix(0, 7, -1, 0, 6, 0)\] at (0.6666666666666666) should be [matrix(2.5000000000000004, 4.330127018922193, -0.8660254037844386, 0.5000000000000001, 4, -2)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [rotate(360deg)\] at (2) should be [rotate(720deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] at (-1) should be [matrix3d(-0.0000000000000002377810622383943, -1.0671050586638147, -0.08972656766237302, 1.3740432449326199, 0.98484601036295, -2.653201092395309, 0.6753819540610847, 3.6127240080250744, -2.7988839807429846, -1.2090004194153336, -0.5183744226115445, -0.7936088631686278, 1.1875, 0.0625, -1.3125, 5.340768914473683)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix(0, 7, -1, 0, 6, 0)\] to [matrix(1, 0, 0, 1, 0, -6)\] at (2) should be [matrix(0, 5, 1, 0, -6, -12)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] at (2) should be [matrix3d(-0.5844534449366048, -0.42278005999296053, -0.4650580659922564, -0.6817595809063256, 0.9156938760088464, 0.3851647027225889, 0.9244443507516923, 0.7218225020358241, -0.0803568793574344, 0.1719974850210706, -0.49676609633513097, -0.25968177786904373, -2.375, -0.125, 2.625, 5.340768914473685)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [rotate(180deg)\] at (0.25) should be [rotate(45deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix(1, 0, 0, 1, 0, -6)\] to [matrix(0, 7, -1, 0, 6, 0)\] at (2) should be [matrix(-13, 0, 0, -1, 12, 6)\]] - expected: FAIL - - [CSS Animations: property from [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] to [none\] at (2) should be [matrix3d(0.39048513570444376, 0.14780794797065988, 0.6963068100217401, -4.857907861239344, -2.967682789284791, 0.6004978769584385, -3.5472376016872444, 26.675324787979896, -2.5953724498995308, 1.6280843851961373, 0.8163834310586356, 9.001735256585825, 1.34375, -1, 0.9375, -14.881239394516227)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [rotate(360deg)\] at (0.25) should be [rotate(90deg)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [none\] to [matrix(7, 0, 2, 2, 6, 0)\] at (0.75) should be [matrix(5.5, 0, 1.31, 1.75, 4.5, 0)\]] expected: FAIL [CSS Transitions with transition: all: property from [none\] to [matrix(7, 0, 2, 2, 6, 0)\] at (0.5) should be [matrix(4, 0, 0.75, 1.5, 3, 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] to [none\] at (0.25) should be [matrix3d(1.2804555205291865, 0, -1.1928678300408346, 0, 0, 2.5, 0, 0, 2.215325970075836, 0, 2.377988823839918, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Animations: property from [matrix(0, 7, -1, 0, 6, 0)\] to [matrix(1, 0, 0, 1, 0, -6)\] at (-1) should be [matrix(-13, 0, 0, -1, 12, 6)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [rotate(180deg)\] at (2) should be [rotate(360deg)\]] - expected: FAIL - - [CSS Animations: property from [matrix3d(2.3505561943, 0.0, 0.0, 0.0, 0.0, 2.6068943664, 0.0, 0.0, 0.0, 0.0, 2.6591082592, 0.0, 20.3339914256, 20.6709033765, 20.9147808456, 1.0)\] to [matrix3d(2.7133590938, 0.0, 0.0, 0.0, 0.0, 2.4645137761, 0.0, 0.0, 0.0, 0.0, 2.801687476, 0.0, 20.4335882254, 20.2330661998, 20.4583968206, 1.0)\] at (0.75) should be [matrix3d(2.622658368925, 0.0, 0.0, 0.0, 0.0, 2.500108923675, 0.0, 0.0, 0.0, 0.0, 2.7660426718, 0.0, 20.408689025450002, 20.342525493975, 20.572492826850002, 1.0)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] at (0.75) should be [matrix3d(0.35007413226026135, 0.7254385504141292, -0.4977009150941454, 0.09582061929004702, -1.1027525038949482, -0.5884810398827429, 0.4516829688651701, 0.5447944343861767, -0.68717798815684, 0.2657772247405681, 0.5465690479810023, 1.0836207863885503, -0.890625, -0.046875, 0.984375, 0.5930529142680927)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] to [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] at (-1) should be [matrix3d(-0.6299594065765657, -0.10825090106268696, -0.20133311671001855, 5.485724217214554, 6.358051978686152, 0.16496896269344588, 1.5760051143537075, -54.21568355620423, 0.7106057459805782, -1.1596356050622005, -0.11495342545397585, -4.913752963990824, -1.03125, -1.125, 3.5625, -5.901513951904114)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] at (-1) should be [matrix3d(0, 0, 0, 0, 0, -1, 0, 0, 1.682941969615793, 0, -1.0806046117362795, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] to [none\] at (0) should be [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix(3, 0, 0, 5, 0, -6)\] to [none\] at (1) should be [matrix(1, 0, 0, 1, 0, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] to [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] at (0.75) should be [matrix3d(0.6861191524977764, -0.18025672746204927, -0.8710297237546482, 0.6072134247444672, 0.2819931018922366, 0.27778974607679663, -0.6540128246146626, 0.5063632314069845, 0.5509562084361049, -0.3215202993119732, 0.5459062603735321, 2.8697154005492105, -1.3046875, 0.734375, -0.375, 1.6470169329910096)\]] - expected: FAIL - [CSS Animations: property from [matrix(1, 0, 0, 7, 0, 0)\] to [matrix(7, 0, 1, 1, 0, 0)\] at (0.6666666666666666) should be [matrix(5, 0, 2, 3, 0, 0)\]] expected: FAIL - [CSS Animations: property from [matrix(3, 0, 0, 5, 0, -6)\] to [none\] at (-1) should be [matrix(5, 0, 0, 9, 0, -12)\]] - expected: FAIL - - [CSS Animations: property from [matrix(1, 0, 0, 1, 0, -6)\] to [matrix(0, 7, -1, 0, 6, 0)\] at (0) should be [matrix(1, 0, 0, 1, 0, -6)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [rotate(360deg)\] at (-1) should be [rotate(-360deg)\]] - expected: FAIL - - [CSS Animations: property from [matrix(0, 7, -1, 0, 6, 0)\] to [matrix(1, 0, 0, 1, 0, -6)\] at (0) should be [matrix(0, 7, -1, 0, 6, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotate(180deg)\] to [none\] at (0.75) should be [rotate(45deg)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] at (-1) should be [matrix3d(-0.0000000000000002377810622383943, -1.0671050586638147, -0.08972656766237302, 1.3740432449326199, 0.98484601036295, -2.653201092395309, 0.6753819540610847, 3.6127240080250744, -2.7988839807429846, -1.2090004194153336, -0.5183744226115445, -0.7936088631686278, 1.1875, 0.0625, -1.3125, 5.340768914473683)\]] - expected: FAIL - - [CSS Transitions: property from [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] to [none\] at (-1) should be [matrix3d(-0.6413028394192518, -1.0702420910513302, -0.5807595966791961, -18.02447171345163, 0.8211815704840004, 1.0980679097347057, 0.9399408862655454, 22.460730852026064, 0.28421009261178104, -0.5408346238741739, 0.5194791363698213, 3.075163035391172, -2.6875, 2, -1.875, -14.881239394516232)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix(1, 0, 0, 1, 0, -6)\] to [matrix(0, 7, -1, 0, 6, 0)\] at (-1) should be [matrix(0, 5, 1, 0, -6, -12)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] at (0.25) should be [matrix3d(1.211140527138306, 0, -0.30925494906815365, 0, 0, 1.5, 0, 0, 0.43295692869541513, 0, 1.6955967379936283, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Transitions: property from [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] to [none\] at (-1) should be [matrix3d(-1.2484405096414273, 0, -2.727892280477045, 0, 0, 5, 0, 0, 6.365081987779772, 0, -2.9130278558299967, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Animations: property from [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] to [none\] at (0) should be [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Transitions: property from [matrix(1, 0, 0, 1, 0, -6)\] to [matrix(0, 7, -1, 0, 6, 0)\] at (2) should be [matrix(-13, 0, 0, -1, 12, 6)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] at (2) should be [matrix3d(-1.2484405096414273, 0, -2.727892280477045, 0, 0, 5, 0, 0, 6.365081987779772, 0, -2.9130278558299967, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Transitions: property from [rotate(180deg)\] to [none\] at (0.75) should be [rotate(45deg)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [rotate(180deg)\] at (2) should be [rotate(360deg)\]] - expected: FAIL - - [CSS Animations: property from [matrix(1, 0, 0, 1, 0, -6)\] to [matrix(0, 7, -1, 0, 6, 0)\] at (0.3333333333333333) should be [matrix(2.598076211353316, 1.4999999999999998, -0.49999999999999994, 0.8660254037844387, 2, -4)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [matrix(7, 0, 2, 2, 6, 0)\] at (0) should be [matrix(1, 0, 0, 1, 0, 0)\]] - expected: FAIL - - [CSS Animations: property from [rotate(180deg)\] to [none\] at (2) should be [rotate(-180deg)\]] - expected: FAIL - - [CSS Animations: property from [rotate(180deg)\] to [none\] at (1) should be [rotate(0deg)\]] - expected: FAIL - - [CSS Transitions: property from [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] to [none\] at (0.25) should be [matrix3d(0.7912976716694541, -0.4517927901159618, -0.6868745974719376, 1.2522201536338506, 0.7952183069582651, 0.06340410955800829, -0.7956629784232128, 2.2561737435012983, 0.345639443327071, -0.8934490945546473, 0.830131443385676, 1.2606901484983566, -1.0078125, 0.75, -0.703125, 2.4888661932358946)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] at (1) should be [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [matrix(1, 0, 0, 7, 0, 0)\] to [matrix(7, 0, 1, 1, 0, 0)\] at (-1) should be [matrix(-5, 0, -13, 13, 0, 0)\]] expected: FAIL - [CSS Transitions: property from [rotate(180deg)\] to [none\] at (-1) should be [rotate(360deg)\]] - expected: FAIL - [CSS Transitions: property from [none\] to [matrix(7, 0, 2, 2, 6, 0)\] at (-1) should be [matrix(-5, 0, 0, 0, -6, 0)\]] expected: FAIL - [CSS Animations: property from [none\] to [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] at (2) should be [matrix3d(-0.5844534449366048, -0.42278005999296053, -0.4650580659922564, -0.6817595809063256, 0.9156938760088464, 0.3851647027225889, 0.9244443507516923, 0.7218225020358241, -0.0803568793574344, 0.1719974850210706, -0.49676609633513097, -0.25968177786904373, -2.375, -0.125, 2.625, 5.340768914473685)\]] - expected: FAIL - [CSS Animations: property from [none\] to [matrix(7, 0, 2, 2, 6, 0)\] at (0.5) should be [matrix(4, 0, 0.75, 1.5, 3, 0)\]] expected: FAIL - [CSS Animations: property from [matrix(1, 0, 0, 1, 0, -6)\] to [matrix(0, 7, -1, 0, 6, 0)\] at (0.6666666666666666) should be [matrix(2.5000000000000004, 4.330127018922193, -0.8660254037844386, 0.5000000000000001, 4, -2)\]] - expected: FAIL - - [CSS Animations: property from [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] to [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] at (2) should be [matrix3d(-1.1789992641434441, -0.7109729379601547, -0.4455746537954199, -21.703089533128907, -0.11137581475421703, -0.08822983871000473, -0.05695380894007451, -2.22667264132605, -3.1443917136741506, 1.8952588096345078, 2.426615889772007, -21.697523130750138, -1.5, 2.0625, -3.1875, -5.901513951904121)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] at (-1) should be [matrix3d(0, 0, 0, 0, 0, -1, 0, 0, 1.682941969615793, 0, -1.0806046117362795, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Transitions: property from [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] to [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] at (2) should be [matrix3d(-1.1789992641434441, -0.7109729379601547, -0.4455746537954199, -21.703089533128907, -0.11137581475421703, -0.08822983871000473, -0.05695380894007451, -2.22667264132605, -3.1443917136741506, 1.8952588096345078, 2.426615889772007, -21.697523130750138, -1.5, 2.0625, -3.1875, -5.901513951904121)\]] - expected: FAIL - - [CSS Transitions: property from [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] to [none\] at (0.25) should be [matrix3d(1.2804555205291865, 0, -1.1928678300408346, 0, 0, 2.5, 0, 0, 2.215325970075836, 0, 2.377988823839918, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Transitions: property from [matrix(3, 0, 0, 5, 0, -6)\] to [none\] at (0.25) should be [matrix(2.5, 0, 0, 4, 0, -4.5)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [none\] to [matrix(7, 0, 2, 2, 6, 0)\] at (0.25) should be [matrix(2.5, 0, 0.31, 1.25, 1.5, 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] to [none\] at (0.25) should be [matrix3d(0.7912976716694541, -0.4517927901159618, -0.6868745974719376, 1.2522201536338506, 0.7952183069582651, 0.06340410955800829, -0.7956629784232128, 2.2561737435012983, 0.345639443327071, -0.8934490945546473, 0.830131443385676, 1.2606901484983566, -1.0078125, 0.75, -0.703125, 2.4888661932358946)\]] - expected: FAIL - - [CSS Transitions: property from [matrix(0, 7, -1, 0, 6, 0)\] to [matrix(1, 0, 0, 1, 0, -6)\] at (2) should be [matrix(0, 5, 1, 0, -6, -12)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] to [none\] at (2) should be [matrix3d(0.39048513570444376, 0.14780794797065988, 0.6963068100217401, -4.857907861239344, -2.967682789284791, 0.6004978769584385, -3.5472376016872444, 26.675324787979896, -2.5953724498995308, 1.6280843851961373, 0.8163834310586356, 9.001735256585825, 1.34375, -1, 0.9375, -14.881239394516227)\]] - expected: FAIL - - [CSS Transitions: property from [matrix(0, 7, -1, 0, 6, 0)\] to [matrix(1, 0, 0, 1, 0, -6)\] at (-1) should be [matrix(-13, 0, 0, -1, 12, 6)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix(0, 7, -1, 0, 6, 0)\] to [matrix(1, 0, 0, 1, 0, -6)\] at (0) should be [matrix(0, 7, -1, 0, 6, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix(1, 0, 0, 1, 0, -6)\] to [matrix(0, 7, -1, 0, 6, 0)\] at (0.5) should be [matrix(2.8284271247461903, 2.82842712474619, -0.7071067811865475, 0.7071067811865476, 3, -3)\]] - expected: FAIL - - [CSS Animations: property from [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] to [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] at (1) should be [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [rotate(180deg)\] at (-1) should be [rotate(-180deg)\]] - expected: FAIL - - [CSS Transitions: property from [matrix(3, 0, 0, 5, 0, -6)\] to [none\] at (0.75) should be [matrix(1.5, 0, 0, 2, 0, -1.5)\]] - expected: FAIL - - [CSS Animations: property from [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] to [none\] at (1) should be [matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [rotate(180deg)\] at (0) should be [rotate(0deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] to [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] at (2) should be [matrix3d(-1.1789992641434441, -0.7109729379601547, -0.4455746537954199, -21.703089533128907, -0.11137581475421703, -0.08822983871000473, -0.05695380894007451, -2.22667264132605, -3.1443917136741506, 1.8952588096345078, 2.426615889772007, -21.697523130750138, -1.5, 2.0625, -3.1875, -5.901513951904121)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [matrix(7, 0, 2, 2, 6, 0)\] at (0) should be [matrix(1, 0, 0, 1, 0, 0)\]] - expected: FAIL - - [CSS Transitions: property from [rotate(180deg)\] to [none\] at (2) should be [rotate(-180deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] at (2) should be [matrix3d(-1.2484405096414273, 0, -2.727892280477045, 0, 0, 5, 0, 0, 6.365081987779772, 0, -2.9130278558299967, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Animations: property from [rotate(180deg)\] to [none\] at (0.25) should be [rotate(135deg)\]] - expected: FAIL - - [CSS Animations: property from [matrix3d(2.3505561943, 0.0, 0.0, 0.0, 0.0, 2.6068943664, 0.0, 0.0, 0.0, 0.0, 2.6591082592, 0.0, 20.3339914256, 20.6709033765, 20.9147808456, 1.0)\] to [matrix3d(2.7133590938, 0.0, 0.0, 0.0, 0.0, 2.4645137761, 0.0, 0.0, 0.0, 0.0, 2.801687476, 0.0, 20.4335882254, 20.2330661998, 20.4583968206, 1.0)\] at (0) should be [matrix3d(2.3505561943, 0.0, 0.0, 0.0, 0.0, 2.6068943664, 0.0, 0.0, 0.0, 0.0, 2.6591082592, 0.0, 20.3339914256, 20.6709033765, 20.9147808456, 1.0)\]] - expected: FAIL - - [CSS Animations: property from [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] to [none\] at (0.25) should be [matrix3d(1.2804555205291865, 0, -1.1928678300408346, 0, 0, 2.5, 0, 0, 2.215325970075836, 0, 2.377988823839918, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] to [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] at (0.25) should be [matrix3d(0.33652832679595723, 0.55254445148386, -0.7544724447833296, 0.22700224951774267, -0.69720168363685, -0.036373245768780864, 0.28149188169180933, -0.2845156818045006, -0.24737156018941048, 0.31207160370190334, 0.4564821058052897, 0.9220853089096839, -1.2265625, 0.203125, 0.75, 1.647016932991011)\]] - expected: FAIL - - [CSS Animations: property from [matrix(3, 0, 0, 5, 0, -6)\] to [none\] at (1) should be [matrix(1, 0, 0, 1, 0, 0)\]] - expected: FAIL - - [CSS Animations: property from [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] to [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] at (0.75) should be [matrix3d(0.6861191524977764, -0.18025672746204927, -0.8710297237546482, 0.6072134247444672, 0.2819931018922366, 0.27778974607679663, -0.6540128246146626, 0.5063632314069845, 0.5509562084361049, -0.3215202993119732, 0.5459062603735321, 2.8697154005492105, -1.3046875, 0.734375, -0.375, 1.6470169329910096)\]] - expected: FAIL - [CSS Transitions: property from [matrix(1, 0, 0, 7, 0, 0)\] to [matrix(7, 0, 1, 1, 0, 0)\] at (0.6666666666666666) should be [matrix(5, 0, 2, 3, 0, 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] to [none\] at (1) should be [matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Animations: property from [matrix(0, 7, -1, 0, 6, 0)\] to [matrix(1, 0, 0, 1, 0, -6)\] at (2) should be [matrix(0, 5, 1, 0, -6, -12)\]] - expected: FAIL - - [CSS Transitions: property from [matrix(3, 0, 0, 5, 0, -6)\] to [none\] at (2) should be [matrix(-1, 0, 0, -3, 0, 6)\]] - expected: FAIL - - [CSS Animations: property from [rotate(180deg)\] to [none\] at (0) should be [rotate(180deg)\]] - expected: FAIL - - [CSS Transitions: property from [matrix(0, 7, -1, 0, 6, 0)\] to [matrix(1, 0, 0, 1, 0, -6)\] at (0.6666666666666666) should be [matrix(2.598076211353316, 1.4999999999999998, -0.49999999999999994, 0.8660254037844387, 2, -4)\]] - expected: FAIL - [CSS Animations: property from [none\] to [matrix(7, 0, 2, 2, 6, 0)\] at (-1) should be [matrix(-5, 0, 0, 0, -6, 0)\]] expected: FAIL - [CSS Animations: property from [none\] to [rotate(360deg)\] at (0) should be [rotate(0deg)\]] - expected: FAIL - - [CSS Transitions: property from [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] to [none\] at (2) should be [matrix3d(0, 0, 0, 0, 0, -1, 0, 0, 1.682941969615793, 0, -1.0806046117362795, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Transitions: property from [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] to [none\] at (0.75) should be [matrix3d(1.211140527138306, 0, -0.30925494906815365, 0, 0, 1.5, 0, 0, 0.43295692869541513, 0, 1.6955967379936283, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Animations: property from [matrix(0, 7, -1, 0, 6, 0)\] to [matrix(1, 0, 0, 1, 0, -6)\] at (0.6666666666666666) should be [matrix(2.598076211353316, 1.4999999999999998, -0.49999999999999994, 0.8660254037844387, 2, -4)\]] - expected: FAIL - - [CSS Transitions: property from [matrix3d(2.3505561943, 0.0, 0.0, 0.0, 0.0, 2.6068943664, 0.0, 0.0, 0.0, 0.0, 2.6591082592, 0.0, 20.3339914256, 20.6709033765, 20.9147808456, 1.0)\] to [matrix3d(2.7133590938, 0.0, 0.0, 0.0, 0.0, 2.4645137761, 0.0, 0.0, 0.0, 0.0, 2.801687476, 0.0, 20.4335882254, 20.2330661998, 20.4583968206, 1.0)\] at (0) should be [matrix3d(2.3505561943, 0.0, 0.0, 0.0, 0.0, 2.6068943664, 0.0, 0.0, 0.0, 0.0, 2.6591082592, 0.0, 20.3339914256, 20.6709033765, 20.9147808456, 1.0)\]] - expected: FAIL - [CSS Animations: property from [matrix(1, 0, 0, 7, 0, 0)\] to [matrix(7, 0, 1, 1, 0, 0)\] at (2) should be [matrix(13, 0, -10, -5, 0, 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from [none\] to [rotate(180deg)\] at (0.25) should be [rotate(45deg)\]] - expected: FAIL - - [CSS Animations: property from [matrix3d(2.3505561943, 0.0, 0.0, 0.0, 0.0, 2.6068943664, 0.0, 0.0, 0.0, 0.0, 2.6591082592, 0.0, 20.3339914256, 20.6709033765, 20.9147808456, 1.0)\] to [matrix3d(2.7133590938, 0.0, 0.0, 0.0, 0.0, 2.4645137761, 0.0, 0.0, 0.0, 0.0, 2.801687476, 0.0, 20.4335882254, 20.2330661998, 20.4583968206, 1.0)\] at (2) should be [matrix3d(3.0761619932999995, 0.0, 0.0, 0.0, 0.0, 2.3221331858, 0.0, 0.0, 0.0, 0.0, 2.9442666928000003, 0.0, 20.5331850252, 19.7952290231, 20.002012795600002, 1.0)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] at (0) should be [matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [rotate(180deg)\] at (-1) should be [rotate(-180deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix(0, 7, -1, 0, 6, 0)\] to [matrix(1, 0, 0, 1, 0, -6)\] at (0.6666666666666666) should be [matrix(2.598076211353316, 1.4999999999999998, -0.49999999999999994, 0.8660254037844387, 2, -4)\]] - expected: FAIL - - [CSS Animations: property from [matrix3d(2.3505561943, 0.0, 0.0, 0.0, 0.0, 2.6068943664, 0.0, 0.0, 0.0, 0.0, 2.6591082592, 0.0, 20.3339914256, 20.6709033765, 20.9147808456, 1.0)\] to [matrix3d(2.7133590938, 0.0, 0.0, 0.0, 0.0, 2.4645137761, 0.0, 0.0, 0.0, 0.0, 2.801687476, 0.0, 20.4335882254, 20.2330661998, 20.4583968206, 1.0)\] at (0.25) should be [matrix3d(2.441256919175, 0.0, 0.0, 0.0, 0.0, 2.571299218825, 0.0, 0.0, 0.0, 0.0, 2.6947530634, 0.0, 20.35889062555, 20.561444082325, 20.800684839349998, 1.0)\]] - expected: FAIL - - [CSS Transitions: property from [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] to [none\] at (2) should be [matrix3d(0.39048513570444376, 0.14780794797065988, 0.6963068100217401, -4.857907861239344, -2.967682789284791, 0.6004978769584385, -3.5472376016872444, 26.675324787979896, -2.5953724498995308, 1.6280843851961373, 0.8163834310586356, 9.001735256585825, 1.34375, -1, 0.9375, -14.881239394516227)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [rotate(180deg)\] at (0.75) should be [rotate(135deg)\]] - expected: FAIL - - [CSS Animations: property from [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] to [none\] at (1) should be [matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [rotate(360deg)\] at (0.25) should be [rotate(90deg)\]] - expected: FAIL - - [CSS Transitions: property from [matrix3d(2.3505561943, 0.0, 0.0, 0.0, 0.0, 2.6068943664, 0.0, 0.0, 0.0, 0.0, 2.6591082592, 0.0, 20.3339914256, 20.6709033765, 20.9147808456, 1.0)\] to [matrix3d(2.7133590938, 0.0, 0.0, 0.0, 0.0, 2.4645137761, 0.0, 0.0, 0.0, 0.0, 2.801687476, 0.0, 20.4335882254, 20.2330661998, 20.4583968206, 1.0)\] at (-1) should be [matrix3d(1.9877532948000005, 0.0, 0.0, 0.0, 0.0, 2.7492749567000003, 0.0, 0.0, 0.0, 0.0, 2.5165290423999997, 0.0, 20.2343946258, 21.1087405532, 21.371164870599998, 1.0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] at (0.75) should be [matrix3d(0.35007413226026135, 0.7254385504141292, -0.4977009150941454, 0.09582061929004702, -1.1027525038949482, -0.5884810398827429, 0.4516829688651701, 0.5447944343861767, -0.68717798815684, 0.2657772247405681, 0.5465690479810023, 1.0836207863885503, -0.890625, -0.046875, 0.984375, 0.5930529142680927)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [rotate(180deg)\] at (0.75) should be [rotate(135deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix(1, 0, 0, 1, 0, -6)\] to [matrix(0, 7, -1, 0, 6, 0)\] at (0.3333333333333333) should be [matrix(2.598076211353316, 1.4999999999999998, -0.49999999999999994, 0.8660254037844387, 2, -4)\]] - expected: FAIL - - [CSS Animations: property from [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] to [none\] at (-1) should be [matrix3d(-0.6413028394192518, -1.0702420910513302, -0.5807595966791961, -18.02447171345163, 0.8211815704840004, 1.0980679097347057, 0.9399408862655454, 22.460730852026064, 0.28421009261178104, -0.5408346238741739, 0.5194791363698213, 3.075163035391172, -2.6875, 2, -1.875, -14.881239394516232)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [none\] to [matrix(7, 0, 2, 2, 6, 0)\] at (2) should be [matrix(13, 0, 6, 3, 12, 0)\]] expected: FAIL - [CSS Transitions: property from [none\] to [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] at (0) should be [matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [rotate(360deg)\] at (0.75) should be [rotate(270deg)\]] - expected: FAIL - - [CSS Animations: property from [matrix(3, 0, 0, 5, 0, -6)\] to [none\] at (0) should be [matrix(3, 0, 0, 5, 0, -6)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotate(180deg)\] to [none\] at (1) should be [rotate(0deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotate(180deg)\] to [none\] at (2) should be [rotate(-180deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix3d(2.3505561943, 0.0, 0.0, 0.0, 0.0, 2.6068943664, 0.0, 0.0, 0.0, 0.0, 2.6591082592, 0.0, 20.3339914256, 20.6709033765, 20.9147808456, 1.0)\] to [matrix3d(2.7133590938, 0.0, 0.0, 0.0, 0.0, 2.4645137761, 0.0, 0.0, 0.0, 0.0, 2.801687476, 0.0, 20.4335882254, 20.2330661998, 20.4583968206, 1.0)\] at (-1) should be [matrix3d(1.9877532948000005, 0.0, 0.0, 0.0, 0.0, 2.7492749567000003, 0.0, 0.0, 0.0, 0.0, 2.5165290423999997, 0.0, 20.2343946258, 21.1087405532, 21.371164870599998, 1.0)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] at (0.75) should be [matrix3d(1.2804555205291865, 0, -1.1928678300408346, 0, 0, 2.5, 0, 0, 2.215325970075836, 0, 2.377988823839918, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Transitions: property from [matrix(1, 0, 0, 1, 0, -6)\] to [matrix(0, 7, -1, 0, 6, 0)\] at (0.5) should be [matrix(2.8284271247461903, 2.82842712474619, -0.7071067811865475, 0.7071067811865476, 3, -3)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] to [none\] at (0) should be [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [rotate(180deg)\] at (0.25) should be [rotate(45deg)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] at (0.75) should be [matrix3d(1.2804555205291865, 0, -1.1928678300408346, 0, 0, 2.5, 0, 0, 2.215325970075836, 0, 2.377988823839918, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Animations: property from [matrix(1, 0, 0, 1, 0, -6)\] to [matrix(0, 7, -1, 0, 6, 0)\] at (0.5) should be [matrix(2.8284271247461903, 2.82842712474619, -0.7071067811865475, 0.7071067811865476, 3, -3)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotate(180deg)\] to [none\] at (-1) should be [rotate(360deg)\]] - expected: FAIL - [CSS Animations: property from [none\] to [matrix(7, 0, 2, 2, 6, 0)\] at (0.25) should be [matrix(2.5, 0, 0.31, 1.25, 1.5, 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] to [none\] at (0.75) should be [matrix3d(1.0093457700315165, -0.12746048375025829, -0.24746788943106088, 1.3202120308857304, 0.6128364656690982, 0.7600694601651116, -0.22233359857303325, 1.4081483224940277, 0.21669805381113447, -0.3786082265932788, 0.908354523914928, 0.6747509193960347, -0.3359375, 0.25, -0.234375, 2.4888661932358964)\]] - expected: FAIL - - [CSS Transitions: property from [matrix(3, 0, 0, 5, 0, -6)\] to [none\] at (0.5) should be [matrix(2, 0, 0, 3, 0, -3)\]] - expected: FAIL - - [CSS Transitions: property from [matrix(1, 0, 0, 1, 0, -6)\] to [matrix(0, 7, -1, 0, 6, 0)\] at (0) should be [matrix(1, 0, 0, 1, 0, -6)\]] - expected: FAIL - [CSS Transitions: property from [matrix(1, 0, 0, 7, 0, 0)\] to [matrix(7, 0, 1, 1, 0, 0)\] at (-1) should be [matrix(-5, 0, -13, 13, 0, 0)\]] expected: FAIL - [CSS Animations: property from [matrix(3, 0, 0, 5, 0, -6)\] to [none\] at (0.75) should be [matrix(1.5, 0, 0, 2, 0, -1.5)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [none\] to [matrix(7, 0, 2, 2, 6, 0)\] at (-1) should be [matrix(-5, 0, 0, 0, -6, 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] to [none\] at (0.75) should be [matrix3d(1.211140527138306, 0, -0.30925494906815365, 0, 0, 1.5, 0, 0, 0.43295692869541513, 0, 1.6955967379936283, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] to [none\] at (1) should be [matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] at (0.75) should be [matrix3d(1.2804555205291865, 0, -1.1928678300408346, 0, 0, 2.5, 0, 0, 2.215325970075836, 0, 2.377988823839918, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix(0, 7, -1, 0, 6, 0)\] to [matrix(1, 0, 0, 1, 0, -6)\] at (0.5) should be [matrix(2.8284271247461903, 2.82842712474619, -0.7071067811865475, 0.7071067811865476, 3, -3)\]] - expected: FAIL - - [CSS Transitions: property from [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] to [none\] at (0) should be [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Animations: property from [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] to [none\] at (0.25) should be [matrix3d(0.7912976716694541, -0.4517927901159618, -0.6868745974719376, 1.2522201536338506, 0.7952183069582651, 0.06340410955800829, -0.7956629784232128, 2.2561737435012983, 0.345639443327071, -0.8934490945546473, 0.830131443385676, 1.2606901484983566, -1.0078125, 0.75, -0.703125, 2.4888661932358946)\]] - expected: FAIL - - [CSS Transitions: property from [matrix(0, 7, -1, 0, 6, 0)\] to [matrix(1, 0, 0, 1, 0, -6)\] at (0.5) should be [matrix(2.8284271247461903, 2.82842712474619, -0.7071067811865475, 0.7071067811865476, 3, -3)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [rotate(180deg)\] at (2) should be [rotate(360deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix(1, 0, 0, 1, 0, -6)\] to [matrix(0, 7, -1, 0, 6, 0)\] at (0) should be [matrix(1, 0, 0, 1, 0, -6)\]] - expected: FAIL - - [CSS Transitions: property from [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] to [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] at (0) should be [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix3d(2.3505561943, 0.0, 0.0, 0.0, 0.0, 2.6068943664, 0.0, 0.0, 0.0, 0.0, 2.6591082592, 0.0, 20.3339914256, 20.6709033765, 20.9147808456, 1.0)\] to [matrix3d(2.7133590938, 0.0, 0.0, 0.0, 0.0, 2.4645137761, 0.0, 0.0, 0.0, 0.0, 2.801687476, 0.0, 20.4335882254, 20.2330661998, 20.4583968206, 1.0)\] at (0.25) should be [matrix3d(2.441256919175, 0.0, 0.0, 0.0, 0.0, 2.571299218825, 0.0, 0.0, 0.0, 0.0, 2.6947530634, 0.0, 20.35889062555, 20.561444082325, 20.800684839349998, 1.0)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] at (0.25) should be [matrix3d(0.9041890962319094, 0.3522701519297133, -0.15240204298176957, -0.1428256720529315, -0.7579798772527586, 0.6803606288839232, -0.05133336076757235, 0.37904689530895724, -0.1957679784745485, 0.38554138029509327, 0.8226186974340638, 0.3370288143441876, -0.296875, -0.015625, 0.328125, 0.5930529142680923)\]] - expected: FAIL - - [CSS Transitions: property from [matrix(1, 0, 0, 1, 0, -6)\] to [matrix(0, 7, -1, 0, 6, 0)\] at (-1) should be [matrix(0, 5, 1, 0, -6, -12)\]] - expected: FAIL - - [CSS Transitions: property from [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] to [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] at (0.25) should be [matrix3d(0.33652832679595723, 0.55254445148386, -0.7544724447833296, 0.22700224951774267, -0.69720168363685, -0.036373245768780864, 0.28149188169180933, -0.2845156818045006, -0.24737156018941048, 0.31207160370190334, 0.4564821058052897, 0.9220853089096839, -1.2265625, 0.203125, 0.75, 1.647016932991011)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix(1, 0, 0, 1, 0, -6)\] to [matrix(0, 7, -1, 0, 6, 0)\] at (0.6666666666666666) should be [matrix(2.5000000000000004, 4.330127018922193, -0.8660254037844386, 0.5000000000000001, 4, -2)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] at (0.75) should be [matrix3d(0.35007413226026135, 0.7254385504141292, -0.4977009150941454, 0.09582061929004702, -1.1027525038949482, -0.5884810398827429, 0.4516829688651701, 0.5447944343861767, -0.68717798815684, 0.2657772247405681, 0.5465690479810023, 1.0836207863885503, -0.890625, -0.046875, 0.984375, 0.5930529142680927)\]] - expected: FAIL - - [CSS Transitions: property from [matrix(0, 7, -1, 0, 6, 0)\] to [matrix(1, 0, 0, 1, 0, -6)\] at (0) should be [matrix(0, 7, -1, 0, 6, 0)\]] - expected: FAIL - - [CSS Animations: property from [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] to [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] at (0.25) should be [matrix3d(0.33652832679595723, 0.55254445148386, -0.7544724447833296, 0.22700224951774267, -0.69720168363685, -0.036373245768780864, 0.28149188169180933, -0.2845156818045006, -0.24737156018941048, 0.31207160370190334, 0.4564821058052897, 0.9220853089096839, -1.2265625, 0.203125, 0.75, 1.647016932991011)\]] - expected: FAIL - - [CSS Transitions: property from [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] to [none\] at (0.75) should be [matrix3d(1.0093457700315165, -0.12746048375025829, -0.24746788943106088, 1.3202120308857304, 0.6128364656690982, 0.7600694601651116, -0.22233359857303325, 1.4081483224940277, 0.21669805381113447, -0.3786082265932788, 0.908354523914928, 0.6747509193960347, -0.3359375, 0.25, -0.234375, 2.4888661932358964)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix(3, 0, 0, 5, 0, -6)\] to [none\] at (-1) should be [matrix(5, 0, 0, 9, 0, -12)\]] - expected: FAIL - [CSS Transitions: property from [matrix(1, 0, 0, 7, 0, 0)\] to [matrix(7, 0, 1, 1, 0, 0)\] at (0.5) should be [matrix(4, 0, 2, 4, 0, 0)\]] expected: FAIL - [CSS Animations: property from [matrix(1, 0, 0, 1, 0, -6)\] to [matrix(0, 7, -1, 0, 6, 0)\] at (2) should be [matrix(-13, 0, 0, -1, 12, 6)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix(0, 7, -1, 0, 6, 0)\] to [matrix(1, 0, 0, 1, 0, -6)\] at (0.3333333333333333) should be [matrix(2.5000000000000004, 4.330127018922193, -0.8660254037844386, 0.5000000000000001, 4, -2)\]] - expected: FAIL - - [CSS Animations: property from [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] to [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] at (-1) should be [matrix3d(-0.6299594065765657, -0.10825090106268696, -0.20133311671001855, 5.485724217214554, 6.358051978686152, 0.16496896269344588, 1.5760051143537075, -54.21568355620423, 0.7106057459805782, -1.1596356050622005, -0.11495342545397585, -4.913752963990824, -1.03125, -1.125, 3.5625, -5.901513951904114)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [rotate(360deg)\] at (0.25) should be [rotate(90deg)\]] - expected: FAIL - [CSS Transitions: property from [matrix(1, 0, 0, 7, 0, 0)\] to [matrix(7, 0, 1, 1, 0, 0)\] at (0.3333333333333333) should be [matrix(3, 0, 1.6667, 5, 0, 0)\]] expected: FAIL @@ -923,87 +341,18 @@ [CSS Transitions: property from [none\] to [matrix(7, 0, 2, 2, 6, 0)\] at (0.75) should be [matrix(5.5, 0, 1.31, 1.75, 4.5, 0)\]] expected: FAIL - [CSS Transitions: property from [none\] to [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] at (0.25) should be [matrix3d(1.211140527138306, 0, -0.30925494906815365, 0, 0, 1.5, 0, 0, 0.43295692869541513, 0, 1.6955967379936283, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Transitions: property from [rotate(180deg)\] to [none\] at (1) should be [rotate(0deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotate(180deg)\] to [none\] at (0) should be [rotate(180deg)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [matrix(1, 0, 0, 7, 0, 0)\] to [matrix(7, 0, 1, 1, 0, 0)\] at (0.3333333333333333) should be [matrix(3, 0, 1.6667, 5, 0, 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from [none\] to [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] at (0) should be [matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix3d(2.3505561943, 0.0, 0.0, 0.0, 0.0, 2.6068943664, 0.0, 0.0, 0.0, 0.0, 2.6591082592, 0.0, 20.3339914256, 20.6709033765, 20.9147808456, 1.0)\] to [matrix3d(2.7133590938, 0.0, 0.0, 0.0, 0.0, 2.4645137761, 0.0, 0.0, 0.0, 0.0, 2.801687476, 0.0, 20.4335882254, 20.2330661998, 20.4583968206, 1.0)\] at (2) should be [matrix3d(3.0761619932999995, 0.0, 0.0, 0.0, 0.0, 2.3221331858, 0.0, 0.0, 0.0, 0.0, 2.9442666928000003, 0.0, 20.5331850252, 19.7952290231, 20.002012795600002, 1.0)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [rotate(360deg)\] at (-1) should be [rotate(-360deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] at (0.25) should be [matrix3d(0.9041890962319094, 0.3522701519297133, -0.15240204298176957, -0.1428256720529315, -0.7579798772527586, 0.6803606288839232, -0.05133336076757235, 0.37904689530895724, -0.1957679784745485, 0.38554138029509327, 0.8226186974340638, 0.3370288143441876, -0.296875, -0.015625, 0.328125, 0.5930529142680923)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [rotate(360deg)\] at (0) should be [rotate(0deg)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] at (2) should be [matrix3d(-0.5844534449366048, -0.42278005999296053, -0.4650580659922564, -0.6817595809063256, 0.9156938760088464, 0.3851647027225889, 0.9244443507516923, 0.7218225020358241, -0.0803568793574344, 0.1719974850210706, -0.49676609633513097, -0.25968177786904373, -2.375, -0.125, 2.625, 5.340768914473685)\]] - expected: FAIL - [CSS Animations: property from [matrix(1, 0, 0, 7, 0, 0)\] to [matrix(7, 0, 1, 1, 0, 0)\] at (0.5) should be [matrix(4, 0, 2, 4, 0, 0)\]] expected: FAIL - [CSS Animations: property from [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] to [none\] at (0.75) should be [matrix3d(1.0093457700315165, -0.12746048375025829, -0.24746788943106088, 1.3202120308857304, 0.6128364656690982, 0.7600694601651116, -0.22233359857303325, 1.4081483224940277, 0.21669805381113447, -0.3786082265932788, 0.908354523914928, 0.6747509193960347, -0.3359375, 0.25, -0.234375, 2.4888661932358964)\]] - expected: FAIL - - [CSS Animations: property from [matrix3d(1.0806046117362795, 0, -1.682941969615793, 0, 0, 3, 0, 0, 3.365883939231586, 0, 2.161209223472559, 0, 0, 0, 0, 1)\] to [none\] at (0.75) should be [matrix3d(1.211140527138306, 0, -0.30925494906815365, 0, 0, 1.5, 0, 0, 0.43295692869541513, 0, 1.6955967379936283, 0, 0, 0, 0, 1)\]] - expected: FAIL - [CSS Transitions: property from [none\] to [matrix(7, 0, 2, 2, 6, 0)\] at (0.25) should be [matrix(2.5, 0, 0.31, 1.25, 1.5, 0)\]] expected: FAIL [CSS Transitions with transition: all: property from [matrix(1, 0, 0, 7, 0, 0)\] to [matrix(7, 0, 1, 1, 0, 0)\] at (0.5) should be [matrix(4, 0, 2, 4, 0, 0)\]] expected: FAIL - [CSS Transitions: property from [none\] to [rotate(180deg)\] at (-1) should be [rotate(-180deg)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] at (-1) should be [matrix3d(-0.0000000000000002377810622383943, -1.0671050586638147, -0.08972656766237302, 1.3740432449326199, 0.98484601036295, -2.653201092395309, 0.6753819540610847, 3.6127240080250744, -2.7988839807429846, -1.2090004194153336, -0.5183744226115445, -0.7936088631686278, 1.1875, 0.0625, -1.3125, 5.340768914473683)\]] - expected: FAIL - - [CSS Transitions: property from [matrix3d(0, 0.6875, -0.625, 0.3125, -0.6666666666666665, -1, 0.8333333333333334, 0.125, -0.6666666666666665, 0, 0.5, 1.0625, -1.1875, -0.0625, 1.3125, 1)\] to [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] at (0.75) should be [matrix3d(0.6861191524977764, -0.18025672746204927, -0.8710297237546482, 0.6072134247444672, 0.2819931018922366, 0.27778974607679663, -0.6540128246146626, 0.5063632314069845, 0.5509562084361049, -0.3215202993119732, 0.5459062603735321, 2.8697154005492105, -1.3046875, 0.734375, -0.375, 1.6470169329910096)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix3d(0.571428571428571, -0.625, -0.8333333333333346, -0.66666666666669, 0.5, -0.1875, -0.8125, 0.3125, 0.34375, -1, 0.8333333333333327, 1.34375, -1.34375, 1, -0.9375, 1)\] to [none\] at (-1) should be [matrix3d(-0.6413028394192518, -1.0702420910513302, -0.5807595966791961, -18.02447171345163, 0.8211815704840004, 1.0980679097347057, 0.9399408862655454, 22.460730852026064, 0.28421009261178104, -0.5408346238741739, 0.5194791363698213, 3.075163035391172, -2.6875, 2, -1.875, -14.881239394516232)\]] - expected: FAIL - - [CSS Transitions: property from [matrix(3, 0, 0, 5, 0, -6)\] to [none\] at (0) should be [matrix(3, 0, 0, 5, 0, -6)\]] - expected: FAIL - [CSS Transitions: property from [none\] to [matrix(7, 0, 2, 2, 6, 0)\] at (0.5) should be [matrix(4, 0, 0.75, 1.5, 3, 0)\]] expected: FAIL - [CSS Transitions: property from [matrix(1, 0, 0, 7, 0, 0)\] to [matrix(7, 0, 1, 1, 0, 0)\] at (0) should be [matrix(1, 0, 0, 7, 0, 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [rotate(180deg)\] at (0) should be [rotate(0deg)\]] - expected: FAIL - - [CSS Transitions: property from [matrix(1, 0, 0, 1, 0, -6)\] to [matrix(0, 7, -1, 0, 6, 0)\] at (0.3333333333333333) should be [matrix(2.598076211353316, 1.4999999999999998, -0.49999999999999994, 0.8660254037844387, 2, -4)\]] - expected: FAIL - - [CSS Transitions: property from [matrix3d(2.3505561943, 0.0, 0.0, 0.0, 0.0, 2.6068943664, 0.0, 0.0, 0.0, 0.0, 2.6591082592, 0.0, 20.3339914256, 20.6709033765, 20.9147808456, 1.0)\] to [matrix3d(2.7133590938, 0.0, 0.0, 0.0, 0.0, 2.4645137761, 0.0, 0.0, 0.0, 0.0, 2.801687476, 0.0, 20.4335882254, 20.2330661998, 20.4583968206, 1.0)\] at (0.75) should be [matrix3d(2.622658368925, 0.0, 0.0, 0.0, 0.0, 2.500108923675, 0.0, 0.0, 0.0, 0.0, 2.7660426718, 0.0, 20.408689025450002, 20.342525493975, 20.572492826850002, 1.0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [matrix(3, 0, 0, 5, 0, -6)\] to [none\] at (2) should be [matrix(-1, 0, 0, -3, 0, 6)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rotate(180deg)\] to [none\] at (0.25) should be [rotate(135deg)\]] - expected: FAIL - - [CSS Transitions: property from [rotate(180deg)\] to [none\] at (0) should be [rotate(180deg)\]] - expected: FAIL - diff --git a/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-interpolation-006.html.ini b/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-interpolation-006.html.ini index a3935bfd463..91090daafad 100644 --- a/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-interpolation-006.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-interpolation-006.html.ini @@ -71,189 +71,18 @@ [Web Animations: property from [initial\] to [translate(20px)\] at (2) should be [translate(40px)\]] expected: FAIL - [CSS Transitions with transition: all: property from [initial\] to [translate(20px)\] at (0) should be [translate(0px)\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [translate(20px)\] at (0.75) should be [translate(22.5px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [translate(20px)\] at (2) should be [translate(40px)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [translate(20px)\] at (-1) should be [translate(-20px)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [translate(20px)\] at (2) should be [translate(40px)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [translate(20px)\] at (0) should be [translate(10px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [translate(20px)\] at (0.25) should be [translate(27.5px)\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [translate(20px)\] at (0.75) should be [translate(15px)\]] - expected: FAIL - - [CSS Animations: property from neutral to [translate(20px)\] at (-1) should be [translate(0px)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [translate(20px)\] at (0.25) should be [translate(12.5px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [translate(20px)\] at (0.25) should be [translate(5px)\]] - expected: FAIL - - [CSS Animations: property from [inherit\] to [translate(20px)\] at (1) should be [translate(20px)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [translate(20px)\] at (-1) should be [translate(0px)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [translate(20px)\] at (0.75) should be [translate(17.5px)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [translate(20px)\] at (0) should be [translate(0px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [translate(20px)\] at (0.75) should be [translate(15px)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [translate(20px)\] at (2) should be [translate(30px)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [translate(20px)\] at (0.75) should be [translate(15px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [translate(20px)\] at (-1) should be [translate(40px)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [translate(20px)\] at (0.25) should be [translate(5px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [translate(20px)\] at (0.25) should be [translate(5px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [translate(20px)\] at (0) should be [translate(0px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [translate(20px)\] at (0.75) should be [translate(15px)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [translate(20px)\] at (-1) should be [translate(-20px)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [translate(20px)\] at (0.25) should be [translate(5px)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [translate(20px)\] at (2) should be [translate(40px)\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [translate(20px)\] at (0.25) should be [translate(27.5px)\]] expected: FAIL - [CSS Animations: property from [unset\] to [translate(20px)\] at (1) should be [translate(20px)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [translate(20px)\] at (-1) should be [translate(-20px)\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [translate(20px)\] at (0) should be [translate(0px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [translate(20px)\] at (-1) should be [translate(-20px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [translate(20px)\] at (2) should be [translate(40px)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [translate(20px)\] at (1) should be [translate(20px)\]] - expected: FAIL - - [CSS Animations: property from neutral to [translate(20px)\] at (0.25) should be [translate(12.5px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [translate(20px)\] at (0.75) should be [translate(17.5px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [translate(20px)\] at (0.75) should be [translate(22.5px)\]] - expected: FAIL - - [CSS Animations: property from neutral to [translate(20px)\] at (2) should be [translate(30px)\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [translate(20px)\] at (0) should be [translate(30px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [translate(20px)\] at (0) should be [translate(10px)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [translate(20px)\] at (0.25) should be [translate(5px)\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [translate(20px)\] at (0.25) should be [translate(5px)\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [translate(20px)\] at (0) should be [translate(30px)\]] expected: FAIL - [CSS Transitions: property from [unset\] to [translate(20px)\] at (2) should be [translate(40px)\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [translate(20px)\] at (-1) should be [translate(-20px)\]] - expected: FAIL - - [CSS Animations: property from neutral to [translate(20px)\] at (0.75) should be [translate(17.5px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [translate(20px)\] at (0) should be [translate(30px)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [translate(20px)\] at (0.75) should be [translate(15px)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [translate(20px)\] at (0) should be [translate(0px)\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [translate(20px)\] at (2) should be [translate(10px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [translate(20px)\] at (-1) should be [translate(0px)\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [translate(20px)\] at (0.25) should be [translate(27.5px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [translate(20px)\] at (2) should be [translate(30px)\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [translate(20px)\] at (-1) should be [translate(40px)\]] - expected: FAIL - - [CSS Animations: property from neutral to [translate(20px)\] at (1) should be [translate(20px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [translate(20px)\] at (-1) should be [translate(-20px)\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [translate(20px)\] at (-1) should be [translate(40px)\]] expected: FAIL - [CSS Transitions with transition: all: property from neutral to [translate(20px)\] at (0.25) should be [translate(12.5px)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [translate(20px)\] at (0.75) should be [translate(15px)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [translate(20px)\] at (0) should be [translate(0px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [translate(20px)\] at (2) should be [translate(10px)\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [translate(20px)\] at (0.75) should be [translate(22.5px)\]] expected: FAIL - [CSS Transitions: property from [initial\] to [translate(20px)\] at (2) should be [translate(40px)\]] + [CSS Animations: property from [inherit\] to [translate(20px)\] at (2) should be [translate(10px)\]] expected: FAIL diff --git a/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-origin-interpolation.html.ini b/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-origin-interpolation.html.ini index e51b35bbce0..5204a840292 100644 --- a/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-origin-interpolation.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-transforms/animation/transform-origin-interpolation.html.ini @@ -125,12 +125,6 @@ [Web Animations: property from [initial\] to [20px 20px\] at (-0.3) should be [26.5px 26.5px\]] expected: FAIL - [CSS Transitions: property from [0% 50% 5px\] to [100% 150% 0px\] at (0.6) should be [60% 110% 2px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px 20px\] at (1.5) should be [15px 25px\]] - expected: FAIL - [CSS Transitions with transition: all: property from [initial\] to [20px 20px\] at (-0.3) should be [26.5px 26.5px\]] expected: FAIL @@ -146,12 +140,6 @@ [CSS Animations: property from [center center\] to [0% 100px\] at (1) should be [0px 100px\]] expected: FAIL - [CSS Animations: property from neutral to [20px 20px\] at (0.6) should be [16px 24px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [0% 50% 5px\] to [100% 150% 0px\] at (0.6) should be [60% 110% 2px\]] - expected: FAIL - [CSS Transitions with transition: all: property from [initial\] to [20px 20px\] at (0) should be [25px 25px\]] expected: FAIL @@ -161,9 +149,6 @@ [CSS Animations: property from [center center\] to [0% 100px\] at (0) should be [25px 25px\]] expected: FAIL - [CSS Transitions with transition: all: property from [inherit\] to [20px 20px\] at (-0.3) should be [33px 7px\]] - expected: FAIL - [CSS Animations: property from [top left\] to [bottom right\] at (0.6) should be [30px 30px\]] expected: FAIL @@ -176,57 +161,30 @@ [CSS Transitions with transition: all: property from [center center\] to [0% 100px\] at (0) should be [25px 25px\]] expected: FAIL - [CSS Transitions with transition: all: property from [0% 50% 5px\] to [100% 150% 0px\] at (1.5) should be [150% 200% -2.5px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px 20px\] at (0.6) should be [16px 24px\]] - expected: FAIL - [CSS Transitions with transition: all: property from [center center\] to [0% 100px\] at (-0.3) should be [32.5px 2.5px\]] expected: FAIL - [CSS Transitions: property from [inherit\] to [20px 20px\] at (0.6) should be [24px 16px\]] - expected: FAIL - [CSS Transitions with transition: all: property from [top left\] to [bottom right\] at (1) should be [50px 50px\]] expected: FAIL [CSS Transitions: property from [unset\] to [20px 20px\] at (0.3) should be [23.5px 23.5px\]] expected: FAIL - [CSS Transitions: property from [inherit\] to [20px 20px\] at (0) should be [30px 10px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px 20px\] at (0.3) should be [27px 13px\]] - expected: FAIL - [CSS Transitions: property from [center center\] to [0% 100px\] at (0.6) should be [10px 70px\]] expected: FAIL - [CSS Animations: property from neutral to [20px 20px\] at (-0.3) should be [7px 33px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [20px 20px\] at (0) should be [10px 30px\]] - expected: FAIL - [CSS Animations: property from [top left\] to [bottom right\] at (-0.3) should be [-15px -15px\]] expected: FAIL [CSS Animations: property from [unset\] to [20px 20px\] at (1) should be [20px 20px\]] expected: FAIL - [CSS Transitions: property from neutral to [20px 20px\] at (0.3) should be [13px 27px\]] - expected: FAIL - [CSS Transitions: property from [top left\] to [bottom right\] at (1.5) should be [75px 75px\]] expected: FAIL [CSS Animations: property from [unset\] to [20px 20px\] at (1.5) should be [17.5px 17.5px\]] expected: FAIL - [CSS Transitions: property from [0% 50% 5px\] to [100% 150% 0px\] at (0) should be [0% 50% 5px\]] - expected: FAIL - [CSS Transitions: property from [initial\] to [20px 20px\] at (-0.3) should be [26.5px 26.5px\]] expected: FAIL @@ -239,15 +197,9 @@ [CSS Transitions with transition: all: property from [center center\] to [0% 100px\] at (0.3) should be [17.5px 47.5px\]] expected: FAIL - [CSS Animations: property from [0% 50% 5px\] to [100% 150% 0px\] at (1) should be [100% 150% 0px\]] - expected: FAIL - [CSS Transitions with transition: all: property from [initial\] to [20px 20px\] at (1.5) should be [17.5px 17.5px\]] expected: FAIL - [CSS Transitions: property from [inherit\] to [20px 20px\] at (-0.3) should be [33px 7px\]] - expected: FAIL - [CSS Transitions with transition: all: property from [top left\] to [bottom right\] at (0) should be [0px 0px\]] expected: FAIL @@ -260,12 +212,6 @@ [CSS Animations: property from [inherit\] to [20px 20px\] at (0.3) should be [27px 13px\]] expected: FAIL - [CSS Animations: property from [0% 50% 5px\] to [100% 150% 0px\] at (0) should be [0% 50% 5px\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [20px 20px\] at (0.3) should be [27px 13px\]] - expected: FAIL - [CSS Animations: property from [initial\] to [20px 20px\] at (1.5) should be [17.5px 17.5px\]] expected: FAIL @@ -284,72 +230,39 @@ [CSS Transitions: property from [unset\] to [20px 20px\] at (1.5) should be [17.5px 17.5px\]] expected: FAIL - [CSS Animations: property from [inherit\] to [20px 20px\] at (1) should be [20px 20px\]] - expected: FAIL - [CSS Transitions with transition: all: property from [unset\] to [20px 20px\] at (0.6) should be [22px 22px\]] expected: FAIL [CSS Animations: property from [inherit\] to [20px 20px\] at (1.5) should be [15px 25px\]] expected: FAIL - [CSS Transitions with transition: all: property from neutral to [20px 20px\] at (1.5) should be [25px 15px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [20px 20px\] at (1.5) should be [25px 15px\]] - expected: FAIL - [CSS Transitions: property from [initial\] to [20px 20px\] at (0.6) should be [22px 22px\]] expected: FAIL - [CSS Transitions with transition: all: property from [inherit\] to [20px 20px\] at (1.5) should be [15px 25px\]] - expected: FAIL - [CSS Transitions with transition: all: property from [center center\] to [0% 100px\] at (1.5) should be [-12.5px 137.5px\]] expected: FAIL [CSS Transitions with transition: all: property from [top left\] to [bottom right\] at (-0.3) should be [-15px -15px\]] expected: FAIL - [CSS Animations: property from neutral to [20px 20px\] at (1.5) should be [25px 15px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px 20px\] at (0) should be [10px 30px\]] - expected: FAIL - [CSS Transitions: property from [top left\] to [bottom right\] at (0.6) should be [30px 30px\]] expected: FAIL - [CSS Transitions: property from [0% 50% 5px\] to [100% 150% 0px\] at (-0.3) should be [-30% 20% 6.5px\]] - expected: FAIL - - [CSS Transitions: property from [0% 50% 5px\] to [100% 150% 0px\] at (1.5) should be [150% 200% -2.5px\]] - expected: FAIL - [CSS Transitions: property from [center center\] to [0% 100px\] at (0) should be [25px 25px\]] expected: FAIL [CSS Animations: property from [inherit\] to [20px 20px\] at (-0.3) should be [33px 7px\]] expected: FAIL - [CSS Transitions with transition: all: property from [inherit\] to [20px 20px\] at (0) should be [30px 10px\]] - expected: FAIL - [CSS Animations: property from [top left\] to [bottom right\] at (0) should be [0px 0px\]] expected: FAIL [CSS Animations: property from [initial\] to [20px 20px\] at (0) should be [25px 25px\]] expected: FAIL - [CSS Animations: property from [0% 50% 5px\] to [100% 150% 0px\] at (-0.3) should be [-30% 20% 6.5px\]] - expected: FAIL - [CSS Transitions with transition: all: property from [initial\] to [20px 20px\] at (0.3) should be [23.5px 23.5px\]] expected: FAIL - [CSS Transitions with transition: all: property from [0% 50% 5px\] to [100% 150% 0px\] at (-0.3) should be [-30% 20% 6.5px\]] - expected: FAIL - [CSS Transitions: property from [center center\] to [0% 100px\] at (-0.3) should be [32.5px 2.5px\]] expected: FAIL @@ -359,9 +272,6 @@ [CSS Animations: property from [unset\] to [20px 20px\] at (0.3) should be [23.5px 23.5px\]] expected: FAIL - [CSS Animations: property from neutral to [20px 20px\] at (0.3) should be [13px 27px\]] - expected: FAIL - [CSS Transitions with transition: all: property from [top left\] to [bottom right\] at (1.5) should be [75px 75px\]] expected: FAIL @@ -374,27 +284,15 @@ [CSS Transitions: property from [initial\] to [20px 20px\] at (1.5) should be [17.5px 17.5px\]] expected: FAIL - [CSS Transitions: property from neutral to [20px 20px\] at (-0.3) should be [7px 33px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px 20px\] at (-0.3) should be [7px 33px\]] - expected: FAIL - [CSS Transitions: property from [top left\] to [bottom right\] at (1) should be [50px 50px\]] expected: FAIL [CSS Animations: property from [initial\] to [20px 20px\] at (0.3) should be [23.5px 23.5px\]] expected: FAIL - [CSS Animations: property from neutral to [20px 20px\] at (1) should be [20px 20px\]] - expected: FAIL - [CSS Animations: property from [center center\] to [0% 100px\] at (0.6) should be [10px 70px\]] expected: FAIL - [CSS Transitions with transition: all: property from [0% 50% 5px\] to [100% 150% 0px\] at (0) should be [0% 50% 5px\]] - expected: FAIL - [CSS Transitions with transition: all: property from [initial\] to [20px 20px\] at (0.6) should be [22px 22px\]] expected: FAIL @@ -404,9 +302,6 @@ [CSS Animations: property from [unset\] to [20px 20px\] at (-0.3) should be [26.5px 26.5px\]] expected: FAIL - [CSS Animations: property from [0% 50% 5px\] to [100% 150% 0px\] at (0.3) should be [30% 80% 3.5px\]] - expected: FAIL - [CSS Transitions: property from [unset\] to [20px 20px\] at (-0.3) should be [26.5px 26.5px\]] expected: FAIL @@ -419,9 +314,6 @@ [CSS Transitions with transition: all: property from [center center\] to [0% 100px\] at (1) should be [0px 100px\]] expected: FAIL - [CSS Transitions with transition: all: property from [0% 50% 5px\] to [100% 150% 0px\] at (0.3) should be [30% 80% 3.5px\]] - expected: FAIL - [CSS Transitions: property from [initial\] to [20px 20px\] at (0) should be [25px 25px\]] expected: FAIL @@ -440,15 +332,6 @@ [CSS Transitions: property from [center center\] to [0% 100px\] at (1.5) should be [-12.5px 137.5px\]] expected: FAIL - [CSS Animations: property from [0% 50% 5px\] to [100% 150% 0px\] at (0.6) should be [60% 110% 2px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [20px 20px\] at (0.6) should be [24px 16px\]] - expected: FAIL - - [CSS Transitions: property from [0% 50% 5px\] to [100% 150% 0px\] at (0.3) should be [30% 80% 3.5px\]] - expected: FAIL - [CSS Animations: property from [top left\] to [bottom right\] at (1.5) should be [75px 75px\]] expected: FAIL @@ -458,15 +341,18 @@ [CSS Animations: property from [center center\] to [0% 100px\] at (-0.3) should be [32.5px 2.5px\]] expected: FAIL - [CSS Animations: property from [0% 50% 5px\] to [100% 150% 0px\] at (1.5) should be [150% 200% -2.5px\]] - expected: FAIL - - [CSS Transitions: property from neutral to [20px 20px\] at (0.6) should be [16px 24px\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [20px 20px\] at (0.3) should be [13px 27px\]] - expected: FAIL - [CSS Transitions: property from [initial\] to [20px 20px\] at (0.3) should be [23.5px 23.5px\]] expected: FAIL + [CSS Transitions: property from [initial\] to [20px 20px\] at (1) should be [20px 20px\]] + expected: FAIL + + [CSS Transitions: property from [unset\] to [20px 20px\] at (1) should be [20px 20px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [initial\] to [20px 20px\] at (1) should be [20px 20px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [unset\] to [20px 20px\] at (1) should be [20px 20px\]] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/AnimationEffect-getComputedTiming.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/AnimationEffect-getComputedTiming.tentative.html.ini new file mode 100644 index 00000000000..574246a3319 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/AnimationEffect-getComputedTiming.tentative.html.ini @@ -0,0 +1,67 @@ +[AnimationEffect-getComputedTiming.tentative.html] + [endDelay of a new transition] + expected: FAIL + + [localTime reflects playbackRate immediately] + expected: FAIL + + [Negative delay of a new transition] + expected: FAIL + + [iterationStart of a new transition] + expected: FAIL + + [currentIteration of a new transition] + expected: FAIL + + [progress of a finished transition] + expected: FAIL + + [localTime is always equal to currentTime] + expected: FAIL + + [endTime of a new transition] + expected: FAIL + + [Positive delay of a new transition] + expected: FAIL + + [fill of a new transition] + expected: FAIL + + [iterations of a new transition] + expected: FAIL + + [progress of a new transition] + expected: FAIL + + [duration of a new transition] + expected: FAIL + + [non-default easing of a new transition] + expected: FAIL + + [direction of a new transition] + expected: FAIL + + [currentIteration of a finished transition] + expected: FAIL + + [easing of a new transition] + expected: FAIL + + [currentIteration of a new transition with positive delay in before phase] + expected: FAIL + + [localTime of a new transition] + expected: FAIL + + [progress of a new transition with positive delay in before phase] + expected: FAIL + + [activeDuration of a new transition] + expected: FAIL + + [delay of a new tranisition] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-canceling.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-canceling.tentative.html.ini new file mode 100644 index 00000000000..7a6c8abdf33 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-canceling.tentative.html.ini @@ -0,0 +1,34 @@ +[CSSTransition-canceling.tentative.html] + [After canceling a finished transition, it can still be re-used] + expected: FAIL + + [Setting display:none cancels transitions on a child element] + expected: FAIL + + [Setting zero combined duration] + expected: FAIL + + [Reversing a running transition cancels the original transition] + expected: FAIL + + [Setting display:none on an element cancels its transitions] + expected: FAIL + + [An after-change style value can't be interpolated] + expected: FAIL + + [After canceling a transition, it can still be re-used] + expected: FAIL + + [Removing a property from transition-property cancels transitions on that property] + expected: FAIL + + [Animated style is cleared after canceling a running CSS transition] + expected: FAIL + + [After canceling a transition, updating transition properties doesn't make it live again] + expected: FAIL + + [Changing style to another interpolable value cancels the original transition] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-currentTime.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-currentTime.tentative.html.ini new file mode 100644 index 00000000000..c2a6624a50e --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-currentTime.tentative.html.ini @@ -0,0 +1,13 @@ +[CSSTransition-currentTime.tentative.html] + [currentTime can be used to seek a CSS transition] + expected: FAIL + + [Skipping forwards through transition] + expected: FAIL + + [Skipping backwards through transition] + expected: FAIL + + [Setting currentTime to null on a CSS transition throws] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-effect.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-effect.tentative.html.ini new file mode 100644 index 00000000000..33e3efd04d1 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-effect.tentative.html.ini @@ -0,0 +1,31 @@ +[CSSTransition-effect.tentative.html] + [After setting a transition's effect to null, it still reports the original transition property] + expected: FAIL + + [After setting a transition's effect to null, it becomes finished] + expected: FAIL + + [A transition with a replaced effect still exhibits the regular transition reversing behavior] + expected: FAIL + + [After setting a new keyframe effect targeting different properties, the transition continues to report the original transition property] + expected: FAIL + + [After setting a new keyframe effect with a shorter duration, the transition becomes finished] + expected: FAIL + + [A transition with no effect still returns the original transitionProperty] + expected: FAIL + + [After setting a new keyframe effect on a play-pending transition, the transition remains pending] + expected: FAIL + + [After setting a transition's effect to null, it should be possible to interrupt that transition] + expected: FAIL + + [After setting a transition's effect to null, a new transition can be started] + expected: FAIL + + [After setting a transition's effect to null, style is updated] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-finished.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-finished.tentative.html.ini new file mode 100644 index 00000000000..02663fc1274 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-finished.tentative.html.ini @@ -0,0 +1,4 @@ +[CSSTransition-finished.tentative.html] + [Restarting a finished transition rewinds playback] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-ready.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-ready.tentative.html.ini new file mode 100644 index 00000000000..56cfa9cbdab --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-ready.tentative.html.ini @@ -0,0 +1,7 @@ +[CSSTransition-ready.tentative.html] + [ready promise is rejected when a transition is canceled by updating transition-property] + expected: FAIL + + [ready promise is rejected when a transition is canceled by changing the transition property to something not interpolable] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-startTime.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-startTime.tentative.html.ini new file mode 100644 index 00000000000..ec9f641e59b --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-startTime.tentative.html.ini @@ -0,0 +1,16 @@ +[CSSTransition-startTime.tentative.html] + [The start time of a newly-created transition is unresolved] + expected: FAIL + + [The start time of a transition can be set] + expected: FAIL + + [Seeking a transition using start time dispatches transition events] + expected: FAIL + + [The start time of transitions is based on when they are generated] + expected: FAIL + + [The start time can be set to seek a transition] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-transitionProperty.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-transitionProperty.tentative.html.ini new file mode 100644 index 00000000000..0e1d338773b --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/CSSTransition-transitionProperty.tentative.html.ini @@ -0,0 +1,4 @@ +[CSSTransition-transitionProperty.tentative.html] + [CSSTransition.transitionProperty] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/Element-getAnimations.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/Element-getAnimations.tentative.html.ini new file mode 100644 index 00000000000..129f12ca234 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/Element-getAnimations.tentative.html.ini @@ -0,0 +1,22 @@ +[Element-getAnimations.tentative.html] + [getAnimations sorts simultaneous transitions by name] + expected: FAIL + + [getAnimations does not return finished CSS Transitions] + expected: FAIL + + [getAnimations sorts transitions by when they were generated] + expected: FAIL + + [getAnimations returns one Animation per transitioning property] + expected: FAIL + + [getAnimations does not return a transition for an unsupposed property] + expected: FAIL + + [getAnimations returns CSSTransition objects for CSS Transitions] + expected: FAIL + + [getAnimations does not return a transition for a non-animatable property] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/KeyframeEffect-setKeyframes.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/KeyframeEffect-setKeyframes.tentative.html.ini new file mode 100644 index 00000000000..d024e2da5f6 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/KeyframeEffect-setKeyframes.tentative.html.ini @@ -0,0 +1,16 @@ +[KeyframeEffect-setKeyframes.tentative.html] + [A transition with replaced keyframes still returns the original transitionProperty] + expected: FAIL + + [Keyframes set using setKeyframes() are reflected in computed style for a running transition] + expected: FAIL + + [A transition with no keyframes still exhibits the regular transition reversing behavior] + expected: FAIL + + [A transition with replaced keyframes still exhibits the regular transition reversing behavior] + expected: FAIL + + [A transition with no keyframes still returns the original transitionProperty] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/KeyframeEffect-target.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/KeyframeEffect-target.tentative.html.ini new file mode 100644 index 00000000000..5590c5dfc8d --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/KeyframeEffect-target.tentative.html.ini @@ -0,0 +1,10 @@ +[KeyframeEffect-target.tentative.html] + [effect.target should return the same CSSPseudoElement object each time] + expected: FAIL + + [effect.target from the script-generated animation should return the same CSSPseudoElement object as that from the CSS generated transition] + expected: FAIL + + [Returned CSS transitions have the correct Animation.target] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/animations/text-shadow-composition.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/animations/text-shadow-composition.html.ini new file mode 100644 index 00000000000..424f103ee0e --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/animations/text-shadow-composition.html.ini @@ -0,0 +1,91 @@ +[text-shadow-composition.html] + [Compositing: property underlying [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px\] from add [rgb(100, 100, 100) 10px 20px 30px\] to replace [rgb(200, 200, 200) 20px 40px 60px\] at (0.5) should be [rgb(105, 110, 115) 10.5px 21px 31.5px, rgba(20, 40, 60, 0.5) 1px 2px 3px, rgba(100, 100, 100, 0.5) 5px 10px 15px\]] + expected: FAIL + + [Compositing: property underlying [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px\] from add [rgb(100, 100, 100) 10px 20px 30px\] to replace [rgb(200, 200, 200) 20px 40px 60px\] at (1.5) should be [rgb(255, 255, 255) 29.5px 59px 88.5px, rgba(0, 0, 0, 0) -1px -2px 0px, rgba(0, 0, 0, 0) -5px -10px 0px\]] + expected: FAIL + + [Compositing: property underlying [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px, rgb(40, 80, 120) 4px 8px 12px\] from add [rgb(100, 100, 100) 10px 20px 30px, rgb(200, 200, 200) 20px 40px 60px\] to replace [rgb(200, 200, 200) 20px 40px 60px\] at (1.5) should be [rgb(255, 255, 255) 29.5px 59px 88.5px, rgba(0, 0, 0, 0) -1px -2px 0px, rgba(0, 0, 0, 0) -2px -4px 0px, rgba(0, 0, 0, 0) -5px -10px 0px, rgba(0, 0, 0, 0) -10px -20px 0px\]] + expected: FAIL + + [Compositing: property underlying [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px\] from add [rgb(100, 100, 100) 10px 20px 30px\] to add [rgb(200, 200, 200) 20px 40px 60px\] at (0) should be [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px, rgb(100, 100, 100) 10px 20px 30px\]] + expected: FAIL + + [Compositing: property underlying [undefined\] from replace [rgb(100, 100, 100) 10px 20px 30px\] to add [rgb(200, 200, 200) 20px 40px 60px\] at (0.5) should be [rgb(150, 150, 150) 15px 30px 45px\]] + expected: FAIL + + [Compositing: property underlying [rgb(10, 20, 30) 1px 2px 3px\] from add [rgb(100, 100, 100) 10px 20px 30px\] to add [rgb(200, 200, 200) 20px 40px 60px\] at (1.5) should be [rgb(10, 20, 30) 1px 2px 3px, rgb(250, 250, 250) 25px 50px 75px\]] + expected: FAIL + + [Compositing: property underlying [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px, rgb(40, 80, 120) 4px 8px 12px\] from add [rgb(100, 100, 100) 10px 20px 30px, rgb(200, 200, 200) 20px 40px 60px\] to replace [rgb(200, 200, 200) 20px 40px 60px\] at (-0.3) should be [rgb(0, 0, 0) -4.7px -9.4px 0px, rgb(26, 52, 78) 2.6px 5.2px 7.8px, rgb(52, 104, 156) 5.2px 10.4px 15.6px, rgb(130, 130, 130) 13px 26px 39px, rgb(255, 255, 255) 26px 52px 78px\]] + expected: FAIL + + [Compositing: property underlying [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px\] from add [rgb(100, 100, 100) 10px 20px 30px\] to add [rgb(200, 200, 200) 20px 40px 60px\] at (0.5) should be [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px, rgb(150, 150, 150) 15px 30px 45px\]] + expected: FAIL + + [Compositing: property underlying [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px\] from add [rgb(100, 100, 100) 10px 20px 30px\] to add [rgb(200, 200, 200) 20px 40px 60px\] at (-0.3) should be [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px, rgb(70, 70, 70) 7px 14px 21px\]] + expected: FAIL + + [Compositing: property underlying [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px\] from add [rgb(100, 100, 100) 10px 20px 30px\] to replace [rgb(200, 200, 200) 20px 40px 60px\] at (0) should be [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px, rgb(100, 100, 100) 10px 20px 30px\]] + expected: FAIL + + [Compositing: property underlying [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px, rgb(40, 80, 120) 4px 8px 12px\] from add [rgb(100, 100, 100) 10px 20px 30px, rgb(200, 200, 200) 20px 40px 60px\] to replace [rgb(200, 200, 200) 20px 40px 60px\] at (0.5) should be [rgb(105, 110, 115) 10.5px 21px 31.5px, rgba(20, 40, 60, 0.5) 1px 2px 3px, rgba(40, 80, 120, 0.5) 2px 4px 6px, rgba(100, 100, 100, 0.5) 5px 10px 15px, rgba(200, 200, 200, 0.5) 10px 20px 30px\]] + expected: FAIL + + [Compositing: property underlying [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px\] from replace [rgb(100, 100, 100) 10px 20px 30px\] to add [rgb(200, 200, 200) 20px 40px 60px\] at (1.5) should be [rgb(0, 0, 0) -3.5px -7px 0px, rgb(30, 60, 90) 3px 6px 9px, rgb(255, 255, 255) 30px 60px 90px\]] + expected: FAIL + + [Compositing: property underlying [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px\] from add [rgb(100, 100, 100) 10px 20px 30px\] to replace [rgb(200, 200, 200) 20px 40px 60px\] at (1) should be [rgb(200, 200, 200) 20px 40px 60px\]] + expected: FAIL + + [Compositing: property underlying [undefined\] from replace [rgb(100, 100, 100) 10px 20px 30px\] to add [rgb(200, 200, 200) 20px 40px 60px\] at (1) should be [rgb(200, 200, 200) 20px 40px 60px\]] + expected: FAIL + + [Compositing: property underlying [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px, rgb(40, 80, 120) 4px 8px 12px\] from add [rgb(100, 100, 100) 10px 20px 30px, rgb(200, 200, 200) 20px 40px 60px\] to replace [rgb(200, 200, 200) 20px 40px 60px\] at (0) should be [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px, rgb(40, 80, 120) 4px 8px 12px, rgb(100, 100, 100) 10px 20px 30px, rgb(200, 200, 200) 20px 40px 60px\]] + expected: FAIL + + [Compositing: property underlying [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px\] from replace [rgb(100, 100, 100) 10px 20px 30px\] to add [rgb(200, 200, 200) 20px 40px 60px\] at (0.5) should be [rgb(55, 60, 65) 5.5px 11px 16.5px, rgba(20, 40, 60, 0.5) 1px 2px 3px, rgba(200, 200, 200, 0.5) 10px 20px 30px\]] + expected: FAIL + + [Compositing: property underlying [rgb(10, 20, 30) 1px 2px 3px\] from add [rgb(100, 100, 100) 10px 20px 30px\] to add [rgb(200, 200, 200) 20px 40px 60px\] at (1) should be [rgb(10, 20, 30) 1px 2px 3px, rgb(200, 200, 200) 20px 40px 60px\]] + expected: FAIL + + [Compositing: property underlying [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px\] from add [rgb(100, 100, 100) 10px 20px 30px\] to replace [rgb(200, 200, 200) 20px 40px 60px\] at (-0.3) should be [rgb(0, 0, 0) -4.7px -9.4px 0px, rgb(26, 52, 78) 2.6px 5.2px 7.8px, rgb(130, 130, 130) 13px 26px 39px\]] + expected: FAIL + + [Compositing: property underlying [undefined\] from replace [rgb(100, 100, 100) 10px 20px 30px\] to add [rgb(200, 200, 200) 20px 40px 60px\] at (-0.3) should be [rgb(70, 70, 70 ) 7px 14px 21px\]] + expected: FAIL + + [Compositing: property underlying [rgb(10, 20, 30) 1px 2px 3px\] from add [rgb(100, 100, 100) 10px 20px 30px\] to add [rgb(200, 200, 200) 20px 40px 60px\] at (0) should be [rgb(10, 20, 30) 1px 2px 3px, rgb(100, 100, 100) 10px 20px 30px\]] + expected: FAIL + + [Compositing: property underlying [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px\] from add [rgb(100, 100, 100) 10px 20px 30px\] to add [rgb(200, 200, 200) 20px 40px 60px\] at (1.5) should be [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px, rgb(250, 250, 250) 25px 50px 75px\]] + expected: FAIL + + [Compositing: property underlying [rgb(10, 20, 30) 1px 2px 3px\] from add [rgb(100, 100, 100) 10px 20px 30px\] to add [rgb(200, 200, 200) 20px 40px 60px\] at (-0.3) should be [rgb(10, 20, 30) 1px 2px 3px, rgb(70, 70, 70) 7px 14px 21px\]] + expected: FAIL + + [Compositing: property underlying [undefined\] from replace [rgb(100, 100, 100) 10px 20px 30px\] to add [rgb(200, 200, 200) 20px 40px 60px\] at (0) should be [rgb(100, 100, 100) 10px 20px 30px\]] + expected: FAIL + + [Compositing: property underlying [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px, rgb(40, 80, 120) 4px 8px 12px\] from add [rgb(100, 100, 100) 10px 20px 30px, rgb(200, 200, 200) 20px 40px 60px\] to replace [rgb(200, 200, 200) 20px 40px 60px\] at (1) should be [rgb(200, 200, 200) 20px 40px 60px\]] + expected: FAIL + + [Compositing: property underlying [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px\] from replace [rgb(100, 100, 100) 10px 20px 30px\] to add [rgb(200, 200, 200) 20px 40px 60px\] at (0) should be [rgb(100, 100, 100) 10px 20px 30px\]] + expected: FAIL + + [Compositing: property underlying [undefined\] from replace [rgb(100, 100, 100) 10px 20px 30px\] to add [rgb(200, 200, 200) 20px 40px 60px\] at (1.5) should be [rgb(250, 250, 250) 25px 50px 75px\]] + expected: FAIL + + [Compositing: property underlying [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px\] from replace [rgb(100, 100, 100) 10px 20px 30px\] to add [rgb(200, 200, 200) 20px 40px 60px\] at (-0.3) should be [rgb(127, 124, 121) 12.7px 25.4px 38.1px, rgba(0, 0, 0, 0) -0.6px -1.2px 0px, rgba(0, 0, 0, 0) -6px -12px 0px\]] + expected: FAIL + + [Compositing: property underlying [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px\] from replace [rgb(100, 100, 100) 10px 20px 30px\] to add [rgb(200, 200, 200) 20px 40px 60px\] at (1) should be [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px, rgb(200, 200, 200) 20px 40px 60px\]] + expected: FAIL + + [Compositing: property underlying [rgb(10, 20, 30) 1px 2px 3px\] from add [rgb(100, 100, 100) 10px 20px 30px\] to add [rgb(200, 200, 200) 20px 40px 60px\] at (0.5) should be [rgb(10, 20, 30) 1px 2px 3px, rgb(150, 150, 150) 15px 30px 45px\]] + expected: FAIL + + [Compositing: property underlying [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px\] from add [rgb(100, 100, 100) 10px 20px 30px\] to add [rgb(200, 200, 200) 20px 40px 60px\] at (1) should be [rgb(10, 20, 30) 1px 2px 3px, rgb(20, 40, 60) 2px 4px 6px, rgb(200, 200, 200) 20px 40px 60px\]] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/animations/text-shadow-interpolation.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/animations/text-shadow-interpolation.html.ini new file mode 100644 index 00000000000..a84a61954ee --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/animations/text-shadow-interpolation.html.ini @@ -0,0 +1,433 @@ +[text-shadow-interpolation.html] + [CSS Transitions: property from [black 15px 10px 5px\] to [orange -15px -10px 25px\] at (1.5) should be [rgb(255, 248, 0) -30px -20px 35px\]] + expected: FAIL + + [CSS Animations: property from [unset\] to [green 20px 20px 20px\] at (1.5) should be [rgb(0, 110, 0) 15px 25px 15px\]] + expected: FAIL + + [Web Animations: property from [inherit\] to [green 20px 20px 20px\] at (1.5) should be [rgb(0, 110, 0) 15px 25px 15px\]] + expected: FAIL + + [CSS Transitions: property from [black 15px 10px 5px\] to [orange -15px -10px 25px\] at (0) should be [rgb(0, 0, 0) 15px 10px 5px\]] + expected: FAIL + + [CSS Animations: property from [unset\] to [green 20px 20px 20px\] at (-0.3) should be [rgb(255, 176, 0) 33px 7px 33px\]] + expected: FAIL + + [CSS Transitions: property from neutral to [green 20px 20px 20px\] at (1.5) should be [rgb(0, 110, 0) 25px 15px 25px\]] + expected: FAIL + + [Web Animations: property from neutral to [green 20px 20px 20px\] at (0.3) should be [rgb(179, 154, 0) 13px 27px 13px\]] + expected: FAIL + + [CSS Transitions: property from [initial\] to [green 20px 20px 20px\] at (1) should be [rgb(0, 128, 0) 20px 20px 20px\]] + expected: FAIL + + [CSS Transitions: property from [initial\] to [green 20px 20px 20px\] at (0) should be [rgba(0, 0, 0, 0) 0px 0px 0px\]] + expected: FAIL + + [Web Animations: property from [unset\] to [green 20px 20px 20px\] at (0) should be [rgb(255, 165, 0) 30px 10px 30px\]] + expected: FAIL + + [CSS Animations: property from [unset\] to [green 20px 20px 20px\] at (0.6) should be [rgb(102, 143, 0) 24px 16px 24px\]] + expected: FAIL + + [CSS Transitions: property from [unset\] to [green 20px 20px 20px\] at (0.3) should be [rgb(179, 154, 0) 27px 13px 27px\]] + expected: FAIL + + [CSS Animations: property from [initial\] to [green 20px 20px 20px\] at (-0.3) should be [rgba(0, 0, 0, 0) -6px -6px 0px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [initial\] to [green 20px 20px 20px\] at (1.5) should be [rgb(0, 192, 0) 30px 30px 30px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [inherit\] to [green 20px 20px 20px\] at (-0.3) should be [rgb(255, 176, 0) 33px 7px 33px\]] + expected: FAIL + + [CSS Animations: property from [initial\] to [green 20px 20px 20px\] at (0.3) should be [rgba(0, 128, 0, 0.3) 6px 6px 6px\]] + expected: FAIL + + [CSS Animations: property from [black 10px 10px 10px\] to [currentColor 10px 10px 10px\] at (0.3) should be [rgb(0, 38, 0) 10px 10px 10px\]] + expected: FAIL + + [Web Animations: property from [black 10px 10px 10px\] to [currentColor 10px 10px 10px\] at (1.5) should be [rgb(0, 192, 0) 10px 10px 10px\]] + expected: FAIL + + [CSS Transitions: property from neutral to [green 20px 20px 20px\] at (0) should be [rgb(255, 165, 0) 10px 30px 10px\]] + expected: FAIL + + [CSS Animations: property from neutral to [green 20px 20px 20px\] at (-0.3) should be [rgb(255, 176, 0) 7px 33px 7px\]] + expected: FAIL + + [CSS Animations: property from [black 15px 10px 5px\] to [orange -15px -10px 25px\] at (0.6) should be [rgb(153, 99, 0) -3px -2px 17px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [inherit\] to [green 20px 20px 20px\] at (0) should be [rgb(255, 165, 0) 30px 10px 30px\]] + expected: FAIL + + [CSS Transitions: property from neutral to [green 20px 20px 20px\] at (0.6) should be [rgb(102, 143, 0) 16px 24px 16px\]] + expected: FAIL + + [CSS Transitions: property from [unset\] to [green 20px 20px 20px\] at (1) should be [rgb(0, 128, 0) 20px 20px 20px\]] + expected: FAIL + + [Web Animations: property from [initial\] to [green 20px 20px 20px\] at (0.6) should be [rgba(0, 128, 0, 0.6) 12px 12px 12px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from neutral to [green 20px 20px 20px\] at (0.6) should be [rgb(102, 143, 0) 16px 24px 16px\]] + expected: FAIL + + [Web Animations: property from [black 15px 10px 5px\] to [orange -15px -10px 25px\] at (0) should be [rgb(0, 0, 0) 15px 10px 5px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [unset\] to [green 20px 20px 20px\] at (1.5) should be [rgb(0, 110, 0) 15px 25px 15px\]] + expected: FAIL + + [CSS Animations: property from [black 15px 10px 5px\] to [orange -15px -10px 25px\] at (0) should be [rgb(0, 0, 0) 15px 10px 5px\]] + expected: FAIL + + [Web Animations: property from [black 15px 10px 5px\] to [orange -15px -10px 25px\] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from neutral to [green 20px 20px 20px\] at (1.5) should be [rgb(0, 110, 0) 25px 15px 25px\]] + expected: FAIL + + [Web Animations: property from [inherit\] to [green 20px 20px 20px\] at (0.6) should be [rgb(102, 143, 0) 24px 16px 24px\]] + expected: FAIL + + [CSS Animations: property from [black 15px 10px 5px\] to [orange -15px -10px 25px\] at (1) should be [rgb(255, 165, 0) -15px -10px 25px\]] + expected: FAIL + + [Web Animations: property from [inherit\] to [green 20px 20px 20px\] at (-0.3) should be [rgb(255, 176, 0) 33px 7px 33px\]] + expected: FAIL + + [Web Animations: property from [unset\] to [green 20px 20px 20px\] at (0.6) should be [rgb(102, 143, 0) 24px 16px 24px\]] + expected: FAIL + + [CSS Transitions: property from [inherit\] to [green 20px 20px 20px\] at (0.6) should be [rgb(102, 143, 0) 24px 16px 24px\]] + expected: FAIL + + [CSS Animations: property from [inherit\] to [green 20px 20px 20px\] at (0.6) should be [rgb(102, 143, 0) 24px 16px 24px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [black 15px 10px 5px\] to [orange -15px -10px 25px\] at (1) should be [rgb(255, 165, 0) -15px -10px 25px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [unset\] to [green 20px 20px 20px\] at (0.3) should be [rgb(179, 154, 0) 27px 13px 27px\]] + expected: FAIL + + [CSS Animations: property from [inherit\] to [green 20px 20px 20px\] at (0.3) should be [rgb(179, 154, 0) 27px 13px 27px\]] + expected: FAIL + + [CSS Animations: property from [black 10px 10px 10px\] to [currentColor 10px 10px 10px\] at (0) should be [rgb(0, 0, 0) 10px 10px 10px\]] + expected: FAIL + + [CSS Transitions: property from [black 10px 10px 10px\] to [currentColor 10px 10px 10px\] at (-0.3) should be [rgb(0, 0, 0) 10px 10px 10px\]] + expected: FAIL + + [Web Animations: property from neutral to [green 20px 20px 20px\] at (0.6) should be [rgb(102, 143, 0) 16px 24px 16px\]] + expected: FAIL + + [CSS Transitions: property from neutral to [green 20px 20px 20px\] at (-0.3) should be [rgb(255, 176, 0) 7px 33px 7px\]] + expected: FAIL + + [Web Animations: property from [inherit\] to [green 20px 20px 20px\] at (0.3) should be [rgb(179, 154, 0) 27px 13px 27px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [black 15px 10px 5px\] to [orange -15px -10px 25px\] at (0.3) should be [rgb(77, 50, 0) 6px 4px 11px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [unset\] to [green 20px 20px 20px\] at (1) should be [rgb(0, 128, 0) 20px 20px 20px\]] + expected: FAIL + + [CSS Animations: property from [black 10px 10px 10px\] to [currentColor 10px 10px 10px\] at (1.5) should be [rgb(0, 192, 0) 10px 10px 10px\]] + expected: FAIL + + [CSS Animations: property from neutral to [green 20px 20px 20px\] at (0.6) should be [rgb(102, 143, 0) 16px 24px 16px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [initial\] to [green 20px 20px 20px\] at (0.6) should be [rgba(0, 128, 0, 0.6) 12px 12px 12px\]] + expected: FAIL + + [Web Animations: property from [black 15px 10px 5px\] to [orange -15px -10px 25px\] at (1.5) should be [rgb(255, 248, 0) -30px -20px 35px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [black 10px 10px 10px\] to [currentColor 10px 10px 10px\] at (1.5) should be [rgb(0, 192, 0) 10px 10px 10px\]] + expected: FAIL + + [CSS Transitions: property from [inherit\] to [green 20px 20px 20px\] at (1) should be [rgb(0, 128, 0) 20px 20px 20px\]] + expected: FAIL + + [Web Animations: property from [unset\] to [green 20px 20px 20px\] at (0.3) should be [rgb(179, 154, 0) 27px 13px 27px\]] + expected: FAIL + + [Web Animations: property from [initial\] to [green 20px 20px 20px\] at (0.3) should be [rgba(0, 128, 0, 0.3) 6px 6px 6px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from neutral to [green 20px 20px 20px\] at (0.3) should be [rgb(179, 154, 0) 13px 27px 13px\]] + expected: FAIL + + [CSS Transitions: property from [black 15px 10px 5px\] to [orange -15px -10px 25px\] at (0.6) should be [rgb(153, 99, 0) -3px -2px 17px\]] + expected: FAIL + + [CSS Transitions: property from [black 10px 10px 10px\] to [currentColor 10px 10px 10px\] at (1.5) should be [rgb(0, 192, 0) 10px 10px 10px\]] + expected: FAIL + + [CSS Transitions: property from [initial\] to [green 20px 20px 20px\] at (0.6) should be [rgba(0, 128, 0, 0.6) 12px 12px 12px\]] + expected: FAIL + + [Web Animations: property from [unset\] to [green 20px 20px 20px\] at (-0.3) should be [rgb(255, 176, 0) 33px 7px 33px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [inherit\] to [green 20px 20px 20px\] at (1.5) should be [rgb(0, 110, 0) 15px 25px 15px\]] + expected: FAIL + + [CSS Animations: property from [initial\] to [green 20px 20px 20px\] at (0.6) should be [rgba(0, 128, 0, 0.6) 12px 12px 12px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from neutral to [green 20px 20px 20px\] at (0) should be [rgb(255, 165, 0) 10px 30px 10px\]] + expected: FAIL + + [CSS Animations: property from neutral to [green 20px 20px 20px\] at (0) should be [rgb(255, 165, 0) 10px 30px 10px\]] + expected: FAIL + + [CSS Animations: property from [initial\] to [green 20px 20px 20px\] at (0) should be [rgba(0, 0, 0, 0) 0px 0px 0px\]] + expected: FAIL + + [CSS Animations: property from [initial\] to [green 20px 20px 20px\] at (1) should be [rgb(0, 128, 0) 20px 20px 20px\]] + expected: FAIL + + [CSS Animations: property from [inherit\] to [green 20px 20px 20px\] at (1.5) should be [rgb(0, 110, 0) 15px 25px 15px\]] + expected: FAIL + + [Web Animations: property from [black 10px 10px 10px\] to [currentColor 10px 10px 10px\] at (1) should be [rgb(0, 128, 0) 10px 10px 10px\]] + expected: FAIL + + [CSS Animations: property from [black 15px 10px 5px\] to [orange -15px -10px 25px\] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [unset\] to [green 20px 20px 20px\] at (0) should be [rgb(255, 165, 0) 30px 10px 30px\]] + expected: FAIL + + [Web Animations: property from [unset\] to [green 20px 20px 20px\] at (1) should be [rgb(0, 128, 0) 20px 20px 20px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [black 10px 10px 10px\] to [currentColor 10px 10px 10px\] at (0.3) should be [rgb(0, 38, 0) 10px 10px 10px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [black 10px 10px 10px\] to [currentColor 10px 10px 10px\] at (1) should be [rgb(0, 128, 0) 10px 10px 10px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [black 15px 10px 5px\] to [orange -15px -10px 25px\] at (0.6) should be [rgb(153, 99, 0) -3px -2px 17px\]] + expected: FAIL + + [Web Animations: property from neutral to [green 20px 20px 20px\] at (-0.3) should be [rgb(255, 176, 0) 7px 33px 7px\]] + expected: FAIL + + [CSS Animations: property from neutral to [green 20px 20px 20px\] at (0.3) should be [rgb(179, 154, 0) 13px 27px 13px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [black 10px 10px 10px\] to [currentColor 10px 10px 10px\] at (-0.3) should be [rgb(0, 0, 0) 10px 10px 10px\]] + expected: FAIL + + [CSS Animations: property from [unset\] to [green 20px 20px 20px\] at (1) should be [rgb(0, 128, 0) 20px 20px 20px\]] + expected: FAIL + + [Web Animations: property from neutral to [green 20px 20px 20px\] at (0) should be [rgb(255, 165, 0) 10px 30px 10px\]] + expected: FAIL + + [CSS Transitions: property from [black 10px 10px 10px\] to [currentColor 10px 10px 10px\] at (0) should be [rgb(0, 0, 0) 10px 10px 10px\]] + expected: FAIL + + [CSS Transitions: property from [initial\] to [green 20px 20px 20px\] at (1.5) should be [rgb(0, 192, 0) 30px 30px 30px\]] + expected: FAIL + + [CSS Transitions: property from [inherit\] to [green 20px 20px 20px\] at (1.5) should be [rgb(0, 110, 0) 15px 25px 15px\]] + expected: FAIL + + [Web Animations: property from [black 10px 10px 10px\] to [currentColor 10px 10px 10px\] at (0.6) should be [rgb(0, 77, 0) 10px 10px 10px\]] + expected: FAIL + + [CSS Animations: property from [inherit\] to [green 20px 20px 20px\] at (-0.3) should be [rgb(255, 176, 0) 33px 7px 33px\]] + expected: FAIL + + [Web Animations: property from [black 15px 10px 5px\] to [orange -15px -10px 25px\] at (0.3) should be [rgb(77, 50, 0) 6px 4px 11px\]] + expected: FAIL + + [CSS Transitions: property from [inherit\] to [green 20px 20px 20px\] at (0.3) should be [rgb(179, 154, 0) 27px 13px 27px\]] + expected: FAIL + + [CSS Animations: property from [unset\] to [green 20px 20px 20px\] at (0.3) should be [rgb(179, 154, 0) 27px 13px 27px\]] + expected: FAIL + + [Web Animations: property from neutral to [green 20px 20px 20px\] at (1) should be [rgb(0, 128, 0) 20px 20px 20px\]] + expected: FAIL + + [Web Animations: property from [initial\] to [green 20px 20px 20px\] at (0) should be [rgba(0, 0, 0, 0) 0px 0px 0px\]] + expected: FAIL + + [CSS Transitions: property from [black 15px 10px 5px\] to [orange -15px -10px 25px\] at (1) should be [rgb(255, 165, 0) -15px -10px 25px\]] + expected: FAIL + + [Web Animations: property from [initial\] to [green 20px 20px 20px\] at (-0.3) should be [rgba(0, 0, 0, 0) -6px -6px 0px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from neutral to [green 20px 20px 20px\] at (-0.3) should be [rgb(255, 176, 0) 7px 33px 7px\]] + expected: FAIL + + [CSS Transitions: property from [black 15px 10px 5px\] to [orange -15px -10px 25px\] at (0.3) should be [rgb(77, 50, 0) 6px 4px 11px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [unset\] to [green 20px 20px 20px\] at (0.6) should be [rgb(102, 143, 0) 24px 16px 24px\]] + expected: FAIL + + [CSS Animations: property from [black 15px 10px 5px\] to [orange -15px -10px 25px\] at (1.5) should be [rgb(255, 248, 0) -30px -20px 35px\]] + expected: FAIL + + [Web Animations: property from [black 10px 10px 10px\] to [currentColor 10px 10px 10px\] at (-0.3) should be [rgb(0, 0, 0) 10px 10px 10px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [inherit\] to [green 20px 20px 20px\] at (1) should be [rgb(0, 128, 0) 20px 20px 20px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [initial\] to [green 20px 20px 20px\] at (1) should be [rgb(0, 128, 0) 20px 20px 20px\]] + expected: FAIL + + [Web Animations: property from [initial\] to [green 20px 20px 20px\] at (1) should be [rgb(0, 128, 0) 20px 20px 20px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from neutral to [green 20px 20px 20px\] at (1) should be [rgb(0, 128, 0) 20px 20px 20px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [initial\] to [green 20px 20px 20px\] at (0) should be [rgba(0, 0, 0, 0) 0px 0px 0px\]] + expected: FAIL + + [CSS Animations: property from [black 10px 10px 10px\] to [currentColor 10px 10px 10px\] at (-0.3) should be [rgb(0, 0, 0) 10px 10px 10px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [black 15px 10px 5px\] to [orange -15px -10px 25px\] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px\]] + expected: FAIL + + [CSS Transitions: property from [initial\] to [green 20px 20px 20px\] at (-0.3) should be [rgba(0, 0, 0, 0) -6px -6px 0px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [inherit\] to [green 20px 20px 20px\] at (0.3) should be [rgb(179, 154, 0) 27px 13px 27px\]] + expected: FAIL + + [Web Animations: property from [black 10px 10px 10px\] to [currentColor 10px 10px 10px\] at (0.3) should be [rgb(0, 38, 0) 10px 10px 10px\]] + expected: FAIL + + [CSS Transitions: property from [black 15px 10px 5px\] to [orange -15px -10px 25px\] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px\]] + expected: FAIL + + [CSS Animations: property from [inherit\] to [green 20px 20px 20px\] at (0) should be [rgb(255, 165, 0) 30px 10px 30px\]] + expected: FAIL + + [CSS Transitions: property from [inherit\] to [green 20px 20px 20px\] at (-0.3) should be [rgb(255, 176, 0) 33px 7px 33px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [black 15px 10px 5px\] to [orange -15px -10px 25px\] at (0) should be [rgb(0, 0, 0) 15px 10px 5px\]] + expected: FAIL + + [CSS Animations: property from [black 10px 10px 10px\] to [currentColor 10px 10px 10px\] at (0.6) should be [rgb(0, 77, 0) 10px 10px 10px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [unset\] to [green 20px 20px 20px\] at (-0.3) should be [rgb(255, 176, 0) 33px 7px 33px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [initial\] to [green 20px 20px 20px\] at (-0.3) should be [rgba(0, 0, 0, 0) -6px -6px 0px\]] + expected: FAIL + + [CSS Animations: property from neutral to [green 20px 20px 20px\] at (1.5) should be [rgb(0, 110, 0) 25px 15px 25px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [initial\] to [green 20px 20px 20px\] at (0.3) should be [rgba(0, 128, 0, 0.3) 6px 6px 6px\]] + expected: FAIL + + [Web Animations: property from [initial\] to [green 20px 20px 20px\] at (1.5) should be [rgb(0, 192, 0) 30px 30px 30px\]] + expected: FAIL + + [CSS Transitions: property from [unset\] to [green 20px 20px 20px\] at (1.5) should be [rgb(0, 110, 0) 15px 25px 15px\]] + expected: FAIL + + [Web Animations: property from [black 10px 10px 10px\] to [currentColor 10px 10px 10px\] at (0) should be [rgb(0, 0, 0) 10px 10px 10px\]] + expected: FAIL + + [Web Animations: property from [unset\] to [green 20px 20px 20px\] at (1.5) should be [rgb(0, 110, 0) 15px 25px 15px\]] + expected: FAIL + + [CSS Transitions: property from [unset\] to [green 20px 20px 20px\] at (0) should be [rgb(255, 165, 0) 30px 10px 30px\]] + expected: FAIL + + [Web Animations: property from [inherit\] to [green 20px 20px 20px\] at (0) should be [rgb(255, 165, 0) 30px 10px 30px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [black 15px 10px 5px\] to [orange -15px -10px 25px\] at (1.5) should be [rgb(255, 248, 0) -30px -20px 35px\]] + expected: FAIL + + [CSS Transitions: property from [black 10px 10px 10px\] to [currentColor 10px 10px 10px\] at (0.6) should be [rgb(0, 77, 0) 10px 10px 10px\]] + expected: FAIL + + [Web Animations: property from [inherit\] to [green 20px 20px 20px\] at (1) should be [rgb(0, 128, 0) 20px 20px 20px\]] + expected: FAIL + + [CSS Transitions: property from [black 10px 10px 10px\] to [currentColor 10px 10px 10px\] at (0.3) should be [rgb(0, 38, 0) 10px 10px 10px\]] + expected: FAIL + + [CSS Animations: property from [unset\] to [green 20px 20px 20px\] at (0) should be [rgb(255, 165, 0) 30px 10px 30px\]] + expected: FAIL + + [CSS Animations: property from [initial\] to [green 20px 20px 20px\] at (1.5) should be [rgb(0, 192, 0) 30px 30px 30px\]] + expected: FAIL + + [CSS Animations: property from [black 15px 10px 5px\] to [orange -15px -10px 25px\] at (0.3) should be [rgb(77, 50, 0) 6px 4px 11px\]] + expected: FAIL + + [CSS Animations: property from neutral to [green 20px 20px 20px\] at (1) should be [rgb(0, 128, 0) 20px 20px 20px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [black 10px 10px 10px\] to [currentColor 10px 10px 10px\] at (0.6) should be [rgb(0, 77, 0) 10px 10px 10px\]] + expected: FAIL + + [CSS Transitions: property from [unset\] to [green 20px 20px 20px\] at (-0.3) should be [rgb(255, 176, 0) 33px 7px 33px\]] + expected: FAIL + + [Web Animations: property from neutral to [green 20px 20px 20px\] at (1.5) should be [rgb(0, 110, 0) 25px 15px 25px\]] + expected: FAIL + + [CSS Transitions: property from neutral to [green 20px 20px 20px\] at (0.3) should be [rgb(179, 154, 0) 13px 27px 13px\]] + expected: FAIL + + [CSS Animations: property from [black 10px 10px 10px\] to [currentColor 10px 10px 10px\] at (1) should be [rgb(0, 128, 0) 10px 10px 10px\]] + expected: FAIL + + [CSS Animations: property from [inherit\] to [green 20px 20px 20px\] at (1) should be [rgb(0, 128, 0) 20px 20px 20px\]] + expected: FAIL + + [CSS Transitions: property from [initial\] to [green 20px 20px 20px\] at (0.3) should be [rgba(0, 128, 0, 0.3) 6px 6px 6px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [black 10px 10px 10px\] to [currentColor 10px 10px 10px\] at (0) should be [rgb(0, 0, 0) 10px 10px 10px\]] + expected: FAIL + + [CSS Transitions: property from [inherit\] to [green 20px 20px 20px\] at (0) should be [rgb(255, 165, 0) 30px 10px 30px\]] + expected: FAIL + + [Web Animations: property from [black 15px 10px 5px\] to [orange -15px -10px 25px\] at (1) should be [rgb(255, 165, 0) -15px -10px 25px\]] + expected: FAIL + + [Web Animations: property from [black 15px 10px 5px\] to [orange -15px -10px 25px\] at (0.6) should be [rgb(153, 99, 0) -3px -2px 17px\]] + expected: FAIL + + [CSS Transitions: property from [black 10px 10px 10px\] to [currentColor 10px 10px 10px\] at (1) should be [rgb(0, 128, 0) 10px 10px 10px\]] + expected: FAIL + + [CSS Transitions: property from [unset\] to [green 20px 20px 20px\] at (0.6) should be [rgb(102, 143, 0) 24px 16px 24px\]] + expected: FAIL + + [CSS Transitions: property from neutral to [green 20px 20px 20px\] at (1) should be [rgb(0, 128, 0) 20px 20px 20px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [inherit\] to [green 20px 20px 20px\] at (0.6) should be [rgb(102, 143, 0) 24px 16px 24px\]] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/animations/vertical-align-composition.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/animations/vertical-align-composition.html.ini new file mode 100644 index 00000000000..39eaed49789 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/animations/vertical-align-composition.html.ini @@ -0,0 +1,61 @@ +[vertical-align-composition.html] + [Compositing: property underlying [10%\] from add [100px\] to add [20%\] at (0) should be [calc(100px + 10%)\]] + expected: FAIL + + [Compositing: property underlying [50px\] from add [100px\] to add [200px\] at (-0.3) should be [120px\]] + expected: FAIL + + [Compositing: property underlying [100px\] from add [10px\] to add [2px\] at (0.5) should be [106px\]] + expected: FAIL + + [Compositing: property underlying [50px\] from add [100px\] to replace [200px\] at (1) should be [200px\]] + expected: FAIL + + [Compositing: property underlying [50px\] from add [100px\] to replace [200px\] at (0) should be [150px\]] + expected: FAIL + + [Compositing: property underlying [100px\] from add [10px\] to add [2px\] at (1) should be [102px\]] + expected: FAIL + + [Compositing: property underlying [50px\] from add [100px\] to add [200px\] at (0.5) should be [200px\]] + expected: FAIL + + [Compositing: property underlying [50px\] from add [100px\] to replace [200px\] at (0.5) should be [175px\]] + expected: FAIL + + [Compositing: property underlying [10%\] from add [100px\] to add [20%\] at (-0.3) should be [calc(130px + 4%)\]] + expected: FAIL + + [Compositing: property underlying [50px\] from add [100px\] to replace [200px\] at (1.5) should be [225px\]] + expected: FAIL + + [Compositing: property underlying [50px\] from add [100px\] to replace [200px\] at (-0.3) should be [135px\]] + expected: FAIL + + [Compositing: property underlying [50px\] from add [100px\] to add [200px\] at (1) should be [250px\]] + expected: FAIL + + [Compositing: property underlying [50px\] from add [100px\] to add [200px\] at (1.5) should be [300px\]] + expected: FAIL + + [Compositing: property underlying [100px\] from add [10px\] to add [2px\] at (1.5) should be [98px\]] + expected: FAIL + + [Compositing: property underlying [100px\] from add [10px\] to add [2px\] at (-0.5) should be [114px\]] + expected: FAIL + + [Compositing: property underlying [100px\] from add [10px\] to add [2px\] at (0) should be [110px\]] + expected: FAIL + + [Compositing: property underlying [10%\] from add [100px\] to add [20%\] at (0.5) should be [calc(50px + 20%)\]] + expected: FAIL + + [Compositing: property underlying [10%\] from add [100px\] to add [20%\] at (1) should be [30%\]] + expected: FAIL + + [Compositing: property underlying [50px\] from add [100px\] to add [200px\] at (0) should be [150px\]] + expected: FAIL + + [Compositing: property underlying [10%\] from add [100px\] to add [20%\] at (1.5) should be [calc(-50px + 40%)\]] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/animations/vertical-align-interpolation.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/animations/vertical-align-interpolation.html.ini new file mode 100644 index 00000000000..04765e8f533 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/animations/vertical-align-interpolation.html.ini @@ -0,0 +1,529 @@ +[vertical-align-interpolation.html] + [Web Animations: property from [initial\] to [40px\] at (0) should be [initial\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [inherit\] to [40px\] at (1) should be [40px\]] + expected: FAIL + + [CSS Animations: property from [super\] to [40%\] at (1) should be [40%\]] + expected: FAIL + + [Web Animations: property from neutral to [40px\] at (-0.5) should be [-5px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [unset\] to [40px\] at (0) should be [40px\]] + expected: FAIL + + [CSS Animations: property from [unset\] to [40px\] at (0.3) should be [unset\]] + expected: FAIL + + [CSS Transitions: property from [super\] to [40%\] at (1) should be [40%\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [40px\] to [40%\] at (0) should be [calc(40px + 0%)\]] + expected: FAIL + + [CSS Animations: property from [0px\] to [100px\] at (1.5) should be [150px\]] + expected: FAIL + + [CSS Transitions: property from [40px\] to [40%\] at (-0.5) should be [calc(60px - 20%)\]] + expected: FAIL + + [CSS Animations: property from [inherit\] to [40px\] at (-0.5) should be [130px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [initial\] to [40px\] at (1.5) should be [40px\]] + expected: FAIL + + [CSS Animations: property from [unset\] to [40px\] at (0.5) should be [40px\]] + expected: FAIL + + [Web Animations: property from [0px\] to [100px\] at (0.6) should be [60px\]] + expected: FAIL + + [Web Animations: property from [super\] to [40%\] at (0) should be [super\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [initial\] to [40px\] at (1) should be [40px\]] + expected: FAIL + + [CSS Animations: property from [40px\] to [40%\] at (1) should be [calc(0px + 40%)\]] + expected: FAIL + + [CSS Transitions: property from [inherit\] to [40px\] at (-0.5) should be [130px\]] + expected: FAIL + + [CSS Transitions: property from [initial\] to [40px\] at (1) should be [40px\]] + expected: FAIL + + [Web Animations: property from [initial\] to [40px\] at (1.5) should be [40px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from neutral to [40px\] at (-0.5) should be [-5px\]] + expected: FAIL + + [Web Animations: property from [40px\] to [40%\] at (0) should be [calc(40px + 0%)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from neutral to [40px\] at (1.5) should be [55px\]] + expected: FAIL + + [CSS Transitions: property from neutral to [40px\] at (0.3) should be [19px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [super\] to [40%\] at (-0.3) should be [40%\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [initial\] to [40px\] at (0.6) should be [40px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [0px\] to [100px\] at (0.6) should be [60px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [super\] to [40%\] at (1) should be [40%\]] + expected: FAIL + + [Web Animations: property from [inherit\] to [40px\] at (1) should be [40px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [0px\] to [100px\] at (1) should be [100px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [40px\] to [40%\] at (1.5) should be [calc(-20px + 60%)\]] + expected: FAIL + + [CSS Transitions: property from [initial\] to [40px\] at (0.6) should be [40px\]] + expected: FAIL + + [CSS Transitions: property from neutral to [40px\] at (1) should be [40px\]] + expected: FAIL + + [CSS Transitions: property from [super\] to [40%\] at (-0.3) should be [40%\]] + expected: FAIL + + [CSS Transitions: property from [0px\] to [100px\] at (0) should be [0px\]] + expected: FAIL + + [CSS Animations: property from [super\] to [40%\] at (0.6) should be [40%\]] + expected: FAIL + + [CSS Transitions: property from neutral to [40px\] at (-0.5) should be [-5px\]] + expected: FAIL + + [CSS Transitions: property from [unset\] to [40px\] at (0.6) should be [40px\]] + expected: FAIL + + [CSS Animations: property from [super\] to [40%\] at (0.3) should be [super\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [0px\] to [100px\] at (-0.5) should be [-50px\]] + expected: FAIL + + [CSS Transitions: property from [0px\] to [100px\] at (1) should be [100px\]] + expected: FAIL + + [Web Animations: property from [inherit\] to [40px\] at (0.6) should be [64px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from neutral to [40px\] at (1) should be [40px\]] + expected: FAIL + + [Web Animations: property from neutral to [40px\] at (0.6) should be [28px\]] + expected: FAIL + + [CSS Animations: property from [inherit\] to [40px\] at (0) should be [100px\]] + expected: FAIL + + [CSS Transitions: property from [0px\] to [100px\] at (0.6) should be [60px\]] + expected: FAIL + + [Web Animations: property from [initial\] to [40px\] at (0.5) should be [40px\]] + expected: FAIL + + [CSS Transitions: property from [initial\] to [40px\] at (-0.3) should be [40px\]] + expected: FAIL + + [CSS Transitions: property from [inherit\] to [40px\] at (0) should be [100px\]] + expected: FAIL + + [CSS Transitions: property from [inherit\] to [40px\] at (1) should be [40px\]] + expected: FAIL + + [CSS Animations: property from neutral to [40px\] at (1) should be [40px\]] + expected: FAIL + + [CSS Transitions: property from [unset\] to [40px\] at (0) should be [40px\]] + expected: FAIL + + [CSS Animations: property from [40px\] to [40%\] at (0) should be [calc(40px + 0%)\]] + expected: FAIL + + [CSS Animations: property from neutral to [40px\] at (0) should be [10px\]] + expected: FAIL + + [CSS Animations: property from [super\] to [40%\] at (1.5) should be [40%\]] + expected: FAIL + + [CSS Animations: property from [unset\] to [40px\] at (0) should be [unset\]] + expected: FAIL + + [Web Animations: property from [40px\] to [40%\] at (-0.5) should be [calc(60px - 20%)\]] + expected: FAIL + + [CSS Animations: property from neutral to [40px\] at (-0.5) should be [-5px\]] + expected: FAIL + + [CSS Transitions: property from neutral to [40px\] at (0.6) should be [28px\]] + expected: FAIL + + [CSS Animations: property from [super\] to [40%\] at (-0.3) should be [super\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [unset\] to [40px\] at (1) should be [40px\]] + expected: FAIL + + [CSS Animations: property from [initial\] to [40px\] at (0.6) should be [40px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from neutral to [40px\] at (0.3) should be [19px\]] + expected: FAIL + + [CSS Transitions: property from [40px\] to [40%\] at (0) should be [calc(40px + 0%)\]] + expected: FAIL + + [CSS Animations: property from neutral to [40px\] at (0.6) should be [28px\]] + expected: FAIL + + [Web Animations: property from [initial\] to [40px\] at (0.3) should be [initial\]] + expected: FAIL + + [CSS Animations: property from [initial\] to [40px\] at (0.5) should be [40px\]] + expected: FAIL + + [CSS Animations: property from [unset\] to [40px\] at (1.5) should be [40px\]] + expected: FAIL + + [CSS Transitions: property from [inherit\] to [40px\] at (0.3) should be [82px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [unset\] to [40px\] at (0.6) should be [40px\]] + expected: FAIL + + [Web Animations: property from neutral to [40px\] at (0.3) should be [19px\]] + expected: FAIL + + [Web Animations: property from [super\] to [40%\] at (0.5) should be [40%\]] + expected: FAIL + + [Web Animations: property from [super\] to [40%\] at (-0.3) should be [super\]] + expected: FAIL + + [CSS Transitions: property from [0px\] to [100px\] at (-0.5) should be [-50px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [40px\] to [40%\] at (0.3) should be [calc(28px + 12%)\]] + expected: FAIL + + [CSS Transitions: property from neutral to [40px\] at (0) should be [10px\]] + expected: FAIL + + [CSS Animations: property from [inherit\] to [40px\] at (1.5) should be [10px\]] + expected: FAIL + + [CSS Transitions: property from [unset\] to [40px\] at (0.5) should be [40px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [inherit\] to [40px\] at (-0.5) should be [130px\]] + expected: FAIL + + [CSS Animations: property from [40px\] to [40%\] at (-0.5) should be [calc(60px - 20%)\]] + expected: FAIL + + [Web Animations: property from [inherit\] to [40px\] at (0.3) should be [82px\]] + expected: FAIL + + [Web Animations: property from [inherit\] to [40px\] at (0) should be [100px\]] + expected: FAIL + + [CSS Animations: property from [unset\] to [40px\] at (-0.3) should be [unset\]] + expected: FAIL + + [CSS Transitions: property from [40px\] to [40%\] at (1.5) should be [calc(-20px + 60%)\]] + expected: FAIL + + [Web Animations: property from [super\] to [40%\] at (1.5) should be [40%\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [super\] to [40%\] at (0.6) should be [40%\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [0px\] to [100px\] at (0) should be [0px\]] + expected: FAIL + + [Web Animations: property from [0px\] to [100px\] at (0.3) should be [30px\]] + expected: FAIL + + [CSS Animations: property from [initial\] to [40px\] at (0) should be [initial\]] + expected: FAIL + + [CSS Transitions with transition: all: property from neutral to [40px\] at (0) should be [10px\]] + expected: FAIL + + [Web Animations: property from [40px\] to [40%\] at (1) should be [calc(0px + 40%)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [unset\] to [40px\] at (0.3) should be [40px\]] + expected: FAIL + + [Web Animations: property from [super\] to [40%\] at (0.3) should be [super\]] + expected: FAIL + + [Web Animations: property from neutral to [40px\] at (0) should be [10px\]] + expected: FAIL + + [CSS Transitions: property from [super\] to [40%\] at (0.3) should be [40%\]] + expected: FAIL + + [CSS Transitions: property from [initial\] to [40px\] at (0) should be [40px\]] + expected: FAIL + + [CSS Animations: property from [0px\] to [100px\] at (1) should be [100px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [inherit\] to [40px\] at (0) should be [100px\]] + expected: FAIL + + [CSS Transitions: property from [0px\] to [100px\] at (1.5) should be [150px\]] + expected: FAIL + + [Web Animations: property from [0px\] to [100px\] at (1) should be [100px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [initial\] to [40px\] at (0.3) should be [40px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [initial\] to [40px\] at (0) should be [40px\]] + expected: FAIL + + [Web Animations: property from [0px\] to [100px\] at (1.5) should be [150px\]] + expected: FAIL + + [CSS Animations: property from neutral to [40px\] at (0.3) should be [19px\]] + expected: FAIL + + [CSS Transitions: property from [initial\] to [40px\] at (0.3) should be [40px\]] + expected: FAIL + + [CSS Transitions: property from [unset\] to [40px\] at (-0.3) should be [40px\]] + expected: FAIL + + [Web Animations: property from [unset\] to [40px\] at (0.6) should be [40px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [inherit\] to [40px\] at (1.5) should be [10px\]] + expected: FAIL + + [CSS Transitions: property from [super\] to [40%\] at (0.5) should be [40%\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [40px\] to [40%\] at (-0.5) should be [calc(60px - 20%)\]] + expected: FAIL + + [CSS Transitions: property from [super\] to [40%\] at (1.5) should be [40%\]] + expected: FAIL + + [Web Animations: property from [unset\] to [40px\] at (0.5) should be [40px\]] + expected: FAIL + + [CSS Transitions: property from [initial\] to [40px\] at (1.5) should be [40px\]] + expected: FAIL + + [Web Animations: property from [inherit\] to [40px\] at (1.5) should be [10px\]] + expected: FAIL + + [CSS Transitions: property from neutral to [40px\] at (1.5) should be [55px\]] + expected: FAIL + + [Web Animations: property from [initial\] to [40px\] at (-0.3) should be [initial\]] + expected: FAIL + + [CSS Animations: property from [inherit\] to [40px\] at (1) should be [40px\]] + expected: FAIL + + [CSS Animations: property from [0px\] to [100px\] at (-0.5) should be [-50px\]] + expected: FAIL + + [CSS Animations: property from [initial\] to [40px\] at (1) should be [40px\]] + expected: FAIL + + [Web Animations: property from [initial\] to [40px\] at (1) should be [40px\]] + expected: FAIL + + [Web Animations: property from [super\] to [40%\] at (0.6) should be [40%\]] + expected: FAIL + + [Web Animations: property from neutral to [40px\] at (1) should be [40px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [inherit\] to [40px\] at (0.6) should be [64px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from neutral to [40px\] at (0.6) should be [28px\]] + expected: FAIL + + [CSS Transitions: property from [unset\] to [40px\] at (1) should be [40px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [super\] to [40%\] at (0.3) should be [40%\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [0px\] to [100px\] at (1.5) should be [150px\]] + expected: FAIL + + [CSS Animations: property from [initial\] to [40px\] at (1.5) should be [40px\]] + expected: FAIL + + [CSS Animations: property from [0px\] to [100px\] at (0) should be [0px\]] + expected: FAIL + + [CSS Transitions: property from [unset\] to [40px\] at (1.5) should be [40px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [40px\] to [40%\] at (1) should be [calc(0px + 40%)\]] + expected: FAIL + + [CSS Transitions: property from [inherit\] to [40px\] at (0.6) should be [64px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [initial\] to [40px\] at (0.5) should be [40px\]] + expected: FAIL + + [CSS Animations: property from [initial\] to [40px\] at (-0.3) should be [initial\]] + expected: FAIL + + [CSS Animations: property from [initial\] to [40px\] at (0.3) should be [initial\]] + expected: FAIL + + [Web Animations: property from [40px\] to [40%\] at (0.3) should be [calc(28px + 12%)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [inherit\] to [40px\] at (0.3) should be [82px\]] + expected: FAIL + + [Web Animations: property from [inherit\] to [40px\] at (-0.5) should be [130px\]] + expected: FAIL + + [Web Animations: property from [0px\] to [100px\] at (0) should be [0px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [super\] to [40%\] at (0.5) should be [40%\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [unset\] to [40px\] at (1.5) should be [40px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [0px\] to [100px\] at (0.3) should be [30px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [super\] to [40%\] at (1.5) should be [40%\]] + expected: FAIL + + [CSS Animations: property from [40px\] to [40%\] at (0.3) should be [calc(28px + 12%)\]] + expected: FAIL + + [CSS Transitions: property from [initial\] to [40px\] at (0.5) should be [40px\]] + expected: FAIL + + [Web Animations: property from [unset\] to [40px\] at (-0.3) should be [unset\]] + expected: FAIL + + [CSS Transitions: property from [inherit\] to [40px\] at (1.5) should be [10px\]] + expected: FAIL + + [Web Animations: property from [unset\] to [40px\] at (0.3) should be [unset\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [initial\] to [40px\] at (-0.3) should be [40px\]] + expected: FAIL + + [CSS Animations: property from [super\] to [40%\] at (0) should be [super\]] + expected: FAIL + + [CSS Animations: property from [0px\] to [100px\] at (0.3) should be [30px\]] + expected: FAIL + + [Web Animations: property from [initial\] to [40px\] at (0.6) should be [40px\]] + expected: FAIL + + [Web Animations: property from [40px\] to [40%\] at (1.5) should be [calc(-20px + 60%)\]] + expected: FAIL + + [Web Animations: property from neutral to [40px\] at (1.5) should be [55px\]] + expected: FAIL + + [Web Animations: property from [super\] to [40%\] at (1) should be [40%\]] + expected: FAIL + + [CSS Animations: property from [0px\] to [100px\] at (0.6) should be [60px\]] + expected: FAIL + + [CSS Transitions: property from [40px\] to [40%\] at (0.3) should be [calc(28px + 12%)\]] + expected: FAIL + + [CSS Transitions: property from [40px\] to [40%\] at (1) should be [calc(0px + 40%)\]] + expected: FAIL + + [CSS Animations: property from [super\] to [40%\] at (0.5) should be [40%\]] + expected: FAIL + + [CSS Animations: property from [unset\] to [40px\] at (0.6) should be [40px\]] + expected: FAIL + + [CSS Transitions: property from [super\] to [40%\] at (0.6) should be [40%\]] + expected: FAIL + + [CSS Transitions: property from [unset\] to [40px\] at (0.3) should be [40px\]] + expected: FAIL + + [CSS Animations: property from [40px\] to [40%\] at (1.5) should be [calc(-20px + 60%)\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [unset\] to [40px\] at (0.5) should be [40px\]] + expected: FAIL + + [Web Animations: property from [unset\] to [40px\] at (1) should be [40px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [super\] to [40%\] at (0) should be [40%\]] + expected: FAIL + + [CSS Animations: property from [unset\] to [40px\] at (1) should be [40px\]] + expected: FAIL + + [CSS Transitions: property from [super\] to [40%\] at (0) should be [40%\]] + expected: FAIL + + [Web Animations: property from [0px\] to [100px\] at (-0.5) should be [-50px\]] + expected: FAIL + + [CSS Animations: property from [inherit\] to [40px\] at (0.6) should be [64px\]] + expected: FAIL + + [Web Animations: property from [unset\] to [40px\] at (1.5) should be [40px\]] + expected: FAIL + + [CSS Animations: property from neutral to [40px\] at (1.5) should be [55px\]] + expected: FAIL + + [Web Animations: property from [unset\] to [40px\] at (0) should be [unset\]] + expected: FAIL + + [CSS Animations: property from [inherit\] to [40px\] at (0.3) should be [82px\]] + expected: FAIL + + [CSS Transitions with transition: all: property from [unset\] to [40px\] at (-0.3) should be [40px\]] + expected: FAIL + + [CSS Transitions: property from [0px\] to [100px\] at (0.3) should be [30px\]] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/animations/z-index-interpolation.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/animations/z-index-interpolation.html.ini new file mode 100644 index 00000000000..2336c57c961 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/animations/z-index-interpolation.html.ini @@ -0,0 +1,235 @@ +[z-index-interpolation.html] + [Web Animations: property from [unset\] to [5\] at (1.5) should be [5\]] + expected: FAIL + + [Web Animations: property from [2\] to [4\] at (0.3) should be [3\]] + expected: FAIL + + [Web Animations: property from [auto\] to [10\] at (1.5) should be [10\]] + expected: FAIL + + [CSS Animations: property from [unset\] to [5\] at (0.3) should be [unset\]] + expected: FAIL + + [CSS Animations: property from [initial\] to [5\] at (1) should be [5\]] + expected: FAIL + + [CSS Animations: property from [initial\] to [5\] at (1.5) should be [5\]] + expected: FAIL + + [Web Animations: property from [auto\] to [10\] at (-0.3) should be [auto\]] + expected: FAIL + + [Web Animations: property from neutral to [5\] at (-0.3) should be [-4\]] + expected: FAIL + + [Web Animations: property from neutral to [5\] at (1.5) should be [9\]] + expected: FAIL + + [CSS Animations: property from [initial\] to [5\] at (0) should be [initial\]] + expected: FAIL + + [Web Animations: property from [2\] to [4\] at (-0.3) should be [1\]] + expected: FAIL + + [Web Animations: property from [initial\] to [5\] at (0.6) should be [5\]] + expected: FAIL + + [CSS Animations: property from [auto\] to [10\] at (0.5) should be [10\]] + expected: FAIL + + [Web Animations: property from neutral to [5\] at (1) should be [5\]] + expected: FAIL + + [CSS Animations: property from [unset\] to [5\] at (0.5) should be [5\]] + expected: FAIL + + [CSS Animations: property from [unset\] to [5\] at (1.5) should be [5\]] + expected: FAIL + + [Web Animations: property from [initial\] to [5\] at (0.5) should be [5\]] + expected: FAIL + + [Web Animations: property from [inherit\] to [5\] at (1.5) should be [0\]] + expected: FAIL + + [Web Animations: property from [-2\] to [-4\] at (1.5) should be [-5\]] + expected: FAIL + + [Web Animations: property from [2\] to [4\] at (0.6) should be [3\]] + expected: FAIL + + [Web Animations: property from [-2\] to [-4\] at (0) should be [-2\]] + expected: FAIL + + [Web Animations: property from [-2\] to [-4\] at (1) should be [-4\]] + expected: FAIL + + [Web Animations: property from [-2\] to [-4\] at (0.3) should be [-3\]] + expected: FAIL + + [Web Animations: property from [-5\] to [5\] at (1) should be [5\]] + expected: FAIL + + [Web Animations: property from [initial\] to [5\] at (0.3) should be [initial\]] + expected: FAIL + + [Web Animations: property from [initial\] to [5\] at (1.5) should be [5\]] + expected: FAIL + + [CSS Animations: property from [initial\] to [5\] at (-0.3) should be [initial\]] + expected: FAIL + + [Web Animations: property from [initial\] to [5\] at (0) should be [initial\]] + expected: FAIL + + [Web Animations: property from [2\] to [4\] at (0) should be [2\]] + expected: FAIL + + [Web Animations: property from [inherit\] to [5\] at (-0.3) should be [18\]] + expected: FAIL + + [Web Animations: property from neutral to [5\] at (0.6) should be [2\]] + expected: FAIL + + [Web Animations: property from [unset\] to [5\] at (0) should be [unset\]] + expected: FAIL + + [CSS Animations: property from [inherit\] to [5\] at (0) should be [15\]] + expected: FAIL + + [CSS Animations: property from [auto\] to [10\] at (1) should be [10\]] + expected: FAIL + + [Web Animations: property from [2\] to [4\] at (1) should be [4\]] + expected: FAIL + + [Web Animations: property from [inherit\] to [5\] at (0.3) should be [12\]] + expected: FAIL + + [Web Animations: property from [auto\] to [10\] at (0) should be [auto\]] + expected: FAIL + + [Web Animations: property from [inherit\] to [5\] at (0.6) should be [9\]] + expected: FAIL + + [Web Animations: property from neutral to [5\] at (0.3) should be [0\]] + expected: FAIL + + [CSS Animations: property from [auto\] to [10\] at (1.5) should be [10\]] + expected: FAIL + + [CSS Animations: property from [unset\] to [5\] at (0.6) should be [5\]] + expected: FAIL + + [Web Animations: property from [-5\] to [5\] at (0.6) should be [1\]] + expected: FAIL + + [CSS Animations: property from [unset\] to [5\] at (1) should be [5\]] + expected: FAIL + + [Web Animations: property from [unset\] to [5\] at (0.5) should be [5\]] + expected: FAIL + + [Web Animations: property from [2\] to [4\] at (1.5) should be [5\]] + expected: FAIL + + [Web Animations: property from [-5\] to [5\] at (0.3) should be [-2\]] + expected: FAIL + + [CSS Animations: property from [auto\] to [10\] at (0.3) should be [auto\]] + expected: FAIL + + [Web Animations: property from [unset\] to [5\] at (1) should be [5\]] + expected: FAIL + + [Web Animations: property from [initial\] to [5\] at (1) should be [5\]] + expected: FAIL + + [Web Animations: property from [-2\] to [-4\] at (0.6) should be [-3\]] + expected: FAIL + + [Web Animations: property from [-2\] to [-4\] at (-0.3) should be [-1\]] + expected: FAIL + + [Web Animations: property from [-5\] to [5\] at (-0.3) should be [-8\]] + expected: FAIL + + [CSS Animations: property from [inherit\] to [5\] at (1.5) should be [0\]] + expected: FAIL + + [CSS Animations: property from [auto\] to [10\] at (0) should be [auto\]] + expected: FAIL + + [CSS Animations: property from [unset\] to [5\] at (-0.3) should be [unset\]] + expected: FAIL + + [Web Animations: property from [-2\] to [-4\] at (0.1) should be [-2\]] + expected: FAIL + + [Web Animations: property from [-5\] to [5\] at (1.5) should be [10\]] + expected: FAIL + + [Web Animations: property from [-5\] to [5\] at (0) should be [-5\]] + expected: FAIL + + [Web Animations: property from neutral to [5\] at (0) should be [-2\]] + expected: FAIL + + [Web Animations: property from [inherit\] to [5\] at (0) should be [15\]] + expected: FAIL + + [Web Animations: property from [unset\] to [5\] at (-0.3) should be [unset\]] + expected: FAIL + + [Web Animations: property from [unset\] to [5\] at (0.6) should be [5\]] + expected: FAIL + + [Web Animations: property from [unset\] to [5\] at (0.3) should be [unset\]] + expected: FAIL + + [CSS Animations: property from [inherit\] to [5\] at (-0.3) should be [18\]] + expected: FAIL + + [CSS Animations: property from [initial\] to [5\] at (0.6) should be [5\]] + expected: FAIL + + [Web Animations: property from [auto\] to [10\] at (0.5) should be [10\]] + expected: FAIL + + [CSS Animations: property from [initial\] to [5\] at (0.5) should be [5\]] + expected: FAIL + + [Web Animations: property from [auto\] to [10\] at (0.3) should be [auto\]] + expected: FAIL + + [Web Animations: property from [auto\] to [10\] at (0.6) should be [10\]] + expected: FAIL + + [Web Animations: property from [inherit\] to [5\] at (1) should be [5\]] + expected: FAIL + + [CSS Animations: property from [unset\] to [5\] at (0) should be [unset\]] + expected: FAIL + + [CSS Animations: property from [auto\] to [10\] at (-0.3) should be [auto\]] + expected: FAIL + + [CSS Animations: property from [initial\] to [5\] at (0.3) should be [initial\]] + expected: FAIL + + [CSS Animations: property from [inherit\] to [5\] at (0.6) should be [9\]] + expected: FAIL + + [Web Animations: property from [auto\] to [10\] at (1) should be [10\]] + expected: FAIL + + [Web Animations: property from [initial\] to [5\] at (-0.3) should be [initial\]] + expected: FAIL + + [CSS Animations: property from [inherit\] to [5\] at (0.3) should be [12\]] + expected: FAIL + + [CSS Animations: property from [auto\] to [10\] at (0.6) should be [10\]] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/disconnected-element-001.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/disconnected-element-001.html.ini new file mode 100644 index 00000000000..cd98f4d3d67 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/disconnected-element-001.html.ini @@ -0,0 +1,8 @@ +[disconnected-element-001.html] + expected: TIMEOUT + [Transitions are canceled when an element is re-parented to the same node] + expected: NOTRUN + + [Transitions are canceled when an element is re-parented] + expected: TIMEOUT + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/event-dispatch.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/event-dispatch.tentative.html.ini new file mode 100644 index 00000000000..0f5910791a6 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/event-dispatch.tentative.html.ini @@ -0,0 +1,79 @@ +[event-dispatch.tentative.html] + [Call Animation.cancel after canceling transition.] + expected: FAIL + + [Before -> Idle (Animation.timeline = null)] + expected: FAIL + + [After -> Before] + expected: FAIL + + [Active -> Idle, with positive delay (display: none)] + expected: FAIL + + [Calculating the interval start and end time with negative start delay.] + expected: FAIL + + [Set timeline and play transition after clear the timeline] + expected: FAIL + + [Cancel the transition after clearing the target effect] + expected: FAIL + + [Active -> Idle, no delay (display: none)] + expected: FAIL + + [Calculating the interval start and end time with negative end delay.] + expected: FAIL + + [Idle -> Pending or Before] + expected: FAIL + + [Set null target effect after canceling the transition] + expected: FAIL + + [Active -> Idle, with negative delay (display: none)] + expected: FAIL + + [Active -> Idle, with negative delay (Animation.timeline = null)] + expected: FAIL + + [Active -> Before] + expected: FAIL + + [Restart transition after canceling transition immediately] + expected: FAIL + + [Before -> Active] + expected: FAIL + + [Idle or Pending -> After] + expected: FAIL + + [Active -> Idle, with positive delay (Animation.timeline = null)] + expected: FAIL + + [Active -> Idle, no delay (Animation.timeline = null)] + expected: FAIL + + [Idle or Pending -> Active] + expected: FAIL + + [Active -> After] + expected: FAIL + + [Call Animation.cancel after restarting transition immediately] + expected: FAIL + + [Idle -> Before] + expected: FAIL + + [Before -> After] + expected: FAIL + + [Before -> Idle (display: none)] + expected: FAIL + + [After -> Active] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/events-005.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/events-005.html.ini new file mode 100644 index 00000000000..dc242640441 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/events-005.html.ini @@ -0,0 +1,7 @@ +[events-005.html] + [padding-left, padding] + expected: FAIL + + [property repetition] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/events-006.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/events-006.html.ini new file mode 100644 index 00000000000..2fc7af21dd4 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/events-006.html.ini @@ -0,0 +1,8 @@ +[events-006.html] + expected: TIMEOUT + [transition padding-left on ::after] + expected: NOTRUN + + [transition padding-left on ::before] + expected: TIMEOUT + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/idlharness.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/idlharness.html.ini new file mode 100644 index 00000000000..a2f14bb0f14 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/idlharness.html.ini @@ -0,0 +1,19 @@ +[idlharness.html] + [HTMLElement interface: attribute ontransitionstart] + expected: FAIL + + [HTMLElement interface: document must inherit property "ontransitionstart" with the proper type] + expected: FAIL + + [Window interface: window must inherit property "ontransitionstart" with the proper type] + expected: FAIL + + [Document interface: attribute ontransitionstart] + expected: FAIL + + [Document interface: document must inherit property "ontransitionstart" with the proper type] + expected: FAIL + + [Window interface: attribute ontransitionstart] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/inherit-height-transition.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/inherit-height-transition.html.ini new file mode 100644 index 00000000000..95f199e425c --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/inherit-height-transition.html.ini @@ -0,0 +1,4 @@ +[inherit-height-transition.html] + [Transitioned height, explicitly inherited down two DOM levels, should inherit correctly] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/no-transition-from-ua-to-blocking-stylesheet.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/no-transition-from-ua-to-blocking-stylesheet.html.ini deleted file mode 100644 index 70a00a101f6..00000000000 --- a/tests/wpt/metadata-layout-2020/css/css-transitions/no-transition-from-ua-to-blocking-stylesheet.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[no-transition-from-ua-to-blocking-stylesheet.html] - expected: FAIL diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/non-rendered-element-001.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/non-rendered-element-001.html.ini new file mode 100644 index 00000000000..545eae021e5 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/non-rendered-element-001.html.ini @@ -0,0 +1,4 @@ +[non-rendered-element-001.html] + [Transitions do not run for an element newly rendered] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/non-rendered-element-002.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/non-rendered-element-002.html.ini new file mode 100644 index 00000000000..d0600a9c6b2 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/non-rendered-element-002.html.ini @@ -0,0 +1,5 @@ +[non-rendered-element-002.html] + expected: TIMEOUT + [Transitions on ::before/::after pseudo-elements are canceled when the content property is cleared] + expected: TIMEOUT + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/non-rendered-element-004.tentative.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/non-rendered-element-004.tentative.html.ini new file mode 100644 index 00000000000..4f24c094b1e --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/non-rendered-element-004.tentative.html.ini @@ -0,0 +1,4 @@ +[non-rendered-element-004.tentative.html] + [Transitions on ::marker pseudo-elements are canceled when the parent display type is no longer list-item] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/parsing/transition-computed.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/parsing/transition-computed.html.ini new file mode 100644 index 00000000000..fa8cff82bfa --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/parsing/transition-computed.html.ini @@ -0,0 +1,22 @@ +[transition-computed.html] + [Property transition value '1s -3s'] + expected: FAIL + + [Property transition value '1s -3s, cubic-bezier(0, -2, 1, 3) top'] + expected: FAIL + + [Property transition value 'none'] + expected: FAIL + + [Property transition value '1s'] + expected: FAIL + + [Property transition value 'cubic-bezier(0, -2, 1, 3)'] + expected: FAIL + + [Property transition value '1s -3s cubic-bezier(0, -2, 1, 3) top'] + expected: FAIL + + [Property transition value 'top'] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/parsing/transition-timing-function-computed.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/parsing/transition-timing-function-computed.html.ini new file mode 100644 index 00000000000..bf542ffd182 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/parsing/transition-timing-function-computed.html.ini @@ -0,0 +1,13 @@ +[transition-timing-function-computed.html] + [Property transition-timing-function value 'steps(2, jump-both)'] + expected: FAIL + + [Property transition-timing-function value 'steps(2, jump-end)'] + expected: FAIL + + [Property transition-timing-function value 'steps(2, jump-start)'] + expected: FAIL + + [Property transition-timing-function value 'steps(2, jump-none)'] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/parsing/transition-timing-function-valid.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/parsing/transition-timing-function-valid.html.ini new file mode 100644 index 00000000000..e1529b96e4e --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/parsing/transition-timing-function-valid.html.ini @@ -0,0 +1,13 @@ +[transition-timing-function-valid.html] + [e.style['transition-timing-function'\] = "steps(2, jump-none)" should set the property value] + expected: FAIL + + [e.style['transition-timing-function'\] = "steps(2, jump-both)" should set the property value] + expected: FAIL + + [e.style['transition-timing-function'\] = "steps(2, jump-end)" should set the property value] + expected: FAIL + + [e.style['transition-timing-function'\] = "steps(2, jump-start)" should set the property value] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-001.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-001.html.ini index 7eb5ee13a31..e5df375eb69 100644 --- a/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-001.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-001.html.ini @@ -2,108 +2,39 @@ [outline-width length(px) / values] expected: FAIL - [border-left-width length(em) / values] - expected: FAIL - [background-position length(pt) / values] expected: FAIL [background-position length(pt) / events] expected: FAIL - [border-bottom-width length(px) / values] - expected: FAIL - - [border-top-width length(em) / values] - expected: FAIL - - [line-height number(decimal) / values] - expected: FAIL - - [word-spacing length(mm) / values] - expected: FAIL - [text-indent length(pc) / values] expected: FAIL - [opacity number[0,1\](zero-to-one) / values] - expected: FAIL - - [line-height number(integer) / values] - expected: FAIL - [outline-offset length(px) / values] expected: FAIL - [font-size length(pt) / values] - expected: FAIL - - [max-height length(px) / values] - expected: FAIL - [vertical-align length(in) / values] expected: FAIL - [max-height percentage(%) / values] - expected: FAIL - [background-position length(px) / values] expected: FAIL - [min-width length(px) / values] - expected: FAIL - - [border-top-color color(rgba) / values] - expected: FAIL - [background-position length(cm) / events] expected: FAIL - [border-right-color color(rgba) / values] - expected: FAIL - - [font-size length(ex) / values] - expected: FAIL - - [min-height length(pc) / values] - expected: FAIL - [background-position length(mm) / values] expected: FAIL - [line-height length(px) / values] - expected: FAIL - - [word-spacing length(px) / values] - expected: FAIL - [vertical-align percentage(%) / values] expected: FAIL [background-position length(in) / events] expected: FAIL - [border-right-width length(pc) / values] - expected: FAIL - - [line-height length(ex) / values] - expected: FAIL - - [color color(rgba) / values] - expected: FAIL - - [font-size length(in) / values] - expected: FAIL - [text-indent length(ex) / values] expected: FAIL - [font-size length(em) / values] - expected: FAIL - - [border-left-width length(mm) / values] - expected: FAIL - [vertical-align length(em) / values] expected: FAIL @@ -113,213 +44,51 @@ [clip rectangle(rectangle) / values] expected: FAIL - [word-spacing length(em) / values] - expected: FAIL - - [border-right-width length(ex) / values] - expected: FAIL - - [border-top-width length(cm) / values] - expected: FAIL - - [max-width length(em) / values] - expected: FAIL - [background-position length(em) / events] expected: FAIL - [font-size length(cm) / values] - expected: FAIL - - [border-right-width length(cm) / values] - expected: FAIL - [outline-offset length(ex) / values] expected: FAIL - [min-width length(cm) / values] - expected: FAIL - - [min-height length(px) / values] - expected: FAIL - - [min-width length(mm) / values] - expected: FAIL - - [border-bottom-width length(in) / values] - expected: FAIL - [vertical-align length(pc) / values] expected: FAIL [vertical-align length(cm) / values] expected: FAIL - [max-height length(ex) / values] - expected: FAIL - [vertical-align length(ex) / values] expected: FAIL - [min-height percentage(%) / values] - expected: FAIL - - [max-height length(pt) / values] - expected: FAIL - [outline-offset length(mm) / values] expected: FAIL - [font-weight font-weight(keyword) / values] - expected: FAIL - - [max-height length(mm) / values] - expected: FAIL - [outline-offset length(pt) / values] expected: FAIL - [line-height length(mm) / values] - expected: FAIL - - [line-height length(cm) / values] - expected: FAIL - - [border-top-width length(mm) / values] - expected: FAIL - - [letter-spacing length(in) / values] - expected: FAIL - - [border-bottom-color color(rgba) / values] - expected: FAIL - - [min-width percentage(%) / values] - expected: FAIL - - [min-height length(cm) / values] - expected: FAIL - - [letter-spacing length(mm) / values] - expected: FAIL - - [font-size percentage(%) / values] - expected: FAIL - - [letter-spacing length(cm) / values] - expected: FAIL - [vertical-align length(pt) / values] expected: FAIL - [border-left-color color(rgba) / values] - expected: FAIL - - [letter-spacing length(pc) / values] - expected: FAIL - - [letter-spacing length(pt) / values] - expected: FAIL - - [word-spacing length(ex) / values] - expected: FAIL - - [line-height length(pt) / values] - expected: FAIL - - [border-top-width length(px) / values] - expected: FAIL - - [min-width length(pt) / values] - expected: FAIL - - [border-bottom-width length(mm) / values] - expected: FAIL - - [border-bottom-width length(cm) / values] - expected: FAIL - - [min-width length(em) / values] - expected: FAIL - - [min-height length(em) / values] - expected: FAIL - - [max-width length(mm) / values] - expected: FAIL - - [min-height length(ex) / values] - expected: FAIL - [background-position length(ex) / values] expected: FAIL - [max-width length(px) / values] - expected: FAIL - [text-indent length(mm) / values] expected: FAIL - [font-size length(mm) / values] - expected: FAIL - - [min-width length(pc) / values] - expected: FAIL - - [letter-spacing length(em) / values] - expected: FAIL - [background-position length(cm) / values] expected: FAIL - [line-height length(em) / values] - expected: FAIL - - [border-bottom-width length(pt) / values] - expected: FAIL - - [word-spacing length(pc) / values] - expected: FAIL - [outline-offset length(in) / values] expected: FAIL - [word-spacing length(in) / values] - expected: FAIL - [outline-width length(pt) / values] expected: FAIL - [border-top-width length(pc) / values] - expected: FAIL - - [border-left-width length(px) / values] - expected: FAIL - - [font-size length(px) / values] - expected: FAIL - - [border-left-width length(cm) / values] - expected: FAIL - - [border-right-width length(px) / values] - expected: FAIL - [outline-width length(in) / values] expected: FAIL - [word-spacing length(pt) / values] - expected: FAIL - [text-indent length(cm) / values] expected: FAIL - [border-right-width length(mm) / values] - expected: FAIL - - [max-width length(in) / values] - expected: FAIL - [outline-color color(rgba) / values] expected: FAIL @@ -329,114 +98,45 @@ [text-indent length(pt) / values] expected: FAIL - [border-right-width length(pt) / values] - expected: FAIL - - [border-left-width length(in) / values] - expected: FAIL - [text-shadow shadow(shadow) / values] expected: FAIL [background-position length(pc) / events] expected: FAIL - [max-height length(in) / values] - expected: FAIL - - [line-height length(in) / values] - expected: FAIL - - [border-bottom-width length(em) / values] - expected: FAIL - [outline-width length(ex) / values] expected: FAIL - [font-size length(pc) / values] - expected: FAIL - [background-position length(in) / values] expected: FAIL - [min-width length(in) / values] - expected: FAIL - [outline-width length(cm) / values] expected: FAIL - [max-width percentage(%) / values] - expected: FAIL - - [max-width length(ex) / values] - expected: FAIL - - [letter-spacing length(ex) / values] - expected: FAIL - - [border-left-width length(ex) / values] - expected: FAIL - [outline-width length(mm) / values] expected: FAIL - [border-left-width length(pc) / values] - expected: FAIL - [outline-width length(pc) / values] expected: FAIL - [word-spacing percentage(%) / values] - expected: FAIL - - [font-weight font-weight(numeric) / values] - expected: FAIL - [vertical-align length(px) / values] expected: FAIL - [letter-spacing length(px) / values] - expected: FAIL - - [max-width length(pt) / values] - expected: FAIL - - [line-height percentage(%) / values] - expected: FAIL - [text-indent length(in) / values] expected: FAIL [text-indent length(em) / values] expected: FAIL - [border-top-width length(pt) / values] - expected: FAIL - - [min-height length(mm) / values] - expected: FAIL - [background-position length(pc) / values] expected: FAIL [background-position percentage(%) / values] expected: FAIL - [max-height length(cm) / values] - expected: FAIL - [outline-width length(em) / values] expected: FAIL - [border-right-width length(em) / values] - expected: FAIL - - [max-height length(em) / values] - expected: FAIL - - [max-width length(cm) / values] - expected: FAIL - [outline-offset length(em) / values] expected: FAIL @@ -446,66 +146,138 @@ [background-position length(mm) / events] expected: FAIL - [border-top-width length(ex) / values] - expected: FAIL - - [border-right-width length(in) / values] - expected: FAIL - - [z-index integer(integer) / values] - expected: FAIL - - [border-left-width length(pt) / values] - expected: FAIL - [vertical-align length(mm) / values] expected: FAIL - [border-bottom-width length(pc) / values] - expected: FAIL - [text-indent percentage(%) / values] expected: FAIL - [line-height length(pc) / values] - expected: FAIL - [background-position length(em) / values] expected: FAIL - [border-top-width length(in) / values] - expected: FAIL - - [border-bottom-width length(ex) / values] - expected: FAIL - - [min-height length(in) / values] - expected: FAIL - [outline-offset length(pc) / values] expected: FAIL - [max-height length(pc) / values] - expected: FAIL - - [background-color color(rgba) / values] - expected: FAIL - - [min-height length(pt) / values] - expected: FAIL - - [word-spacing length(cm) / values] - expected: FAIL - [background-position percentage(%) / events] expected: FAIL - [max-width length(pc) / values] - expected: FAIL - [background-position length(px) / events] expected: FAIL - [min-width length(ex) / values] + [outline-width length(pc) / events] + expected: FAIL + + [text-indent percentage(%) / events] + expected: FAIL + + [vertical-align length(px) / events] + expected: FAIL + + [text-shadow shadow(shadow) / events] + expected: FAIL + + [outline-offset length(mm) / events] + expected: FAIL + + [vertical-align length(in) / events] + expected: FAIL + + [text-indent length(mm) / events] + expected: FAIL + + [vertical-align length(em) / events] + expected: FAIL + + [vertical-align length(cm) / events] + expected: FAIL + + [text-indent length(ex) / events] + expected: FAIL + + [outline-offset length(cm) / events] + expected: FAIL + + [vertical-align length(mm) / events] + expected: FAIL + + [outline-offset length(em) / events] + expected: FAIL + + [vertical-align length(ex) / events] + expected: FAIL + + [outline-width length(em) / events] + expected: FAIL + + [text-indent length(in) / events] + expected: FAIL + + [visibility visibility(keyword) / events] + expected: FAIL + + [text-indent length(pc) / events] + expected: FAIL + + [text-indent length(em) / events] + expected: FAIL + + [text-indent length(px) / events] + expected: FAIL + + [text-indent length(cm) / events] + expected: FAIL + + [visibility visibility(keyword) / values] + expected: FAIL + + [outline-width length(cm) / events] + expected: FAIL + + [clip rectangle(rectangle) / events] + expected: FAIL + + [text-indent length(pt) / events] + expected: FAIL + + [outline-width length(ex) / events] + expected: FAIL + + [outline-width length(mm) / events] + expected: FAIL + + [vertical-align percentage(%) / events] + expected: FAIL + + [outline-width length(pt) / events] + expected: FAIL + + [outline-color color(rgba) / events] + expected: FAIL + + [outline-width length(in) / events] + expected: FAIL + + [outline-offset length(ex) / events] + expected: FAIL + + [vertical-align length(pc) / events] + expected: FAIL + + [vertical-align length(pt) / events] + expected: FAIL + + [outline-offset length(pt) / events] + expected: FAIL + + [outline-offset length(px) / events] + expected: FAIL + + [outline-offset length(in) / events] + expected: FAIL + + [outline-width length(px) / events] + expected: FAIL + + [outline-offset length(pc) / events] expected: FAIL diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-002.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-002.html.ini new file mode 100644 index 00000000000..514c500c049 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-002.html.ini @@ -0,0 +1,7 @@ +[properties-value-002.html] + [vertical-align vertical(keyword) / values] + expected: FAIL + + [vertical-align vertical(keyword) / events] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-003.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-003.html.ini index aba0b668a6b..76e92cec1c0 100644 --- a/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-003.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-003.html.ini @@ -128,9 +128,6 @@ [marker-offset length(cm) / events] expected: FAIL - [transform transform(rotate) / values] - expected: FAIL - [column-rule-width length(px) / events] expected: FAIL @@ -170,9 +167,6 @@ [outline-radius-bottomright length(pc) / events] expected: FAIL - [border-bottom-right-radius border-radius(px-px) / values] - expected: FAIL - [outline-radius-topright length(pt) / events] expected: FAIL @@ -206,9 +200,6 @@ [column-gap length(cm) / values] expected: FAIL - [text-decoration-color color(rgba) / events] - expected: FAIL - [column-width length(cm) / events] expected: FAIL @@ -230,9 +221,6 @@ [outline-radius-bottomright length(cm) / events] expected: FAIL - [position position(static to absolute) / events] - expected: FAIL - [column-rule-width length(in) / values] expected: FAIL @@ -251,9 +239,6 @@ [column-width length(mm) / values] expected: FAIL - [text-decoration-color color(rgba) / values] - expected: FAIL - [outline-radius-bottomleft length(pc) / events] expected: FAIL @@ -263,9 +248,6 @@ [outline-radius-topleft length(mm) / values] expected: FAIL - [font-stretch font-stretch(keyword) / values] - expected: FAIL - [outline-radius-bottomleft length(mm) / events] expected: FAIL @@ -284,9 +266,6 @@ [outline-radius-bottomright length(in) / values] expected: FAIL - [transform-origin horizontal(keyword) / values] - expected: FAIL - [outline-radius-topleft percentage(%) / events] expected: FAIL @@ -299,9 +278,6 @@ [outline-radius-bottomleft length(px) / values] expected: FAIL - [border-top-right-radius border-radius(px) / values] - expected: FAIL - [outline-radius-bottomright length(em) / values] expected: FAIL @@ -311,9 +287,6 @@ [outline-radius-topright length(mm) / values] expected: FAIL - [border-top-left-radius border-radius(px-px) / values] - expected: FAIL - [column-width length(ex) / values] expected: FAIL @@ -356,18 +329,12 @@ [outline-radius-bottomleft length(in) / events] expected: FAIL - [border-bottom-right-radius border-radius(px) / values] - expected: FAIL - [column-width length(ex) / events] expected: FAIL [outline-radius-topleft length(em) / events] expected: FAIL - [border-bottom-left-radius border-radius(px-px) / values] - expected: FAIL - [outline-radius-bottomleft length(em) / values] expected: FAIL @@ -407,9 +374,6 @@ [column-width length(pt) / values] expected: FAIL - [border-top-left-radius border-radius(px) / values] - expected: FAIL - [outline-radius-topright length(cm) / values] expected: FAIL @@ -434,12 +398,6 @@ [outline-radius-topleft length(ex) / values] expected: FAIL - [position position(relative to absolute) / events] - expected: FAIL - - [border-bottom-left-radius border-radius(px) / values] - expected: FAIL - [outline-radius-topleft length(em) / values] expected: FAIL @@ -485,9 +443,6 @@ [box-shadow box-shadow(shadow) / values] expected: FAIL - [border-top-right-radius border-radius(px-px) / values] - expected: FAIL - [column-width length(mm) / events] expected: FAIL @@ -509,3 +464,6 @@ [column-width length(em) / values] expected: FAIL + [box-shadow box-shadow(shadow) / events] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-auto-001.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-auto-001.html.ini new file mode 100644 index 00000000000..83b06cc21eb --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-auto-001.html.ini @@ -0,0 +1,91 @@ +[properties-value-auto-001.html] + [top auto(to) / values] + expected: FAIL + + [z-index auto(to) / values] + expected: FAIL + + [left auto(to) / values] + expected: FAIL + + [margin-bottom auto(from) / values] + expected: FAIL + + [margin-bottom auto(to) / values] + expected: FAIL + + [right auto(from) / values] + expected: FAIL + + [clip auto(to) / events] + expected: FAIL + + [marker-offset auto(to) / events] + expected: FAIL + + [height auto(to) / values] + expected: FAIL + + [clip auto(from) / events] + expected: FAIL + + [marker-offset auto(from) / events] + expected: FAIL + + [margin-top auto(from) / values] + expected: FAIL + + [width auto(from) / values] + expected: FAIL + + [margin-left auto(from) / values] + expected: FAIL + + [margin-right auto(from) / values] + expected: FAIL + + [margin-top auto(to) / values] + expected: FAIL + + [clip auto(from) / values] + expected: FAIL + + [marker-offset auto(to) / values] + expected: FAIL + + [bottom auto(to) / values] + expected: FAIL + + [marker-offset auto(from) / values] + expected: FAIL + + [z-index auto(from) / values] + expected: FAIL + + [width auto(to) / values] + expected: FAIL + + [height auto(from) / values] + expected: FAIL + + [margin-right auto(to) / values] + expected: FAIL + + [right auto(to) / values] + expected: FAIL + + [margin-left auto(to) / values] + expected: FAIL + + [top auto(from) / values] + expected: FAIL + + [bottom auto(from) / values] + expected: FAIL + + [clip auto(to) / values] + expected: FAIL + + [left auto(from) / values] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-implicit-001.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-implicit-001.html.ini new file mode 100644 index 00000000000..6b927bd47c0 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-implicit-001.html.ini @@ -0,0 +1,31 @@ +[properties-value-implicit-001.html] + [text-indent length-em(em) / events] + expected: FAIL + + [vertical-align length-em(em) / values] + expected: FAIL + + [background-position length-em(em) / events] + expected: FAIL + + [outline-width length-em(em) / values] + expected: FAIL + + [outline-offset length-em(em) / events] + expected: FAIL + + [background-position length-em(em) / values] + expected: FAIL + + [outline-width length-em(em) / events] + expected: FAIL + + [text-indent length-em(em) / values] + expected: FAIL + + [outline-offset length-em(em) / values] + expected: FAIL + + [vertical-align length-em(em) / events] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-inherit-001.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-inherit-001.html.ini index 404c8d7f587..48b9e143850 100644 --- a/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-inherit-001.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-inherit-001.html.ini @@ -716,3 +716,267 @@ [border-bottom-width length(em) / events] expected: FAIL + [outline-width length(px) / values] + expected: FAIL + + [letter-spacing length(em) / events] + expected: FAIL + + [letter-spacing length(ex) / events] + expected: FAIL + + [text-indent length(pc) / values] + expected: FAIL + + [outline-offset length(px) / values] + expected: FAIL + + [letter-spacing length(mm) / events] + expected: FAIL + + [line-height length(in) / events] + expected: FAIL + + [vertical-align length(in) / values] + expected: FAIL + + [font-size percentage(%) / events] + expected: FAIL + + [text-indent percentage(%) / events] + expected: FAIL + + [text-shadow shadow(shadow) / events] + expected: FAIL + + [letter-spacing length(cm) / events] + expected: FAIL + + [vertical-align percentage(%) / values] + expected: FAIL + + [letter-spacing length(px) / events] + expected: FAIL + + [text-indent length(ex) / values] + expected: FAIL + + [text-indent length(mm) / events] + expected: FAIL + + [font-size length(px) / events] + expected: FAIL + + [vertical-align length(em) / values] + expected: FAIL + + [text-indent length(px) / values] + expected: FAIL + + [clip rectangle(rectangle) / values] + expected: FAIL + + [text-indent length(ex) / events] + expected: FAIL + + [line-height length(em) / events] + expected: FAIL + + [font-size length(pt) / events] + expected: FAIL + + [font-size length(in) / events] + expected: FAIL + + [text-indent length(in) / events] + expected: FAIL + + [outline-offset length(ex) / values] + expected: FAIL + + [letter-spacing length(in) / events] + expected: FAIL + + [vertical-align length(pc) / values] + expected: FAIL + + [vertical-align length(cm) / values] + expected: FAIL + + [letter-spacing length(pc) / events] + expected: FAIL + + [visibility visibility(keyword) / events] + expected: FAIL + + [vertical-align length(ex) / values] + expected: FAIL + + [text-indent length(pc) / events] + expected: FAIL + + [text-indent length(em) / events] + expected: FAIL + + [font-size length(pc) / events] + expected: FAIL + + [outline-offset length(mm) / values] + expected: FAIL + + [line-height length(pc) / events] + expected: FAIL + + [outline-offset length(pt) / values] + expected: FAIL + + [text-indent length(px) / events] + expected: FAIL + + [text-indent length(cm) / events] + expected: FAIL + + [vertical-align length(pt) / values] + expected: FAIL + + [font-weight font-weight(keyword) / events] + expected: FAIL + + [font-weight font-weight(numeric) / events] + expected: FAIL + + [line-height length(mm) / events] + expected: FAIL + + [line-height length(cm) / events] + expected: FAIL + + [word-spacing length(pt) / events] + expected: FAIL + + [line-height length(pt) / events] + expected: FAIL + + [word-spacing length(ex) / events] + expected: FAIL + + [color color(rgba) / events] + expected: FAIL + + [text-indent length(mm) / values] + expected: FAIL + + [word-spacing percentage(%) / events] + expected: FAIL + + [line-height percentage(%) / events] + expected: FAIL + + [text-indent length(pt) / events] + expected: FAIL + + [line-height length(ex) / events] + expected: FAIL + + [outline-offset length(in) / values] + expected: FAIL + + [outline-width length(pt) / values] + expected: FAIL + + [line-height number(integer) / events] + expected: FAIL + + [word-spacing length(cm) / events] + expected: FAIL + + [font-size length(mm) / events] + expected: FAIL + + [word-spacing length(mm) / events] + expected: FAIL + + [font-size length(cm) / events] + expected: FAIL + + [outline-width length(in) / values] + expected: FAIL + + [text-indent length(cm) / values] + expected: FAIL + + [outline-color color(rgba) / values] + expected: FAIL + + [text-indent length(pt) / values] + expected: FAIL + + [word-spacing length(em) / events] + expected: FAIL + + [line-height number(decimal) / events] + expected: FAIL + + [letter-spacing length(pt) / events] + expected: FAIL + + [text-shadow shadow(shadow) / values] + expected: FAIL + + [outline-width length(ex) / values] + expected: FAIL + + [word-spacing length(in) / events] + expected: FAIL + + [outline-width length(cm) / values] + expected: FAIL + + [word-spacing length(px) / events] + expected: FAIL + + [outline-width length(mm) / values] + expected: FAIL + + [outline-width length(pc) / values] + expected: FAIL + + [vertical-align length(px) / values] + expected: FAIL + + [text-indent length(in) / values] + expected: FAIL + + [text-indent length(em) / values] + expected: FAIL + + [line-height length(px) / events] + expected: FAIL + + [word-spacing length(pc) / events] + expected: FAIL + + [outline-width length(em) / values] + expected: FAIL + + [font-size length(em) / events] + expected: FAIL + + [outline-offset length(em) / values] + expected: FAIL + + [font-size length(ex) / events] + expected: FAIL + + [outline-offset length(cm) / values] + expected: FAIL + + [vertical-align length(mm) / values] + expected: FAIL + + [text-indent percentage(%) / values] + expected: FAIL + + [outline-offset length(pc) / values] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-inherit-002.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-inherit-002.html.ini index fc4e1b87fbd..16485691aa8 100644 --- a/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-inherit-002.html.ini +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-inherit-002.html.ini @@ -2,108 +2,39 @@ [outline-width length(px) / values] expected: FAIL - [border-left-width length(em) / values] - expected: FAIL - [background-position length(pt) / values] expected: FAIL [background-position length(pt) / events] expected: FAIL - [border-bottom-width length(px) / values] - expected: FAIL - - [border-top-width length(em) / values] - expected: FAIL - - [line-height number(decimal) / values] - expected: FAIL - - [word-spacing length(mm) / values] - expected: FAIL - [text-indent length(pc) / values] expected: FAIL - [opacity number[0,1\](zero-to-one) / values] - expected: FAIL - - [line-height number(integer) / values] - expected: FAIL - [outline-offset length(px) / values] expected: FAIL - [font-size length(pt) / values] - expected: FAIL - - [max-height length(px) / values] - expected: FAIL - [vertical-align length(in) / values] expected: FAIL - [max-height percentage(%) / values] - expected: FAIL - [background-position length(px) / values] expected: FAIL - [min-width length(px) / values] - expected: FAIL - - [border-top-color color(rgba) / values] - expected: FAIL - [background-position length(cm) / events] expected: FAIL - [border-right-color color(rgba) / values] - expected: FAIL - - [font-size length(ex) / values] - expected: FAIL - - [min-height length(pc) / values] - expected: FAIL - [background-position length(mm) / values] expected: FAIL - [line-height length(px) / values] - expected: FAIL - - [word-spacing length(px) / values] - expected: FAIL - [vertical-align percentage(%) / values] expected: FAIL [background-position length(in) / events] expected: FAIL - [border-right-width length(pc) / values] - expected: FAIL - - [line-height length(ex) / values] - expected: FAIL - - [color color(rgba) / values] - expected: FAIL - - [font-size length(in) / values] - expected: FAIL - [text-indent length(ex) / values] expected: FAIL - [font-size length(em) / values] - expected: FAIL - - [border-left-width length(mm) / values] - expected: FAIL - [vertical-align length(em) / values] expected: FAIL @@ -113,213 +44,51 @@ [clip rectangle(rectangle) / values] expected: FAIL - [word-spacing length(em) / values] - expected: FAIL - - [border-right-width length(ex) / values] - expected: FAIL - - [border-top-width length(cm) / values] - expected: FAIL - - [max-width length(em) / values] - expected: FAIL - [background-position length(em) / events] expected: FAIL - [font-size length(cm) / values] - expected: FAIL - - [border-right-width length(cm) / values] - expected: FAIL - [outline-offset length(ex) / values] expected: FAIL - [min-width length(cm) / values] - expected: FAIL - - [min-height length(px) / values] - expected: FAIL - - [min-width length(mm) / values] - expected: FAIL - - [border-bottom-width length(in) / values] - expected: FAIL - [vertical-align length(pc) / values] expected: FAIL [vertical-align length(cm) / values] expected: FAIL - [max-height length(ex) / values] - expected: FAIL - [vertical-align length(ex) / values] expected: FAIL - [min-height percentage(%) / values] - expected: FAIL - - [max-height length(pt) / values] - expected: FAIL - [outline-offset length(mm) / values] expected: FAIL - [font-weight font-weight(keyword) / values] - expected: FAIL - - [max-height length(mm) / values] - expected: FAIL - [outline-offset length(pt) / values] expected: FAIL - [line-height length(mm) / values] - expected: FAIL - - [line-height length(cm) / values] - expected: FAIL - - [border-top-width length(mm) / values] - expected: FAIL - - [letter-spacing length(in) / values] - expected: FAIL - - [border-bottom-color color(rgba) / values] - expected: FAIL - - [min-width percentage(%) / values] - expected: FAIL - - [min-height length(cm) / values] - expected: FAIL - - [letter-spacing length(mm) / values] - expected: FAIL - - [font-size percentage(%) / values] - expected: FAIL - - [letter-spacing length(cm) / values] - expected: FAIL - [vertical-align length(pt) / values] expected: FAIL - [border-left-color color(rgba) / values] - expected: FAIL - - [letter-spacing length(pc) / values] - expected: FAIL - - [letter-spacing length(pt) / values] - expected: FAIL - - [word-spacing length(ex) / values] - expected: FAIL - - [line-height length(pt) / values] - expected: FAIL - - [border-top-width length(px) / values] - expected: FAIL - - [min-width length(pt) / values] - expected: FAIL - - [border-bottom-width length(mm) / values] - expected: FAIL - - [border-bottom-width length(cm) / values] - expected: FAIL - - [min-width length(em) / values] - expected: FAIL - - [min-height length(em) / values] - expected: FAIL - - [max-width length(mm) / values] - expected: FAIL - - [min-height length(ex) / values] - expected: FAIL - [background-position length(ex) / values] expected: FAIL - [max-width length(px) / values] - expected: FAIL - [text-indent length(mm) / values] expected: FAIL - [font-size length(mm) / values] - expected: FAIL - - [min-width length(pc) / values] - expected: FAIL - - [letter-spacing length(em) / values] - expected: FAIL - [background-position length(cm) / values] expected: FAIL - [line-height length(em) / values] - expected: FAIL - - [border-bottom-width length(pt) / values] - expected: FAIL - - [word-spacing length(pc) / values] - expected: FAIL - [outline-offset length(in) / values] expected: FAIL - [word-spacing length(in) / values] - expected: FAIL - [outline-width length(pt) / values] expected: FAIL - [border-top-width length(pc) / values] - expected: FAIL - - [border-left-width length(px) / values] - expected: FAIL - - [font-size length(px) / values] - expected: FAIL - - [border-left-width length(cm) / values] - expected: FAIL - - [border-right-width length(px) / values] - expected: FAIL - [outline-width length(in) / values] expected: FAIL - [word-spacing length(pt) / values] - expected: FAIL - [text-indent length(cm) / values] expected: FAIL - [border-right-width length(mm) / values] - expected: FAIL - - [max-width length(in) / values] - expected: FAIL - [outline-color color(rgba) / values] expected: FAIL @@ -329,114 +98,45 @@ [text-indent length(pt) / values] expected: FAIL - [border-right-width length(pt) / values] - expected: FAIL - - [border-left-width length(in) / values] - expected: FAIL - [text-shadow shadow(shadow) / values] expected: FAIL [background-position length(pc) / events] expected: FAIL - [max-height length(in) / values] - expected: FAIL - - [line-height length(in) / values] - expected: FAIL - - [border-bottom-width length(em) / values] - expected: FAIL - [outline-width length(ex) / values] expected: FAIL - [font-size length(pc) / values] - expected: FAIL - [background-position length(in) / values] expected: FAIL - [min-width length(in) / values] - expected: FAIL - [outline-width length(cm) / values] expected: FAIL - [max-width percentage(%) / values] - expected: FAIL - - [max-width length(ex) / values] - expected: FAIL - - [letter-spacing length(ex) / values] - expected: FAIL - - [border-left-width length(ex) / values] - expected: FAIL - [outline-width length(mm) / values] expected: FAIL - [border-left-width length(pc) / values] - expected: FAIL - [outline-width length(pc) / values] expected: FAIL - [word-spacing percentage(%) / values] - expected: FAIL - - [font-weight font-weight(numeric) / values] - expected: FAIL - [vertical-align length(px) / values] expected: FAIL - [letter-spacing length(px) / values] - expected: FAIL - - [max-width length(pt) / values] - expected: FAIL - - [line-height percentage(%) / values] - expected: FAIL - [text-indent length(in) / values] expected: FAIL [text-indent length(em) / values] expected: FAIL - [border-top-width length(pt) / values] - expected: FAIL - - [min-height length(mm) / values] - expected: FAIL - [background-position length(pc) / values] expected: FAIL [background-position percentage(%) / values] expected: FAIL - [max-height length(cm) / values] - expected: FAIL - [outline-width length(em) / values] expected: FAIL - [border-right-width length(em) / values] - expected: FAIL - - [max-height length(em) / values] - expected: FAIL - - [max-width length(cm) / values] - expected: FAIL - [outline-offset length(em) / values] expected: FAIL @@ -446,66 +146,138 @@ [background-position length(mm) / events] expected: FAIL - [border-top-width length(ex) / values] - expected: FAIL - - [border-right-width length(in) / values] - expected: FAIL - - [z-index integer(integer) / values] - expected: FAIL - - [border-left-width length(pt) / values] - expected: FAIL - [vertical-align length(mm) / values] expected: FAIL - [border-bottom-width length(pc) / values] - expected: FAIL - [text-indent percentage(%) / values] expected: FAIL - [line-height length(pc) / values] - expected: FAIL - [background-position length(em) / values] expected: FAIL - [border-top-width length(in) / values] - expected: FAIL - - [border-bottom-width length(ex) / values] - expected: FAIL - - [min-height length(in) / values] - expected: FAIL - [outline-offset length(pc) / values] expected: FAIL - [max-height length(pc) / values] - expected: FAIL - - [background-color color(rgba) / values] - expected: FAIL - - [min-height length(pt) / values] - expected: FAIL - - [word-spacing length(cm) / values] - expected: FAIL - [background-position percentage(%) / events] expected: FAIL - [max-width length(pc) / values] - expected: FAIL - [background-position length(px) / events] expected: FAIL - [min-width length(ex) / values] + [outline-width length(pc) / events] + expected: FAIL + + [text-indent percentage(%) / events] + expected: FAIL + + [vertical-align length(px) / events] + expected: FAIL + + [text-shadow shadow(shadow) / events] + expected: FAIL + + [outline-offset length(mm) / events] + expected: FAIL + + [vertical-align length(in) / events] + expected: FAIL + + [text-indent length(mm) / events] + expected: FAIL + + [vertical-align length(em) / events] + expected: FAIL + + [vertical-align length(cm) / events] + expected: FAIL + + [text-indent length(ex) / events] + expected: FAIL + + [outline-offset length(cm) / events] + expected: FAIL + + [vertical-align length(mm) / events] + expected: FAIL + + [outline-offset length(em) / events] + expected: FAIL + + [vertical-align length(ex) / events] + expected: FAIL + + [outline-width length(em) / events] + expected: FAIL + + [text-indent length(in) / events] + expected: FAIL + + [visibility visibility(keyword) / events] + expected: FAIL + + [text-indent length(pc) / events] + expected: FAIL + + [text-indent length(em) / events] + expected: FAIL + + [text-indent length(px) / events] + expected: FAIL + + [text-indent length(cm) / events] + expected: FAIL + + [visibility visibility(keyword) / values] + expected: FAIL + + [outline-width length(cm) / events] + expected: FAIL + + [clip rectangle(rectangle) / events] + expected: FAIL + + [text-indent length(pt) / events] + expected: FAIL + + [outline-width length(ex) / events] + expected: FAIL + + [outline-width length(mm) / events] + expected: FAIL + + [vertical-align percentage(%) / events] + expected: FAIL + + [outline-width length(pt) / events] + expected: FAIL + + [outline-color color(rgba) / events] + expected: FAIL + + [outline-width length(in) / events] + expected: FAIL + + [outline-offset length(ex) / events] + expected: FAIL + + [vertical-align length(pc) / events] + expected: FAIL + + [vertical-align length(pt) / events] + expected: FAIL + + [outline-offset length(pt) / events] + expected: FAIL + + [outline-offset length(px) / events] + expected: FAIL + + [outline-offset length(in) / events] + expected: FAIL + + [outline-width length(px) / events] + expected: FAIL + + [outline-offset length(pc) / events] expected: FAIL diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-inherit-003.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-inherit-003.html.ini new file mode 100644 index 00000000000..2e184ee1047 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/properties-value-inherit-003.html.ini @@ -0,0 +1,106 @@ +[properties-value-inherit-003.html] + [line-height length-em(em) / events] + expected: FAIL + + [padding-left length-em(em) / events] + expected: FAIL + + [min-width length-em(em) / events] + expected: FAIL + + [right length-em(em) / events] + expected: FAIL + + [max-width length-em(em) / events] + expected: FAIL + + [text-indent length-em(em) / events] + expected: FAIL + + [margin-left length-em(em) / events] + expected: FAIL + + [word-spacing length-em(em) / events] + expected: FAIL + + [letter-spacing length-em(em) / events] + expected: FAIL + + [width length-em(em) / events] + expected: FAIL + + [padding-top length-em(em) / events] + expected: FAIL + + [margin-right length-em(em) / events] + expected: FAIL + + [vertical-align length-em(em) / values] + expected: FAIL + + [max-height length-em(em) / events] + expected: FAIL + + [padding-bottom length-em(em) / events] + expected: FAIL + + [border-top-width length-em(em) / events] + expected: FAIL + + [height length-em(em) / events] + expected: FAIL + + [border-bottom-width length-em(em) / events] + expected: FAIL + + [background-position length-em(em) / events] + expected: FAIL + + [border-left-width length-em(em) / events] + expected: FAIL + + [margin-bottom length-em(em) / events] + expected: FAIL + + [min-height length-em(em) / events] + expected: FAIL + + [outline-width length-em(em) / values] + expected: FAIL + + [outline-offset length-em(em) / events] + expected: FAIL + + [padding-right length-em(em) / events] + expected: FAIL + + [background-position length-em(em) / values] + expected: FAIL + + [top length-em(em) / events] + expected: FAIL + + [outline-width length-em(em) / events] + expected: FAIL + + [bottom length-em(em) / events] + expected: FAIL + + [text-indent length-em(em) / values] + expected: FAIL + + [outline-offset length-em(em) / values] + expected: FAIL + + [vertical-align length-em(em) / events] + expected: FAIL + + [left length-em(em) / events] + expected: FAIL + + [margin-top length-em(em) / events] + expected: FAIL + + [border-right-width length-em(em) / events] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/pseudo-elements-001.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/pseudo-elements-001.html.ini new file mode 100644 index 00000000000..d43cd5b241b --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/pseudo-elements-001.html.ini @@ -0,0 +1,13 @@ +[pseudo-elements-001.html] + [transition padding-left on :before / values] + expected: FAIL + + [transition padding-left on :after, changing content / values] + expected: FAIL + + [transition padding-left on :before, changing content / values] + expected: FAIL + + [transition padding-left on :after / values] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/pseudo-elements-002.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/pseudo-elements-002.html.ini new file mode 100644 index 00000000000..c34f9503bb1 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/pseudo-elements-002.html.ini @@ -0,0 +1,4 @@ +[pseudo-elements-002.html] + [Check that transitions run on a pseudo element whose ancestor changes display type.] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/transition-property-002.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/transition-property-002.html.ini new file mode 100644 index 00000000000..8df01fd83cb --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/transition-property-002.html.ini @@ -0,0 +1,7 @@ +[transition-property-002.html] + [parse 'none, all'] + expected: FAIL + + [parse 'all, none'] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/transition-reparented.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/transition-reparented.html.ini new file mode 100644 index 00000000000..b2d796167e0 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/transition-reparented.html.ini @@ -0,0 +1,4 @@ +[transition-reparented.html] + [When an element is reparented, any CSS Transition on it should be cancelled] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/css-transitions/zero-duration-multiple-transition.html.ini b/tests/wpt/metadata-layout-2020/css/css-transitions/zero-duration-multiple-transition.html.ini new file mode 100644 index 00000000000..61f15d173c0 --- /dev/null +++ b/tests/wpt/metadata-layout-2020/css/css-transitions/zero-duration-multiple-transition.html.ini @@ -0,0 +1,4 @@ +[zero-duration-multiple-transition.html] + [transition-duration of 0 prevents earlier transitions with the same property from starting.] + expected: FAIL + diff --git a/tests/wpt/metadata-layout-2020/css/cssom/getComputedStyle-animations-replaced-into-ib-split.html.ini b/tests/wpt/metadata-layout-2020/css/cssom/getComputedStyle-animations-replaced-into-ib-split.html.ini deleted file mode 100644 index ed664c1c84d..00000000000 --- a/tests/wpt/metadata-layout-2020/css/cssom/getComputedStyle-animations-replaced-into-ib-split.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[getComputedStyle-animations-replaced-into-ib-split.html] - [getComputedStyle() should return animation styles for nodes just inserted into the document, even if they're in an IB-split] - expected: FAIL - diff --git a/tests/wpt/metadata-layout-2020/css/filter-effects/animation/filter-interpolation-001.html.ini b/tests/wpt/metadata-layout-2020/css/filter-effects/animation/filter-interpolation-001.html.ini index 039b7eaef50..0f8abff7b48 100644 --- a/tests/wpt/metadata-layout-2020/css/filter-effects/animation/filter-interpolation-001.html.ini +++ b/tests/wpt/metadata-layout-2020/css/filter-effects/animation/filter-interpolation-001.html.ini @@ -107,288 +107,18 @@ [Web Animations: property from [unset\] to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(30deg)\]] expected: FAIL - [CSS Transitions: property from [hue-rotate(80deg) blur(6mm)\] to [hue-rotate(100grad) blur(1cm)\] at (-0.5) should be [hue-rotate(75deg) blur(4mm)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [hue-rotate(80deg) blur(6mm)\] to [hue-rotate(100grad) blur(1cm)\] at (0.25) should be [hue-rotate(82.5deg) blur(7mm)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(30deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [hue-rotate(0deg) blur(6px)\] to [hue-rotate(180deg) blur(10px)\] at (-0.5) should be [hue-rotate(-90deg) blur(4px)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [hue-rotate(20deg)\] at (0) should be [hue-rotate(10deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [hue-rotate(20deg)\] at (0) should be [hue-rotate(10deg)\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [hue-rotate(20deg)\] at (0.3) should be [hue-rotate(27deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [hue-rotate(0deg) blur(6px)\] to [hue-rotate(180deg) blur(10px)\] at (0) should be [hue-rotate(0deg) blur(6px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [hue-rotate(20deg)\] at (0.6) should be [hue-rotate(16deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [hue-rotate(20deg)\] at (-0.5) should be [hue-rotate(5deg)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [hue-rotate(20deg)\] at (0.6) should be [hue-rotate(12deg)\]] - expected: FAIL - - [CSS Animations: property from [hue-rotate(80deg) blur(6mm)\] to [hue-rotate(100grad) blur(1cm)\] at (0) should be [hue-rotate(80deg) blur(6mm)\]] - expected: FAIL - - [CSS Transitions: property from [hue-rotate(0deg) blur(6px)\] to [hue-rotate(180deg) blur(10px)\] at (0) should be [hue-rotate(0deg) blur(6px)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [hue-rotate(20deg)\] at (0.3) should be [hue-rotate(6deg)\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [hue-rotate(20deg)\] at (0) should be [hue-rotate(30deg)\]] expected: FAIL - [CSS Transitions: property from [unset\] to [hue-rotate(20deg)\] at (0.3) should be [hue-rotate(6deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(25deg)\]] - expected: FAIL - - [CSS Transitions: property from [hue-rotate(80deg) blur(6mm)\] to [hue-rotate(100grad) blur(1cm)\] at (0.25) should be [hue-rotate(82.5deg) blur(7mm)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [hue-rotate(80deg) blur(6mm)\] to [hue-rotate(100grad) blur(1cm)\] at (0) should be [hue-rotate(80deg) blur(6mm)\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [hue-rotate(20deg)\] at (0.3) should be [hue-rotate(27deg)\]] expected: FAIL - [CSS Transitions with transition: all: property from [hue-rotate(80deg) blur(6mm)\] to [hue-rotate(100grad) blur(1cm)\] at (1.5) should be [hue-rotate(95deg) blur(12mm)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [hue-rotate(20deg)\] at (0) should be [hue-rotate(0deg)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [hue-rotate(20deg)\] at (-0.5) should be [hue-rotate(-10deg)\]] - expected: FAIL - - [CSS Animations: property from [hue-rotate(80deg) blur(6mm)\] to [hue-rotate(100grad) blur(1cm)\] at (1.5) should be [hue-rotate(95deg) blur(12mm)\]] - expected: FAIL - - [CSS Animations: property from [inherit\] to [hue-rotate(20deg)\] at (1) should be [hue-rotate(20deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [hue-rotate(20deg)\] at (-0.5) should be [hue-rotate(-10deg)\]] - expected: FAIL - - [CSS Transitions: property from [hue-rotate(0deg) blur(6px)\] to [hue-rotate(180deg) blur(10px)\] at (0.25) should be [hue-rotate(45deg) blur(7px)\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [hue-rotate(20deg)\] at (-0.5) should be [hue-rotate(35deg)\]] expected: FAIL - [CSS Animations: property from neutral to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(25deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [hue-rotate(0deg) blur(6px)\] to [hue-rotate(180deg) blur(10px)\] at (1.5) should be [hue-rotate(270deg) blur(12px)\]] - expected: FAIL - - [CSS Transitions: property from [hue-rotate(80deg) blur(6mm)\] to [hue-rotate(100grad) blur(1cm)\] at (1.5) should be [hue-rotate(95deg) blur(12mm)\]] - expected: FAIL - - [CSS Animations: property from [hue-rotate(80deg) blur(6mm)\] to [hue-rotate(100grad) blur(1cm)\] at (1) should be [hue-rotate(90deg) blur(10mm)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [hue-rotate(20deg)\] at (0.6) should be [hue-rotate(12deg)\]] - expected: FAIL - - [CSS Animations: property from neutral to [hue-rotate(20deg)\] at (0.6) should be [hue-rotate(16deg)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [hue-rotate(20deg)\] at (0) should be [hue-rotate(0deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [hue-rotate(20deg)\] at (0.3) should be [hue-rotate(6deg)\]] - expected: FAIL - - [CSS Animations: property from [hue-rotate(0deg) blur(6px)\] to [hue-rotate(180deg) blur(10px)\] at (0.5) should be [hue-rotate(90deg) blur(8px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [hue-rotate(20deg)\] at (0.6) should be [hue-rotate(12deg)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [hue-rotate(20deg)\] at (-0.5) should be [hue-rotate(-10deg)\]] - expected: FAIL - - [CSS Animations: property from [hue-rotate(80deg) blur(6mm)\] to [hue-rotate(100grad) blur(1cm)\] at (0.25) should be [hue-rotate(82.5deg) blur(7mm)\]] - expected: FAIL - - [CSS Animations: property from [hue-rotate(80deg) blur(6mm)\] to [hue-rotate(100grad) blur(1cm)\] at (-0.5) should be [hue-rotate(75deg) blur(4mm)\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(15deg)\]] expected: FAIL - [CSS Transitions with transition: all: property from [unset\] to [hue-rotate(20deg)\] at (0.6) should be [hue-rotate(12deg)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [hue-rotate(20deg)\] at (0.6) should be [hue-rotate(12deg)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [hue-rotate(20deg)\] at (-0.5) should be [hue-rotate(5deg)\]] - expected: FAIL - - [CSS Transitions: property from [hue-rotate(0deg) blur(6px)\] to [hue-rotate(180deg) blur(10px)\] at (-0.5) should be [hue-rotate(-90deg) blur(4px)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [hue-rotate(20deg)\] at (0.3) should be [hue-rotate(6deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(30deg)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [hue-rotate(20deg)\] at (0) should be [hue-rotate(0deg)\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [hue-rotate(20deg)\] at (-0.5) should be [hue-rotate(-10deg)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [hue-rotate(20deg)\] at (0.3) should be [hue-rotate(13deg)\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [hue-rotate(20deg)\] at (0.6) should be [hue-rotate(24deg)\]] - expected: FAIL - - [CSS Animations: property from [hue-rotate(0deg) blur(6px)\] to [hue-rotate(180deg) blur(10px)\] at (0.25) should be [hue-rotate(45deg) blur(7px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [hue-rotate(0deg) blur(6px)\] to [hue-rotate(180deg) blur(10px)\] at (0.5) should be [hue-rotate(90deg) blur(8px)\]] - expected: FAIL - - [CSS Animations: property from neutral to [hue-rotate(20deg)\] at (0.3) should be [hue-rotate(13deg)\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(30deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [hue-rotate(80deg) blur(6mm)\] to [hue-rotate(100grad) blur(1cm)\] at (0.5) should be [hue-rotate(85deg) blur(8mm)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [hue-rotate(20deg)\] at (0.6) should be [hue-rotate(24deg)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(30deg)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [hue-rotate(20deg)\] at (-0.5) should be [hue-rotate(-10deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(15deg)\]] - expected: FAIL - - [CSS Animations: property from [hue-rotate(0deg) blur(6px)\] to [hue-rotate(180deg) blur(10px)\] at (1.5) should be [hue-rotate(270deg) blur(12px)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [hue-rotate(20deg)\] at (1) should be [hue-rotate(20deg)\]] - expected: FAIL - [CSS Animations: property from [inherit\] to [hue-rotate(20deg)\] at (0.6) should be [hue-rotate(24deg)\]] expected: FAIL - [CSS Transitions with transition: all: property from [unset\] to [hue-rotate(20deg)\] at (0.3) should be [hue-rotate(6deg)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(25deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from neutral to [hue-rotate(20deg)\] at (0.3) should be [hue-rotate(13deg)\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [hue-rotate(20deg)\] at (0.6) should be [hue-rotate(12deg)\]] - expected: FAIL - - [CSS Animations: property from neutral to [hue-rotate(20deg)\] at (-0.5) should be [hue-rotate(5deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [hue-rotate(80deg) blur(6mm)\] to [hue-rotate(100grad) blur(1cm)\] at (-0.5) should be [hue-rotate(75deg) blur(4mm)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [hue-rotate(20deg)\] at (0.3) should be [hue-rotate(6deg)\]] - expected: FAIL - - [CSS Transitions: property from [hue-rotate(80deg) blur(6mm)\] to [hue-rotate(100grad) blur(1cm)\] at (0.5) should be [hue-rotate(85deg) blur(8mm)\]] - expected: FAIL - - [CSS Transitions: property from neutral to [hue-rotate(20deg)\] at (0.6) should be [hue-rotate(16deg)\]] - expected: FAIL - - [CSS Animations: property from [hue-rotate(80deg) blur(6mm)\] to [hue-rotate(100grad) blur(1cm)\] at (0.5) should be [hue-rotate(85deg) blur(8mm)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [hue-rotate(20deg)\] at (0) should be [hue-rotate(0deg)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(30deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [hue-rotate(20deg)\] at (-0.5) should be [hue-rotate(-10deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [unset\] to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(30deg)\]] - expected: FAIL - - [CSS Animations: property from [hue-rotate(0deg) blur(6px)\] to [hue-rotate(180deg) blur(10px)\] at (-0.5) should be [hue-rotate(-90deg) blur(4px)\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [hue-rotate(20deg)\] at (0) should be [hue-rotate(30deg)\]] - expected: FAIL - - [CSS Animations: property from [hue-rotate(0deg) blur(6px)\] to [hue-rotate(180deg) blur(10px)\] at (0) should be [hue-rotate(0deg) blur(6px)\]] - expected: FAIL - - [CSS Transitions: property from [hue-rotate(80deg) blur(6mm)\] to [hue-rotate(100grad) blur(1cm)\] at (0) should be [hue-rotate(80deg) blur(6mm)\]] - expected: FAIL - - [CSS Transitions: property from [unset\] to [hue-rotate(20deg)\] at (0) should be [hue-rotate(0deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [hue-rotate(20deg)\] at (0) should be [hue-rotate(30deg)\]] - expected: FAIL - - [CSS Transitions: property from [hue-rotate(0deg) blur(6px)\] to [hue-rotate(180deg) blur(10px)\] at (0.5) should be [hue-rotate(90deg) blur(8px)\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [hue-rotate(20deg)\] at (-0.5) should be [hue-rotate(35deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [hue-rotate(20deg)\] at (0.3) should be [hue-rotate(27deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [hue-rotate(0deg) blur(6px)\] to [hue-rotate(180deg) blur(10px)\] at (0.25) should be [hue-rotate(45deg) blur(7px)\]] - expected: FAIL - - [CSS Animations: property from [hue-rotate(0deg) blur(6px)\] to [hue-rotate(180deg) blur(10px)\] at (1) should be [hue-rotate(180deg) blur(10px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [hue-rotate(20deg)\] at (0) should be [hue-rotate(0deg)\]] - expected: FAIL - - [CSS Animations: property from [unset\] to [hue-rotate(20deg)\] at (1) should be [hue-rotate(20deg)\]] - expected: FAIL - - [CSS Animations: property from neutral to [hue-rotate(20deg)\] at (1) should be [hue-rotate(20deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [inherit\] to [hue-rotate(20deg)\] at (-0.5) should be [hue-rotate(35deg)\]] - expected: FAIL - - [CSS Transitions: property from [inherit\] to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(15deg)\]] - expected: FAIL - - [CSS Transitions: property from [hue-rotate(0deg) blur(6px)\] to [hue-rotate(180deg) blur(10px)\] at (1.5) should be [hue-rotate(270deg) blur(12px)\]] - expected: FAIL - diff --git a/tests/wpt/metadata-layout-2020/css/filter-effects/animation/filter-interpolation-002.html.ini b/tests/wpt/metadata-layout-2020/css/filter-effects/animation/filter-interpolation-002.html.ini index c6651f7ed25..dd700321900 100644 --- a/tests/wpt/metadata-layout-2020/css/filter-effects/animation/filter-interpolation-002.html.ini +++ b/tests/wpt/metadata-layout-2020/css/filter-effects/animation/filter-interpolation-002.html.ini @@ -164,222 +164,24 @@ [CSS Transitions with transition: all: property from [drop-shadow(0px 0px 0px currentcolor)\] to [drop-shadow(20px 10px green)\] at (0) should be [drop-shadow(0px 0px 0px currentcolor)\]] expected: FAIL - [CSS Transitions with transition: all: property from [none\] to [opacity(0.5) hue-rotate(180deg)\] at (0) should be [opacity(1) hue-rotate(0deg)\]] - expected: FAIL - - [CSS Transitions: property from [blur(6px)\] to [blur(10px) hue-rotate(180deg)\] at (0.5) should be [blur(8px) hue-rotate(90deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [hue-rotate(180deg)\] at (0.5) should be [hue-rotate(90deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [hue-rotate(180deg)\] to [none\] at (-0.5) should be [hue-rotate(270deg)\]] - expected: FAIL - - [CSS Animations: property from [blur(6px)\] to [blur(10px) hue-rotate(180deg)\] at (1.5) should be [blur(12px) hue-rotate(270deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [blur(6px)\] to [blur(10px) hue-rotate(180deg)\] at (0) should be [blur(6px) hue-rotate(0deg)\]] - expected: FAIL - - [CSS Transitions: property from [blur(6px)\] to [blur(10px) hue-rotate(180deg)\] at (-0.5) should be [blur(4px) hue-rotate(-90deg)\]] - expected: FAIL - - [CSS Animations: property from [blur(6px)\] to [blur(10px) hue-rotate(180deg)\] at (1) should be [blur(10px) hue-rotate(180deg)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [opacity(0.5) hue-rotate(180deg)\] at (0) should be [opacity(1) hue-rotate(0deg)\]] - expected: FAIL - - [CSS Animations: property from [hue-rotate(180deg)\] to [none\] at (0.5) should be [hue-rotate(90deg)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [opacity(0.5) hue-rotate(180deg)\] at (-0.5) should be [opacity(1) hue-rotate(-90deg)\]] - expected: FAIL - [CSS Animations: property from [grayscale(0) blur(0px)\] to [blur(10px)\] at (0.6) should be [blur(10px)\]] expected: FAIL - [CSS Transitions with transition: all: property from [none\] to [opacity(0.5) hue-rotate(180deg)\] at (0.5) should be [opacity(0.75) hue-rotate(90deg)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [hue-rotate(180deg)\] at (0.5) should be [hue-rotate(90deg)\]] - expected: FAIL - - [CSS Transitions: property from [hue-rotate(180deg)\] to [none\] at (0.5) should be [hue-rotate(90deg)\]] - expected: FAIL - - [CSS Transitions: property from [blur(6px)\] to [blur(10px) hue-rotate(180deg)\] at (0.25) should be [blur(7px) hue-rotate(45deg)\]] - expected: FAIL - - [CSS Transitions: property from [hue-rotate(180deg)\] to [none\] at (1.5) should be [hue-rotate(-90deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [hue-rotate(180deg)\] to [none\] at (1) should be [hue-rotate(0deg)\]] - expected: FAIL - - [CSS Animations: property from [blur(6px)\] to [blur(10px) hue-rotate(180deg)\] at (0) should be [blur(6px) hue-rotate(0deg)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [hue-rotate(180deg)\] at (0.5) should be [hue-rotate(90deg)\]] - expected: FAIL - - [CSS Animations: property from [blur(6px)\] to [blur(10px) hue-rotate(180deg)\] at (0.5) should be [blur(8px) hue-rotate(90deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [hue-rotate(180deg)\] at (0.25) should be [hue-rotate(45deg)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [hue-rotate(180deg)\] at (-0.5) should be [hue-rotate(-90deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [hue-rotate(180deg)\] to [none\] at (0) should be [hue-rotate(180deg)\]] - expected: FAIL - [CSS Animations: property from [grayscale(0) blur(0px)\] to [blur(10px)\] at (1.5) should be [blur(10px)\]] expected: FAIL - [CSS Transitions: property from [hue-rotate(180deg)\] to [none\] at (1) should be [hue-rotate(0deg)\]] - expected: FAIL - - [CSS Animations: property from [hue-rotate(180deg)\] to [none\] at (1) should be [hue-rotate(0deg)\]] - expected: FAIL - - [CSS Transitions: property from [hue-rotate(180deg)\] to [none\] at (0) should be [hue-rotate(180deg)\]] - expected: FAIL - - [CSS Transitions: property from [blur(6px)\] to [blur(10px) hue-rotate(180deg)\] at (0) should be [blur(6px) hue-rotate(0deg)\]] - expected: FAIL - - [CSS Transitions: property from [hue-rotate(180deg)\] to [none\] at (-0.5) should be [hue-rotate(270deg)\]] - expected: FAIL - [CSS Animations: property from [grayscale(0) blur(0px)\] to [blur(10px)\] at (0.3) should be [grayscale(0) blur(0px)\]] expected: FAIL [CSS Animations: property from [grayscale(0) blur(0px)\] to [blur(10px)\] at (0) should be [grayscale(0) blur(0px)\]] expected: FAIL - [CSS Transitions with transition: all: property from [hue-rotate(180deg)\] to [none\] at (1.5) should be [hue-rotate(-90deg)\]] - expected: FAIL - - [CSS Animations: property from [blur(6px)\] to [blur(10px) hue-rotate(180deg)\] at (-0.5) should be [blur(4px) hue-rotate(-90deg)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [opacity(0.5) hue-rotate(180deg)\] at (0) should be [opacity(1) hue-rotate(0deg)\]] - expected: FAIL - [CSS Animations: property from [grayscale(0) blur(0px)\] to [blur(10px)\] at (-0.3) should be [grayscale(0) blur(0px)\]] expected: FAIL - [CSS Transitions: property from [hue-rotate(180deg)\] to [none\] at (0.25) should be [hue-rotate(135deg)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [hue-rotate(180deg)\] at (0) should be [hue-rotate(0deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [opacity(0.5) hue-rotate(180deg)\] at (-0.5) should be [opacity(1) hue-rotate(-90deg)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [hue-rotate(180deg)\] at (1) should be [hue-rotate(180deg)\]] - expected: FAIL - [CSS Animations: property from [grayscale(0) blur(0px)\] to [blur(10px)\] at (0.5) should be [blur(10px)\]] expected: FAIL - [CSS Animations: property from [none\] to [opacity(0.5) hue-rotate(180deg)\] at (1.5) should be [opacity(0.25) hue-rotate(270deg)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [opacity(0.5) hue-rotate(180deg)\] at (-0.5) should be [opacity(1) hue-rotate(-90deg)\]] - expected: FAIL - - [CSS Animations: property from [hue-rotate(180deg)\] to [none\] at (1.5) should be [hue-rotate(-90deg)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [opacity(0.5) hue-rotate(180deg)\] at (1) should be [opacity(0.5) hue-rotate(180deg)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [hue-rotate(180deg)\] at (0.25) should be [hue-rotate(45deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [opacity(0.5) hue-rotate(180deg)\] at (1.5) should be [opacity(0.25) hue-rotate(270deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [blur(6px)\] to [blur(10px) hue-rotate(180deg)\] at (-0.5) should be [blur(4px) hue-rotate(-90deg)\]] - expected: FAIL - - [CSS Animations: property from [hue-rotate(180deg)\] to [none\] at (0) should be [hue-rotate(180deg)\]] - expected: FAIL - - [CSS Animations: property from [hue-rotate(180deg)\] to [none\] at (-0.5) should be [hue-rotate(270deg)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [opacity(0.5) hue-rotate(180deg)\] at (0.25) should be [opacity(0.875) hue-rotate(45deg)\]] - expected: FAIL - [CSS Animations: property from [grayscale(0) blur(0px)\] to [blur(10px)\] at (1) should be [blur(10px)\]] expected: FAIL - [CSS Animations: property from [none\] to [hue-rotate(180deg)\] at (0.25) should be [hue-rotate(45deg)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [opacity(0.5) hue-rotate(180deg)\] at (0.5) should be [opacity(0.75) hue-rotate(90deg)\]] - expected: FAIL - - [CSS Transitions: property from [blur(6px)\] to [blur(10px) hue-rotate(180deg)\] at (1.5) should be [blur(12px) hue-rotate(270deg)\]] - expected: FAIL - - [CSS Animations: property from [hue-rotate(180deg)\] to [none\] at (0.25) should be [hue-rotate(135deg)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [opacity(0.5) hue-rotate(180deg)\] at (1.5) should be [opacity(0.25) hue-rotate(270deg)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [opacity(0.5) hue-rotate(180deg)\] at (0.25) should be [opacity(0.875) hue-rotate(45deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [hue-rotate(180deg)\] at (-0.5) should be [hue-rotate(-90deg)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [opacity(0.5) hue-rotate(180deg)\] at (0.5) should be [opacity(0.75) hue-rotate(90deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [hue-rotate(180deg)\] to [none\] at (0.25) should be [hue-rotate(135deg)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [hue-rotate(180deg)\] at (1.5) should be [hue-rotate(270deg)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [hue-rotate(180deg)\] at (-0.5) should be [hue-rotate(-90deg)\]] - expected: FAIL - - [CSS Animations: property from [blur(6px)\] to [blur(10px) hue-rotate(180deg)\] at (0.25) should be [blur(7px) hue-rotate(45deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [hue-rotate(180deg)\] at (0) should be [hue-rotate(0deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [blur(6px)\] to [blur(10px) hue-rotate(180deg)\] at (1.5) should be [blur(12px) hue-rotate(270deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [hue-rotate(180deg)\] to [none\] at (0.5) should be [hue-rotate(90deg)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [hue-rotate(180deg)\] at (0) should be [hue-rotate(0deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [hue-rotate(180deg)\] at (1.5) should be [hue-rotate(270deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [blur(6px)\] to [blur(10px) hue-rotate(180deg)\] at (0.25) should be [blur(7px) hue-rotate(45deg)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [hue-rotate(180deg)\] at (1.5) should be [hue-rotate(270deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [opacity(0.5) hue-rotate(180deg)\] at (0.25) should be [opacity(0.875) hue-rotate(45deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [blur(6px)\] to [blur(10px) hue-rotate(180deg)\] at (0.5) should be [blur(8px) hue-rotate(90deg)\]] - expected: FAIL - diff --git a/tests/wpt/metadata-layout-2020/css/filter-effects/animation/filter-interpolation-003.html.ini b/tests/wpt/metadata-layout-2020/css/filter-effects/animation/filter-interpolation-003.html.ini index 60048db30db..edbf0e81895 100644 --- a/tests/wpt/metadata-layout-2020/css/filter-effects/animation/filter-interpolation-003.html.ini +++ b/tests/wpt/metadata-layout-2020/css/filter-effects/animation/filter-interpolation-003.html.ini @@ -377,393 +377,3 @@ [Web Animations: property from [none\] to [hue-rotate(360deg)\] at (1) should be [hue-rotate(360deg)\]] expected: FAIL - [CSS Animations: property from [contrast(0)\] to [none\] at (0.5) should be [contrast(0.5)\]] - expected: FAIL - - [CSS Animations: property from [contrast(0)\] to [none\] at (1) should be [contrast(1)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [blur(10px)\] at (0) should be [blur(0px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [brightness(0)\] to [none\] at (0) should be [brightness(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [hue-rotate(360deg)\] at (0) should be [hue-rotate(0deg)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [grayscale(1)\] at (1) should be [grayscale(1)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [blur(10px)\] at (0.5) should be [blur(5px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [saturate(0)\] to [none\] at (1.5) should be [saturate(1.5)\]] - expected: FAIL - - [CSS Transitions: property from [brightness(0)\] to [none\] at (0.5) should be [brightness(0.5)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [blur(10px)\] at (1.5) should be [blur(15px)\]] - expected: FAIL - - [CSS Transitions: property from [contrast(0)\] to [none\] at (-1) should be [contrast(0)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [sepia(1)\] at (0.5) should be [sepia(0.5)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [opacity(0)\] to [none\] at (1) should be [opacity(1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [invert(1)\] at (0.5) should be [invert(0.5)\]] - expected: FAIL - - [CSS Transitions: property from [opacity(0)\] to [none\] at (0.5) should be [opacity(0.5)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [sepia(1)\] at (1.5) should be [sepia(1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [grayscale(1)\] at (0.5) should be [grayscale(0.5)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [grayscale(1)\] at (0.5) should be [grayscale(0.5)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [saturate(0)\] to [none\] at (0) should be [saturate(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [contrast(0)\] to [none\] at (1) should be [contrast(1)\]] - expected: FAIL - - [CSS Transitions: property from [saturate(0)\] to [none\] at (1) should be [saturate(1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [saturate(0)\] to [none\] at (-1) should be [saturate(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [brightness(0)\] to [none\] at (0.5) should be [brightness(0.5)\]] - expected: FAIL - - [CSS Animations: property from [brightness(0)\] to [none\] at (-1) should be [brightness(0)\]] - expected: FAIL - - [CSS Animations: property from [brightness(0)\] to [none\] at (1.5) should be [brightness(1.5)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [hue-rotate(360deg)\] at (-1) should be [hue-rotate(-360deg)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [sepia(1)\] at (0) should be [sepia(0)\]] - expected: FAIL - - [CSS Transitions: property from [saturate(0)\] to [none\] at (1.5) should be [saturate(1.5)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [sepia(1)\] at (0) should be [sepia(0)\]] - expected: FAIL - - [CSS Animations: property from [brightness(0)\] to [none\] at (1) should be [brightness(1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [brightness(0)\] to [none\] at (1.5) should be [brightness(1.5)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [hue-rotate(360deg)\] at (0) should be [hue-rotate(0deg)\]] - expected: FAIL - - [CSS Transitions: property from [brightness(0)\] to [none\] at (1) should be [brightness(1)\]] - expected: FAIL - - [CSS Transitions: property from [opacity(0)\] to [none\] at (1) should be [opacity(1)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [invert(1)\] at (-1) should be [invert(0)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [hue-rotate(360deg)\] at (-1) should be [hue-rotate(-360deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [sepia(1)\] at (-1) should be [sepia(0)\]] - expected: FAIL - - [CSS Animations: property from [brightness(0)\] to [none\] at (0) should be [brightness(0)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [blur(10px)\] at (1) should be [blur(10px)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [invert(1)\] at (0) should be [invert(0)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [blur(10px)\] at (0.5) should be [blur(5px)\]] - expected: FAIL - - [CSS Animations: property from [saturate(0)\] to [none\] at (1.5) should be [saturate(1.5)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [sepia(1)\] at (-1) should be [sepia(0)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [blur(10px)\] at (-1) should be [blur(0px)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [sepia(1)\] at (0) should be [sepia(0)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [invert(1)\] at (-1) should be [invert(0)\]] - expected: FAIL - - [CSS Animations: property from [opacity(0)\] to [none\] at (1) should be [opacity(1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [hue-rotate(360deg)\] at (-1) should be [hue-rotate(-360deg)\]] - expected: FAIL - - [CSS Animations: property from [saturate(0)\] to [none\] at (1) should be [saturate(1)\]] - expected: FAIL - - [CSS Animations: property from [saturate(0)\] to [none\] at (-1) should be [saturate(0)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [grayscale(1)\] at (0) should be [grayscale(0)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [blur(10px)\] at (0) should be [blur(0px)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [blur(10px)\] at (-1) should be [blur(0px)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [blur(10px)\] at (1.5) should be [blur(15px)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [sepia(1)\] at (-1) should be [sepia(0)\]] - expected: FAIL - - [CSS Transitions: property from [contrast(0)\] to [none\] at (0.5) should be [contrast(0.5)\]] - expected: FAIL - - [CSS Animations: property from [brightness(0)\] to [none\] at (0.5) should be [brightness(0.5)\]] - expected: FAIL - - [CSS Transitions: property from [opacity(0)\] to [none\] at (-1) should be [opacity(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [opacity(0)\] to [none\] at (-1) should be [opacity(0)\]] - expected: FAIL - - [CSS Transitions: property from [saturate(0)\] to [none\] at (0) should be [saturate(0)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [sepia(1)\] at (0) should be [sepia(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [opacity(0)\] to [none\] at (0) should be [opacity(0)\]] - expected: FAIL - - [CSS Transitions: property from [contrast(0)\] to [none\] at (0) should be [contrast(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [saturate(0)\] to [none\] at (1) should be [saturate(1)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [sepia(1)\] at (1.5) should be [sepia(1)\]] - expected: FAIL - - [CSS Animations: property from [contrast(0)\] to [none\] at (0) should be [contrast(0)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [grayscale(1)\] at (0.5) should be [grayscale(0.5)\]] - expected: FAIL - - [CSS Animations: property from [opacity(0)\] to [none\] at (1.5) should be [opacity(1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [brightness(0)\] to [none\] at (-1) should be [brightness(0)\]] - expected: FAIL - - [CSS Transitions: property from [contrast(0)\] to [none\] at (1) should be [contrast(1)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [sepia(1)\] at (0.5) should be [sepia(0.5)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [saturate(0)\] to [none\] at (0.5) should be [saturate(0.5)\]] - expected: FAIL - - [CSS Animations: property from [opacity(0)\] to [none\] at (0.5) should be [opacity(0.5)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [hue-rotate(360deg)\] at (1.5) should be [hue-rotate(540deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [sepia(1)\] at (0) should be [sepia(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [grayscale(1)\] at (-1) should be [grayscale(0)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [hue-rotate(360deg)\] at (0.5) should be [hue-rotate(180deg)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [hue-rotate(360deg)\] at (1.5) should be [hue-rotate(540deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [blur(10px)\] at (1.5) should be [blur(15px)\]] - expected: FAIL - - [CSS Transitions: property from [opacity(0)\] to [none\] at (1.5) should be [opacity(1)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [sepia(1)\] at (0) should be [sepia(0)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [sepia(1)\] at (0.5) should be [sepia(0.5)\]] - expected: FAIL - - [CSS Transitions: property from [saturate(0)\] to [none\] at (-1) should be [saturate(0)\]] - expected: FAIL - - [CSS Transitions: property from [brightness(0)\] to [none\] at (-1) should be [brightness(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [hue-rotate(360deg)\] at (0.5) should be [hue-rotate(180deg)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [invert(1)\] at (0.5) should be [invert(0.5)\]] - expected: FAIL - - [CSS Transitions: property from [saturate(0)\] to [none\] at (0.5) should be [saturate(0.5)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [invert(1)\] at (1) should be [invert(1)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [hue-rotate(360deg)\] at (0) should be [hue-rotate(0deg)\]] - expected: FAIL - - [CSS Transitions: property from [contrast(0)\] to [none\] at (1.5) should be [contrast(1.5)\]] - expected: FAIL - - [CSS Animations: property from [opacity(0)\] to [none\] at (0) should be [opacity(0)\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [sepia(1)\] at (-1) should be [sepia(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [sepia(1)\] at (0.5) should be [sepia(0.5)\]] - expected: FAIL - - [CSS Transitions: property from [brightness(0)\] to [none\] at (0) should be [brightness(0)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [invert(1)\] at (0) should be [invert(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [invert(1)\] at (0) should be [invert(0)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [grayscale(1)\] at (-1) should be [grayscale(0)\]] - expected: FAIL - - [CSS Animations: property from [contrast(0)\] to [none\] at (-1) should be [contrast(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [brightness(0)\] to [none\] at (1) should be [brightness(1)\]] - expected: FAIL - - [CSS Animations: property from [contrast(0)\] to [none\] at (1.5) should be [contrast(1.5)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [opacity(0)\] to [none\] at (0.5) should be [opacity(0.5)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [grayscale(1)\] at (-1) should be [grayscale(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [contrast(0)\] to [none\] at (1.5) should be [contrast(1.5)\]] - expected: FAIL - - [CSS Transitions: property from [opacity(0)\] to [none\] at (0) should be [opacity(0)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [sepia(1)\] at (-1) should be [sepia(0)\]] - expected: FAIL - - [CSS Transitions: property from [brightness(0)\] to [none\] at (1.5) should be [brightness(1.5)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [contrast(0)\] to [none\] at (0) should be [contrast(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [opacity(0)\] to [none\] at (1.5) should be [opacity(1)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [grayscale(1)\] at (1.5) should be [grayscale(1)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [hue-rotate(360deg)\] at (0.5) should be [hue-rotate(180deg)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [invert(1)\] at (1.5) should be [invert(1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [blur(10px)\] at (0.5) should be [blur(5px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [contrast(0)\] to [none\] at (-1) should be [contrast(0)\]] - expected: FAIL - - [CSS Animations: property from [saturate(0)\] to [none\] at (0) should be [saturate(0)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [sepia(1)\] at (0.5) should be [sepia(0.5)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [sepia(1)\] at (-1) should be [sepia(0)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [grayscale(1)\] at (0) should be [grayscale(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [grayscale(1)\] at (0) should be [grayscale(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [invert(1)\] at (-1) should be [invert(0)\]] - expected: FAIL - - [CSS Animations: property from [opacity(0)\] to [none\] at (-1) should be [opacity(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [blur(10px)\] at (-1) should be [blur(0px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [sepia(1)\] at (0.5) should be [sepia(0.5)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [blur(10px)\] at (0) should be [blur(0px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [none\] to [hue-rotate(360deg)\] at (1.5) should be [hue-rotate(540deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [contrast(0)\] to [none\] at (0.5) should be [contrast(0.5)\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [sepia(1)\] at (1) should be [sepia(1)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [sepia(1)\] at (1) should be [sepia(1)\]] - expected: FAIL - - [CSS Animations: property from [saturate(0)\] to [none\] at (0.5) should be [saturate(0.5)\]] - expected: FAIL - - [CSS Animations: property from [none\] to [hue-rotate(360deg)\] at (1) should be [hue-rotate(360deg)\]] - expected: FAIL - - [CSS Transitions: property from [none\] to [invert(1)\] at (0.5) should be [invert(0.5)\]] - expected: FAIL - diff --git a/tests/wpt/metadata-layout-2020/css/filter-effects/animation/filter-interpolation-004.html.ini b/tests/wpt/metadata-layout-2020/css/filter-effects/animation/filter-interpolation-004.html.ini index ff9b1ccf7ab..869a4191404 100644 --- a/tests/wpt/metadata-layout-2020/css/filter-effects/animation/filter-interpolation-004.html.ini +++ b/tests/wpt/metadata-layout-2020/css/filter-effects/animation/filter-interpolation-004.html.ini @@ -194,330 +194,3 @@ [Web Animations: property from [contrast(0)\] to [contrast()\] at (1) should be [contrast()\]] expected: FAIL - [CSS Transitions: property from [sepia(0)\] to [sepia()\] at (0.5) should be [sepia(0.5)\]] - expected: FAIL - - [CSS Animations: property from [hue-rotate()\] to [hue-rotate(360deg)\] at (-1) should be [hue-rotate(-360deg)\]] - expected: FAIL - - [CSS Animations: property from [contrast(0)\] to [contrast()\] at (0.5) should be [contrast(0.5)\]] - expected: FAIL - - [CSS Animations: property from [blur()\] to [blur(10px)\] at (-1) should be [blur(0px)\]] - expected: FAIL - - [CSS Animations: property from [brightness(0)\] to [brightness()\] at (1) should be [brightness()\]] - expected: FAIL - - [CSS Transitions: property from [contrast(0)\] to [contrast()\] at (-1) should be [contrast(0)\]] - expected: FAIL - - [CSS Animations: property from [brightness(0)\] to [brightness()\] at (-1) should be [brightness(0)\]] - expected: FAIL - - [CSS Animations: property from [saturate(0)\] to [saturate()\] at (0) should be [saturate(0)\]] - expected: FAIL - - [CSS Transitions: property from [blur()\] to [blur(10px)\] at (0.5) should be [blur(5px)\]] - expected: FAIL - - [CSS Transitions: property from [opacity(0)\] to [opacity()\] at (0.5) should be [opacity(0.5)\]] - expected: FAIL - - [CSS Transitions: property from [hue-rotate()\] to [hue-rotate(360deg)\] at (1.5) should be [hue-rotate(540deg)\]] - expected: FAIL - - [CSS Animations: property from [blur()\] to [blur(10px)\] at (1.5) should be [blur(15px)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [contrast(0)\] to [contrast()\] at (0.5) should be [contrast(0.5)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [blur()\] to [blur(10px)\] at (0) should be [blur()\]] - expected: FAIL - - [CSS Animations: property from [contrast(0)\] to [contrast()\] at (1) should be [contrast()\]] - expected: FAIL - - [CSS Animations: property from [invert(0)\] to [invert()\] at (1.5) should be [invert(1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [hue-rotate()\] to [hue-rotate(360deg)\] at (0.5) should be [hue-rotate(180deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [opacity(0)\] to [opacity()\] at (0) should be [opacity(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [invert(0)\] to [invert()\] at (0.5) should be [invert(0.5)\]] - expected: FAIL - - [CSS Animations: property from [saturate(0)\] to [saturate()\] at (-1) should be [saturate(0)\]] - expected: FAIL - - [CSS Animations: property from [grayscale(0)\] to [grayscale()\] at (0) should be [grayscale(0)\]] - expected: FAIL - - [CSS Transitions: property from [saturate(0)\] to [saturate()\] at (0) should be [saturate(0)\]] - expected: FAIL - - [CSS Transitions: property from [sepia(0)\] to [sepia()\] at (0) should be [sepia(0)\]] - expected: FAIL - - [CSS Animations: property from [invert(0)\] to [invert()\] at (1) should be [invert()\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [hue-rotate()\] to [hue-rotate(360deg)\] at (1.5) should be [hue-rotate(540deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [invert(0)\] to [invert()\] at (-1) should be [invert(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [brightness(0)\] to [brightness()\] at (-1) should be [brightness(0)\]] - expected: FAIL - - [CSS Animations: property from [sepia(0)\] to [sepia()\] at (1.5) should be [sepia(1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [saturate(0)\] to [saturate()\] at (-1) should be [saturate(0)\]] - expected: FAIL - - [CSS Animations: property from [invert(0)\] to [invert()\] at (0) should be [invert(0)\]] - expected: FAIL - - [CSS Animations: property from [grayscale(0)\] to [grayscale()\] at (-1) should be [grayscale(0)\]] - expected: FAIL - - [CSS Transitions: property from [blur()\] to [blur(10px)\] at (0) should be [blur()\]] - expected: FAIL - - [CSS Transitions: property from [brightness(0)\] to [brightness()\] at (-1) should be [brightness(0)\]] - expected: FAIL - - [CSS Transitions: property from [grayscale(0)\] to [grayscale()\] at (0) should be [grayscale(0)\]] - expected: FAIL - - [CSS Animations: property from [sepia(0)\] to [sepia()\] at (-1) should be [sepia(0)\]] - expected: FAIL - - [CSS Animations: property from [brightness(0)\] to [brightness()\] at (0) should be [brightness(0)\]] - expected: FAIL - - [CSS Animations: property from [sepia(0)\] to [sepia()\] at (1) should be [sepia()\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [brightness(0)\] to [brightness()\] at (0) should be [brightness(0)\]] - expected: FAIL - - [CSS Animations: property from [blur()\] to [blur(10px)\] at (0) should be [blur()\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [saturate(0)\] to [saturate()\] at (0) should be [saturate(0)\]] - expected: FAIL - - [CSS Transitions: property from [opacity(0)\] to [opacity()\] at (-1) should be [opacity(0)\]] - expected: FAIL - - [CSS Animations: property from [opacity(0)\] to [opacity()\] at (-1) should be [opacity(0)\]] - expected: FAIL - - [CSS Animations: property from [grayscale(0)\] to [grayscale()\] at (0.5) should be [grayscale(0.5)\]] - expected: FAIL - - [CSS Transitions: property from [blur()\] to [blur(10px)\] at (-1) should be [blur(0px)\]] - expected: FAIL - - [CSS Transitions: property from [grayscale(0)\] to [grayscale()\] at (-1) should be [grayscale(0)\]] - expected: FAIL - - [CSS Animations: property from [contrast(0)\] to [contrast()\] at (1.5) should be [contrast(1.5)\]] - expected: FAIL - - [CSS Transitions: property from [sepia(0)\] to [sepia()\] at (-1) should be [sepia(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [grayscale(0)\] to [grayscale()\] at (-1) should be [grayscale(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [saturate(0)\] to [saturate()\] at (1.5) should be [saturate(1.5)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [opacity(0)\] to [opacity()\] at (0.5) should be [opacity(0.5)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [contrast(0)\] to [contrast()\] at (1.5) should be [contrast(1.5)\]] - expected: FAIL - - [CSS Transitions: property from [brightness(0)\] to [brightness()\] at (0.5) should be [brightness(0.5)\]] - expected: FAIL - - [CSS Transitions: property from [blur()\] to [blur(10px)\] at (1.5) should be [blur(15px)\]] - expected: FAIL - - [CSS Animations: property from [opacity(0)\] to [opacity()\] at (0) should be [opacity(0)\]] - expected: FAIL - - [CSS Animations: property from [contrast(0)\] to [contrast()\] at (0) should be [contrast(0)\]] - expected: FAIL - - [CSS Animations: property from [blur()\] to [blur(10px)\] at (0.5) should be [blur(5px)\]] - expected: FAIL - - [CSS Animations: property from [grayscale(0)\] to [grayscale()\] at (1) should be [grayscale()\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [opacity(0)\] to [opacity()\] at (-1) should be [opacity(0)\]] - expected: FAIL - - [CSS Transitions: property from [opacity(0)\] to [opacity()\] at (0) should be [opacity(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [brightness(0)\] to [brightness()\] at (1.5) should be [brightness(1.5)\]] - expected: FAIL - - [CSS Transitions: property from [hue-rotate()\] to [hue-rotate(360deg)\] at (-1) should be [hue-rotate(-360deg)\]] - expected: FAIL - - [CSS Animations: property from [hue-rotate()\] to [hue-rotate(360deg)\] at (1.5) should be [hue-rotate(540deg)\]] - expected: FAIL - - [CSS Transitions: property from [hue-rotate()\] to [hue-rotate(360deg)\] at (0.5) should be [hue-rotate(180deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [sepia(0)\] to [sepia()\] at (0) should be [sepia(0)\]] - expected: FAIL - - [CSS Animations: property from [sepia(0)\] to [sepia()\] at (0.5) should be [sepia(0.5)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [sepia(0)\] to [sepia()\] at (-1) should be [sepia(0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [blur()\] to [blur(10px)\] at (1.5) should be [blur(15px)\]] - expected: FAIL - - [CSS Transitions: property from [brightness(0)\] to [brightness()\] at (0) should be [brightness(0)\]] - expected: FAIL - - [CSS Animations: property from [hue-rotate()\] to [hue-rotate(360deg)\] at (0) should be [hue-rotate()\]] - expected: FAIL - - [CSS Transitions: property from [hue-rotate()\] to [hue-rotate(360deg)\] at (0) should be [hue-rotate()\]] - expected: FAIL - - [CSS Transitions: property from [saturate(0)\] to [saturate()\] at (0.5) should be [saturate(0.5)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [sepia(0)\] to [sepia()\] at (0.5) should be [sepia(0.5)\]] - expected: FAIL - - [CSS Animations: property from [opacity(0)\] to [opacity()\] at (1.5) should be [opacity(1)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [grayscale(0)\] to [grayscale()\] at (0) should be [grayscale(0)\]] - expected: FAIL - - [CSS Animations: property from [blur()\] to [blur(10px)\] at (1) should be [blur(10px)\]] - expected: FAIL - - [CSS Animations: property from [hue-rotate()\] to [hue-rotate(360deg)\] at (1) should be [hue-rotate(360deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [blur()\] to [blur(10px)\] at (-1) should be [blur(0px)\]] - expected: FAIL - - [CSS Transitions: property from [contrast(0)\] to [contrast()\] at (0) should be [contrast(0)\]] - expected: FAIL - - [CSS Animations: property from [saturate(0)\] to [saturate()\] at (1.5) should be [saturate(1.5)\]] - expected: FAIL - - [CSS Transitions: property from [contrast(0)\] to [contrast()\] at (1.5) should be [contrast(1.5)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [saturate(0)\] to [saturate()\] at (0.5) should be [saturate(0.5)\]] - expected: FAIL - - [CSS Animations: property from [hue-rotate()\] to [hue-rotate(360deg)\] at (0.5) should be [hue-rotate(180deg)\]] - expected: FAIL - - [CSS Animations: property from [invert(0)\] to [invert()\] at (0.5) should be [invert(0.5)\]] - expected: FAIL - - [CSS Animations: property from [contrast(0)\] to [contrast()\] at (-1) should be [contrast(0)\]] - expected: FAIL - - [CSS Transitions: property from [invert(0)\] to [invert()\] at (0.5) should be [invert(0.5)\]] - expected: FAIL - - [CSS Animations: property from [sepia(0)\] to [sepia()\] at (0) should be [sepia(0)\]] - expected: FAIL - - [CSS Animations: property from [invert(0)\] to [invert()\] at (-1) should be [invert(0)\]] - expected: FAIL - - [CSS Transitions: property from [grayscale(0)\] to [grayscale()\] at (0.5) should be [grayscale(0.5)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [brightness(0)\] to [brightness()\] at (0.5) should be [brightness(0.5)\]] - expected: FAIL - - [CSS Transitions: property from [brightness(0)\] to [brightness()\] at (1.5) should be [brightness(1.5)\]] - expected: FAIL - - [CSS Animations: property from [grayscale(0)\] to [grayscale()\] at (1.5) should be [grayscale(1)\]] - expected: FAIL - - [CSS Transitions: property from [saturate(0)\] to [saturate()\] at (1.5) should be [saturate(1.5)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [hue-rotate()\] to [hue-rotate(360deg)\] at (-1) should be [hue-rotate(-360deg)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [contrast(0)\] to [contrast()\] at (-1) should be [contrast(0)\]] - expected: FAIL - - [CSS Animations: property from [brightness(0)\] to [brightness()\] at (1.5) should be [brightness(1.5)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [hue-rotate()\] to [hue-rotate(360deg)\] at (0) should be [hue-rotate()\]] - expected: FAIL - - [CSS Transitions: property from [invert(0)\] to [invert()\] at (-1) should be [invert(0)\]] - expected: FAIL - - [CSS Animations: property from [opacity(0)\] to [opacity()\] at (1) should be [opacity()\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [grayscale(0)\] to [grayscale()\] at (0.5) should be [grayscale(0.5)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [blur()\] to [blur(10px)\] at (0.5) should be [blur(5px)\]] - expected: FAIL - - [CSS Transitions: property from [contrast(0)\] to [contrast()\] at (0.5) should be [contrast(0.5)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [invert(0)\] to [invert()\] at (0) should be [invert(0)\]] - expected: FAIL - - [CSS Animations: property from [opacity(0)\] to [opacity()\] at (0.5) should be [opacity(0.5)\]] - expected: FAIL - - [CSS Animations: property from [brightness(0)\] to [brightness()\] at (0.5) should be [brightness(0.5)\]] - expected: FAIL - - [CSS Transitions: property from [saturate(0)\] to [saturate()\] at (-1) should be [saturate(0)\]] - expected: FAIL - - [CSS Animations: property from [saturate(0)\] to [saturate()\] at (1) should be [saturate()\]] - expected: FAIL - - [CSS Animations: property from [saturate(0)\] to [saturate()\] at (0.5) should be [saturate(0.5)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [contrast(0)\] to [contrast()\] at (0) should be [contrast(0)\]] - expected: FAIL - - [CSS Transitions: property from [invert(0)\] to [invert()\] at (0) should be [invert(0)\]] - expected: FAIL - diff --git a/tests/wpt/mozilla/meta-layout-2020/css/animations/animation-fill-mode.html.ini b/tests/wpt/mozilla/meta-layout-2020/css/animations/animation-fill-mode.html.ini deleted file mode 100644 index 9d52b8c51db..00000000000 --- a/tests/wpt/mozilla/meta-layout-2020/css/animations/animation-fill-mode.html.ini +++ /dev/null @@ -1,16 +0,0 @@ -[animation-fill-mode.html] - [animation-fill-mode: both should function correctly] - expected: FAIL - - [animation-fill-mode: both on animation with multiple iterations] - expected: FAIL - - [animation-fill-mode: forwards should function correctly] - expected: FAIL - - [animation-fill-mode: both on reversed animation] - expected: FAIL - - [animation-fill-mode: backwards should function correctly] - expected: FAIL - diff --git a/tests/wpt/mozilla/meta-layout-2020/css/animations/basic-linear-width.html.ini b/tests/wpt/mozilla/meta-layout-2020/css/animations/basic-linear-width.html.ini deleted file mode 100644 index df31f29431e..00000000000 --- a/tests/wpt/mozilla/meta-layout-2020/css/animations/basic-linear-width.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[basic-linear-width.html] - expected: ERROR - [Animation test: Linear animation repeated infinitely.] - expected: TIMEOUT - diff --git a/tests/wpt/mozilla/meta-layout-2020/css/animations/mixed-units.html.ini b/tests/wpt/mozilla/meta-layout-2020/css/animations/mixed-units.html.ini deleted file mode 100644 index a5bb5016972..00000000000 --- a/tests/wpt/mozilla/meta-layout-2020/css/animations/mixed-units.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[mixed-units.html] - expected: ERROR - [Animation test: mixed units.] - expected: TIMEOUT - diff --git a/tests/wpt/mozilla/meta-layout-2020/css/animations/transition-raf.html.ini b/tests/wpt/mozilla/meta-layout-2020/css/animations/transition-raf.html.ini deleted file mode 100644 index cd03f205cae..00000000000 --- a/tests/wpt/mozilla/meta-layout-2020/css/animations/transition-raf.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[transition-raf.html] - expected: TIMEOUT - [Transitions should work during RAF loop] - expected: TIMEOUT - diff --git a/tests/wpt/mozilla/meta-layout-2020/css/transitionend_event.html.ini b/tests/wpt/mozilla/meta-layout-2020/css/transitionend_event.html.ini deleted file mode 100644 index 8832e8963d6..00000000000 --- a/tests/wpt/mozilla/meta-layout-2020/css/transitionend_event.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[transitionend_event.html] - expected: TIMEOUT - [transitionend_event] - expected: TIMEOUT diff --git a/tests/wpt/mozilla/meta-layout-2020/mozilla/calc.html.ini b/tests/wpt/mozilla/meta-layout-2020/mozilla/calc.html.ini index 708eebc8761..f1a78d39737 100644 --- a/tests/wpt/mozilla/meta-layout-2020/mozilla/calc.html.ini +++ b/tests/wpt/mozilla/meta-layout-2020/mozilla/calc.html.ini @@ -8,9 +8,6 @@ [calc for outline-width] expected: FAIL - [calc for transition-duration] - expected: FAIL - [calc for text-indent] expected: FAIL @@ -20,9 +17,6 @@ [calc for order] expected: FAIL - [calc for transition-delay] - expected: FAIL - [calc for vertical-align] expected: FAIL