Restyle should reflect animations and transitions

When doing a restyle, we should apply animations and transitions to the
new style so that it is reflected in `getComputedStyle()` and the new
style information properly cascades. This is the first part of properly
ticking animations and transitions.

This causes a couple new animations tests failures (along with many new
passes), but we currently don't have support for properly handling
animations after they have completed, so this isn't totally unexpected.
This commit is contained in:
Martin Robinson 2020-04-27 11:44:03 +02:00
parent cd620f69de
commit 5ca2e7ce91
62 changed files with 344 additions and 10360 deletions

View file

@ -15,6 +15,7 @@ use script_traits::UntrustedNodeAddress;
use script_traits::{
AnimationState, ConstellationControlMsg, LayoutMsg as ConstellationMsg, TransitionEventType,
};
use servo_arc::Arc;
use style::animation::{
update_style_for_animation, Animation, ElementAnimationState, PropertyAnimation,
};
@ -223,7 +224,7 @@ fn do_recalc_style_for_animations<E>(
update_style_for_animation::<E>(
&context.style_context,
animation,
&mut fragment.style,
Arc::make_mut(&mut fragment.style),
&ServoMetricsProvider,
);
let difference = RestyleDamage::compute_style_difference(&old_style, &fragment.style);

View file

@ -442,14 +442,18 @@ impl ElementAnimationState {
false
}
/// Compute before-change-style given an existing ElementAnimationState,
/// information from the StyleContext, and the values of the previous style
/// computation.
///
/// TODO(mrobinson): This is not a correct computation of before-change-style.
/// For starters it's unclear why we aren't using the running transitions to
/// transform this style into before-change-style.
pub(crate) fn compute_before_change_style<E>(
pub(crate) fn apply_completed_animations(&mut self, style: &mut Arc<ComputedValues>) {
for animation in self.finished_animations.iter() {
// TODO: Make this a bit more general and add support animation-fill-mode.
// Without support for that property though, animations that have ended should
// not affect property values. This is why we only process transitions here.
if let Animation::Transition(_, _, property_animation) = animation {
property_animation.update(Arc::make_mut(style), 1.0);
}
}
}
pub(crate) fn apply_running_animations<E>(
&mut self,
context: &SharedStyleContext,
style: &mut Arc<ComputedValues>,
@ -457,24 +461,17 @@ impl ElementAnimationState {
) where
E: TElement,
{
for animation in self.finished_animations.iter() {
debug!("Updating style for finished animation {:?}", animation);
// TODO: support animation-fill-mode
if let Animation::Transition(_, _, property_animation) = animation {
property_animation.update(Arc::make_mut(style), 1.0);
}
// Return early so that we don't unnecessarily clone the style when making it mutable.
if self.running_animations.is_empty() {
return;
}
for running_animation in self.running_animations.iter_mut() {
let update = match *running_animation {
Animation::Transition(..) => continue,
Animation::Keyframes(..) => {
update_style_for_animation::<E>(context, running_animation, style, font_metrics)
},
};
let style = Arc::make_mut(style);
for animation in self.running_animations.iter_mut() {
let update = update_style_for_animation::<E>(context, animation, style, font_metrics);
match *running_animation {
Animation::Transition(..) => unreachable!(),
match *animation {
Animation::Transition(..) => {},
Animation::Keyframes(_, _, _, ref mut state) => match update {
AnimationUpdate::Regular => {},
AnimationUpdate::AnimationCanceled => {
@ -485,6 +482,25 @@ impl ElementAnimationState {
}
}
pub(crate) fn apply_new_animations<E>(
&mut self,
context: &SharedStyleContext,
style: &mut Arc<ComputedValues>,
font_metrics: &dyn crate::font_metrics::FontMetricsProvider,
) where
E: TElement,
{
// Return early so that we don't unnecessarily clone the style when making it mutable.
if self.new_animations.is_empty() {
return;
}
let style = Arc::make_mut(style);
for animation in self.new_animations.iter_mut() {
update_style_for_animation::<E>(context, animation, style, font_metrics);
}
}
/// Whether this `ElementAnimationState` is empty, which means it doesn't
/// hold any animations in any state.
pub fn is_empty(&self) -> bool {
@ -526,8 +542,6 @@ pub fn start_transitions_if_applicable(
new_style: &mut Arc<ComputedValues>,
animation_state: &mut ElementAnimationState,
) -> LonghandIdSet {
use crate::properties::animated_properties::TransitionPropertyIteration;
// If the style of this element is display:none, then we don't start any transitions
// and we cancel any currently running transitions by returning an empty LonghandIdSet.
if new_style.get_box().clone_display().is_none() {
@ -535,12 +549,12 @@ pub fn start_transitions_if_applicable(
}
let mut properties_that_transition = LonghandIdSet::new();
let transitions: Vec<TransitionPropertyIteration> = new_style.transition_properties().collect();
for transition in &transitions {
if properties_that_transition.contains(transition.longhand_id) {
for transition in new_style.transition_properties() {
let physical_property = transition.longhand_id.to_physical(new_style.writing_mode);
if properties_that_transition.contains(physical_property) {
continue;
} else {
properties_that_transition.insert(transition.longhand_id);
properties_that_transition.insert(physical_property);
}
let property_animation = match PropertyAnimation::from_longhand(
@ -552,18 +566,12 @@ pub fn start_transitions_if_applicable(
.get_box()
.transition_duration_mod(transition.index),
old_style,
Arc::make_mut(new_style),
new_style,
) {
Some(property_animation) => property_animation,
None => continue,
};
// Set the property to the initial value.
//
// NB: get_mut is guaranteed to succeed since we called make_mut()
// above.
property_animation.update(Arc::get_mut(new_style).unwrap(), 0.0);
// Per [1], don't trigger a new transition if the end state for that
// transition is the same as that of a transition that's running or
// completed.
@ -747,7 +755,7 @@ pub enum AnimationUpdate {
pub fn update_style_for_animation<E>(
context: &SharedStyleContext,
animation: &Animation,
style: &mut Arc<ComputedValues>,
style: &mut ComputedValues,
font_metrics_provider: &dyn FontMetricsProvider,
) -> AnimationUpdate
where
@ -762,7 +770,7 @@ where
let progress = (now - start_time) / (property_animation.duration);
let progress = progress.min(1.0);
if progress >= 0.0 {
property_animation.update(Arc::make_mut(style), progress);
property_animation.update(style, progress);
}
AnimationUpdate::Regular
},
@ -867,7 +875,7 @@ where
let from_style = compute_style_for_animation_step::<E>(
context,
last_keyframe,
&**style,
style,
&state.cascade_style,
font_metrics_provider,
);
@ -911,7 +919,7 @@ where
property
);
debug!("update_style_for_animation: {:?}", property_animation);
property_animation.update(Arc::make_mut(&mut new_style), relative_progress);
property_animation.update(&mut new_style, relative_progress);
},
None => {
debug!(

View file

@ -445,7 +445,10 @@ trait PrivateMatchMethods: TElement {
let mut animation_state = animation_states.remove(&this_opaque).unwrap_or_default();
if let Some(ref mut old_values) = *old_values {
animation_state.compute_before_change_style::<Self>(
// We convert old values into `before-change-style` here.
// https://drafts.csswg.org/css-transitions/#starting
animation_state.apply_completed_animations(old_values);
animation_state.apply_running_animations::<Self>(
shared_context,
old_values,
&context.thread_local.font_metrics_provider,
@ -475,10 +478,20 @@ trait PrivateMatchMethods: TElement {
.cancel_transitions_with_nontransitioning_properties(&transitioning_properties);
}
animation_state.finished_animations.clear();
animation_state.apply_running_animations::<Self>(
shared_context,
new_values,
&context.thread_local.font_metrics_provider,
);
animation_state.apply_new_animations::<Self>(
shared_context,
new_values,
&context.thread_local.font_metrics_provider,
);
// If the ElementAnimationState is empty, don't push it to save
// memory and to avoid extra processing later.
// If the ElementAnimationState is empty, and don't store it in order to
// save memory and to avoid extra processing later.
animation_state.finished_animations.clear();
if !animation_state.is_empty() {
animation_states.insert(this_opaque, animation_state);
}

View file

@ -1,13 +1,7 @@
[line-height-interpolation.html]
[CSS Transitions with transition: all: property <line-height> from [4px\] to [14px\] at (-1) should be [0px\]]
expected: FAIL
[CSS Animations: property <line-height> from [14px\] to [normal\] at (0.5) should be [normal\]]
expected: FAIL
[CSS Transitions: property <line-height> from [4q\] to [14q\] at (1.5) should be [19q\]]
expected: FAIL
[CSS Animations: property <line-height> from [inherit\] to [20px\] at (0) should be [30px\]]
expected: FAIL
@ -17,18 +11,9 @@
[Web Animations: property <line-height> from [14px\] to [4\] at (1) should be [4\]]
expected: FAIL
[CSS Transitions with transition: all: property <line-height> from [inherit\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Transitions with transition: all: property <line-height> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[Web Animations: property <line-height> from [14q\] to [normal\] at (1.5) should be [normal\]]
expected: FAIL
[CSS Animations: property <line-height> from [4\] to [14\] at (0) should be [4\]]
expected: FAIL
[Web Animations: property <line-height> from [14px\] to [normal\] at (0.5) should be [normal\]]
expected: FAIL
@ -38,12 +23,6 @@
[CSS Animations: property <line-height> from [4\] to [normal\] at (1.5) should be [normal\]]
expected: FAIL
[CSS Transitions: property <line-height> from [4px\] to [14px\] at (-1) should be [0px\]]
expected: FAIL
[CSS Transitions: property <line-height> from [4\] to [14\] at (1.5) should be [19\]]
expected: FAIL
[CSS Animations: property <line-height> from [normal\] to [14px\] at (0.3) should be [normal\]]
expected: FAIL
@ -59,33 +38,18 @@
[CSS Animations: property <line-height> from [14px\] to [4\] at (1.5) should be [4\]]
expected: FAIL
[CSS Transitions with transition: all: property <line-height> from [4q\] to [14q\] at (-1) should be [0q\]]
expected: FAIL
[Web Animations: property <line-height> from [4px\] to [14px\] at (1) should be [14px\]]
expected: FAIL
[CSS Transitions with transition: all: property <line-height> from [4q\] to [14q\] at (0.6) should be [10q\]]
expected: FAIL
[CSS Animations: property <line-height> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Animations: property <line-height> from [initial\] to [20px\] at (0) should be [initial\]]
expected: FAIL
[CSS Animations: property <line-height> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[CSS Animations: property <line-height> from [14q\] to [normal\] at (0) should be [14q\]]
expected: FAIL
[CSS Animations: property <line-height> from [normal\] to [normal\] at (0.3) should be [normal\]]
expected: FAIL
[CSS Transitions: property <line-height> from [4px\] to [14px\] at (0.3) should be [7px\]]
expected: FAIL
[CSS Animations: property <line-height> from [normal\] to [4\] at (0) should be [normal\]]
expected: FAIL
@ -119,9 +83,6 @@
[CSS Animations: property <line-height> from [4\] to [14q\] at (0) should be [4\]]
expected: FAIL
[CSS Transitions with transition: all: property <line-height> from [inherit\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Animations: property <line-height> from [4\] to [14px\] at (1.5) should be [14px\]]
expected: FAIL
@ -137,42 +98,21 @@
[Web Animations: property <line-height> from [normal\] to [14px\] at (-0.3) should be [normal\]]
expected: FAIL
[CSS Animations: property <line-height> from [4px\] to [14px\] at (1) should be [14px\]]
expected: FAIL
[CSS Animations: property <line-height> from [14px\] to [4\] at (-0.3) should be [14px\]]
expected: FAIL
[CSS Transitions with transition: all: property <line-height> from [inherit\] to [20px\] at (-1) should be [40px\]]
expected: FAIL
[CSS Transitions with transition: all: property <line-height> from [4\] to [14\] at (0.3) should be [7\]]
expected: FAIL
[CSS Transitions with transition: all: property <line-height> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[CSS Animations: property <line-height> from [4\] to [normal\] at (0) should be [4\]]
expected: FAIL
[CSS Transitions: property <line-height> from [unset\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[Web Animations: property <line-height> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[Web Animations: property <line-height> from [14q\] to [normal\] at (0.3) should be [14q\]]
expected: FAIL
[CSS Animations: property <line-height> from [4\] to [14\] at (1.5) should be [19\]]
expected: FAIL
[CSS Animations: property <line-height> from [14px\] to [normal\] at (-0.3) should be [14px\]]
expected: FAIL
[CSS Transitions with transition: all: property <line-height> from [4px\] to [14px\] at (0.6) should be [10px\]]
expected: FAIL
[Web Animations: property <line-height> from [initial\] to [20px\] at (0.3) should be [initial\]]
expected: FAIL
@ -203,9 +143,6 @@
[Web Animations: property <line-height> from [4\] to [14px\] at (0.5) should be [14px\]]
expected: FAIL
[CSS Animations: property <line-height> from [4q\] to [14q\] at (0.6) should be [10q\]]
expected: FAIL
[CSS Animations: property <line-height> from [4\] to [14q\] at (0.5) should be [14q\]]
expected: FAIL
@ -230,9 +167,6 @@
[Web Animations: property <line-height> from [normal\] to [normal\] at (0) should be [normal\]]
expected: FAIL
[CSS Animations: property <line-height> from [4\] to [14\] at (-0.3) should be [1\]]
expected: FAIL
[Web Animations: property <line-height> from [normal\] to [normal\] at (0.3) should be [normal\]]
expected: FAIL
@ -251,12 +185,6 @@
[Web Animations: property <line-height> from [normal\] to [14px\] at (1) should be [14px\]]
expected: FAIL
[CSS Transitions: property <line-height> from [4q\] to [14q\] at (0.6) should be [10q\]]
expected: FAIL
[CSS Transitions: property <line-height> from [inherit\] to [20px\] at (-1) should be [40px\]]
expected: FAIL
[Web Animations: property <line-height> from [normal\] to [14px\] at (0.6) should be [14px\]]
expected: FAIL
@ -266,9 +194,6 @@
[Web Animations: property <line-height> from [14px\] to [4\] at (0.3) should be [14px\]]
expected: FAIL
[CSS Transitions with transition: all: property <line-height> from [unset\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Animations: property <line-height> from [4\] to [14q\] at (0.6) should be [14q\]]
expected: FAIL
@ -278,21 +203,12 @@
[Web Animations: property <line-height> from [initial\] to [20px\] at (1.5) should be [20px\]]
expected: FAIL
[CSS Animations: property <line-height> from [4q\] to [14q\] at (0.3) should be [7q\]]
expected: FAIL
[Web Animations: property <line-height> from [14px\] to [4\] at (0.6) should be [4\]]
expected: FAIL
[CSS Transitions: property <line-height> from [4q\] to [14q\] at (-0.3) should be [1q\]]
expected: FAIL
[CSS Transitions: property <line-height> from [unset\] to [20px\] at (-1) should be [40px\]]
expected: FAIL
[CSS Animations: property <line-height> from [4px\] to [14px\] at (0) should be [4px\]]
expected: FAIL
[Web Animations: property <line-height> from neutral to [20px\] at (1) should be [20px\]]
expected: FAIL
@ -302,12 +218,6 @@
[Web Animations: property <line-height> from [4px\] to [14px\] at (1.5) should be [19px\]]
expected: FAIL
[CSS Transitions with transition: all: property <line-height> from [inherit\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Transitions with transition: all: property <line-height> from neutral to [20px\] at (-1) should be [0px\]]
expected: FAIL
[CSS Animations: property <line-height> from [14px\] to [normal\] at (1) should be [normal\]]
expected: FAIL
@ -320,12 +230,6 @@
[Web Animations: property <line-height> from [normal\] to [14px\] at (0) should be [normal\]]
expected: FAIL
[CSS Animations: property <line-height> from [4\] to [14\] at (0.3) should be [7\]]
expected: FAIL
[CSS Animations: property <line-height> from neutral to [20px\] at (-1) should be [0px\]]
expected: FAIL
[CSS Animations: property <line-height> from [normal\] to [normal\] at (-0.3) should be [normal\]]
expected: FAIL
@ -338,96 +242,48 @@
[Web Animations: property <line-height> from [4\] to [14q\] at (0.6) should be [14q\]]
expected: FAIL
[CSS Transitions with transition: all: property <line-height> from [4px\] to [14px\] at (0.3) should be [7px\]]
expected: FAIL
[CSS Animations: property <line-height> from [4\] to [14\] at (0.6) should be [10\]]
expected: FAIL
[CSS Transitions: property <line-height> from [unset\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Animations: property <line-height> from [4q\] to [14q\] at (1.5) should be [19q\]]
expected: FAIL
[Web Animations: property <line-height> from [14px\] to [4\] at (0.5) should be [4\]]
expected: FAIL
[Web Animations: property <line-height> from [unset\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Animations: property <line-height> from [inherit\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Animations: property <line-height> from [14px\] to [4\] at (0) should be [14px\]]
expected: FAIL
[CSS Animations: property <line-height> from [4\] to [14px\] at (-0.3) should be [4\]]
expected: FAIL
[CSS Animations: property <line-height> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[CSS Animations: property <line-height> from [normal\] to [4\] at (0.3) should be [normal\]]
expected: FAIL
[CSS Animations: property <line-height> from [14px\] to [normal\] at (0.6) should be [normal\]]
expected: FAIL
[CSS Transitions with transition: all: property <line-height> from [4\] to [14\] at (1.5) should be [19\]]
expected: FAIL
[CSS Animations: property <line-height> from [4\] to [14\] at (-1) should be [0\]]
expected: FAIL
[CSS Transitions: property <line-height> from [4px\] to [14px\] at (-0.3) should be [1px\]]
expected: FAIL
[Web Animations: property <line-height> from [4\] to [14q\] at (1) should be [14q\]]
expected: FAIL
[CSS Animations: property <line-height> from [inherit\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Transitions: property <line-height> from [unset\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[Web Animations: property <line-height> from [4\] to [14px\] at (0.3) should be [4\]]
expected: FAIL
[Web Animations: property <line-height> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[CSS Transitions: property <line-height> from [4px\] to [14px\] at (0.6) should be [10px\]]
expected: FAIL
[CSS Transitions with transition: all: property <line-height> from [4\] to [14\] at (-0.3) should be [1\]]
expected: FAIL
[CSS Animations: property <line-height> from [14px\] to [normal\] at (0.3) should be [14px\]]
expected: FAIL
[Web Animations: property <line-height> from [initial\] to [20px\] at (-0.3) should be [initial\]]
expected: FAIL
[CSS Transitions with transition: all: property <line-height> from [4px\] to [14px\] at (1.5) should be [19px\]]
expected: FAIL
[CSS Animations: property <line-height> from [normal\] to [4\] at (1.5) should be [4\]]
expected: FAIL
[CSS Animations: property <line-height> from [14px\] to [4\] at (0.5) should be [4\]]
expected: FAIL
[CSS Transitions with transition: all: property <line-height> from [4q\] to [14q\] at (1.5) should be [19q\]]
expected: FAIL
[CSS Transitions: property <line-height> from [inherit\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Animations: property <line-height> from [4px\] to [14px\] at (-1) should be [0px\]]
expected: FAIL
[CSS Animations: property <line-height> from [4\] to [normal\] at (0.3) should be [4\]]
expected: FAIL
@ -440,12 +296,6 @@
[CSS Animations: property <line-height> from [4\] to [14px\] at (0.6) should be [14px\]]
expected: FAIL
[CSS Animations: property <line-height> from [4px\] to [14px\] at (1.5) should be [19px\]]
expected: FAIL
[CSS Transitions: property <line-height> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[Web Animations: property <line-height> from [14px\] to [normal\] at (1.5) should be [normal\]]
expected: FAIL
@ -458,33 +308,15 @@
[CSS Animations: property <line-height> from [4\] to [14q\] at (1.5) should be [14q\]]
expected: FAIL
[CSS Animations: property <line-height> from [4px\] to [14px\] at (0.3) should be [7px\]]
expected: FAIL
[CSS Animations: property <line-height> from neutral to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Animations: property <line-height> from [normal\] to [14px\] at (1.5) should be [14px\]]
expected: FAIL
[CSS Transitions: property <line-height> from [4q\] to [14q\] at (-1) should be [0q\]]
expected: FAIL
[CSS Animations: property <line-height> from [14q\] to [normal\] at (1.5) should be [normal\]]
expected: FAIL
[CSS Transitions: property <line-height> from [4\] to [14\] at (0.3) should be [7\]]
expected: FAIL
[Web Animations: property <line-height> from [4\] to [14\] at (-1) should be [0\]]
expected: FAIL
[CSS Transitions: property <line-height> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[CSS Transitions: property <line-height> from [4px\] to [14px\] at (1.5) should be [19px\]]
expected: FAIL
[Web Animations: property <line-height> from [14px\] to [4\] at (1.5) should be [4\]]
expected: FAIL
@ -500,9 +332,6 @@
[CSS Animations: property <line-height> from [14q\] to [normal\] at (0.3) should be [14q\]]
expected: FAIL
[CSS Animations: property <line-height> from [unset\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Animations: property <line-height> from [normal\] to [normal\] at (0.6) should be [normal\]]
expected: FAIL
@ -515,9 +344,6 @@
[Web Animations: property <line-height> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Transitions with transition: all: property <line-height> from [4\] to [14\] at (-1) should be [0\]]
expected: FAIL
[Web Animations: property <line-height> from [4\] to [14\] at (1) should be [14\]]
expected: FAIL
@ -530,9 +356,6 @@
[CSS Animations: property <line-height> from [inherit\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Transitions: property <line-height> from [4\] to [14\] at (0.6) should be [10\]]
expected: FAIL
[Web Animations: property <line-height> from [normal\] to [normal\] at (-0.3) should be [normal\]]
expected: FAIL
@ -551,18 +374,9 @@
[CSS Transitions: property <line-height> from [4\] to [14\] at (-0.3) should be [1\]]
expected: FAIL
[CSS Transitions: property <line-height> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[Web Animations: property <line-height> from [14px\] to [normal\] at (-0.3) should be [14px\]]
expected: FAIL
[CSS Transitions: property <line-height> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Animations: property <line-height> from [4px\] to [14px\] at (-0.3) should be [1px\]]
expected: FAIL
[Web Animations: property <line-height> from [unset\] to [20px\] at (-1) should be [40px\]]
expected: FAIL
@ -572,9 +386,6 @@
[CSS Animations: property <line-height> from [unset\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Transitions with transition: all: property <line-height> from [unset\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[Web Animations: property <line-height> from [4px\] to [14px\] at (-0.3) should be [1px\]]
expected: FAIL
@ -596,15 +407,9 @@
[CSS Animations: property <line-height> from [4\] to [14px\] at (0) should be [4\]]
expected: FAIL
[CSS Animations: property <line-height> from [4q\] to [14q\] at (1) should be [14q\]]
expected: FAIL
[CSS Animations: property <line-height> from [14px\] to [normal\] at (1.5) should be [normal\]]
expected: FAIL
[CSS Transitions with transition: all: property <line-height> from [unset\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Animations: property <line-height> from [inherit\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
@ -641,9 +446,6 @@
[Web Animations: property <line-height> from [14px\] to [normal\] at (0) should be [14px\]]
expected: FAIL
[CSS Transitions with transition: all: property <line-height> from [4px\] to [14px\] at (-0.3) should be [1px\]]
expected: FAIL
[Web Animations: property <line-height> from [4q\] to [14q\] at (0.3) should be [7q\]]
expected: FAIL
@ -659,18 +461,9 @@
[Web Animations: property <line-height> from [initial\] to [20px\] at (0.5) should be [20px\]]
expected: FAIL
[CSS Transitions: property <line-height> from [inherit\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Animations: property <line-height> from [4\] to [14q\] at (0.3) should be [4\]]
expected: FAIL
[CSS Transitions: property <line-height> from [inherit\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Transitions: property <line-height> from neutral to [20px\] at (-1) should be [0px\]]
expected: FAIL
[CSS Animations: property <line-height> from [14q\] to [normal\] at (0.5) should be [normal\]]
expected: FAIL
@ -683,27 +476,15 @@
[CSS Animations: property <line-height> from [initial\] to [20px\] at (0.5) should be [20px\]]
expected: FAIL
[CSS Transitions: property <line-height> from [4\] to [14\] at (-1) should be [0\]]
expected: FAIL
[CSS Transitions with transition: all: property <line-height> from [unset\] to [20px\] at (-1) should be [40px\]]
expected: FAIL
[Web Animations: property <line-height> from [4px\] to [14px\] at (0.6) should be [10px\]]
expected: FAIL
[CSS Transitions with transition: all: property <line-height> from [inherit\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[Web Animations: property <line-height> from [4\] to [14q\] at (-0.3) should be [4\]]
expected: FAIL
[Web Animations: property <line-height> from [unset\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Transitions with transition: all: property <line-height> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[Web Animations: property <line-height> from [unset\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
@ -737,9 +518,6 @@
[Web Animations: property <line-height> from [initial\] to [20px\] at (0) should be [initial\]]
expected: FAIL
[CSS Transitions: property <line-height> from [unset\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Animations: property <line-height> from [14px\] to [4\] at (0.6) should be [4\]]
expected: FAIL
@ -749,9 +527,6 @@
[Web Animations: property <line-height> from [unset\] to [20px\] at (0) should be [30px\]]
expected: FAIL
[CSS Animations: property <line-height> from [4\] to [14\] at (1) should be [14\]]
expected: FAIL
[Web Animations: property <line-height> from neutral to [20px\] at (0) should be [10px\]]
expected: FAIL
@ -761,15 +536,6 @@
[CSS Animations: property <line-height> from [normal\] to [14px\] at (-0.3) should be [normal\]]
expected: FAIL
[CSS Transitions with transition: all: property <line-height> from [4\] to [14\] at (0.6) should be [10\]]
expected: FAIL
[CSS Transitions with transition: all: property <line-height> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Transitions: property <line-height> from [inherit\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[Web Animations: property <line-height> from [unset\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
@ -794,9 +560,6 @@
[Web Animations: property <line-height> from [4\] to [14px\] at (1) should be [14px\]]
expected: FAIL
[CSS Transitions with transition: all: property <line-height> from [unset\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Animations: property <line-height> from [initial\] to [20px\] at (-0.3) should be [initial\]]
expected: FAIL
@ -809,21 +572,12 @@
[Web Animations: property <line-height> from [4q\] to [14q\] at (-1) should be [0q\]]
expected: FAIL
[CSS Animations: property <line-height> from [4q\] to [14q\] at (0) should be [4q\]]
expected: FAIL
[Web Animations: property <line-height> from [4\] to [14\] at (0.6) should be [10\]]
expected: FAIL
[CSS Animations: property <line-height> from [4q\] to [14q\] at (-1) should be [0q\]]
expected: FAIL
[CSS Animations: property <line-height> from [unset\] to [20px\] at (-1) should be [40px\]]
expected: FAIL
[CSS Animations: property <line-height> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[Web Animations: property <line-height> from [4px\] to [14px\] at (-1) should be [0px\]]
expected: FAIL
@ -836,6 +590,12 @@
[Web Animations: property <line-height> from [normal\] to [14px\] at (0.5) should be [14px\]]
expected: FAIL
[CSS Animations: property <line-height> from [4q\] to [14q\] at (-0.3) should be [1q\]]
[CSS Transitions: property <line-height> from [4q\] to [14q\] at (1.5) should be [19q\]]
expected: FAIL
[CSS Transitions: property <line-height> from [unset\] to [20px\] at (-1) should be [40px\]]
expected: FAIL
[CSS Transitions: property <line-height> from [unset\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL

View file

@ -14,9 +14,6 @@
[CSS Animations: property <visibility> from [collapse\] to [hidden\] at (-0.3) should be [collapse\]]
expected: FAIL
[CSS Transitions: property <visibility> from [hidden\] to [visible\] at (1.5) should be [visible\]]
expected: FAIL
[Web Animations: property <visibility> from [visible\] to [hidden\] at (0) should be [visible\]]
expected: FAIL
@ -26,9 +23,6 @@
[Web Animations: property <visibility> from [visible\] to [hidden\] at (1.5) should be [hidden\]]
expected: FAIL
[CSS Animations: property <visibility> from [hidden\] to [visible\] at (0) should be [hidden\]]
expected: FAIL
[CSS Animations: property <visibility> from [collapse\] to [hidden\] at (1.5) should be [hidden\]]
expected: FAIL
@ -44,9 +38,6 @@
[CSS Animations: property <visibility> from [collapse\] to [hidden\] at (0.3) should be [collapse\]]
expected: FAIL
[CSS Transitions with transition: all: property <visibility> from [hidden\] to [visible\] at (0.1) should be [visible\]]
expected: FAIL
[CSS Transitions with transition: all: property <visibility> from [collapse\] to [hidden\] at (0) should be [hidden\]]
expected: FAIL
@ -62,9 +53,6 @@
[CSS Animations: property <visibility> from [collapse\] to [visible\] at (1.5) should be [visible\]]
expected: FAIL
[CSS Transitions with transition: all: property <visibility> from [visible\] to [hidden\] at (1.5) should be [hidden\]]
expected: FAIL
[Web Animations: property <visibility> from [hidden\] to [visible\] at (1) should be [visible\]]
expected: FAIL
@ -83,15 +71,9 @@
[CSS Animations: property <visibility> from [collapse\] to [hidden\] at (0.5) should be [hidden\]]
expected: FAIL
[CSS Transitions with transition: all: property <visibility> from [hidden\] to [visible\] at (1.5) should be [visible\]]
expected: FAIL
[CSS Transitions with transition: all: property <visibility> from [collapse\] to [hidden\] at (0.3) should be [hidden\]]
expected: FAIL
[CSS Animations: property <visibility> from [visible\] to [hidden\] at (1) should be [hidden\]]
expected: FAIL
[Web Animations: property <visibility> from [collapse\] to [visible\] at (0.1) should be [visible\]]
expected: FAIL
@ -107,9 +89,6 @@
[CSS Animations: property <visibility> from [collapse\] to [hidden\] at (0.6) should be [hidden\]]
expected: FAIL
[CSS Transitions: property <visibility> from [visible\] to [hidden\] at (1.5) should be [hidden\]]
expected: FAIL
[CSS Transitions with transition: all: property <visibility> from [collapse\] to [hidden\] at (0.6) should be [hidden\]]
expected: FAIL
@ -143,9 +122,6 @@
[CSS Animations: property <visibility> from [collapse\] to [visible\] at (-1) should be [collapse\]]
expected: FAIL
[CSS Animations: property <visibility> from [visible\] to [hidden\] at (1.5) should be [hidden\]]
expected: FAIL
[CSS Transitions: property <visibility> from [collapse\] to [visible\] at (0.9) should be [visible\]]
expected: FAIL
@ -167,18 +143,9 @@
[CSS Transitions with transition: all: property <visibility> from [collapse\] to [hidden\] at (-0.3) should be [hidden\]]
expected: FAIL
[CSS Transitions: property <visibility> from [hidden\] to [visible\] at (0.1) should be [visible\]]
expected: FAIL
[CSS Animations: property <visibility> from [hidden\] to [visible\] at (-1) should be [hidden\]]
expected: FAIL
[Web Animations: property <visibility> from [hidden\] to [visible\] at (1.5) should be [visible\]]
expected: FAIL
[CSS Transitions with transition: all: property <visibility> from [hidden\] to [visible\] at (0.9) should be [visible\]]
expected: FAIL
[Web Animations: property <visibility> from [visible\] to [hidden\] at (0.1) should be [visible\]]
expected: FAIL
@ -239,9 +206,6 @@
[CSS Transitions: property <visibility> from [collapse\] to [hidden\] at (0.5) should be [hidden\]]
expected: FAIL
[CSS Transitions: property <visibility> from [hidden\] to [visible\] at (0.9) should be [visible\]]
expected: FAIL
[Web Animations: property <visibility> from [collapse\] to [hidden\] at (-0.3) should be [collapse\]]
expected: FAIL

View file

@ -2,15 +2,9 @@
[background-color-interpolation]
expected: FAIL
[CSS Transitions with transition: all: property <background-color> from neutral to [green\] at (0.3) should be [rgb(0, 38, 0)\]]
expected: FAIL
[Web Animations: property <background-color> 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 <background-color> from [white\] to [orange\] at (1.5) should be [rgb(255, 120, 0)\]]
expected: FAIL
[Web Animations: property <background-color> from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (1) should be [rgba(0, 255, 0, 0.75)\]]
expected: FAIL
@ -23,93 +17,30 @@
[Web Animations: property <background-color> from [white\] to [orange\] at (0.6) should be [rgb(255, 201, 102)\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-color> from [transparent\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[Web Animations: property <background-color> from [inherit\] to [green\] at (0.6) should be [rgb(95, 172, 95)\]]
expected: FAIL
[CSS Transitions: property <background-color> 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 <background-color> from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (0.5) should be [rgba(0, 153, 102, 0.63)\]]
expected: FAIL
[Web Animations: property <background-color> from neutral to [green\] at (1) should be [rgb(0, 128, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-color> from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (0.25) should be [rgba(0, 85, 170, 0.56)\]]
expected: FAIL
[Web Animations: property <background-color> from [transparent\] to [green\] at (0.6) should be [rgba(0, 128, 0, 0.6)\]]
expected: FAIL
[CSS Animations: property <background-color> from [initial\] to [green\] at (0.6) should be [rgba(0, 128, 0, 0.6)\]]
expected: FAIL
[CSS Animations: property <background-color> from [white\] to [orange\] at (-0.3) should be [white\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-color> from neutral to [green\] at (0.6) should be [rgb(0, 77, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-color> from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (1.5) should be [rgba(0, 255, 0, 0.88)\]]
expected: FAIL
[Web Animations: property <background-color> from [initial\] to [green\] at (1) should be [rgb(0, 128, 0)\]]
expected: FAIL
[CSS Transitions: property <background-color> from [inherit\] to [green\] at (-0.3) should be [rgb(255, 255, 255)\]]
expected: FAIL
[CSS Animations: property <background-color> from [inherit\] to [green\] at (0.3) should be [rgb(167, 205, 167)\]]
expected: FAIL
[CSS Transitions: property <background-color> from [white\] to [orange\] at (0.6) should be [rgb(255, 201, 102)\]]
expected: FAIL
[Web Animations: property <background-color> from [inherit\] to [green\] at (1) should be [rgb(0, 128, 0)\]]
expected: FAIL
[CSS Animations: property <background-color> from neutral to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[CSS Transitions: property <background-color> from [inherit\] to [green\] at (1.5) should be [rgb(0, 73, 0)\]]
expected: FAIL
[CSS Animations: property <background-color> from [inherit\] to [green\] at (1) should be [rgb(0, 128, 0)\]]
expected: FAIL
[CSS Transitions: property <background-color> from [white\] to [orange\] at (1.5) should be [rgb(255, 120, 0)\]]
expected: FAIL
[CSS Transitions: property <background-color> from [unset\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[CSS Animations: property <background-color> from [inherit\] to [green\] at (-0.3) should be [rgb(255, 255, 255)\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-color> from neutral to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[CSS Animations: property <background-color> from [white\] to [orange\] at (0.6) should be [rgb(255, 201, 102)\]]
expected: FAIL
[CSS Animations: property <background-color> from [unset\] to [green\] at (1) should be [rgb(0, 128, 0)\]]
expected: FAIL
[CSS Animations: property <background-color> from [transparent\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-color> from [initial\] to [green\] at (0.3) should be [rgba(0, 128, 0, 0.3)\]]
expected: FAIL
[CSS Animations: property <background-color> from [inherit\] to [green\] at (0) should be [rgb(238, 238, 238)\]]
expected: FAIL
[CSS Animations: property <background-color> from [transparent\] to [green\] at (1) should be [rgb(0, 128, 0)\]]
expected: FAIL
[Web Animations: property <background-color> from [unset\] to [green\] at (0) should be [rgba(0, 0, 0, 0)\]]
expected: FAIL
@ -119,66 +50,21 @@
[Web Animations: property <background-color> from [unset\] to [green\] at (0.6) should be [rgba(0, 128, 0, 0.6)\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-color> from [initial\] to [green\] at (0.6) should be [rgba(0, 128, 0, 0.6)\]]
expected: FAIL
[CSS Animations: property <background-color> 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 <background-color> from [transparent\] to [green\] at (0.3) should be [rgba(0, 128, 0, 0.3)\]]
expected: FAIL
[CSS Animations: property <background-color> from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (1) should be [rgba(0, 255, 0, 0.75)\]]
expected: FAIL
[CSS Animations: property <background-color> from [white\] to [orange\] at (0) should be [white\]]
expected: FAIL
[Web Animations: property <background-color> from [white\] to [orange\] at (1) should be [orange\]]
expected: FAIL
[CSS Transitions: property <background-color> from [inherit\] to [green\] at (0.6) should be [rgb(95, 172, 95)\]]
expected: FAIL
[CSS Animations: property <background-color> from neutral to [green\] at (0.3) should be [rgb(0, 38, 0)\]]
expected: FAIL
[CSS Animations: property <background-color> 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 <background-color> from [inherit\] to [green\] at (1.5) should be [rgb(0, 73, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-color> from [inherit\] to [green\] at (-0.3) should be [rgb(255, 255, 255)\]]
expected: FAIL
[CSS Transitions: property <background-color> from [initial\] to [green\] at (0.6) should be [rgba(0, 128, 0, 0.6)\]]
expected: FAIL
[Web Animations: property <background-color> from [unset\] to [green\] at (-0.3) should be [rgba(0, 0, 0, 0)\]]
expected: FAIL
[CSS Animations: property <background-color> from [initial\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-color> from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (0.5) should be [rgba(0, 153, 102, 0.63)\]]
expected: FAIL
[Web Animations: property <background-color> from [initial\] to [green\] at (0) should be [rgba(0, 0, 0, 0)\]]
expected: FAIL
[CSS Transitions: property <background-color> from [initial\] to [green\] at (0.3) should be [rgba(0, 128, 0, 0.3)\]]
expected: FAIL
[Web Animations: property <background-color> 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 <background-color> from [white\] to [orange\] at (0.3) should be [rgb(255, 228, 179)\]]
expected: FAIL
[CSS Animations: property <background-color> from [white\] to [orange\] at (1) should be [orange\]]
expected: FAIL
[CSS Animations: property <background-color> from [inherit\] to [green\] at (0.6) should be [rgb(95, 172, 95)\]]
expected: FAIL
@ -191,78 +77,36 @@
[Web Animations: property <background-color> from [transparent\] to [green\] at (-0.3) should be [rgba(0, 0, 0, 0)\]]
expected: FAIL
[CSS Animations: property <background-color> from [transparent\] to [green\] at (0.3) should be [rgba(0, 128, 0, 0.3)\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-color> from [transparent\] to [green\] at (0.6) should be [rgba(0, 128, 0, 0.6)\]]
expected: FAIL
[Web Animations: property <background-color> from [unset\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[CSS Transitions: property <background-color> from [unset\] to [green\] at (0.3) should be [rgba(0, 128, 0, 0.3)\]]
expected: FAIL
[CSS Animations: property <background-color> from [unset\] to [green\] at (0) should be [rgba(0, 0, 0, 0)\]]
expected: FAIL
[Web Animations: property <background-color> from [transparent\] to [green\] at (1) should be [rgb(0, 128, 0)\]]
expected: FAIL
[CSS Animations: property <background-color> from [transparent\] to [green\] at (0.6) should be [rgba(0, 128, 0, 0.6)\]]
expected: FAIL
[Web Animations: property <background-color> from [initial\] to [green\] at (0.6) should be [rgba(0, 128, 0, 0.6)\]]
expected: FAIL
[Web Animations: property <background-color> from [initial\] to [green\] at (-0.3) should be [rgba(0, 0, 0, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-color> from [transparent\] to [green\] at (0.3) should be [rgba(0, 128, 0, 0.3)\]]
expected: FAIL
[Web Animations: property <background-color> from [unset\] to [green\] at (1) should be [rgb(0, 128, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-color> from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (-0.5) should be [rgba(0, 0, 255, 0.38)\]]
expected: FAIL
[Web Animations: property <background-color> from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (0) should be [rgba(0, 0, 255, 0.5)\]]
expected: FAIL
[CSS Animations: property <background-color> from [initial\] to [green\] at (-0.3) should be [rgba(0, 0, 0, 0)\]]
expected: FAIL
[Web Animations: property <background-color> from neutral to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[CSS Animations: property <background-color> from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (0) should be [rgba(0, 0, 255, 0.5)\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-color> 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 <background-color> from neutral to [green\] at (0.6) should be [rgb(0, 77, 0)\]]
expected: FAIL
[Web Animations: property <background-color> from neutral to [green\] at (0) should be [rgb(0, 0, 0)\]]
expected: FAIL
[CSS Animations: property <background-color> from [transparent\] to [green\] at (-0.3) should be [rgba(0, 0, 0, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-color> from [inherit\] to [green\] at (0.3) should be [rgb(167, 205, 167)\]]
expected: FAIL
[Web Animations: property <background-color> from [white\] to [orange\] at (-0.3) should be [white\]]
expected: FAIL
[Web Animations: property <background-color> 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 <background-color> from [unset\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[Web Animations: property <background-color> from [inherit\] to [green\] at (0) should be [rgb(238, 238, 238)\]]
expected: FAIL
@ -272,33 +116,9 @@
[Web Animations: property <background-color> 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 <background-color> from [unset\] to [green\] at (0.6) should be [rgba(0, 128, 0, 0.6)\]]
expected: FAIL
[Web Animations: property <background-color> from [white\] to [orange\] at (0.3) should be [rgb(255, 228, 179)\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-color> from [initial\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-color> from [white\] to [orange\] at (1.5) should be [rgb(255, 120, 0)\]]
expected: FAIL
[CSS Animations: property <background-color> from [initial\] to [green\] at (0.3) should be [rgba(0, 128, 0, 0.3)\]]
expected: FAIL
[CSS Transitions: property <background-color> from neutral to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[CSS Transitions: property <background-color> from neutral to [green\] at (0.3) should be [rgb(0, 38, 0)\]]
expected: FAIL
[CSS Transitions: property <background-color> 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 <background-color> from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (1.5) should be [rgba(0, 255, 0, 0.88)\]]
expected: FAIL
[Web Animations: property <background-color> from neutral to [green\] at (0.6) should be [rgb(0, 77, 0)\]]
expected: FAIL
@ -308,93 +128,30 @@
[CSS Transitions with transition: all: property <background-color> from [white\] to [orange\] at (0.3) should be [rgb(255, 228, 179)\]]
expected: FAIL
[CSS Transitions: property <background-color> from [transparent\] to [green\] at (0.6) should be [rgba(0, 128, 0, 0.6)\]]
expected: FAIL
[Web Animations: property <background-color> from [inherit\] to [green\] at (-0.3) should be [rgb(255, 255, 255)\]]
expected: FAIL
[CSS Transitions: property <background-color> from neutral to [green\] at (0.6) should be [rgb(0, 77, 0)\]]
expected: FAIL
[CSS Transitions: property <background-color> 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 <background-color> from [initial\] to [green\] at (1) should be [rgb(0, 128, 0)\]]
expected: FAIL
[Web Animations: property <background-color> from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (0.5) should be [rgba(0, 153, 102, 0.63)\]]
expected: FAIL
[CSS Animations: property <background-color> from [unset\] to [green\] at (0.6) should be [rgba(0, 128, 0, 0.6)\]]
expected: FAIL
[Web Animations: property <background-color> from [unset\] to [green\] at (0.3) should be [rgba(0, 128, 0, 0.3)\]]
expected: FAIL
[CSS Animations: property <background-color> from [unset\] to [green\] at (-0.3) should be [rgba(0, 0, 0, 0)\]]
expected: FAIL
[Web Animations: property <background-color> from [inherit\] to [green\] at (0.3) should be [rgb(167, 205, 167)\]]
expected: FAIL
[CSS Animations: property <background-color> from [unset\] to [green\] at (0.3) should be [rgba(0, 128, 0, 0.3)\]]
expected: FAIL
[CSS Animations: property <background-color> 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 <background-color> from [initial\] to [green\] at (0) should be [rgba(0, 0, 0, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-color> from [unset\] to [green\] at (0.3) should be [rgba(0, 128, 0, 0.3)\]]
expected: FAIL
[CSS Transitions: property <background-color> from [currentcolor\] to [rgba(0, 255, 0, 0.75)\] at (0.25) should be [rgba(0, 85, 170, 0.56)\]]
expected: FAIL
[Web Animations: property <background-color> from [transparent\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-color> from [inherit\] to [green\] at (0.6) should be [rgb(95, 172, 95)\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-color> from [white\] to [orange\] at (0.6) should be [rgb(255, 201, 102)\]]
expected: FAIL
[CSS Transitions: property <background-color> from [initial\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[CSS Animations: property <background-color> from [transparent\] to [green\] at (0) should be [rgba(0, 0, 0, 0)\]]
expected: FAIL
[CSS Animations: property <background-color> from neutral to [green\] at (1) should be [rgb(0, 128, 0)\]]
expected: FAIL
[CSS Animations: property <background-color> from [unset\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[Web Animations: property <background-color> from [initial\] to [green\] at (0.3) should be [rgba(0, 128, 0, 0.3)\]]
expected: FAIL
[CSS Transitions: property <background-color> from [inherit\] to [green\] at (0.3) should be [rgb(167, 205, 167)\]]
expected: FAIL
[Web Animations: property <background-color> from [white\] to [orange\] at (0) should be [white\]]
expected: FAIL
[Web Animations: property <background-color> from neutral to [green\] at (-0.3) should be [rgb(0, 0, 0)\]]
expected: FAIL
[CSS Animations: property <background-color> 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 <background-color> from [white\] to [orange\] at (0.3) should be [rgb(255, 228, 179)\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-color> from [unset\] to [green\] at (0.6) should be [rgba(0, 128, 0, 0.6)\]]
expected: FAIL
[CSS Transitions: property <background-color> from [transparent\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL

View file

@ -1,16 +1,7 @@
[background-image-interpolation.html]
[CSS Animations: property <background-image> from [none\] to [url(../resources/green-100.png)\] at (1) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Transitions: property <background-image> 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
[Web Animations: property <background-image> 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 Animations: property <background-image> 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
[Web Animations: property <background-image> from [url(../resources/blue-100.png)\] to [cross-fade(url(../resources/green-100.png), url(../resources/stripes-100.png), 0.5)\] at (0) should be [url(../resources/blue-100.png)\]]
expected: FAIL
@ -26,54 +17,21 @@
[Web Animations: property <background-image> from [none\] to [url(../resources/green-100.png)\] at (1) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Transitions: property <background-image> 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 <background-image> from [inherit\] to [url(../resources/green-100.png)\] at (1.5) should be [url(../resources/green-100.png)\]]
expected: FAIL
[Web Animations: property <background-image> 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 <background-image> from [unset\] to [url(../resources/green-100.png)\] at (0) should be [none\]]
expected: FAIL
[CSS Animations: property <background-image> from [initial\] to [url(../resources/green-100.png)\] at (0.3) should be [none\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-image> from [unset\] to [url(../resources/green-100.png)\] at (0.6) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Animations: property <background-image> from [inherit\] to [url(../resources/green-100.png)\] at (0.6) should be [url(../resources/green-100.png)\]]
expected: FAIL
[Web Animations: property <background-image> from neutral to [url(../resources/green-100.png)\] at (0.6) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Transitions: property <background-image> 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 Transitions with transition: all: property <background-image> from [url(../resources/blue-100.png)\] to [url(../resources/green-100.png)\] at (1.5) should be [url(../resources/green-100.png)\]]
expected: FAIL
[Web Animations: property <background-image> from [none\] to [url(../resources/green-100.png)\] at (0) should be [none\]]
expected: FAIL
[Web Animations: property <background-image> 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 <background-image> 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 Animations: property <background-image> 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 <background-image> from [unset\] to [url(../resources/green-100.png)\] at (1.5) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Animations: property <background-image> from [initial\] to [url(../resources/green-100.png)\] at (1.5) should be [url(../resources/green-100.png)\]]
expected: FAIL
[Web Animations: property <background-image> from [url(../resources/blue-100.png)\] to [linear-gradient(45deg, blue, orange)\] at (0.6) should be [linear-gradient(45deg, blue, orange)\]]
expected: FAIL
@ -83,93 +41,36 @@
[Web Animations: property <background-image> from [initial\] to [url(../resources/green-100.png)\] at (0.3) should be [none\]]
expected: FAIL
[CSS Animations: property <background-image> 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 with transition: all: property <background-image> from neutral to [url(../resources/green-100.png)\] at (0.6) should be [url(../resources/green-100.png)\]]
expected: FAIL
[Web Animations: property <background-image> from [initial\] to [url(../resources/green-100.png)\] at (-0.3) should be [none\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-image> 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: property <background-image> 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 Animations: property <background-image> 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 <background-image> from neutral to [url(../resources/green-100.png)\] at (0.6) should be [url(../resources/green-100.png)\]]
expected: FAIL
[Web Animations: property <background-image> from neutral to [url(../resources/green-100.png)\] at (-0.3) should be [url(../resources/blue-100.png)\]]
expected: FAIL
[CSS Animations: property <background-image> 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
[Web Animations: property <background-image> 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 <background-image> from [url(../resources/blue-100.png)\] to [cross-fade(url(../resources/green-100.png), url(../resources/stripes-100.png), 0.5)\] at (1) should be [cross-fade(url(../resources/green-100.png), url(../resources/stripes-100.png), 0.5)\]]
expected: FAIL
[CSS Transitions: property <background-image> from [url(../resources/blue-100.png)\] to [linear-gradient(45deg, blue, orange)\] at (0.6) should be [linear-gradient(45deg, blue, orange)\]]
expected: FAIL
[Web Animations: property <background-image> from [unset\] to [url(../resources/green-100.png)\] at (-0.3) should be [none\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-image> from [inherit\] to [url(../resources/green-100.png)\] at (0.6) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Transitions: property <background-image> from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (1.5) should be [linear-gradient(45deg, blue, orange)\]]
expected: FAIL
[Web Animations: property <background-image> 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
[Web Animations: property <background-image> 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 <background-image> 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 Transitions with transition: all: property <background-image> 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: property <background-image> 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 <background-image> from [unset\] to [url(../resources/green-100.png)\] at (1.5) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Animations: property <background-image> from [url(../resources/blue-100.png)\] to [linear-gradient(45deg, blue, orange)\] at (1) should be [linear-gradient(45deg, blue, orange)\]]
expected: FAIL
[Web Animations: property <background-image> from [inherit\] to [url(../resources/green-100.png)\] at (-0.3) should be [url(../resources/blue-100.png)\]]
expected: FAIL
[Web Animations: property <background-image> from [initial\] to [url(../resources/green-100.png)\] at (1.5) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Transitions: property <background-image> from [unset\] to [url(../resources/green-100.png)\] at (0.6) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Animations: property <background-image> 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 Transitions: property <background-image> from [url(../resources/blue-100.png)\] to [cross-fade(url(../resources/green-100.png), url(../resources/stripes-100.png), 0.5)\] at (0.6) should be [cross-fade(url(../resources/green-100.png), url(../resources/stripes-100.png), 0.5)\]]
expected: FAIL
[CSS Animations: property <background-image> from [none\] to [url(../resources/green-100.png)\] at (0.3) should be [none\]]
expected: FAIL
[CSS Transitions: property <background-image> 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 with transition: all: property <background-image> from [url(../resources/blue-100.png)\] to [cross-fade(url(../resources/green-100.png), url(../resources/stripes-100.png), 0.5)\] at (0.6) should be [cross-fade(url(../resources/green-100.png), url(../resources/stripes-100.png), 0.5)\]]
expected: FAIL
@ -179,51 +80,21 @@
[Web Animations: property <background-image> from [url(../resources/blue-100.png)\] to [linear-gradient(45deg, blue, orange)\] at (1) should be [linear-gradient(45deg, blue, orange)\]]
expected: FAIL
[CSS Transitions: property <background-image> from [none\] to [url(../resources/green-100.png)\] at (1.5) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Animations: property <background-image> 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
[Web Animations: property <background-image> 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
[Web Animations: property <background-image> from neutral to [url(../resources/green-100.png)\] at (1) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Transitions: property <background-image> from [inherit\] to [url(../resources/green-100.png)\] at (1.5) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Transitions: property <background-image> from [initial\] to [url(../resources/green-100.png)\] at (0.6) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Animations: property <background-image> 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 Animations: property <background-image> from [url(../resources/blue-100.png)\] to [cross-fade(url(../resources/green-100.png), url(../resources/stripes-100.png), 0.5)\] at (0.6) should be [cross-fade(url(../resources/green-100.png), url(../resources/stripes-100.png), 0.5)\]]
expected: FAIL
[Web Animations: property <background-image> 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 Transitions: property <background-image> 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 <background-image> from [initial\] to [url(../resources/green-100.png)\] at (-0.3) should be [none\]]
expected: FAIL
[CSS Animations: property <background-image> from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0.3) should be [linear-gradient(-45deg, red, yellow)\]]
expected: FAIL
[Web Animations: property <background-image> 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 Animations: property <background-image> 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 <background-image> from neutral to [url(../resources/green-100.png)\] at (1) should be [url(../resources/green-100.png)\]]
expected: FAIL
[Web Animations: property <background-image> 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
@ -239,54 +110,21 @@
[Web Animations: property <background-image> from [unset\] to [url(../resources/green-100.png)\] at (0.6) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Animations: property <background-image> from [initial\] to [url(../resources/green-100.png)\] at (0) should be [none\]]
expected: FAIL
[CSS Animations: property <background-image> from [url(../resources/blue-100.png)\] to [cross-fade(url(../resources/green-100.png), url(../resources/stripes-100.png), 0.5)\] at (0) should be [url(../resources/blue-100.png)\]]
expected: FAIL
[Web Animations: property <background-image> 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 <background-image> 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 Animations: property <background-image> from [url(../resources/blue-100.png)\] to [url(../resources/green-100.png)\] at (0.6) should be [url(../resources/green-100.png)\]]
expected: FAIL
[Web Animations: property <background-image> from [url(../resources/blue-100.png)\] to [cross-fade(url(../resources/green-100.png), url(../resources/stripes-100.png), 0.5)\] at (-0.3) should be [url(../resources/blue-100.png)\]]
expected: FAIL
[Web Animations: property <background-image> 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 Transitions with transition: all: property <background-image> from neutral to [url(../resources/green-100.png)\] at (1.5) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-image> 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 Transitions: property <background-image> 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 <background-image> from [initial\] to [url(../resources/green-100.png)\] at (1) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-image> 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 Animations: property <background-image> 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 <background-image> 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 Transitions with transition: all: property <background-image> 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 <background-image> from neutral to [url(../resources/green-100.png)\] at (0.6) should be [url(../resources/green-100.png)\]]
expected: FAIL
[Web Animations: property <background-image> from [unset\] to [url(../resources/green-100.png)\] at (1) should be [url(../resources/green-100.png)\]]
expected: FAIL
@ -308,27 +146,15 @@
[Web Animations: property <background-image> from [url(../resources/blue-100.png)\] to [cross-fade(url(../resources/green-100.png), url(../resources/stripes-100.png), 0.5)\] at (0.6) should be [cross-fade(url(../resources/green-100.png), url(../resources/stripes-100.png), 0.5)\]]
expected: FAIL
[CSS Animations: property <background-image> 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
[Web Animations: property <background-image> 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 <background-image> from [unset\] to [url(../resources/green-100.png)\] at (1) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-image> from [url(../resources/blue-100.png)\] to [cross-fade(url(../resources/green-100.png), url(../resources/stripes-100.png), 0.5)\] at (-0.3) should be [url(../resources/blue-100.png)\]]
expected: FAIL
[CSS Animations: property <background-image> 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
[Web Animations: property <background-image> 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 Transitions with transition: all: property <background-image> 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 Animations: property <background-image> from [url(../resources/blue-100.png)\] to [cross-fade(url(../resources/green-100.png), url(../resources/stripes-100.png), 0.5)\] at (-0.3) should be [url(../resources/blue-100.png)\]]
expected: FAIL
@ -338,48 +164,18 @@
[Web Animations: property <background-image> 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 <background-image> from [unset\] to [url(../resources/green-100.png)\] at (-0.3) should be [none\]]
expected: FAIL
[CSS Transitions: property <background-image> from [none\] to [url(../resources/green-100.png)\] at (0.6) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Animations: property <background-image> 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
[Web Animations: property <background-image> from [url(../resources/blue-100.png)\] to [url(../resources/green-100.png)\] at (1) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Animations: property <background-image> from [url(../resources/blue-100.png)\] to [cross-fade(url(../resources/green-100.png), url(../resources/stripes-100.png), 0.5)\] at (1) should be [cross-fade(url(../resources/green-100.png), url(../resources/stripes-100.png), 0.5)\]]
expected: FAIL
[CSS Animations: property <background-image> from [none\] to [url(../resources/green-100.png)\] at (0.6) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-image> 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 Animations: property <background-image> 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 <background-image> from [unset\] to [url(../resources/green-100.png)\] at (0.6) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Animations: property <background-image> from [unset\] to [url(../resources/green-100.png)\] at (0.3) should be [none\]]
expected: FAIL
[Web Animations: property <background-image> from [inherit\] to [url(../resources/green-100.png)\] at (0.3) should be [url(../resources/blue-100.png)\]]
expected: FAIL
[Web Animations: property <background-image> 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 Transitions with transition: all: property <background-image> 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 Animations: property <background-image> from [url(../resources/blue-100.png)\] to [url(../resources/green-100.png)\] at (1) should be [url(../resources/green-100.png)\]]
expected: FAIL
[Web Animations: property <background-image> from [none\] to [url(../resources/green-100.png)\] at (0.3) should be [none\]]
expected: FAIL
@ -392,15 +188,6 @@
[Web Animations: property <background-image> 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: property <background-image> 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 Transitions: property <background-image> from [unset\] to [url(../resources/green-100.png)\] at (1.5) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-image> 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
[Web Animations: property <background-image> from [none\] to [url(../resources/green-100.png)\] at (0.6) should be [url(../resources/green-100.png)\]]
expected: FAIL
@ -422,42 +209,21 @@
[Web Animations: property <background-image> 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 <background-image> 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 <background-image> from [none\] to [url(../resources/green-100.png)\] at (0.6) should be [url(../resources/green-100.png)\]]
expected: FAIL
[Web Animations: property <background-image> from [url(../resources/blue-100.png)\] to [url(../resources/green-100.png)\] at (-0.3) should be [url(../resources/blue-100.png)\]]
expected: FAIL
[Web Animations: property <background-image> from neutral to [url(../resources/green-100.png)\] at (1.5) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Animations: property <background-image> 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 <background-image> from neutral to [url(../resources/green-100.png)\] at (1.5) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Transitions: property <background-image> from [url(../resources/blue-100.png)\] to [cross-fade(url(../resources/green-100.png), url(../resources/stripes-100.png), 0.5)\] at (0.3) should be [url(../resources/blue-100.png)\]]
expected: FAIL
[CSS Animations: property <background-image> 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
[Web Animations: property <background-image> 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
[Web Animations: property <background-image> 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 <background-image> 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 <background-image> from [initial\] to [url(../resources/green-100.png)\] at (0.6) should be [url(../resources/green-100.png)\]]
expected: FAIL
[Web Animations: property <background-image> from [initial\] to [url(../resources/green-100.png)\] at (1) should be [url(../resources/green-100.png)\]]
expected: FAIL
@ -467,9 +233,6 @@
[Web Animations: property <background-image> from [initial\] to [url(../resources/green-100.png)\] at (0) should be [none\]]
expected: FAIL
[CSS Animations: property <background-image> from [initial\] to [url(../resources/green-100.png)\] at (0.6) should be [url(../resources/green-100.png)\]]
expected: FAIL
[Web Animations: property <background-image> from [none\] to [url(../resources/green-100.png)\] at (1.5) should be [url(../resources/green-100.png)\]]
expected: FAIL
@ -479,78 +242,30 @@
[Web Animations: property <background-image> 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 with transition: all: property <background-image> 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
[Web Animations: property <background-image> 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: property <background-image> from [initial\] to [url(../resources/green-100.png)\] at (1.5) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Animations: property <background-image> from [url(../resources/blue-100.png)\] to [linear-gradient(45deg, blue, orange)\] at (1.5) should be [linear-gradient(45deg, blue, orange)\]]
expected: FAIL
[Web Animations: property <background-image> 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 Transitions: property <background-image> 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
[Web Animations: property <background-image> from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0.3) should be [linear-gradient(-45deg, red, yellow)\]]
expected: FAIL
[Web Animations: property <background-image> from [url(../resources/blue-100.png)\] to [cross-fade(url(../resources/green-100.png), url(../resources/stripes-100.png), 0.5)\] at (0.3) should be [url(../resources/blue-100.png)\]]
expected: FAIL
[CSS Animations: property <background-image> 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 Transitions: property <background-image> from neutral to [url(../resources/green-100.png)\] at (1.5) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Animations: property <background-image> 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
[Web Animations: property <background-image> from [url(../resources/blue-100.png)\] to [cross-fade(url(../resources/green-100.png), url(../resources/stripes-100.png), 0.5)\] at (1) should be [cross-fade(url(../resources/green-100.png), url(../resources/stripes-100.png), 0.5)\]]
expected: FAIL
[CSS Animations: property <background-image> from [inherit\] to [url(../resources/green-100.png)\] at (1.5) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-image> from [none\] to [url(../resources/green-100.png)\] at (1.5) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Animations: property <background-image> from [none\] to [url(../resources/green-100.png)\] at (1.5) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Animations: property <background-image> from [none\] to [url(../resources/green-100.png)\] at (-0.3) should be [none\]]
expected: FAIL
[CSS Animations: property <background-image> 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
[Web Animations: property <background-image> from [inherit\] to [url(../resources/green-100.png)\] at (1.5) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-image> from [url(../resources/blue-100.png)\] to [cross-fade(url(../resources/green-100.png), url(../resources/stripes-100.png), 0.5)\] at (0) should be [url(../resources/blue-100.png)\]]
expected: FAIL
[CSS Animations: property <background-image> from [none\] to [url(../resources/green-100.png)\] at (0) should be [none\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-image> from [initial\] to [url(../resources/green-100.png)\] at (1.5) should be [url(../resources/green-100.png)\]]
expected: FAIL
[CSS Transitions: property <background-image> from [url(../resources/blue-100.png)\] to [cross-fade(url(../resources/green-100.png), url(../resources/stripes-100.png), 0.5)\] at (-0.3) should be [url(../resources/blue-100.png)\]]
expected: FAIL
[CSS Animations: property <background-image> 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 Animations: property <background-image> 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 Transitions: property <background-image> from [url(../resources/blue-100.png)\] to [linear-gradient(45deg, blue, orange)\] at (1.5) should be [linear-gradient(45deg, blue, orange)\]]
expected: FAIL

View file

@ -2,66 +2,18 @@
[background-position-x-interpolation]
expected: FAIL
[CSS Transitions: property <background-position-x> from [inherit\] to [80px\] at (0.75) should be [75px\]]
expected: FAIL
[CSS Transitions: property <background-position-x> from neutral to [80px\] at (0.75) should be [70px\]]
expected: FAIL
[CSS Transitions: property <background-position-x> from neutral to [80px\] at (-0.25) should be [30px\]]
expected: FAIL
[CSS Animations: property <background-position-x> from [inherit\] to [80px\] at (-0.25) should be [55px\]]
expected: FAIL
[CSS Animations: property <background-position-x> 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 <background-position-x> from [300px, 400px\] to [500px, 600px, 700px\] at (1.25) should be [550px, 650px, 800px, 525px, 675px, 775px\]]
expected: FAIL
[CSS Animations: property <background-position-x> from [initial\] to [right\] at (0.5) should be [50%\]]
expected: FAIL
[Web Animations: property <background-position-x> from [inherit\] to [80px\] at (0.75) should be [75px\]]
expected: FAIL
[CSS Transitions: property <background-position-x> from [inherit\] to [80px\] at (-0.25) should be [55px\]]
expected: FAIL
[Web Animations: property <background-position-x> from [inherit\] to [80px\] at (-0.25) should be [55px\]]
expected: FAIL
[CSS Transitions: property <background-position-x> from [inherit\] to [80px\] at (0.5) should be [70px\]]
expected: FAIL
[Web Animations: property <background-position-x> from neutral to [80px\] at (0.25) should be [50px\]]
expected: FAIL
[CSS Animations: property <background-position-x> from neutral to [80px\] at (-0.25) should be [30px\]]
expected: FAIL
[CSS Animations: property <background-position-x> from neutral to [80px\] at (0.75) should be [70px\]]
expected: FAIL
[CSS Animations: property <background-position-x> from [300px, 400px\] to [500px, 600px, 700px\] at (1.25) should be [550px, 650px, 800px, 525px, 675px, 775px\]]
expected: FAIL
[CSS Animations: property <background-position-x> from neutral to [80px\] at (1) should be [80px\]]
expected: FAIL
[CSS Animations: property <background-position-x> from [initial\] to [right\] at (1) should be [100%\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-x> from [inherit\] to [80px\] at (1.25) should be [85px\]]
expected: FAIL
[CSS Transitions: property <background-position-x> from [inherit\] to [80px\] at (1.25) should be [85px\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-x> from [inherit\] to [80px\] at (-0.25) should be [55px\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-x> from [300px, 400px\] to [500px, 600px, 700px\] at (-0.25) should be [250px, 350px, 200px, 375px, 225px, 325px\]]
expected: FAIL
@ -74,15 +26,9 @@
[CSS Transitions with transition: all: property <background-position-x> from [300px, 400px\] to [500px, 600px, 700px\] at (0.75) should be [450px, 550px, 600px, 475px, 525px, 625px\]]
expected: FAIL
[CSS Transitions: property <background-position-x> from neutral to [80px\] at (0.25) should be [50px\]]
expected: FAIL
[Web Animations: property <background-position-x> from [300px, 400px\] to [500px, 600px, 700px\] at (1.25) should be [550px, 650px, 800px, 525px, 675px, 775px\]]
expected: FAIL
[CSS Animations: property <background-position-x> from [300px, 400px\] to [500px, 600px, 700px\] at (-0.25) should be [250px, 350px, 200px, 375px, 225px, 325px\]]
expected: FAIL
[Web Animations: property <background-position-x> from [300px, 400px\] to [500px, 600px, 700px\] at (1) should be [500px, 600px, 700px, 500px, 600px, 700px\]]
expected: FAIL
@ -92,39 +38,18 @@
[CSS Animations: property <background-position-x> from [inherit\] to [80px\] at (0.75) should be [75px\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-x> from neutral to [80px\] at (-0.25) should be [30px\]]
expected: FAIL
[CSS Animations: property <background-position-x> from neutral to [80px\] at (0.5) should be [60px\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-x> from [initial\] to [right\] at (0.5) should be [50%\]]
expected: FAIL
[CSS Transitions: property <background-position-x> 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 <background-position-x> from neutral to [80px\] at (0.75) should be [70px\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-x> from [inherit\] to [80px\] at (0.25) should be [65px\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-x> from neutral to [80px\] at (1.25) should be [90px\]]
expected: FAIL
[Web Animations: property <background-position-x> from neutral to [80px\] at (1) should be [80px\]]
expected: FAIL
[Web Animations: property <background-position-x> from [inherit\] to [80px\] at (1) should be [80px\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-x> from [inherit\] to [80px\] at (0.5) should be [70px\]]
expected: FAIL
[CSS Animations: property <background-position-x> from [300px, 400px\] to [500px, 600px, 700px\] at (0.5) should be [400px, 500px, 500px, 450px, 450px, 550px\]]
expected: FAIL
[Web Animations: property <background-position-x> from [initial\] to [right\] at (0.5) should be [50%\]]
expected: FAIL
@ -134,42 +59,15 @@
[Web Animations: property <background-position-x> from neutral to [80px\] at (0) should be [40px\]]
expected: FAIL
[CSS Transitions: property <background-position-x> from [initial\] to [right\] at (0.75) should be [75%\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-x> from neutral to [80px\] at (0.5) should be [60px\]]
expected: FAIL
[Web Animations: property <background-position-x> from [initial\] to [right\] at (1) should be [100%\]]
expected: FAIL
[CSS Animations: property <background-position-x> 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 <background-position-x> from neutral to [80px\] at (0.25) should be [50px\]]
expected: FAIL
[CSS Animations: property <background-position-x> from [initial\] to [right\] at (-0.25) should be [-25%\]]
expected: FAIL
[CSS Animations: property <background-position-x> from [inherit\] to [80px\] at (1.25) should be [85px\]]
expected: FAIL
[CSS Transitions: property <background-position-x> from [initial\] to [right\] at (0.5) should be [50%\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-x> from [initial\] to [right\] at (1.25) should be [125%\]]
expected: FAIL
[CSS Animations: property <background-position-x> from [inherit\] to [80px\] at (1) should be [80px\]]
expected: FAIL
[CSS Transitions: property <background-position-x> from [initial\] to [right\] at (1.25) should be [125%\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-x> from [inherit\] to [80px\] at (0.75) should be [75px\]]
expected: FAIL
[CSS Transitions: property <background-position-x> from [initial\] to [right\] at (-0.25) should be [-25%\]]
expected: FAIL
@ -182,36 +80,15 @@
[Web Animations: property <background-position-x> from [300px, 400px\] to [500px, 600px, 700px\] at (-0.25) should be [250px, 350px, 200px, 375px, 225px, 325px\]]
expected: FAIL
[CSS Animations: property <background-position-x> from [initial\] to [right\] at (1.25) should be [125%\]]
expected: FAIL
[Web Animations: property <background-position-x> from [300px, 400px\] to [500px, 600px, 700px\] at (0.5) should be [400px, 500px, 500px, 450px, 450px, 550px\]]
expected: FAIL
[CSS Animations: property <background-position-x> from [initial\] to [right\] at (0) should be [0%\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-x> from [initial\] to [right\] at (0.75) should be [75%\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-x> from [initial\] to [right\] at (-0.25) should be [-25%\]]
expected: FAIL
[CSS Animations: property <background-position-x> from neutral to [80px\] at (1.25) should be [90px\]]
expected: FAIL
[Web Animations: property <background-position-x> from [initial\] to [right\] at (0) should be [0%\]]
expected: FAIL
[Web Animations: property <background-position-x> from [initial\] to [right\] at (1.25) should be [125%\]]
expected: FAIL
[CSS Transitions: property <background-position-x> from neutral to [80px\] at (0.5) should be [60px\]]
expected: FAIL
[CSS Animations: property <background-position-x> 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 <background-position-x> from [300px, 400px\] to [500px, 600px, 700px\] at (0.25) should be [350px, 450px, 400px, 425px, 375px, 475px\]]
expected: FAIL
@ -227,27 +104,12 @@
[CSS Animations: property <background-position-x> from [inherit\] to [80px\] at (0.25) should be [65px\]]
expected: FAIL
[CSS Transitions: property <background-position-x> from neutral to [80px\] at (1.25) should be [90px\]]
expected: FAIL
[Web Animations: property <background-position-x> from [initial\] to [right\] at (0.25) should be [25%\]]
expected: FAIL
[CSS Animations: property <background-position-x> from [initial\] to [right\] at (0.25) should be [25%\]]
expected: FAIL
[Web Animations: property <background-position-x> from neutral to [80px\] at (0.5) should be [60px\]]
expected: FAIL
[CSS Animations: property <background-position-x> from neutral to [80px\] at (0.25) should be [50px\]]
expected: FAIL
[CSS Animations: property <background-position-x> from [300px, 400px\] to [500px, 600px, 700px\] at (1) should be [500px, 600px, 700px, 500px, 600px, 700px\]]
expected: FAIL
[CSS Animations: property <background-position-x> from [initial\] to [right\] at (0.75) should be [75%\]]
expected: FAIL
[Web Animations: property <background-position-x> from [300px, 400px\] to [500px, 600px, 700px\] at (0) should be [300px, 400px, 300px, 400px, 300px, 400px\]]
expected: FAIL
@ -260,9 +122,6 @@
[CSS Transitions: property <background-position-x> 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 <background-position-x> from [initial\] to [right\] at (0.25) should be [25%\]]
expected: FAIL
[Web Animations: property <background-position-x> from [inherit\] to [80px\] at (1.25) should be [85px\]]
expected: FAIL
@ -284,6 +143,21 @@
[Web Animations: property <background-position-x> from [inherit\] to [80px\] at (0.25) should be [65px\]]
expected: FAIL
[CSS Transitions: property <background-position-x> from [inherit\] to [80px\] at (0.25) should be [65px\]]
[CSS Transitions: property <background-position-x> from [initial\] to [right\] at (0.75) should be [75%\]]
expected: FAIL
[CSS Transitions: property <background-position-x> from [initial\] to [right\] at (1.25) should be [125%\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-x> from [initial\] to [right\] at (0.75) should be [75%\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-x> from [initial\] to [right\] at (-0.25) should be [-25%\]]
expected: FAIL
[CSS Transitions: property <background-position-x> from neutral to [80px\] at (0.5) should be [60px\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-x> from [initial\] to [right\] at (0.25) should be [25%\]]
expected: FAIL

View file

@ -2,15 +2,9 @@
[background-position-y-interpolation]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-y> from [inherit\] to [80px\] at (0.25) should be [65px\]]
expected: FAIL
[Web Animations: property <background-position-y> from [300px, 400px\] to [500px, 600px, 700px\] at (1.25) should be [550px, 650px, 800px, 525px, 675px, 775px\]]
expected: FAIL
[CSS Animations: property <background-position-y> from [initial\] to [bottom\] at (0) should be [0%\]]
expected: FAIL
[CSS Transitions: property <background-position-y> from [initial\] to [bottom\] at (-0.25) should be [-25%\]]
expected: FAIL
@ -20,132 +14,54 @@
[Web Animations: property <background-position-y> from [inherit\] to [80px\] at (0) should be [60px\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-y> from neutral to [80px\] at (0.75) should be [70px\]]
expected: FAIL
[Web Animations: property <background-position-y> from neutral to [80px\] at (0.5) should be [60px\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-y> from [inherit\] to [80px\] at (1.25) should be [85px\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-y> from [300px, 400px\] to [500px, 600px, 700px\] at (0.25) should be [350px, 450px, 400px, 425px, 375px, 475px\]]
expected: FAIL
[CSS Animations: property <background-position-y> from [initial\] to [bottom\] at (1.25) should be [125%\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-y> from [inherit\] to [80px\] at (0.75) should be [75px\]]
expected: FAIL
[CSS Animations: property <background-position-y> from neutral to [80px\] at (1) should be [80px\]]
expected: FAIL
[CSS Animations: property <background-position-y> from [inherit\] to [80px\] at (0) should be [60px\]]
expected: FAIL
[CSS Animations: property <background-position-y> from [initial\] to [bottom\] at (0.25) should be [25%\]]
expected: FAIL
[CSS Animations: property <background-position-y> from [inherit\] to [80px\] at (-0.25) should be [55px\]]
expected: FAIL
[Web Animations: property <background-position-y> from [inherit\] to [80px\] at (0.25) should be [65px\]]
expected: FAIL
[CSS Animations: property <background-position-y> from neutral to [80px\] at (1.25) should be [90px\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-y> from neutral to [80px\] at (1.25) should be [90px\]]
expected: FAIL
[CSS Animations: property <background-position-y> from [initial\] to [bottom\] at (0.75) should be [75%\]]
expected: FAIL
[CSS Animations: property <background-position-y> from neutral to [80px\] at (0.25) should be [50px\]]
expected: FAIL
[CSS Animations: property <background-position-y> from [inherit\] to [80px\] at (1.25) should be [85px\]]
expected: FAIL
[CSS Transitions: property <background-position-y> from [initial\] to [bottom\] at (1.25) should be [125%\]]
expected: FAIL
[CSS Animations: property <background-position-y> from neutral to [80px\] at (0.5) should be [60px\]]
expected: FAIL
[CSS Animations: property <background-position-y> 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 <background-position-y> from neutral to [80px\] at (0.5) should be [60px\]]
expected: FAIL
[CSS Animations: property <background-position-y> from [initial\] to [bottom\] at (1) should be [100%\]]
expected: FAIL
[CSS Transitions: property <background-position-y> from neutral to [80px\] at (-0.25) should be [30px\]]
expected: FAIL
[Web Animations: property <background-position-y> from [initial\] to [bottom\] at (0.5) should be [50%\]]
expected: FAIL
[CSS Transitions: property <background-position-y> from [inherit\] to [80px\] at (-0.25) should be [55px\]]
expected: FAIL
[CSS Animations: property <background-position-y> from [300px, 400px\] to [500px, 600px, 700px\] at (0.5) should be [400px, 500px, 500px, 450px, 450px, 550px\]]
expected: FAIL
[CSS Animations: property <background-position-y> from neutral to [80px\] at (0.75) should be [70px\]]
expected: FAIL
[CSS Transitions: property <background-position-y> from [inherit\] to [80px\] at (0.75) should be [75px\]]
expected: FAIL
[Web Animations: property <background-position-y> 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 <background-position-y> from [inherit\] to [80px\] at (0.5) should be [70px\]]
expected: FAIL
[Web Animations: property <background-position-y> from neutral to [80px\] at (0) should be [40px\]]
expected: FAIL
[CSS Transitions: property <background-position-y> from neutral to [80px\] at (0.5) should be [60px\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-y> from [300px, 400px\] to [500px, 600px, 700px\] at (-0.25) should be [250px, 350px, 200px, 375px, 225px, 325px\]]
expected: FAIL
[Web Animations: property <background-position-y> from [300px, 400px\] to [500px, 600px, 700px\] at (0.5) should be [400px, 500px, 500px, 450px, 450px, 550px\]]
expected: FAIL
[CSS Animations: property <background-position-y> from [initial\] to [bottom\] at (-0.25) should be [-25%\]]
expected: FAIL
[Web Animations: property <background-position-y> from [inherit\] to [80px\] at (1) should be [80px\]]
expected: FAIL
[CSS Transitions: property <background-position-y> from [initial\] to [bottom\] at (0.75) should be [75%\]]
expected: FAIL
[CSS Transitions: property <background-position-y> from neutral to [80px\] at (1.25) should be [90px\]]
expected: FAIL
[CSS Animations: property <background-position-y> 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 <background-position-y> from [300px, 400px\] to [500px, 600px, 700px\] at (0.5) should be [400px, 500px, 500px, 450px, 450px, 550px\]]
expected: FAIL
[CSS Transitions: property <background-position-y> from neutral to [80px\] at (0.75) should be [70px\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-y> from [initial\] to [bottom\] at (0.25) should be [25%\]]
expected: FAIL
[CSS Animations: property <background-position-y> from neutral to [80px\] at (-0.25) should be [30px\]]
expected: FAIL
[Web Animations: property <background-position-y> from [initial\] to [bottom\] at (0.75) should be [75%\]]
expected: FAIL
@ -155,9 +71,6 @@
[Web Animations: property <background-position-y> from [initial\] to [bottom\] at (0) should be [0%\]]
expected: FAIL
[CSS Transitions: property <background-position-y> from [inherit\] to [80px\] at (0.5) should be [70px\]]
expected: FAIL
[CSS Transitions: property <background-position-y> from [300px, 400px\] to [500px, 600px, 700px\] at (0.75) should be [450px, 550px, 600px, 475px, 525px, 625px\]]
expected: FAIL
@ -167,39 +80,21 @@
[CSS Transitions with transition: all: property <background-position-y> 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 <background-position-y> from [300px, 400px\] to [500px, 600px, 700px\] at (1.25) should be [550px, 650px, 800px, 525px, 675px, 775px\]]
expected: FAIL
[Web Animations: property <background-position-y> from [300px, 400px\] to [500px, 600px, 700px\] at (0) should be [300px, 400px, 300px, 400px, 300px, 400px\]]
expected: FAIL
[CSS Transitions: property <background-position-y> from [300px, 400px\] to [500px, 600px, 700px\] at (-0.25) should be [250px, 350px, 200px, 375px, 225px, 325px\]]
expected: FAIL
[CSS Animations: property <background-position-y> from [initial\] to [bottom\] at (0.5) should be [50%\]]
expected: FAIL
[Web Animations: property <background-position-y> from [initial\] to [bottom\] at (1.25) should be [125%\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-y> from [initial\] to [bottom\] at (1.25) should be [125%\]]
expected: FAIL
[CSS Transitions: property <background-position-y> from [inherit\] to [80px\] at (0.25) should be [65px\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-y> from [initial\] to [bottom\] at (0.75) should be [75%\]]
expected: FAIL
[Web Animations: property <background-position-y> from [300px, 400px\] to [500px, 600px, 700px\] at (0.25) should be [350px, 450px, 400px, 425px, 375px, 475px\]]
expected: FAIL
[Web Animations: property <background-position-y> from [300px, 400px\] to [500px, 600px, 700px\] at (1) should be [500px, 600px, 700px, 500px, 600px, 700px\]]
expected: FAIL
[CSS Animations: property <background-position-y> from [300px, 400px\] to [500px, 600px, 700px\] at (1) should be [500px, 600px, 700px, 500px, 600px, 700px\]]
expected: FAIL
[CSS Animations: property <background-position-y> from [inherit\] to [80px\] at (0.75) should be [75px\]]
expected: FAIL
@ -221,9 +116,6 @@
[Web Animations: property <background-position-y> from neutral to [80px\] at (1) should be [80px\]]
expected: FAIL
[CSS Transitions: property <background-position-y> from neutral to [80px\] at (0.25) should be [50px\]]
expected: FAIL
[Web Animations: property <background-position-y> from [initial\] to [bottom\] at (-0.25) should be [-25%\]]
expected: FAIL
@ -233,21 +125,12 @@
[Web Animations: property <background-position-y> from [inherit\] to [80px\] at (0.75) should be [75px\]]
expected: FAIL
[CSS Transitions: property <background-position-y> from [inherit\] to [80px\] at (1.25) should be [85px\]]
expected: FAIL
[Web Animations: property <background-position-y> from [initial\] to [bottom\] at (0.25) should be [25%\]]
expected: FAIL
[CSS Transitions: property <background-position-y> from [initial\] to [bottom\] at (0.5) should be [50%\]]
expected: FAIL
[CSS Animations: property <background-position-y> 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 <background-position-y> from neutral to [80px\] at (0.25) should be [50px\]]
expected: FAIL
[Web Animations: property <background-position-y> from neutral to [80px\] at (-0.25) should be [30px\]]
expected: FAIL
@ -263,27 +146,24 @@
[CSS Animations: property <background-position-y> from [inherit\] to [80px\] at (0.25) should be [65px\]]
expected: FAIL
[CSS Animations: property <background-position-y> 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 <background-position-y> from [initial\] to [bottom\] at (-0.25) should be [-25%\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-y> from neutral to [80px\] at (-0.25) should be [30px\]]
expected: FAIL
[CSS Transitions with transition: all: property <background-position-y> from [inherit\] to [80px\] at (-0.25) should be [55px\]]
expected: FAIL
[Web Animations: property <background-position-y> from neutral to [80px\] at (0.25) should be [50px\]]
expected: FAIL
[CSS Animations: property <background-position-y> from [300px, 400px\] to [500px, 600px, 700px\] at (-0.25) should be [250px, 350px, 200px, 375px, 225px, 325px\]]
expected: FAIL
[CSS Transitions: property <background-position-y> from [300px, 400px\] to [500px, 600px, 700px\] at (0.25) should be [350px, 450px, 400px, 425px, 375px, 475px\]]
expected: FAIL
[CSS Animations: property <background-position-y> from [inherit\] to [80px\] at (1) should be [80px\]]
[CSS Transitions: property <background-position-y> from neutral to [80px\] at (-0.25) should be [30px\]]
expected: FAIL
[CSS Transitions: property <background-position-y> from neutral to [80px\] at (0.5) should be [60px\]]
expected: FAIL
[CSS Transitions: property <background-position-y> from neutral to [80px\] at (0.75) should be [70px\]]
expected: FAIL
[CSS Transitions: property <background-position-y> from neutral to [80px\] at (0.25) should be [50px\]]
expected: FAIL

View file

@ -53,9 +53,6 @@
[CSS Transitions: property <background-size> 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 <background-size> 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 <background-size> from [0px\] to [80px\] at (1.25) should be [100px, 100px, 100px, 100px\]]
expected: FAIL
@ -338,9 +335,6 @@
[Web Animations: property <background-size> from [initial\] to [20px 20px, 0px 0px\] at (0.5) should be [20px 20px, 0px 0px\]]
expected: FAIL
[CSS Animations: property <background-size> 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 <background-size> from [0px 0px\] to [80px 80px\] at (-0.25) should be [ 0px 0px, 0px 0px, 0px 0px, 0px 0px\]]
expected: FAIL
@ -368,9 +362,6 @@
[CSS Animations: property <background-size> 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 <background-size> 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 <background-size> from [0px\] to [80px\] at (1.25) should be [100px, 100px, 100px, 100px\]]
expected: FAIL
@ -395,9 +386,6 @@
[Web Animations: property <background-size> from [inherit\] to [20px 20px, 0px 0px\] at (1.25) should be [ 0px 0px, 0px 0px, 0px 0px, 0px 0px\]]
expected: FAIL
[CSS Animations: property <background-size> 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 <background-size> from [0px\] to [80px\] at (-0.25) should be [ 0px, 0px, 0px, 0px\]]
expected: FAIL
@ -467,15 +455,9 @@
[Web Animations: property <background-size> 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 Transitions with transition: all: property <background-size> 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
[Web Animations: property <background-size> 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 Animations: property <background-size> 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
[Web Animations: property <background-size> from [0px 0px\] to [80px 80px\] at (1.25) should be [100px 100px, 100px 100px, 100px 100px, 100px 100px\]]
expected: FAIL
@ -620,12 +602,6 @@
[Web Animations: property <background-size> from [0px 0px\] to [80px 80px\] at (0.5) should be [ 40px 40px, 40px 40px, 40px 40px, 40px 40px\]]
expected: FAIL
[CSS Animations: property <background-size> 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 <background-size> 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 <background-size> from [unset\] to [20px 20px, 0px 0px\] at (1) should be [20px 20px, 0px 0px\]]
expected: FAIL

View file

@ -2,12 +2,6 @@
[border-color interpolation]
expected: FAIL
[CSS Animations: property <border-top-color> from [white\] to [orange\] at (1.5) should be [rgb(255, 120, 0)\]]
expected: FAIL
[CSS Animations: property <border-top-color> from [unset\] to [orange\] at (0.3) should be [rgb(77, 50, 0)\]]
expected: FAIL
[CSS Animations: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (-0.3) should be [rgb(23, 33, 43) rgb(40, 50, 60) rgb(17, 27, 37) rgb(37, 47, 57)\]]
expected: FAIL
@ -17,72 +11,27 @@
[CSS Animations: property <border-top-color> from [inherit\] to [orange\] at (0.3) should be [rgb(255, 228, 179)\]]
expected: FAIL
[CSS Animations: property <border-top-color> from [unset\] to [orange\] at (1) should be [rgb(255, 165, 0)\]]
expected: FAIL
[CSS Animations: property <border-top-color> from neutral to [orange\] at (0.6) should be [rgb(153, 99, 56)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (0.3) should be [rgb(17, 27, 37) rgb(40, 50, 60) rgb(23, 33, 43) rgb(43, 53, 63)\]]
expected: FAIL
[CSS Animations: property <border-top-color> from [initial\] to [orange\] at (0) should be [rgb(0, 0, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-color> from neutral to [orange\] at (-0.3) should be [rgb(0, 0, 181)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-color> from [inherit\] to [orange\] at (0.3) should be [rgb(255, 228, 179)\]]
expected: FAIL
[Web Animations: property <border-top-color> from [white\] to [orange\] at (-0.3) should be [white\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-color> from [unset\] to [orange\] at (1.5) should be [rgb(255, 248, 0)\]]
expected: FAIL
[CSS Transitions: property <border-top-color> from [unset\] to [orange\] at (0.6) should be [rgb(153, 99, 0)\]]
expected: FAIL
[CSS Transitions: property <border-top-color> from [inherit\] to [orange\] at (1.5) should be [rgb(255, 120, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-color> from [initial\] to [orange\] at (0.6) should be [rgb(153, 99, 0)\]]
expected: FAIL
[CSS Transitions: property <border-top-color> from [inherit\] to [orange\] at (0.3) should be [rgb(255, 228, 179)\]]
expected: FAIL
[CSS Transitions: property <border-top-color> from [initial\] to [orange\] at (0.6) should be [rgb(153, 99, 0)\]]
expected: FAIL
[CSS Transitions: property <border-top-color> from [white\] to [orange\] at (0.6) should be [rgb(255, 201, 102)\]]
expected: FAIL
[Web Animations: property <border-top-color> from [white\] to [orange\] at (1) should be [orange\]]
expected: FAIL
[CSS Animations: property <border-top-color> from neutral to [orange\] at (1.5) should be [rgb(255, 248, 0)\]]
expected: FAIL
[Web Animations: property <border-top-color> from [inherit\] to [orange\] at (0) should be [rgb(255, 255, 255)\]]
expected: FAIL
[CSS Transitions: property <border-top-color> from [inherit\] to [orange\] at (0.6) should be [rgb(255, 201, 102)\]]
expected: FAIL
[CSS Animations: property <border-top-color> from [unset\] to [orange\] at (1.5) should be [rgb(255, 248, 0)\]]
expected: FAIL
[CSS Animations: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (0.6) should be [rgb(14, 24, 34) rgb(40, 50, 60) rgb(26, 36, 46) rgb(46, 56, 66)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-color> from [white\] to [orange\] at (0.6) should be [rgb(255, 201, 102)\]]
expected: FAIL
[CSS Transitions: property <border-top-color> from neutral to [orange\] at (0.3) should be [rgb(77, 50, 97)\]]
expected: FAIL
[Web Animations: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (1) should be [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\]]
expected: FAIL
@ -92,12 +41,6 @@
[CSS Animations: property <border-top-color> from [white\] to [orange\] at (0.3) should be [rgb(255, 228, 179)\]]
expected: FAIL
[CSS Animations: property <border-top-color> from [initial\] to [orange\] at (-0.3) should be [rgb(0, 0, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-color> from neutral to [orange\] at (1.5) should be [rgb(255, 248, 0)\]]
expected: FAIL
[CSS Transitions: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (1) should be [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\]]
expected: FAIL
@ -107,9 +50,6 @@
[CSS Transitions: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (0) should be [rgb(20, 30, 40) rgb(40, 50, 60)\]]
expected: FAIL
[CSS Transitions: property <border-top-color> from [initial\] to [orange\] at (1.5) should be [rgb(255, 248, 0)\]]
expected: FAIL
[Web Animations: property <border-top-color> from [inherit\] to [orange\] at (1.5) should be [rgb(255, 120, 0)\]]
expected: FAIL
@ -119,15 +59,9 @@
[Web Animations: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (1.5) should be [rgb(5, 15, 25) rgb(40, 50, 60) rgb(35, 45, 55) rgb(55, 65, 75)\]]
expected: FAIL
[CSS Animations: property <border-top-color> from [white\] to [orange\] at (-0.3) should be [white\]]
expected: FAIL
[Web Animations: property <border-top-color> from neutral to [orange\] at (0) should be [rgb(0, 0, 139)\]]
expected: FAIL
[CSS Transitions: property <border-top-color> from neutral to [orange\] at (-0.3) should be [rgb(0, 0, 181)\]]
expected: FAIL
[Web Animations: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (0.6) should be [rgb(14, 24, 34) rgb(40, 50, 60) rgb(26, 36, 46) rgb(46, 56, 66)\]]
expected: FAIL
@ -155,9 +89,6 @@
[Web Animations: property <border-top-color> from [unset\] to [orange\] at (1.5) should be [rgb(255, 248, 0)\]]
expected: FAIL
[CSS Animations: property <border-top-color> from neutral to [orange\] at (0.3) should be [rgb(77, 50, 97)\]]
expected: FAIL
[CSS Transitions: property <border-top-color> from [white\] to [orange\] at (0.3) should be [rgb(255, 228, 179)\]]
expected: FAIL
@ -167,18 +98,6 @@
[CSS Animations: property <border-top-color> from [inherit\] to [orange\] at (0.6) should be [rgb(255, 201, 102)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-color> from [unset\] to [orange\] at (0.3) should be [rgb(77, 50, 0)\]]
expected: FAIL
[CSS Animations: property <border-top-color> from [white\] to [orange\] at (0) should be [white\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-color> from [initial\] to [orange\] at (0.3) should be [rgb(77, 50, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-color> from [unset\] to [orange\] at (0.6) should be [rgb(153, 99, 0)\]]
expected: FAIL
[Web Animations: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (0.3) should be [rgb(17, 27, 37) rgb(40, 50, 60) rgb(23, 33, 43) rgb(43, 53, 63)\]]
expected: FAIL
@ -188,21 +107,12 @@
[Web Animations: property <border-top-color> from [unset\] to [orange\] at (1) should be [rgb(255, 165, 0)\]]
expected: FAIL
[CSS Animations: property <border-top-color> from [unset\] to [orange\] at (0.6) should be [rgb(153, 99, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (0.6) should be [rgb(14, 24, 34) rgb(40, 50, 60) rgb(26, 36, 46) rgb(46, 56, 66)\]]
expected: FAIL
[CSS Animations: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (0) should be [rgb(20, 30, 40) rgb(40, 50, 60)\]]
expected: FAIL
[CSS Animations: property <border-top-color> from neutral to [orange\] at (1) should be [rgb(255, 165, 0)\]]
expected: FAIL
[CSS Transitions: property <border-top-color> from [initial\] to [orange\] at (0.3) should be [rgb(77, 50, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-color> from [white\] to [orange\] at (0.3) should be [rgb(255, 228, 179)\]]
expected: FAIL
@ -212,21 +122,9 @@
[Web Animations: property <border-top-color> from neutral to [orange\] at (1) should be [rgb(255, 165, 0)\]]
expected: FAIL
[CSS Animations: property <border-top-color> from [white\] to [orange\] at (0.6) should be [rgb(255, 201, 102)\]]
expected: FAIL
[Web Animations: property <border-top-color> from neutral to [orange\] at (0.3) should be [rgb(77, 50, 97)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-color> from [inherit\] to [orange\] at (1.5) should be [rgb(255, 120, 0)\]]
expected: FAIL
[CSS Transitions: property <border-top-color> from [unset\] to [orange\] at (1.5) should be [rgb(255, 248, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-color> from [white\] to [orange\] at (1.5) should be [rgb(255, 120, 0)\]]
expected: FAIL
[Web Animations: property <border-top-color> from [initial\] to [orange\] at (1.5) should be [rgb(255, 248, 0)\]]
expected: FAIL
@ -245,9 +143,6 @@
[CSS Transitions with transition: all: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (0) should be [rgb(20, 30, 40) rgb(40, 50, 60)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-color> from neutral to [orange\] at (0.3) should be [rgb(77, 50, 97)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (1.5) should be [rgb(5, 15, 25) rgb(40, 50, 60) rgb(35, 45, 55) rgb(55, 65, 75)\]]
expected: FAIL
@ -257,93 +152,45 @@
[Web Animations: property <border-top-color> from neutral to [orange\] at (0.6) should be [rgb(153, 99, 56)\]]
expected: FAIL
[CSS Animations: property <border-top-color> from [inherit\] to [orange\] at (1) should be [rgb(255, 165, 0)\]]
expected: FAIL
[CSS Transitions: property <border-top-color> from neutral to [orange\] at (0.6) should be [rgb(153, 99, 56)\]]
expected: FAIL
[CSS Transitions: property <border-top-color> from neutral to [orange\] at (1.5) should be [rgb(255, 248, 0)\]]
expected: FAIL
[CSS Animations: property <border-top-color> from [initial\] to [orange\] at (1) should be [rgb(255, 165, 0)\]]
expected: FAIL
[CSS Animations: property <border-top-color> from [initial\] to [orange\] at (0.6) should be [rgb(153, 99, 0)\]]
expected: FAIL
[CSS Transitions: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (0.6) should be [rgb(14, 24, 34) rgb(40, 50, 60) rgb(26, 36, 46) rgb(46, 56, 66)\]]
expected: FAIL
[CSS Animations: property <border-top-color> from [unset\] to [orange\] at (0) should be [rgb(0, 0, 0)\]]
expected: FAIL
[Web Animations: property <border-top-color> from neutral to [orange\] at (-0.3) should be [rgb(0, 0, 181)\]]
expected: FAIL
[CSS Animations: property <border-top-color> from [initial\] to [orange\] at (1.5) should be [rgb(255, 248, 0)\]]
expected: FAIL
[CSS Animations: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (1) should be [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\]]
expected: FAIL
[CSS Animations: property <border-top-color> from [unset\] to [orange\] at (-0.3) should be [rgb(0, 0, 0)\]]
expected: FAIL
[CSS Animations: property <border-top-color> from [white\] to [orange\] at (1) should be [orange\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-color> from neutral to [orange\] at (0.6) should be [rgb(153, 99, 56)\]]
expected: FAIL
[CSS Animations: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (1.5) should be [rgb(5, 15, 25) rgb(40, 50, 60) rgb(35, 45, 55) rgb(55, 65, 75)\]]
expected: FAIL
[Web Animations: property <border-top-color> from [white\] to [orange\] at (0.6) should be [rgb(255, 201, 102)\]]
expected: FAIL
[CSS Transitions: property <border-top-color> from [white\] to [orange\] at (1.5) should be [rgb(255, 120, 0)\]]
expected: FAIL
[Web Animations: property <border-top-color> from [white\] to [orange\] at (1.5) should be [rgb(255, 120, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-color> from [initial\] to [orange\] at (1.5) should be [rgb(255, 248, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (1) should be [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\]]
expected: FAIL
[CSS Animations: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (0.3) should be [rgb(17, 27, 37) rgb(40, 50, 60) rgb(23, 33, 43) rgb(43, 53, 63)\]]
expected: FAIL
[CSS Animations: property <border-top-color> from [initial\] to [orange\] at (0.3) should be [rgb(77, 50, 0)\]]
expected: FAIL
[Web Animations: property <border-top-color> from [unset\] to [orange\] at (0.3) should be [rgb(77, 50, 0)\]]
expected: FAIL
[Web Animations: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (-0.3) should be [rgb(23, 33, 43) rgb(40, 50, 60) rgb(17, 27, 37) rgb(37, 47, 57)\]]
expected: FAIL
[CSS Transitions: property <border-top-color> from [unset\] to [orange\] at (0.3) should be [rgb(77, 50, 0)\]]
expected: FAIL
[CSS Transitions: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (0.3) should be [rgb(17, 27, 37) rgb(40, 50, 60) rgb(23, 33, 43) rgb(43, 53, 63)\]]
expected: FAIL
[CSS Animations: property <border-top-color> from neutral to [orange\] at (-0.3) should be [rgb(0, 0, 181)\]]
expected: FAIL
[Web Animations: property <border-top-color> from [initial\] to [orange\] at (0) should be [rgb(0, 0, 0)\]]
expected: FAIL
[CSS Transitions: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (-0.3) should be [rgb(23, 33, 43) rgb(40, 50, 60) rgb(17, 27, 37) rgb(37, 47, 57)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-color> from [inherit\] to [orange\] at (0.6) should be [rgb(255, 201, 102)\]]
expected: FAIL
[Web Animations: property <border-top-color> from [white\] to [orange\] at (0.3) should be [rgb(255, 228, 179)\]]
expected: FAIL

View file

@ -2,48 +2,27 @@
[border-image-outset interpolation]
expected: FAIL
[CSS Transitions: property <border-image-outset> from neutral to [2px\] at (1.5) should be [2.5px\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [initial\] to [2\] at (0) should be [0\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [0px\] to [5px\] at (-0.3) should be [0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-outset> from [0\] to [1\] at (0.3) should be [0.3\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [0px\] to [5px\] at (1.5) should be [7.5px\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [0\] to [1\] at (1) should be [1\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [1 2 3px 4px\] to [101 102 103px 104px\] at (-0.3) should be [0 0 0px 0px\]]
expected: FAIL
[CSS Transitions: property <border-image-outset> from [1 2 3px 4px\] to [101 102 103px 104px\] at (0.3) should be [31 32 33px 34px\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [unset\] to [2\] at (0.3) should be [0.6\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-outset> from [initial\] to [2\] at (1.5) should be [3\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [unset\] to [2\] at (0) should be [0\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [1 2 3px 4px\] to [101 102 103px 104px\] at (0.3) should be [31 32 33px 34px\]]
expected: FAIL
[CSS Transitions: property <border-image-outset> from [inherit\] to [2px\] at (0.3) should be [7.6px\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [0\] to [1\] at (0) should be [0\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [0\] to [1\] at (1.5) should be [1.5\]]
expected: FAIL
@ -53,141 +32,45 @@
[Web Animations: property <border-image-outset> from [initial\] to [2\] at (-0.3) should be [0\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [initial\] to [2\] at (-0.3) should be [0\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [0\] to [1\] at (0.3) should be [0.3\]]
expected: FAIL
[Web Animations: property <border-image-outset> 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 <border-image-outset> from [unset\] to [2\] at (0.3) should be [0.6\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [0\] to [1\] at (0.6) should be [0.6\]]
expected: FAIL
[CSS Transitions: property <border-image-outset> from [0px\] to [5px\] at (1.5) should be [7.5px\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [0px\] to [5px\] at (0.3) should be [1.5px\]]
expected: FAIL
[CSS Transitions: property <border-image-outset> from [initial\] to [2\] at (0.6) should be [1.2\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [inherit\] to [2px\] at (0.6) should be [5.2px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-outset> from neutral to [2px\] at (0.3) should be [1.3px\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [unset\] to [2\] at (1.5) should be [3\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [0\] to [1\] at (0.3) should be [0.3\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-outset> from [initial\] to [2\] at (0.6) should be [1.2\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-outset> from [unset\] to [2\] at (1.5) should be [3\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [0px\] to [5px\] at (0.3) should be [1.5px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-outset> from [initial\] to [2\] at (0.3) should be [0.6\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [unset\] to [2\] at (0.3) should be [0.6\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [0\] to [1\] at (-0.3) should be [0\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [0px\] to [5px\] at (-0.3) should be [0px\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [0px\] to [5px\] at (1) should be [5px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-outset> 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 <border-image-outset> from [inherit\] to [2px\] at (-0.3) should be [12.4px\]]
expected: FAIL
[CSS Transitions: property <border-image-outset> from [initial\] to [2\] at (0.3) should be [0.6\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [initial\] to [2\] at (1) should be [2\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-outset> from [unset\] to [2\] at (0.6) should be [1.2\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from neutral to [2px\] at (0.6) should be [1.6px\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [unset\] to [2\] at (1.5) should be [3\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [initial\] to [2\] at (1.5) should be [3\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-outset> from [inherit\] to [2px\] at (0.3) should be [7.6px\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [unset\] to [2\] at (-0.3) should be [0\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-outset> from neutral to [2px\] at (1.5) should be [2.5px\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [inherit\] to [2px\] at (0.6) should be [5.2px\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from neutral to [2px\] at (0.3) should be [1.3px\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [initial\] to [2\] at (1) should be [2\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [0px\] to [5px\] at (0.6) should be [3px\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [inherit\] to [2px\] at (0.3) should be [7.6px\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [initial\] to [2\] at (1.5) should be [3\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-outset> from [1 2 3px 4px\] to [101 102 103px 104px\] at (0.6) should be [61 62 63px 64px\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from neutral to [2px\] at (1) should be [2px\]]
expected: FAIL
[CSS Transitions: property <border-image-outset> from [unset\] to [2\] at (1.5) should be [3\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [1 2 3px 4px\] to [101 102 103px 104px\] at (0) should be [1 2 3px 4px\]]
expected: FAIL
[CSS Transitions: property <border-image-outset> from [inherit\] to [2px\] at (1.5) should be [0px\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [1 2 3px 4px\] to [101 102 103px 104px\] at (1) should be [101 102 103px 104px\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [unset\] to [2\] at (1) should be [2\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-outset> from [0px\] to [5px\] at (1.5) should be [7.5px\]]
expected: FAIL
[CSS Transitions: property <border-image-outset> from [1 2 3px 4px\] to [101 102 103px 104px\] at (0.6) should be [61 62 63px 64px\]]
expected: FAIL
@ -203,57 +86,21 @@
[CSS Animations: property <border-image-outset> from [inherit\] to [2px\] at (1.5) should be [0px\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [initial\] to [2\] at (0.3) should be [0.6\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-outset> from [0px\] to [5px\] at (0.6) should be [3px\]]
expected: FAIL
[CSS Transitions: property <border-image-outset> from [1 2 3px 4px\] to [101 102 103px 104px\] at (-0.3) should be [0 0 0px 0px\]]
expected: FAIL
[Web Animations: property <border-image-outset> from neutral to [2px\] at (0.3) should be [1.3px\]]
expected: FAIL
[Web Animations: property <border-image-outset> from neutral to [2px\] at (1) should be [2px\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [0\] to [1\] at (1) should be [1\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-outset> from [1 2 3px 4px\] to [101 102 103px 104px\] at (-0.3) should be [0 0 0px 0px\]]
expected: FAIL
[CSS Transitions: property <border-image-outset> from [0px\] to [5px\] at (0.3) should be [1.5px\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [initial\] to [2\] at (0.6) should be [1.2\]]
expected: FAIL
[CSS Transitions: property <border-image-outset> from [0\] to [1\] at (1.5) should be [1.5\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-outset> from [0px\] to [5px\] at (0.3) should be [1.5px\]]
expected: FAIL
[CSS Transitions: property <border-image-outset> from [0px\] to [5px\] at (0.6) should be [3px\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [0\] to [1\] at (0.6) should be [0.6\]]
expected: FAIL
[CSS Transitions: property <border-image-outset> from neutral to [2px\] at (0.3) should be [1.3px\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [inherit\] to [2px\] at (0) should be [10px\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [1 2 3px 4px\] to [101 102 103px 104px\] at (-0.3) should be [0 0 0px 0px\]]
expected: FAIL
[CSS Transitions: property <border-image-outset> from [inherit\] to [2px\] at (-0.3) should be [12.4px\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [unset\] to [2\] at (0.6) should be [1.2\]]
expected: FAIL
@ -263,12 +110,6 @@
[Web Animations: property <border-image-outset> from [inherit\] to [2px\] at (0.3) should be [7.6px\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [inherit\] to [2px\] at (1) should be [2px\]]
expected: FAIL
[CSS Transitions: property <border-image-outset> from [unset\] to [2\] at (0.6) should be [1.2\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [initial\] to [2\] at (0) should be [0\]]
expected: FAIL
@ -278,120 +119,42 @@
[Web Animations: property <border-image-outset> from [inherit\] to [2px\] at (1.5) should be [0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-outset> from neutral to [2px\] at (-0.3) should be [0.7px\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [0px\] to [5px\] at (0.6) should be [3px\]]
expected: FAIL
[CSS Transitions: property <border-image-outset> from neutral to [2px\] at (-0.3) should be [0.7px\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from neutral to [2px\] at (1.5) should be [2.5px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-outset> from [inherit\] to [2px\] at (1.5) should be [0px\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [1 2 3px 4px\] to [101 102 103px 104px\] at (0.6) should be [61 62 63px 64px\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from neutral to [2px\] at (-0.3) should be [0.7px\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [0\] to [1\] at (0) should be [0\]]
expected: FAIL
[CSS Transitions: property <border-image-outset> from [initial\] to [2\] at (1.5) should be [3\]]
expected: FAIL
[Web Animations: property <border-image-outset> from neutral to [2px\] at (-0.3) should be [0.7px\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [inherit\] to [2px\] at (-0.3) should be [12.4px\]]
expected: FAIL
[CSS Transitions: property <border-image-outset> from [0\] to [1\] at (0.3) should be [0.3\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [unset\] to [2\] at (0) should be [0\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-outset> from [1 2 3px 4px\] to [101 102 103px 104px\] at (1.5) should be [151 152 153px 154px\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [unset\] to [2\] at (0.6) should be [1.2\]]
expected: FAIL
[CSS Transitions: property <border-image-outset> from [1 2 3px 4px\] to [101 102 103px 104px\] at (1.5) should be [151 152 153px 154px\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [inherit\] to [2px\] at (0) should be [10px\]]
expected: FAIL
[Web Animations: property <border-image-outset> from neutral to [2px\] at (0.6) should be [1.6px\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [1 2 3px 4px\] to [101 102 103px 104px\] at (0) should be [1 2 3px 4px\]]
expected: FAIL
[CSS Transitions: property <border-image-outset> from [0\] to [1\] at (0.6) should be [0.6\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-outset> from [0\] to [1\] at (0.6) should be [0.6\]]
expected: FAIL
[CSS Animations: property <border-image-outset> 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 <border-image-outset> from [0\] to [1\] at (1.5) should be [1.5\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [1 2 3px 4px\] to [101 102 103px 104px\] at (0.6) should be [61 62 63px 64px\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [unset\] to [2\] at (-0.3) should be [0\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-outset> from neutral to [2px\] at (0.6) should be [1.6px\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [0px\] to [5px\] at (1.5) should be [7.5px\]]
expected: FAIL
[CSS Transitions: property <border-image-outset> from [unset\] to [2\] at (0.3) should be [0.6\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [1 2 3px 4px\] to [101 102 103px 104px\] at (1) should be [101 102 103px 104px\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [1 2 3px 4px\] to [101 102 103px 104px\] at (0.3) should be [31 32 33px 34px\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [0px\] to [5px\] at (0) should be [0px\]]
expected: FAIL
[CSS Transitions: property <border-image-outset> from neutral to [2px\] at (0.6) should be [1.6px\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [0px\] to [5px\] at (1) should be [5px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-outset> from [inherit\] to [2px\] at (0.6) should be [5.2px\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [initial\] to [2\] at (0.3) should be [0.6\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [inherit\] to [2px\] at (1) should be [2px\]]
expected: FAIL
[CSS Animations: property <border-image-outset> from [0\] to [1\] at (1.5) should be [1.5\]]
expected: FAIL
[CSS Transitions: property <border-image-outset> from [inherit\] to [2px\] at (0.6) should be [5.2px\]]
expected: FAIL
[Web Animations: property <border-image-outset> from [0\] to [1\] at (-0.3) should be [0\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-outset> 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 <border-image-outset> from [1 2 3px 4px\] to [101 102 103px 104px\] at (0.6) should be [61 62 63px 64px\]]
expected: FAIL
[CSS Transitions: property <border-image-outset> from [1 2 3px 4px\] to [101 102 103px 104px\] at (1.5) should be [151 152 153px 154px\]]
expected: FAIL

View file

@ -5,9 +5,6 @@
[CSS Animations: property <border-image-slice> from [50%\] to [100\] at (1.5) should be [100\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (-0.5) should be [0% 0 0% 10 fill\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (1) should be [40% 50% 60% 70%\]]
expected: FAIL
@ -17,9 +14,6 @@
[Web Animations: property <border-image-slice> 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 <border-image-slice> from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (-0.5) should be [0% 0 0% 10 fill\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [initial\] to [10%\] at (0.6) should be [46%\]]
expected: FAIL
@ -35,60 +29,30 @@
[CSS Transitions: property <border-image-slice> from [initial\] to [10%\] at (-0.3) should be [127%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [unset\] to [10%\] at (1) should be [10%\]]
expected: FAIL
[Web Animations: property <border-image-slice> 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 <border-image-slice> from [unset\] to [10%\] at (0.6) should be [46%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> 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 <border-image-slice> 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 <border-image-slice> 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 <border-image-slice> from [inherit\] to [10%\] at (-0.3) should be [62%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> 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 <border-image-slice> 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 <border-image-slice> from [initial\] to [10%\] at (-0.3) should be [127%\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [0%\] to [50%\] at (0.6) should be [30%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (0) should be [0% 10% 20% 30%\]]
expected: FAIL
[Web Animations: property <border-image-slice> 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 <border-image-slice> from neutral to [10%\] at (0.3) should be [17%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [50% fill\] to [100 fill\] at (0.6) should be [100 fill\]]
expected: FAIL
[Web Animations: property <border-image-slice> from neutral to [10%\] at (1.5) should be [5%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> 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 <border-image-slice> 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 <border-image-slice> from [50%\] to [100\] at (0.3) should be [50%\]]
expected: FAIL
@ -107,48 +71,24 @@
[CSS Animations: property <border-image-slice> 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 <border-image-slice> 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 <border-image-slice> 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 <border-image-slice> from [unset\] to [10%\] at (-0.3) should be [127%\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [initial\] to [10%\] at (1) should be [10%\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (0.3) should be [12% 22% 32% 42%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [initial\] to [10%\] at (0.5) should be [55%\]]
expected: FAIL
[Web Animations: property <border-image-slice> from neutral to [10%\] at (0.6) should be [14%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-slice> from [unset\] to [10%\] at (1.5) should be [0%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [unset\] to [10%\] at (0.6) should be [46%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [0% fill\] to [50%\] at (1.5) should be [50%\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [50% fill\] to [100 fill\] at (0.5) should be [100 fill\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-slice> from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (0.3) should be [12% 22 32% 42 fill\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [unset\] to [10%\] at (-0.3) should be [127%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (0.5) should be [20 30 40 50 fill\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [inherit\] to [10%\] at (-0.3) should be [62%\]]
expected: FAIL
@ -164,12 +104,6 @@
[Web Animations: property <border-image-slice> from [0% 10 20 30 fill\] to [40 50 60% 70\] at (1) should be [40 50 60% 70\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> from neutral to [10%\] at (0.3) should be [17%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-slice> from neutral to [10%\] at (0.5) should be [15%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [0% fill\] to [50%\] at (0.3) should be [0% fill\]]
expected: FAIL
@ -179,27 +113,15 @@
[CSS Animations: property <border-image-slice> from [inherit\] to [10%\] at (0) should be [50%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> 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 <border-image-slice> from [50% fill\] to [100 fill\] at (1.5) should be [100 fill\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [inherit\] to [10%\] at (1) should be [10%\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> from neutral to [10%\] at (0.5) should be [15%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from neutral to [10%\] at (0.5) should be [15%\]]
expected: FAIL
[Web Animations: property <border-image-slice> 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 <border-image-slice> from [inherit\] to [10%\] at (1.5) should be [0%\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> from [initial\] to [10%\] at (0.5) should be [55%\]]
expected: FAIL
@ -209,12 +131,6 @@
[Web Animations: property <border-image-slice> from [unset\] to [10%\] at (0.3) should be [73%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [initial\] to [10%\] at (0) should be [100%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [0%\] to [50%\] at (0.5) should be [25%\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [50%\] to [100\] at (0.3) should be [50%\]]
expected: FAIL
@ -230,12 +146,6 @@
[CSS Animations: property <border-image-slice> from [50%\] to [100\] at (0.6) should be [100\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> from [inherit\] to [10%\] at (-0.3) should be [62%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (-0.5) should be [0% 0% 0% 10%\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [50%\] to [100\] at (0) should be [50%\]]
expected: FAIL
@ -245,15 +155,6 @@
[Web Animations: property <border-image-slice> from [0% fill\] to [50%\] at (1.5) should be [50%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-slice> from [unset\] to [10%\] at (0.3) should be [73%\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (0.5) should be [20% 30% 40% 50%\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (0.6) should be [24 34 44 54 fill\]]
expected: FAIL
[Web Animations: property <border-image-slice> from neutral to [10%\] at (0.5) should be [15%\]]
expected: FAIL
@ -272,42 +173,21 @@
[CSS Animations: property <border-image-slice> from [inherit\] to [10%\] at (0.5) should be [30%\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> 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 <border-image-slice> from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (1.5) should be [60 70 80 90 fill\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [50% fill\] to [100 fill\] at (-0.3) should be [50% fill\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-slice> from [0%\] to [50%\] at (0.3) should be [15%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [inherit\] to [10%\] at (-0.3) should be [62%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [0%\] to [50%\] at (1.5) should be [75%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [initial\] to [10%\] at (1.5) should be [0%\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [initial\] to [10%\] at (0) should be [100%\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [0% fill\] to [50%\] at (0.5) should be [50%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-slice> from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (1.5) should be [60% 70% 80% 90%\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [0% fill\] to [50%\] at (0.6) should be [50%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from neutral to [10%\] at (1.5) should be [5%\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [0%\] to [50%\] at (0.3) should be [15%\]]
expected: FAIL
@ -326,60 +206,24 @@
[CSS Animations: property <border-image-slice> 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 <border-image-slice> from [initial\] to [10%\] at (1.5) should be [0%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> 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 <border-image-slice> from [0%\] to [50%\] at (1.5) should be [75%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-slice> from [unset\] to [10%\] at (-0.3) should be [127%\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [50%\] to [100\] at (0.5) should be [100\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-slice> from [inherit\] to [10%\] at (0.3) should be [38%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-slice> from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (0.6) should be [24% 34 44% 54 fill\]]
expected: FAIL
[Web Animations: property <border-image-slice> from neutral to [10%\] at (0) should be [20%\]]
expected: FAIL
[Web Animations: property <border-image-slice> 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 <border-image-slice> from [0%\] to [50%\] at (-0.3) should be [0%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-slice> from [0%\] to [50%\] at (1.5) should be [75%\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [0% 10 20 30 fill\] to [40 50 60% 70\] at (0.3) should be [0% 10 20 30 fill\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [0% fill\] to [50%\] at (0.3) should be [0% fill\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> from [inherit\] to [10%\] at (0.3) should be [38%\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> from [inherit\] to [10%\] at (0.6) should be [26%\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [unset\] to [10%\] at (0) should be [100%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [unset\] to [10%\] at (0.5) should be [55%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-slice> from [unset\] to [10%\] at (0.6) should be [46%\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [0% 10 20% 30 fill\] to [40% 50 60% 70\] at (0) should be [0% 10 20% 30 fill\]]
expected: FAIL
@ -401,9 +245,6 @@
[Web Animations: property <border-image-slice> from [50% fill\] to [100 fill\] at (0.3) should be [50% fill\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> from [initial\] to [10%\] at (1.5) should be [0%\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [inherit\] to [10%\] at (0.6) should be [26%\]]
expected: FAIL
@ -416,9 +257,6 @@
[Web Animations: property <border-image-slice> from [initial\] to [10%\] at (0.3) should be [73%\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (0.3) should be [12% 22 32% 42 fill\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [initial\] to [10%\] at (0.5) should be [55%\]]
expected: FAIL
@ -440,33 +278,15 @@
[CSS Animations: property <border-image-slice> 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 <border-image-slice> from neutral to [10%\] at (0.6) should be [14%\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [inherit\] to [10%\] at (1.5) should be [0%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [0%\] to [50%\] at (0.6) should be [30%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (0.6) should be [24% 34 44% 54 fill\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (1.5) should be [60% 70% 80% 90%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (0.5) should be [20% 30% 40% 50%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [unset\] to [10%\] at (-0.3) should be [127%\]]
expected: FAIL
[Web Animations: property <border-image-slice> from neutral to [10%\] at (0.3) should be [17%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from neutral to [10%\] at (1) should be [10%\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (0.5) should be [20% 30% 40% 50%\]]
expected: FAIL
@ -479,57 +299,24 @@
[CSS Transitions: property <border-image-slice> from [0%\] to [50%\] at (0.3) should be [15%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (1.5) should be [60% 70% 80% 90%\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (0.5) should be [20 30 40 50 fill\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [0% fill\] to [50%\] at (-0.3) should be [0% fill\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> from neutral to [10%\] at (0.6) should be [14%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> 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 <border-image-slice> from [inherit\] to [10%\] at (1.5) should be [0%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-slice> from neutral to [10%\] at (0.3) should be [17%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from neutral to [10%\] at (0.6) should be [14%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-slice> 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 <border-image-slice> from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (0.6) should be [24% 34% 44% 54%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [initial\] to [10%\] at (0.6) should be [46%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [unset\] to [10%\] at (0.3) should be [73%\]]
expected: FAIL
[Web Animations: property <border-image-slice> 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 <border-image-slice> from neutral to [10%\] at (-0.3) should be [23%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-slice> from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (0.3) should be [12 22 32 42 fill\]]
expected: FAIL
[Web Animations: property <border-image-slice> 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 <border-image-slice> from neutral to [10%\] at (-0.3) should be [23%\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [0% 10 20 30 fill\] to [40 50 60% 70\] at (0.5) should be [40 50 60% 70\]]
expected: FAIL
@ -539,33 +326,21 @@
[Web Animations: property <border-image-slice> from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (0) should be [0% 10% 20% 30%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> 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 <border-image-slice> from [initial\] to [10%\] at (0.3) should be [73%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-slice> from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (-0.5) should be [0 0 0 10 fill\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (0) should be [0% 10 20% 30 fill\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [0% fill\] to [50%\] at (0) should be [0% fill\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> from neutral to [10%\] at (1.5) should be [5%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [0% fill\] to [50%\] at (0) should be [0% fill\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> 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 <border-image-slice> from [0%\] to [50%\] at (0) should be [0%\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [unset\] to [10%\] at (0.6) should be [46%\]]
expected: FAIL
@ -584,81 +359,30 @@
[CSS Transitions: property <border-image-slice> from [0%\] to [50%\] at (0.5) should be [25%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-slice> from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (-0.5) should be [0% 0% 0% 10%\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (1) should be [40 50 60 70 fill\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-slice> from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (0.3) should be [12% 22% 32% 42%\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> from neutral to [10%\] at (-0.3) should be [23%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> 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 <border-image-slice> 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 <border-image-slice> from [initial\] to [10%\] at (0.3) should be [73%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> 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 <border-image-slice> from [unset\] to [10%\] at (0) should be [100%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-slice> from [inherit\] to [10%\] at (0.5) should be [30%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-slice> from [inherit\] to [10%\] at (0.6) should be [26%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [initial\] to [10%\] at (1) should be [10%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-slice> from neutral to [10%\] at (1.5) should be [5%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [unset\] to [10%\] at (1.5) should be [0%\]]
expected: FAIL
[Web Animations: property <border-image-slice> 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 <border-image-slice> from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (-0.5) should be [0% 0% 0% 10%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (0.6) should be [24% 34% 44% 54%\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (0.6) should be [24% 34 44% 54 fill\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [unset\] to [10%\] at (1) should be [10%\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (1.5) should be [60% 70 80% 90 fill\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [50% fill\] to [100 fill\] at (1.5) should be [100 fill\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [initial\] to [10%\] at (-0.3) should be [127%\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> 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 <border-image-slice> from [initial\] to [10%\] at (0.6) should be [46%\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (1.5) should be [60% 70% 80% 90%\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [0%\] to [50%\] at (1) should be [50%\]]
expected: FAIL
@ -668,9 +392,6 @@
[CSS Animations: property <border-image-slice> from [0% fill\] to [50%\] at (0.5) should be [50%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [0%\] to [50%\] at (1) should be [50%\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (-0.5) should be [0 0 0 10 fill\]]
expected: FAIL
@ -686,9 +407,6 @@
[Web Animations: property <border-image-slice> from [50%\] to [100\] at (0.6) should be [100\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> from [inherit\] to [10%\] at (1.5) should be [0%\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [50%\] to [100\] at (1.5) should be [100\]]
expected: FAIL
@ -698,12 +416,6 @@
[CSS Transitions: property <border-image-slice> from [unset\] to [10%\] at (0.3) should be [73%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (0.3) should be [12% 22% 32% 42%\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (0.6) should be [24% 34% 44% 54%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [50%\] to [100\] at (-0.3) should be [50%\]]
expected: FAIL
@ -713,18 +425,9 @@
[CSS Transitions with transition: all: property <border-image-slice> from [0%\] to [50%\] at (0.5) should be [25%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> from [inherit\] to [10%\] at (1) should be [10%\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [50% fill\] to [100 fill\] at (0.6) should be [100 fill\]]
expected: FAIL
[CSS Animations: property <border-image-slice> 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 <border-image-slice> from [0%\] to [50%\] at (0.3) should be [15%\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (0.6) should be [24 34 44 54 fill\]]
expected: FAIL
@ -743,18 +446,6 @@
[Web Animations: property <border-image-slice> from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (0.3) should be [12% 22% 32% 42%\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> from [unset\] to [10%\] at (1.5) should be [0%\]]
expected: FAIL
[CSS Animations: property <border-image-slice> 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 <border-image-slice> 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 <border-image-slice> from [0% 10 20% 30 fill\] to [40% 50 60% 70 fill\] at (0) should be [0% 10 20% 30 fill\]]
expected: FAIL
[Web Animations: property <border-image-slice> from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (1.5) should be [60 70 80 90 fill\]]
expected: FAIL
@ -764,12 +455,6 @@
[Web Animations: property <border-image-slice> 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 <border-image-slice> 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 <border-image-slice> from [0%\] to [50%\] at (0.6) should be [30%\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (-0.5) should be [0 0 0 10 fill\]]
expected: FAIL
@ -779,3 +464,72 @@
[CSS Animations: property <border-image-slice> from [0% fill\] to [50%\] at (0.6) should be [50%\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> from [unset\] to [10%\] at (-0.3) should be [127%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-slice> from [unset\] to [10%\] at (0.3) should be [73%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-slice> from [unset\] to [10%\] at (-0.3) should be [127%\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> 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 <border-image-slice> 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 <border-image-slice> 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 <border-image-slice> from [initial\] to [10%\] at (-0.3) should be [127%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-slice> 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 <border-image-slice> from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (0.3) should be [12% 22% 32% 42%\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> from [inherit\] to [10%\] at (-0.3) should be [62%\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (0.5) should be [20% 30% 40% 50%\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> 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: property <border-image-slice> 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: property <border-image-slice> from [inherit\] to [10%\] at (0.3) should be [38%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-slice> from [unset\] to [10%\] at (0.6) should be [46%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-slice> 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 <border-image-slice> 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 <border-image-slice> from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (-0.5) should be [0% 0% 0% 10%\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> 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 <border-image-slice> 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 <border-image-slice> from [initial\] to [10%\] at (0.6) should be [46%\]]
expected: FAIL
[CSS Transitions: property <border-image-slice> from [0% 10% 20% 30%\] to [40% 50% 60% 70%\] at (0.6) should be [24% 34% 44% 54%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-slice> from [0 10 20 30 fill\] to [40 50 60 70 fill\] at (0.6) should be [24 34 44 54 fill\]]
expected: FAIL

View file

@ -5,72 +5,30 @@
[Web Animations: property <border-image-source> 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 Transitions with transition: all: property <border-image-source> from [initial\] to [url(../support/orange_color.png)\] at (0.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Animations: property <border-image-source> 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 <border-image-source> 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 Transitions: property <border-image-source> from [initial\] to [url(../support/orange_color.png)\] at (1.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions: property <border-image-source> from [inherit\] to [url(../support/orange_color.png)\] at (-0.3) should be [url(../support/orange_color.png)\]]
expected: FAIL
[Web Animations: property <border-image-source> from [inherit\] to [url(../support/orange_color.png)\] at (0.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions: property <border-image-source> 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 Transitions: property <border-image-source> from [unset\] to [url(../support/orange_color.png)\] at (0.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions: property <border-image-source> from [unset\] to [url(../support/orange_color.png)\] at (0.6) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-source> from [inherit\] to [url(../support/orange_color.png)\] at (0.3) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Animations: property <border-image-source> 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 Transitions with transition: all: property <border-image-source> 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 Transitions: property <border-image-source> from [unset\] to [url(../support/orange_color.png)\] at (0.3) should be [url(../support/orange_color.png)\]]
expected: FAIL
[Web Animations: property <border-image-source> from [none\] to [url(../support/orange_color.png)\] at (0.6) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Animations: property <border-image-source> from [initial\] to [url(../support/orange_color.png)\] at (0.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[Web Animations: property <border-image-source> from [none\] to [url(../support/orange_color.png)\] at (0) should be [none\]]
expected: FAIL
[Web Animations: property <border-image-source> from [unset\] to [url(../support/orange_color.png)\] at (1) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions: property <border-image-source> from [inherit\] to [url(../support/orange_color.png)\] at (0.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Animations: property <border-image-source> from [initial\] to [url(../support/orange_color.png)\] at (0.6) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions: property <border-image-source> from [initial\] to [url(../support/orange_color.png)\] at (-0.3) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Animations: property <border-image-source> from [unset\] to [url(../support/orange_color.png)\] at (1) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Animations: property <border-image-source> from [initial\] to [url(../support/orange_color.png)\] at (0) should be [initial\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-source> from [url(../support/aqua_color.png)\] to [linear-gradient(45deg, blue, orange)\] at (0) should be [linear-gradient(45deg, blue, orange)\]]
expected: FAIL
@ -83,18 +41,12 @@
[Web Animations: property <border-image-source> from [inherit\] to [url(../support/orange_color.png)\] at (-0.3) should be [inherit\]]
expected: FAIL
[CSS Transitions: property <border-image-source> from [inherit\] to [url(../support/orange_color.png)\] at (0.6) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-source> 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 <border-image-source> from [initial\] to [url(../support/orange_color.png)\] at (-0.3) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions: property <border-image-source> from [inherit\] to [url(../support/orange_color.png)\] at (1.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-source> from [unset\] to [url(../support/orange_color.png)\] at (-0.3) should be [url(../support/orange_color.png)\]]
expected: FAIL
@ -110,27 +62,12 @@
[Web Animations: property <border-image-source> from [unset\] to [url(../support/orange_color.png)\] at (1.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Animations: property <border-image-source> from [none\] to [url(../support/orange_color.png)\] at (1) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-source> from [none\] to [url(../support/orange_color.png)\] at (1.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[Web Animations: property <border-image-source> 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 <border-image-source> from [initial\] to [url(../support/orange_color.png)\] at (1.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-source> from [inherit\] to [url(../support/orange_color.png)\] at (-0.3) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions: property <border-image-source> 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: property <border-image-source> 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 Transitions: property <border-image-source> from [none\] to [url(../support/orange_color.png)\] at (0.3) should be [url(../support/orange_color.png)\]]
expected: FAIL
@ -143,30 +80,12 @@
[Web Animations: property <border-image-source> from [none\] to [url(../support/orange_color.png)\] at (1.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-source> 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 Transitions: property <border-image-source> from [unset\] to [url(../support/orange_color.png)\] at (1.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-source> from [unset\] to [url(../support/orange_color.png)\] at (0.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Animations: property <border-image-source> 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 <border-image-source> from [inherit\] to [url(../support/orange_color.png)\] at (1.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[Web Animations: property <border-image-source> 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 <border-image-source> from [initial\] to [url(../support/orange_color.png)\] at (0) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Animations: property <border-image-source> from [unset\] to [url(../support/orange_color.png)\] at (0) should be [unset\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-source> from [unset\] to [url(../support/orange_color.png)\] at (0) should be [url(../support/orange_color.png)\]]
expected: FAIL
@ -185,33 +104,21 @@
[Web Animations: property <border-image-source> from [none\] to [url(../support/orange_color.png)\] at (-0.3) should be [none\]]
expected: FAIL
[CSS Animations: property <border-image-source> from [url(../support/aqua_color.png)\] to [url(../support/orange_color.png)\] at (-0.3) should be [url(../support/aqua_color.png)\]]
expected: FAIL
[Web Animations: property <border-image-source> 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 <border-image-source> 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 <border-image-source> from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0.3) should be [linear-gradient(45deg, blue, orange)\]]
expected: FAIL
[Web Animations: property <border-image-source> 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 Transitions: property <border-image-source> 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 Transitions with transition: all: property <border-image-source> from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0.3) should be [linear-gradient(45deg, blue, orange)\]]
expected: FAIL
[Web Animations: property <border-image-source> 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 <border-image-source> from [unset\] to [url(../support/orange_color.png)\] at (0.3) should be [unset\]]
expected: FAIL
[Web Animations: property <border-image-source> from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0.5) should be [linear-gradient(45deg, blue, orange)\]]
expected: FAIL
@ -221,12 +128,6 @@
[CSS Transitions with transition: all: property <border-image-source> 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 <border-image-source> 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 Transitions with transition: all: property <border-image-source> from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0.5) should be [linear-gradient(45deg, blue, orange)\]]
expected: FAIL
[Web Animations: property <border-image-source> from [url(../support/aqua_color.png)\] to [linear-gradient(45deg, blue, orange)\] at (0.6) should be [linear-gradient(45deg, blue, orange)\]]
expected: FAIL
@ -236,21 +137,9 @@
[CSS Animations: property <border-image-source> from [inherit\] to [url(../support/orange_color.png)\] at (-0.3) should be [inherit\]]
expected: FAIL
[CSS Transitions: property <border-image-source> 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 Transitions: property <border-image-source> from [none\] to [url(../support/orange_color.png)\] at (1.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[Web Animations: property <border-image-source> from [url(../support/aqua_color.png)\] to [url(../support/orange_color.png)\] at (1) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions: property <border-image-source> from [initial\] to [url(../support/orange_color.png)\] at (0.6) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-source> from [initial\] to [url(../support/orange_color.png)\] at (0.6) should be [url(../support/orange_color.png)\]]
expected: FAIL
[Web Animations: property <border-image-source> from [inherit\] to [url(../support/orange_color.png)\] at (0) should be [inherit\]]
expected: FAIL
@ -263,27 +152,15 @@
[Web Animations: property <border-image-source> from [initial\] to [url(../support/orange_color.png)\] at (1) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Animations: property <border-image-source> from [url(../support/aqua_color.png)\] to [linear-gradient(45deg, blue, orange)\] at (0.5) should be [linear-gradient(45deg, blue, orange)\]]
expected: FAIL
[Web Animations: property <border-image-source> from [unset\] to [url(../support/orange_color.png)\] at (0.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Animations: property <border-image-source> 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 <border-image-source> from [unset\] to [url(../support/orange_color.png)\] at (0.3) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions: property <border-image-source> 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 <border-image-source> from [unset\] to [url(../support/orange_color.png)\] at (1.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Animations: property <border-image-source> from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (1.5) should be [linear-gradient(45deg, blue, orange)\]]
expected: FAIL
[Web Animations: property <border-image-source> from [inherit\] to [url(../support/orange_color.png)\] at (0.3) should be [inherit\]]
expected: FAIL
@ -302,24 +179,15 @@
[Web Animations: property <border-image-source> from [inherit\] to [url(../support/orange_color.png)\] at (0.6) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Animations: property <border-image-source> 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 Transitions with transition: all: property <border-image-source> 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 <border-image-source> from [unset\] to [url(../support/orange_color.png)\] at (0.6) should be [url(../support/orange_color.png)\]]
expected: FAIL
[Web Animations: property <border-image-source> from [unset\] to [url(../support/orange_color.png)\] at (0.3) should be [unset\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-source> 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 <border-image-source> from [none\] to [url(../support/orange_color.png)\] at (0.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions: property <border-image-source> from [url(../support/aqua_color.png)\] to [url(../support/orange_color.png)\] at (-0.3) should be [url(../support/orange_color.png)\]]
expected: FAIL
@ -332,111 +200,39 @@
[CSS Transitions: property <border-image-source> from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0) should be [linear-gradient(45deg, blue, orange)\]]
expected: FAIL
[CSS Animations: property <border-image-source> 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 <border-image-source> from [url(../support/aqua_color.png)\] to [linear-gradient(45deg, blue, orange)\] at (-0.3) should be [url(../support/aqua_color.png)\]]
expected: FAIL
[Web Animations: property <border-image-source> from [initial\] to [url(../support/orange_color.png)\] at (0.6) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Animations: property <border-image-source> from [none\] to [url(../support/orange_color.png)\] at (0.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions: property <border-image-source> 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 Animations: property <border-image-source> from [initial\] to [url(../support/orange_color.png)\] at (1) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Animations: property <border-image-source> from [initial\] to [url(../support/orange_color.png)\] at (1.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[Web Animations: property <border-image-source> from [initial\] to [url(../support/orange_color.png)\] at (0.3) should be [initial\]]
expected: FAIL
[CSS Animations: property <border-image-source> 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 Transitions with transition: all: property <border-image-source> from [url(../support/aqua_color.png)\] to [url(../support/orange_color.png)\] at (0.6) should be [url(../support/orange_color.png)\]]
expected: FAIL
[Web Animations: property <border-image-source> 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 <border-image-source> from [none\] to [url(../support/orange_color.png)\] at (1.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-source> from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0) should be [linear-gradient(45deg, blue, orange)\]]
expected: FAIL
[CSS Animations: property <border-image-source> from [inherit\] to [url(../support/orange_color.png)\] at (0.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions: property <border-image-source> 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 Transitions: property <border-image-source> 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 <border-image-source> from [none\] to [url(../support/orange_color.png)\] at (0.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Animations: property <border-image-source> from [unset\] to [url(../support/orange_color.png)\] at (0.6) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-source> 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 Transitions with transition: all: property <border-image-source> 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 <border-image-source> from [initial\] to [url(../support/orange_color.png)\] at (-0.3) should be [initial\]]
expected: FAIL
[CSS Transitions: property <border-image-source> 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 <border-image-source> from [inherit\] to [url(../support/orange_color.png)\] at (1) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions: property <border-image-source> 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 Animations: property <border-image-source> 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 <border-image-source> from [none\] to [url(../support/orange_color.png)\] at (0.3) should be [none\]]
expected: FAIL
[CSS Transitions: property <border-image-source> from [none\] to [url(../support/orange_color.png)\] at (-0.3) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Animations: property <border-image-source> 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 Transitions with transition: all: property <border-image-source> from [none\] to [url(../support/orange_color.png)\] at (0.3) should be [url(../support/orange_color.png)\]]
expected: FAIL
[Web Animations: property <border-image-source> from [initial\] to [url(../support/orange_color.png)\] at (0.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions: property <border-image-source> from [initial\] to [url(../support/orange_color.png)\] at (0.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-source> from [url(../support/aqua_color.png)\] to [linear-gradient(45deg, blue, orange)\] at (0.5) should be [linear-gradient(45deg, blue, orange)\]]
expected: FAIL
[Web Animations: property <border-image-source> from [none\] to [url(../support/orange_color.png)\] at (0.3) should be [none\]]
expected: FAIL
[CSS Transitions: property <border-image-source> 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 <border-image-source> from [url(../support/aqua_color.png)\] to [url(../support/orange_color.png)\] at (1) should be [url(../support/orange_color.png)\]]
expected: FAIL
[Web Animations: property <border-image-source> from [initial\] to [url(../support/orange_color.png)\] at (1.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
@ -449,72 +245,27 @@
[CSS Transitions: property <border-image-source> 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 <border-image-source> from [inherit\] to [url(../support/orange_color.png)\] at (0.6) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Animations: property <border-image-source> from [unset\] to [url(../support/orange_color.png)\] at (1.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[Web Animations: property <border-image-source> 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 Transitions with transition: all: property <border-image-source> from [none\] to [url(../support/orange_color.png)\] at (0) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Animations: property <border-image-source> from [none\] to [url(../support/orange_color.png)\] at (0.6) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Animations: property <border-image-source> 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 <border-image-source> from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0.3) should be [linear-gradient(-45deg, red, yellow)\]]
expected: FAIL
[Web Animations: property <border-image-source> from [url(../support/aqua_color.png)\] to [linear-gradient(45deg, blue, orange)\] at (0.5) should be [linear-gradient(45deg, blue, orange)\]]
expected: FAIL
[Web Animations: property <border-image-source> from [inherit\] to [url(../support/orange_color.png)\] at (1) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Animations: property <border-image-source> 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 <border-image-source> 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 Transitions: property <border-image-source> 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 <border-image-source> 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 <border-image-source> from [unset\] to [url(../support/orange_color.png)\] at (0.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-source> from [none\] to [url(../support/orange_color.png)\] at (0.6) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-source> 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 Animations: property <border-image-source> from [none\] to [url(../support/orange_color.png)\] at (0) should be [none\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-source> from [inherit\] to [url(../support/orange_color.png)\] at (1.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions: property <border-image-source> from [none\] to [url(../support/orange_color.png)\] at (0.6) should be [url(../support/orange_color.png)\]]
expected: FAIL
[Web Animations: property <border-image-source> from [unset\] to [url(../support/orange_color.png)\] at (-0.3) should be [unset\]]
expected: FAIL
[CSS Animations: property <border-image-source> from [initial\] to [url(../support/orange_color.png)\] at (0.3) should be [initial\]]
expected: FAIL
[CSS Animations: property <border-image-source> from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0.6) should be [linear-gradient(45deg, blue, orange)\]]
expected: FAIL
[Web Animations: property <border-image-source> from [url(../support/aqua_color.png)\] to [linear-gradient(45deg, blue, orange)\] at (1) should be [linear-gradient(45deg, blue, orange)\]]
expected: FAIL
@ -533,18 +284,3 @@
[Web Animations: property <border-image-source> 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 <border-image-source> from [none\] to [url(../support/orange_color.png)\] at (-0.3) should be [none\]]
expected: FAIL
[CSS Animations: property <border-image-source> from [unset\] to [url(../support/orange_color.png)\] at (-0.3) should be [unset\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-source> from [inherit\] to [url(../support/orange_color.png)\] at (0.5) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Animations: property <border-image-source> from [inherit\] to [url(../support/orange_color.png)\] at (0.6) should be [url(../support/orange_color.png)\]]
expected: FAIL
[CSS Transitions: property <border-image-source> from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0.5) should be [linear-gradient(45deg, blue, orange)\]]
expected: FAIL

View file

@ -2,12 +2,6 @@
[border-image-width interpolation]
expected: FAIL
[CSS Transitions: property <border-image-width> from [0\] to [20\] at (1.5) should be [30\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (1.5) should be [115px 95% 75 55px\]]
expected: FAIL
@ -20,9 +14,6 @@
[CSS Animations: property <border-image-width> from [10\] to [20%\] at (1) should be [20%\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [0\] to [20\] at (-0.3) should be [0\]]
expected: FAIL
[Web Animations: property <border-image-width> from [unset\] to [20px\] at (0.6) should be [20px\]]
expected: FAIL
@ -35,18 +26,9 @@
[Web Animations: property <border-image-width> from [initial\] to [20px\] at (0.3) should be [initial\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [0px\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10px\] to [20\] at (0.6) should be [20\]]
expected: FAIL
[CSS Animations: property <border-image-width> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10px auto auto 20\] to [110px auto 120 auto\] at (0.5) should be [110px auto 120 auto\]]
expected: FAIL
@ -59,18 +41,12 @@
[Web Animations: property <border-image-width> from [10%\] to [20\] at (1) should be [20\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [0px\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10px auto auto 20\] to [110px auto auto 120\] at (0) should be [ 10px auto auto 20\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10\] to [20px\] at (1.5) should be [20px\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [0px\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10px auto auto 20\] to [110px auto auto 120\] at (0.3) should be [ 40px auto auto 50\]]
expected: FAIL
@ -80,39 +56,21 @@
[Web Animations: property <border-image-width> from [10%\] to [20px\] at (0.6) should be [calc(4% + 12px)\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10px\] to [20%\] at (0.6) should be [calc(4px + 12%)\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (0) should be [10px 20% 30 40px\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [10px\] to [20%\] at (-0.3) should be [calc(13px + -6%)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [10%\] to [20px\] at (0.3) should be [calc(7% + 6px)\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10\] to [20px\] at (0.6) should be [20px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [0px\] to [20px\] at (5) should be [100px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [10px auto auto 20\] to [110px auto auto 120\] at (0.6) should be [ 70px auto auto 80\]]
expected: FAIL
[CSS Animations: property <border-image-width> 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 <border-image-width> from [inherit\] to [20px\] at (0.3) should be [76px\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10\] to [20%\] at (1.5) should be [20%\]]
expected: FAIL
@ -125,51 +83,21 @@
[Web Animations: property <border-image-width> from [10%\] to [20px\] at (0) should be [10%\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [0%\] to [20%\] at (1.5) should be [30%\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10%\] to [20px\] at (1.5) should be [calc(-5% + 30px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [inherit\] to [20px\] at (1.5) should be [0px\]]
expected: FAIL
[Web Animations: property <border-image-width> from [0\] to [20\] at (10) should be [200\]]
expected: FAIL
[Web Animations: property <border-image-width> from [0px\] to [20px\] at (10) should be [200px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [0px\] to [20px\] at (0) should be [0px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10\] to [20%\] at (1.5) should be [20%\]]
expected: FAIL
[Web Animations: property <border-image-width> from neutral to [20px\] at (0) should be [10px\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [inherit\] to [20px\] at (1.5) should be [0px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [0%\] to [20%\] at (1) should be [20%\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [0px\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [0%\] to [20%\] at (0.6) should be [12%\]]
expected: FAIL
[Web Animations: property <border-image-width> from [0px\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [0%\] to [20%\] at (1.5) should be [30%\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (0.3) should be [31px 35% 39 43px\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (10) should be [710px 520% 330 140px\]]
expected: FAIL
@ -179,75 +107,33 @@
[Web Animations: property <border-image-width> from [10px\] to [20\] at (0.5) should be [20\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [10px\] to [20%\] at (1.5) should be [calc(-5px + 30%)\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [initial\] to [20px\] at (0.5) should be [20px\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [10%\] to [20px\] at (0.3) should be [calc(7% + 6px)\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (1) should be [80px 70% 60 50px\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (1.5) should be [115px 95% 75 55px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [10%\] to [20px\] at (1.5) should be [calc(-5% + 30px)\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [0px\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10%\] to [20\] at (-0.3) should be [10%\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [10px\] to [20%\] at (1.5) should be [calc(-5px + 30%)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [0\] to [20\] at (1.5) should be [30\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10px auto auto 20\] to [110px auto auto 120\] at (-0.3) should be [ 0px auto auto 0\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10px auto auto 20\] to [110px auto 120 auto\] at (0.3) should be [10px auto auto 20\]]
expected: FAIL
[CSS Animations: property <border-image-width> from neutral to [20px\] at (10) should be [110px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [0px\] to [20px\] at (10) should be [200px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10%\] to [20\] at (1.5) should be [20\]]
expected: FAIL
[Web Animations: property <border-image-width> from [inherit\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [10px auto auto 20\] to [110px auto auto 120\] at (1.5) should be [160px auto auto 170\]]
expected: FAIL
[Web Animations: property <border-image-width> from [initial\] to [20px\] at (-0.3) should be [initial\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from neutral to [20px\] at (10) should be [110px\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10px auto auto 20\] to [110px auto 120 auto\] at (1.5) should be [110px auto 120 auto\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10\] to [20px\] at (-0.3) should be [10\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (-0.3) should be [0px 5% 21 37px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10\] to [20%\] at (0.3) should be [10\]]
expected: FAIL
@ -257,27 +143,12 @@
[Web Animations: property <border-image-width> from [10px\] to [20\] at (1.5) should be [20\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [0%\] to [20%\] at (0.3) should be [6%\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [0%\] to [20%\] at (0.6) should be [12%\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [inherit\] to [20px\] at (10) should be [0px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [unset\] to [20px\] at (-0.3) should be [unset\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [10%\] to [20px\] at (-0.3) should be [calc(13% + -6px)\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [inherit\] to [20px\] at (10) should be [0px\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [0px\] to [20px\] at (10) should be [200px\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10\] to [20%\] at (1) should be [20%\]]
expected: FAIL
@ -293,15 +164,9 @@
[Web Animations: property <border-image-width> from [inherit\] to [20px\] at (1.5) should be [0px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [0px\] to [20px\] at (10) should be [200px\]]
expected: FAIL
[CSS Animations: property <border-image-width> 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 <border-image-width> from [0\] to [20\] at (0.6) should be [12\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [inherit\] to [20px\] at (0.6) should be [52px\]]
expected: FAIL
@ -320,30 +185,15 @@
[CSS Animations: property <border-image-width> from [unset\] to [20px\] at (0.6) should be [20px\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [10%\] to [20px\] at (0.6) should be [calc(4% + 12px)\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10%\] to [20\] at (-0.3) should be [10%\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [0%\] to [20%\] at (-0.3) should be [0%\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [0\] to [20\] at (10) should be [200\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10px\] to [20%\] at (1.5) should be [calc(-5px + 30%)\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10px\] to [20\] at (0) should be [10px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [0\] to [20\] at (5) should be [100\]]
expected: FAIL
[Web Animations: property <border-image-width> from [initial\] to [20px\] at (0) should be [initial\]]
expected: FAIL
@ -365,24 +215,12 @@
[CSS Transitions: property <border-image-width> from [inherit\] to [20px\] at (0.3) should be [76px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [0\] to [20\] at (1.5) should be [30\]]
expected: FAIL
[Web Animations: property <border-image-width> from [unset\] to [20px\] at (0) should be [unset\]]
expected: FAIL
[CSS Animations: property <border-image-width> 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 <border-image-width> from [10%\] to [20px\] at (0.6) should be [calc(4% + 12px)\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [10px\] to [20%\] at (0.6) should be [calc(4px + 12%)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [10px\] to [20%\] at (-0.3) should be [calc(13px + -6%)\]]
expected: FAIL
[Web Animations: property <border-image-width> from [0\] to [20\] at (5) should be [100\]]
expected: FAIL
@ -392,9 +230,6 @@
[CSS Animations: property <border-image-width> from [10\] to [20px\] at (0.5) should be [20px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10%\] to [20px\] at (0.6) should be [calc(4% + 12px)\]]
expected: FAIL
[Web Animations: property <border-image-width> from [inherit\] to [20px\] at (-0.3) should be [124px\]]
expected: FAIL
@ -404,57 +239,30 @@
[CSS Animations: property <border-image-width> from [10\] to [20%\] at (0.5) should be [20%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10%\] to [20px\] at (1) should be [calc(0% + 20px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [10px\] to [20%\] at (0.3) should be [calc(7px + 6%)\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10px auto auto 20\] to [110px auto auto 120\] at (1) should be [110px auto auto 120\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [inherit\] to [20px\] at (0.3) should be [76px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [0px\] to [20px\] at (5) should be [100px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [0px\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [inherit\] to [20px\] at (-0.3) should be [124px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (0.6) should be [52px 50% 48 46px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [unset\] to [20px\] at (0.3) should be [unset\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [initial\] to [20px\] at (-0.3) should be [initial\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [10%\] to [20px\] at (1.5) should be [calc(-5% + 30px)\]]
expected: FAIL
[Web Animations: property <border-image-width> from [0px\] to [20px\] at (-0.3) should be [0px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [0\] to [20\] at (0.6) should be [12\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10%\] to [20px\] at (-0.3) should be [calc(13% + -6px)\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10px\] to [20\] at (-0.3) should be [10px\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[Web Animations: property <border-image-width> from [0\] to [20\] at (1) should be [20\]]
expected: FAIL
@ -470,33 +278,15 @@
[Web Animations: property <border-image-width> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [10px\] to [20%\] at (0.6) should be [calc(4px + 12%)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [inherit\] to [20px\] at (10) should be [0px\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10\] to [20px\] at (0) should be [10\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10\] to [20%\] at (0) should be [10\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [0%\] to [20%\] at (1.5) should be [30%\]]
expected: FAIL
[Web Animations: property <border-image-width> from [0%\] to [20%\] at (1) should be [20%\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [0%\] to [20%\] at (10) should be [200%\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10px\] to [20%\] at (1) should be [20%\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [0px\] to [20px\] at (-0.3) should be [0px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10%\] to [20\] at (1) should be [20\]]
expected: FAIL
@ -512,12 +302,6 @@
[Web Animations: property <border-image-width> from [10px\] to [20\] at (0.6) should be [20\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10%\] to [20px\] at (0) should be [10%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [0%\] to [20%\] at (5) should be [100%\]]
expected: FAIL
[Web Animations: property <border-image-width> from [0%\] to [20%\] at (0.6) should be [12%\]]
expected: FAIL
@ -530,24 +314,15 @@
[CSS Animations: property <border-image-width> from [10px auto auto 20\] to [110px auto 120 auto\] at (0.6) should be [110px auto 120 auto\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [0\] to [20\] at (0) should be [0\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (-0.3) should be [0px 5% 21 37px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [0\] to [20\] at (5) should be [100\]]
expected: FAIL
[Web Animations: property <border-image-width> from [0%\] to [20%\] at (0) should be [0%\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (5) should be [360px 270% 180 90px\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [0%\] to [20%\] at (10) should be [200%\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (0.3) should be [31px 35% 39 43px\]]
expected: FAIL
@ -557,57 +332,21 @@
[CSS Animations: property <border-image-width> from [10\] to [20px\] at (0.6) should be [20px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [0\] to [20\] at (10) should be [200\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10px auto auto 20\] to [110px auto auto 120\] at (0.6) should be [ 70px auto auto 80\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [inherit\] to [20px\] at (-0.3) should be [124px\]]
expected: FAIL
[Web Animations: property <border-image-width> from [inherit\] to [20px\] at (0.3) should be [76px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [unset\] to [20px\] at (0.5) should be [20px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10%\] to [20px\] at (0.3) should be [calc(7% + 6px)\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from neutral to [20px\] at (5) should be [60px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10px auto auto 20\] to [110px auto auto 120\] at (0.3) should be [ 40px auto auto 50\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [0px\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[Web Animations: property <border-image-width> from [inherit\] to [20px\] at (0) should be [100px\]]
expected: FAIL
[Web Animations: property <border-image-width> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [0%\] to [20%\] at (0) should be [0%\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10%\] to [20\] at (0.5) should be [20\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [0\] to [20\] at (10) should be [200\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from neutral to [20px\] at (5) should be [60px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (5) should be [360px 270% 180 90px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10px\] to [20%\] at (-0.3) should be [calc(13px + -6%)\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10%\] to [20px\] at (-0.3) should be [calc(13% + -6px)\]]
expected: FAIL
@ -617,9 +356,6 @@
[Web Animations: property <border-image-width> from [0\] to [20\] at (-0.3) should be [0\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [inherit\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10%\] to [20px\] at (0.3) should be [calc(7% + 6px)\]]
expected: FAIL
@ -632,9 +368,6 @@
[CSS Transitions with transition: all: property <border-image-width> from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (0.3) should be [31px 35% 39 43px\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [0%\] to [20%\] at (0.3) should be [6%\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10%\] to [20\] at (0.6) should be [20\]]
expected: FAIL
@ -653,27 +386,12 @@
[Web Animations: property <border-image-width> from [10\] to [20%\] at (0) should be [10\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [0\] to [20\] at (0.3) should be [6\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (0.6) should be [52px 50% 48 46px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (1.5) should be [115px 95% 75 55px\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from neutral to [20px\] at (10) should be [110px\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [inherit\] to [20px\] at (5) should be [0px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [unset\] to [20px\] at (1.5) should be [20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (-0.3) should be [0px 5% 21 37px\]]
expected: FAIL
@ -683,42 +401,18 @@
[Web Animations: property <border-image-width> from [10px\] to [20%\] at (0) should be [calc(0% + 10px)\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (10) should be [710px 520% 330 140px\]]
expected: FAIL
[Web Animations: property <border-image-width> from neutral to [20px\] at (10) should be [110px\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [0\] to [20\] at (0.6) should be [12\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10px auto auto 20\] to [110px auto 120 auto\] at (1) should be [110px auto 120 auto\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10px\] to [20%\] at (0.6) should be [calc(4px + 12%)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (1.5) should be [115px 95% 75 55px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10px auto auto 20\] to [110px auto auto 120\] at (0) should be [ 10px auto auto 20\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [0px\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10%\] to [20\] at (0.3) should be [10%\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [10%\] to [20px\] at (-0.3) should be [calc(13% + -6px)\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10px auto auto 20\] to [110px auto auto 120\] at (1) should be [110px auto auto 120\]]
expected: FAIL
[Web Animations: property <border-image-width> from [initial\] to [20px\] at (1.5) should be [20px\]]
expected: FAIL
@ -731,48 +425,24 @@
[Web Animations: property <border-image-width> from [10px\] to [20%\] at (1.5) should be [calc(-5px + 30%)\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [0px\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[Web Animations: property <border-image-width> from [initial\] to [20px\] at (0.6) should be [20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> 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 <border-image-width> from [10px auto auto 20\] to [110px auto auto 120\] at (1.5) should be [160px auto auto 170\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [0%\] to [20%\] at (0.6) should be [12%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [10px auto auto 20\] to [110px auto auto 120\] at (-0.3) should be [ 0px auto auto 0\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [0%\] to [20%\] at (0.3) should be [6%\]]
expected: FAIL
[Web Animations: property <border-image-width> from [unset\] to [20px\] at (0.5) should be [20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (-0.3) should be [0px 5% 21 37px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10px\] to [20%\] at (0) should be [calc(0% + 10px)\]]
expected: FAIL
[Web Animations: property <border-image-width> from neutral to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Animations: property <border-image-width> 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 <border-image-width> from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (5) should be [360px 270% 180 90px\]]
expected: FAIL
[Web Animations: property <border-image-width> from [0px\] to [20px\] at (0) should be [0px\]]
expected: FAIL
@ -785,12 +455,6 @@
[Web Animations: property <border-image-width> from [0%\] to [20%\] at (10) should be [200%\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [0%\] to [20%\] at (5) should be [100%\]]
expected: FAIL
[CSS Animations: property <border-image-width> from neutral to [20px\] at (5) should be [60px\]]
expected: FAIL
[Web Animations: property <border-image-width> from [0%\] to [20%\] at (5) should be [100%\]]
expected: FAIL
@ -812,27 +476,15 @@
[Web Animations: property <border-image-width> from [unset\] to [20px\] at (0.3) should be [unset\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10%\] to [20px\] at (1) should be [calc(0% + 20px)\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [0\] to [20\] at (0.3) should be [6\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [unset\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [0px\] to [20px\] at (5) should be [100px\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10px auto auto 20\] to [110px auto 120 auto\] at (-0.3) should be [10px auto auto 20\]]
expected: FAIL
[Web Animations: property <border-image-width> from neutral to [20px\] at (5) should be [60px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from neutral to [20px\] at (1) should be [20px\]]
expected: FAIL
[Web Animations: property <border-image-width> from [inherit\] to [20px\] at (0.6) should be [52px\]]
expected: FAIL
@ -848,18 +500,6 @@
[Web Animations: property <border-image-width> from [10\] to [20%\] at (0.3) should be [10\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [10px\] to [20%\] at (0.3) should be [calc(7px + 6%)\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [0%\] to [20%\] at (5) should be [100%\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [0\] to [20\] at (5) should be [100\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (0) should be [10px 20% 30 40px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10\] to [20px\] at (0.3) should be [10\]]
expected: FAIL
@ -872,9 +512,6 @@
[CSS Animations: property <border-image-width> from [10px\] to [20\] at (0.5) should be [20\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [0px\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[Web Animations: property <border-image-width> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
@ -884,9 +521,6 @@
[CSS Transitions: property <border-image-width> from [10px auto auto 20\] to [110px auto auto 120\] at (0.6) should be [ 70px auto auto 80\]]
expected: FAIL
[CSS Animations: property <border-image-width> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10%\] to [20\] at (0.6) should be [20\]]
expected: FAIL
@ -896,39 +530,15 @@
[Web Animations: property <border-image-width> from [10px\] to [20\] at (1) should be [20\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [0\] to [20\] at (1) should be [20\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [inherit\] to [20px\] at (5) should be [0px\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [inherit\] to [20px\] at (0.6) should be [52px\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [10px auto auto 20\] to [110px auto auto 120\] at (-0.3) should be [ 0px auto auto 0\]]
expected: FAIL
[Web Animations: property <border-image-width> from [initial\] to [20px\] at (0.5) should be [20px\]]
expected: FAIL
[Web Animations: property <border-image-width> from [0\] to [20\] at (0) should be [0\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10px\] to [20%\] at (0.3) should be [calc(7px + 6%)\]]
expected: FAIL
[Web Animations: property <border-image-width> from [0px\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[CSS Animations: property <border-image-width> 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 <border-image-width> from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (10) should be [710px 520% 330 140px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10\] to [20px\] at (0) should be [10\]]
expected: FAIL
@ -938,15 +548,42 @@
[Web Animations: property <border-image-width> from [10px\] to [20%\] at (1) should be [20%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [0%\] to [20%\] at (10) should be [200%\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [10%\] to [20\] at (0.3) should be [10%\]]
expected: FAIL
[Web Animations: property <border-image-width> from [10px\] to [20\] at (0.3) should be [10px\]]
expected: FAIL
[CSS Animations: property <border-image-width> from [0\] to [20\] at (0.3) should be [6\]]
[CSS Transitions with transition: all: property <border-image-width> from [inherit\] to [20px\] at (0.3) should be [76px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [inherit\] to [20px\] at (-0.3) should be [124px\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [0%\] to [20%\] at (1.5) should be [30%\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [10px auto auto 20\] to [110px auto auto 120\] at (1.5) should be [160px auto auto 170\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [0%\] to [20%\] at (0.6) should be [12%\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [0%\] to [20%\] at (10) should be [200%\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [0%\] to [20%\] at (0.3) should be [6%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (1.5) should be [115px 95% 75 55px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [10px 20% 30 40px\] to [80px 70% 60 50px\] at (5) should be [360px 270% 180 90px\]]
expected: FAIL
[CSS Transitions: property <border-image-width> from [0%\] to [20%\] at (5) should be [100%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-image-width> from [inherit\] to [20px\] at (0.6) should be [52px\]]
expected: FAIL

View file

@ -5,132 +5,48 @@
[Web Animations: property <border-top-left-radius> from [20px\] to [10px 30px\] at (-0.3) should be [23px 17px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [10px\] to [100%\] at (1) should be [100%\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-left-radius> from [10px\] to [50px\] at (0.6) should be [34px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (-0.3) should be [17px 37px 57px 77px / 117px 137px 157px 177px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-left-radius> from [10px\] to [50px\] at (-0.3) should be [0px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [initial\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [10px\] to [50px\] at (0.3) should be [22px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[Web Animations: property <border-top-left-radius> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[Web Animations: property <border-top-left-radius> from [20px\] to [10px 30px\] at (0) should be [20px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [initial\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [10px\] to [50px\] at (0.6) should be [34px\]]
expected: FAIL
[Web Animations: property <border-top-left-radius> from [10px\] to [50px\] at (-0.3) should be [0px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [20px\] to [10px 30px\] at (1.5) should be [5px 35px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-left-radius> from [inherit\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [20px\] to [10px 30px\] at (0) should be [20px\]]
expected: FAIL
[Web Animations: property <border-top-left-radius> from [unset\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [10px\] to [50px\] at (-0.3) should be [0px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [unset\] to [20px\] at (-0.3) should be [0px\]]
expected: FAIL
[Web Animations: property <border-top-left-radius> from [10px\] to [50px\] at (1) should be [50px\]]
expected: FAIL
[Web Animations: property <border-top-left-radius> from [inherit\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from [10px\] to [50px\] at (1.5) should be [70px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (0.3) should be [23px 43px 63px 83px / 123px 143px 163px 183px\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from [inherit\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [10px\] to [100%\] at (0) should be [calc(10px + 0%)\]]
expected: FAIL
[CSS Animations: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (0.6) should be [26px 46px 66px 86px / 126px 146px 166px 186px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (1.5) should be [35px 55px 75px 95px / 135px 155px 175px 195px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [20px\] to [10px 30px\] at (-0.3) should be [23px 17px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [20px\] to [10px 30px\] at (-2) should be [40px 0px\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from [unset\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [10px\] to [100%\] at (0.6) should be [calc(4px + 60%)\]]
expected: FAIL
[CSS Animations: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (1) should be [30px 50px 70px 90px / 130px 150px 170px 190px\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from [10px\] to [100%\] at (0.6) should be [calc(4px + 60%)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-left-radius> from [initial\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[Web Animations: property <border-top-left-radius> from [10px\] to [50px\] at (0.6) should be [34px\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from [10px\] to [50px\] at (-0.3) should be [0px\]]
expected: FAIL
[Web Animations: property <border-top-left-radius> from [inherit\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-left-radius> from [inherit\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-left-radius> from [unset\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [unset\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (0.6) should be [26px 46px 66px 86px / 126px 146px 166px 186px\]]
expected: FAIL
@ -155,9 +71,6 @@
[Web Animations: property <border-top-left-radius> from [initial\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [10px\] to [50px\] at (1) should be [50px\]]
expected: FAIL
[Web Animations: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (1) should be [30px 50px 70px 90px / 130px 150px 170px 190px\]]
expected: FAIL
@ -167,21 +80,9 @@
[Web Animations: property <border-top-left-radius> from [10px\] to [50px\] at (1.5) should be [70px\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from [unset\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[Web Animations: property <border-top-left-radius> from [20px\] to [10px 30px\] at (0.6) should be [14px 26px\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from [10px\] to [50px\] at (0.6) should be [34px\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [20px\] to [10px 30px\] at (1) should be [10px 30px\]]
expected: FAIL
[Web Animations: property <border-top-left-radius> from [10px\] to [50px\] at (0.3) should be [22px\]]
expected: FAIL
@ -191,30 +92,9 @@
[Web Animations: property <border-top-left-radius> from [unset\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [initial\] to [20px\] at (0) should be [0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-left-radius> from [unset\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from [inherit\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from [20px\] to [10px 30px\] at (-2) should be [40px 0px\]]
expected: FAIL
[CSS Transitions: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (-0.3) should be [17px 37px 57px 77px / 117px 137px 157px 177px\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from [initial\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [unset\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[Web Animations: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (0) should be [20px 40px 60px 80px / 120px 140px 160px 180px\]]
expected: FAIL
@ -227,33 +107,18 @@
[CSS Animations: property <border-top-left-radius> from [inherit\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [unset\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[Web Animations: property <border-top-left-radius> from neutral to [20px\] at (0) should be [10px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [initial\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [10px\] to [100%\] at (1.5) should be [calc(-5px + 150%)\]]
expected: FAIL
[Web Animations: property <border-top-left-radius> from [10px\] to [100%\] at (0) should be [calc(10px + 0%)\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [initial\] to [20px\] at (-0.3) should be [0px\]]
expected: FAIL
[CSS Transitions: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (0) should be [20px 40px 60px 80px / 120px 140px 160px 180px\]]
expected: FAIL
[Web Animations: property <border-top-left-radius> from [10px\] to [100%\] at (0.3) should be [calc(7px + 30%)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-left-radius> from [unset\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[Web Animations: property <border-top-left-radius> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
@ -263,39 +128,12 @@
[Web Animations: property <border-top-left-radius> from [20px\] to [10px 30px\] at (1.5) should be [5px 35px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-left-radius> from [20px\] to [10px 30px\] at (-2) should be [40px 0px\]]
expected: FAIL
[Web Animations: property <border-top-left-radius> from [initial\] to [20px\] at (-0.3) should be [0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-left-radius> from [10px\] to [100%\] at (1.5) should be [calc(-5px + 150%)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (1) should be [30px 50px 70px 90px / 130px 150px 170px 190px\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from [20px\] to [10px 30px\] at (0.3) should be [17px 23px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-left-radius> from [20px\] to [10px 30px\] at (1.5) should be [5px 35px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-left-radius> from [initial\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [10px\] to [50px\] at (1.5) should be [70px\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from [unset\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [10px\] to [100%\] at (0.3) should be [calc(7px + 30%)\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [unset\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (0.3) should be [23px 43px 63px 83px / 123px 143px 163px 183px\]]
expected: FAIL
@ -305,27 +143,9 @@
[CSS Animations: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (1.5) should be [35px 55px 75px 95px / 135px 155px 175px 195px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-left-radius> from [inherit\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from [initial\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[CSS Transitions: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (1.5) should be [35px 55px 75px 95px / 135px 155px 175px 195px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [10px\] to [100%\] at (-0.3) should be [calc(13px + -30%)\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [20px\] to [10px 30px\] at (0.6) should be [14px 26px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-left-radius> from [inherit\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (0) should be [20px 40px 60px 80px / 120px 140px 160px 180px\]]
expected: FAIL
@ -338,12 +158,6 @@
[Web Animations: property <border-top-left-radius> from [20px\] to [10px 30px\] at (-2) should be [40px 0px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [inherit\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-left-radius> from [initial\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[CSS Transitions: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (1) should be [30px 50px 70px 90px / 130px 150px 170px 190px\]]
expected: FAIL
@ -362,33 +176,15 @@
[CSS Transitions: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (0.6) should be [26px 46px 66px 86px / 126px 146px 166px 186px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-left-radius> from [10px\] to [50px\] at (1.5) should be [70px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from [inherit\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[Web Animations: property <border-top-left-radius> from [10px\] to [100%\] at (1) should be [100%\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-left-radius> from [10px\] to [50px\] at (0.3) should be [22px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [inherit\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[Web Animations: property <border-top-left-radius> from [initial\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-left-radius> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [initial\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[Web Animations: property <border-top-left-radius> from [initial\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
@ -398,45 +194,12 @@
[Web Animations: property <border-top-left-radius> from [initial\] to [20px\] at (0) should be [0px\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from [20px\] to [10px 30px\] at (0.6) should be [14px 26px\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from [20px\] to [10px 30px\] at (-0.3) should be [23px 17px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-left-radius> from [20px\] to [10px 30px\] at (0.3) should be [17px 23px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-left-radius> from [20px\] to [10px 30px\] at (-0.3) should be [23px 17px\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from [inherit\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[Web Animations: property <border-top-left-radius> from [unset\] to [20px\] at (-0.3) should be [0px\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from [10px\] to [50px\] at (0.3) should be [22px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from neutral to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from [10px\] to [100%\] at (1.5) should be [calc(-5px + 150%)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-left-radius> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[Web Animations: property <border-top-left-radius> from [unset\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-left-radius> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [unset\] to [20px\] at (0) should be [0px\]]
expected: FAIL
[Web Animations: property <border-top-left-radius> from [10px\] to [100%\] at (1.5) should be [calc(-5px + 150%)\]]
expected: FAIL
@ -446,9 +209,6 @@
[CSS Transitions: property <border-top-left-radius> from [10px\] to [100%\] at (0.3) should be [calc(7px + 30%)\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from [20px\] to [10px 30px\] at (1.5) should be [5px 35px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [inherit\] to [20px\] at (0) should be [30px\]]
expected: FAIL
@ -458,33 +218,33 @@
[Web Animations: property <border-top-left-radius> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-left-radius> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[Web Animations: property <border-top-left-radius> from [inherit\] to [20px\] at (0) should be [30px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [20px\] to [10px 30px\] at (0.3) should be [17px 23px\]]
expected: FAIL
[Web Animations: property <border-top-left-radius> from [inherit\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-left-radius> from [10px\] to [100%\] at (0.3) should be [calc(7px + 30%)\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-left-radius> from [20px\] to [10px 30px\] at (0.6) should be [14px 26px\]]
expected: FAIL
[Web Animations: property <border-top-left-radius> from [unset\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from [initial\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[CSS Animations: property <border-top-left-radius> from [inherit\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-left-radius> from [10px\] to [100%\] at (0.6) should be [calc(4px + 60%)\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from [10px\] to [100%\] at (1.5) should be [calc(-5px + 150%)\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from [10px\] to [50px\] at (1.5) should be [70px\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from [10px\] to [50px\] at (0.6) should be [34px\]]
expected: FAIL
[CSS Transitions: property <border-top-left-radius> from [10px\] to [50px\] at (0.3) should be [22px\]]
expected: FAIL

View file

@ -8,9 +8,6 @@
[CSS Animations: property <border-bottom-width> from [thick\] to [15px\] at (1) should be [15px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-width> from [15px\] to [thick\] at (-0.3) should be [18px\]]
expected: FAIL
[CSS Animations: property <border-left-width> from [unset\] to [20px\] at (1.5) should be [28.5px\]]
expected: FAIL
@ -23,45 +20,21 @@
[CSS Animations: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0.3) should be [23px 43px 63px 83px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-width> from [15px\] to [thick\] at (-2) should be [35px\]]
expected: FAIL
[CSS Animations: property <border-left-width> from [medium\] to [13px\] at (0.3) should be [6px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-bottom-width> from [thick\] to [15px\] at (0.3) should be [8px\]]
expected: FAIL
[CSS Transitions: property <border-left-width> from [initial\] to [20px\] at (0.6) should be [13.2px\]]
expected: FAIL
[CSS Animations: property <border-top-width> from [15px\] to [thick\] at (-2) should be [35px\]]
expected: FAIL
[CSS Animations: property <border-top-width> from [15px\] to [thick\] at (1.5) should be [0px\]]
expected: FAIL
[CSS Transitions: property <border-left-width> from [initial\] to [20px\] at (0.3) should be [8.1px\]]
expected: FAIL
[Web Animations: property <border-right-width> from [thin\] to [11px\] at (0.6) should be [7px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-left-width> from [0px\] to [10px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Transitions: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0.6) should be [26px 46px 66px 86px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-width> from [15px\] to [thick\] at (0.6) should be [9px\]]
expected: FAIL
[CSS Transitions: property <border-top-width> from [15px\] to [thick\] at (0.6) should be [9px\]]
expected: FAIL
[CSS Transitions: property <border-left-width> from [medium\] to [13px\] at (-0.25) should be [0.5px\]]
expected: FAIL
[CSS Animations: property <border-right-width> from [thin\] to [11px\] at (0) should be [1px\]]
expected: FAIL
@ -83,15 +56,9 @@
[Web Animations: property <border-bottom-width> from [thick\] to [15px\] at (0.3) should be [8px\]]
expected: FAIL
[CSS Transitions: property <border-right-width> from [thin\] to [11px\] at (-0.3) should be [0px\]]
expected: FAIL
[CSS Animations: property <border-left-width> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-left-width> from [medium\] to [13px\] at (-0.25) should be [0.5px\]]
expected: FAIL
[Web Animations: property <border-bottom-width> from [thick\] to [15px\] at (1) should be [15px\]]
expected: FAIL
@ -104,18 +71,12 @@
[Web Animations: property <border-left-width> from neutral to [20px\] at (0) should be [10px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-left-width> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[Web Animations: property <border-right-width> from [thin\] to [11px\] at (-2) should be [0px\]]
expected: FAIL
[CSS Animations: property <border-left-width> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Transitions: property <border-left-width> from [unset\] to [20px\] at (0.3) should be [8.1px\]]
expected: FAIL
[Web Animations: property <border-left-width> from [initial\] to [20px\] at (1.5) should be [28.5px\]]
expected: FAIL
@ -149,9 +110,6 @@
[CSS Transitions with transition: all: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0.3) should be [23px 43px 63px 83px\]]
expected: FAIL
[CSS Transitions: property <border-left-width> from [inherit\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[CSS Animations: property <border-top-width> from [15px\] to [thick\] at (0.3) should be [12px\]]
expected: FAIL
@ -161,39 +119,21 @@
[CSS Transitions: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (1) should be [30px 50px 70px 90px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-right-width> from [thin\] to [11px\] at (-2) should be [0px\]]
expected: FAIL
[CSS Animations: property <border-left-width> from [0px\] to [10px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Transitions: property <border-left-width> from [initial\] to [20px\] at (1.5) should be [28.5px\]]
expected: FAIL
[CSS Transitions: property <border-bottom-width> from [thick\] to [15px\] at (0.3) should be [8px\]]
expected: FAIL
[CSS Animations: property <border-left-width> from [initial\] to [20px\] at (1.5) should be [28.5px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-left-width> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[CSS Animations: property <border-left-width> from [unset\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-left-width> from [0px\] to [10px\] at (0.3) should be [3px\]]
expected: FAIL
[Web Animations: property <border-right-width> from [thin\] to [11px\] at (1.5) should be [16px\]]
expected: FAIL
[Web Animations: property <border-left-width> from [inherit\] to [20px\] at (0) should be [0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-bottom-width> from [thick\] to [15px\] at (0.6) should be [11px\]]
expected: FAIL
[Web Animations: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0.6) should be [26px 46px 66px 86px\]]
expected: FAIL
@ -212,12 +152,6 @@
[CSS Animations: property <border-right-width> from [thin\] to [11px\] at (0.3) should be [4px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-width> from [15px\] to [thick\] at (0.3) should be [12px\]]
expected: FAIL
[CSS Transitions: property <border-right-width> from [thin\] to [11px\] at (0.3) should be [4px\]]
expected: FAIL
[Web Animations: property <border-right-width> from [thin\] to [11px\] at (0) should be [1px\]]
expected: FAIL
@ -230,57 +164,33 @@
[Web Animations: property <border-left-width> from [medium\] to [13px\] at (-0.25) should be [0.5px\]]
expected: FAIL
[CSS Transitions: property <border-left-width> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[Web Animations: property <border-bottom-width> from [thick\] to [15px\] at (0) should be [5px\]]
expected: FAIL
[CSS Transitions: property <border-top-width> from [15px\] to [thick\] at (1.5) should be [0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-left-width> from [initial\] to [20px\] at (-0.3) should be [0px\]]
expected: FAIL
[Web Animations: property <border-left-width> from [unset\] to [20px\] at (-0.3) should be [0px\]]
expected: FAIL
[CSS Transitions: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (1.5) should be [35px 55px 75px 95px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-left-width> from [medium\] to [13px\] at (-2) should be [0px\]]
expected: FAIL
[Web Animations: property <border-left-width> from [initial\] to [20px\] at (0.3) should be [8.1px\]]
expected: FAIL
[CSS Transitions: property <border-left-width> from [medium\] to [13px\] at (-2) should be [0px\]]
expected: FAIL
[CSS Animations: property <border-left-width> from [0px\] to [10px\] at (0.6) should be [6px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-left-width> from [medium\] to [13px\] at (0.3) should be [6px\]]
expected: FAIL
[CSS Animations: property <border-left-width> from [unset\] to [20px\] at (0) should be [3px\]]
expected: FAIL
[Web Animations: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0.3) should be [23px 43px 63px 83px\]]
expected: FAIL
[CSS Transitions: property <border-bottom-width> from [thick\] to [15px\] at (1.5) should be [20px\]]
expected: FAIL
[CSS Transitions: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0.3) should be [23px 43px 63px 83px\]]
expected: FAIL
[Web Animations: property <border-left-width> from [inherit\] to [20px\] at (-0.3) should be [0px\]]
expected: FAIL
[CSS Transitions: property <border-top-width> from [15px\] to [thick\] at (-2) should be [35px\]]
expected: FAIL
[Web Animations: property <border-bottom-width> from [thick\] to [15px\] at (-2) should be [0px\]]
expected: FAIL
@ -293,9 +203,6 @@
[Web Animations: property <border-top-width> from [15px\] to [thick\] at (1.5) should be [0px\]]
expected: FAIL
[CSS Transitions: property <border-left-width> from [unset\] to [20px\] at (-0.3) should be [0px\]]
expected: FAIL
[Web Animations: property <border-top-width> from [15px\] to [thick\] at (0.3) should be [12px\]]
expected: FAIL
@ -305,48 +212,24 @@
[CSS Animations: property <border-left-width> from [inherit\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-left-width> from [unset\] to [20px\] at (-0.3) should be [0px\]]
expected: FAIL
[CSS Transitions: property <border-left-width> from [0px\] to [10px\] at (0.6) should be [6px\]]
expected: FAIL
[Web Animations: property <border-left-width> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Animations: property <border-left-width> from [medium\] to [13px\] at (1.5) should be [18px\]]
expected: FAIL
[CSS Transitions: property <border-left-width> from [medium\] to [13px\] at (1.5) should be [18px\]]
expected: FAIL
[CSS Animations: property <border-right-width> from [thin\] to [11px\] at (-2) should be [0px\]]
expected: FAIL
[CSS Transitions: property <border-bottom-width> from [thick\] to [15px\] at (0.6) should be [11px\]]
expected: FAIL
[Web Animations: property <border-bottom-width> from [thick\] to [15px\] at (1.5) should be [20px\]]
expected: FAIL
[CSS Transitions: property <border-left-width> from [unset\] to [20px\] at (0.6) should be [13.2px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-left-width> from [0px\] to [10px\] at (0.6) should be [6px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-right-width> from [thin\] to [11px\] at (-0.3) should be [0px\]]
expected: FAIL
[CSS Animations: property <border-left-width> from [medium\] to [13px\] at (0) should be [3px\]]
expected: FAIL
[CSS Animations: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (-0.3) should be [17px 37px 57px 77px\]]
expected: FAIL
[CSS Transitions: property <border-left-width> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[Web Animations: property <border-left-width> from [inherit\] to [20px\] at (1) should be [20px\]]
expected: FAIL
@ -356,21 +239,12 @@
[CSS Animations: property <border-left-width> from [initial\] to [20px\] at (0) should be [3px\]]
expected: FAIL
[CSS Transitions: property <border-left-width> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Animations: property <border-left-width> from [inherit\] to [20px\] at (-0.3) should be [0px\]]
expected: FAIL
[Web Animations: property <border-bottom-width> from [thick\] to [15px\] at (-0.3) should be [2px\]]
expected: FAIL
[CSS Transitions: property <border-left-width> from [unset\] to [20px\] at (1.5) should be [28.5px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-left-width> from [inherit\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[CSS Animations: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0.6) should be [26px 46px 66px 86px\]]
expected: FAIL
@ -380,9 +254,6 @@
[CSS Animations: property <border-left-width> from [inherit\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[CSS Transitions: property <border-left-width> from [medium\] to [13px\] at (0.6) should be [9px\]]
expected: FAIL
[Web Animations: property <border-left-width> from [0px\] to [10px\] at (1.5) should be [15px\]]
expected: FAIL
@ -398,24 +269,9 @@
[Web Animations: property <border-right-width> from [thin\] to [11px\] at (0.3) should be [4px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-left-width> from [medium\] to [13px\] at (0.6) should be [9px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-left-width> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[Web Animations: property <border-left-width> from [initial\] to [20px\] at (-0.3) should be [0px\]]
expected: FAIL
[CSS Transitions: property <border-left-width> from [inherit\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-right-width> from [thin\] to [11px\] at (0.6) should be [7px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-top-width> from [15px\] to [thick\] at (1.5) should be [0px\]]
expected: FAIL
[Web Animations: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0) should be [20px 40px 60px 80px\]]
expected: FAIL
@ -428,21 +284,12 @@
[Web Animations: property <border-top-width> from [15px\] to [thick\] at (-2) should be [35px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-bottom-width> from [thick\] to [15px\] at (-2) should be [0px\]]
expected: FAIL
[CSS Animations: property <border-left-width> from [unset\] to [20px\] at (0.3) should be [8.1px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-bottom-width> from [thick\] to [15px\] at (1.5) should be [20px\]]
expected: FAIL
[CSS Animations: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0) should be [20px 40px 60px 80px\]]
expected: FAIL
[CSS Transitions: property <border-left-width> from [initial\] to [20px\] at (-0.3) should be [0px\]]
expected: FAIL
[CSS Animations: property <border-top-width> from [15px\] to [thick\] at (0.6) should be [9px\]]
expected: FAIL
@ -461,12 +308,6 @@
[CSS Animations: property <border-left-width> from [medium\] to [13px\] at (-0.25) should be [0.5px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-left-width> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[CSS Transitions: property <border-left-width> from [inherit\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[CSS Animations: property <border-top-width> from [15px\] to [thick\] at (-0.3) should be [18px\]]
expected: FAIL
@ -476,36 +317,15 @@
[Web Animations: property <border-right-width> from [thin\] to [11px\] at (1) should be [11px\]]
expected: FAIL
[CSS Transitions: property <border-right-width> from [thin\] to [11px\] at (0.6) should be [7px\]]
expected: FAIL
[Web Animations: property <border-left-width> from [initial\] to [20px\] at (0) should be [3px\]]
expected: FAIL
[CSS Transitions: property <border-bottom-width> from [thick\] to [15px\] at (-2) should be [0px\]]
expected: FAIL
[Web Animations: property <border-left-width> from [medium\] to [13px\] at (0.3) should be [6px\]]
expected: FAIL
[CSS Animations: property <border-left-width> from [inherit\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[CSS Transitions: property <border-bottom-width> from [thick\] to [15px\] at (-0.3) should be [2px\]]
expected: FAIL
[CSS Transitions: property <border-top-width> from [15px\] to [thick\] at (0.3) should be [12px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-left-width> from [initial\] to [20px\] at (0.3) should be [8.1px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-left-width> from [inherit\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-left-width> from [medium\] to [13px\] at (1.5) should be [18px\]]
expected: FAIL
[Web Animations: property <border-left-width> from [0px\] to [10px\] at (0) should be [0px\]]
expected: FAIL
@ -515,72 +335,36 @@
[Web Animations: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (1.5) should be [35px 55px 75px 95px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-left-width> from [unset\] to [20px\] at (0.6) should be [13.2px\]]
expected: FAIL
[CSS Animations: property <border-left-width> from [inherit\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-left-width> from [initial\] to [20px\] at (1.5) should be [28.5px\]]
expected: FAIL
[CSS Transitions: property <border-top-width> from [15px\] to [thick\] at (-0.3) should be [18px\]]
expected: FAIL
[Web Animations: property <border-left-width> from [inherit\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[Web Animations: property <border-left-width> from [unset\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <border-left-width> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[Web Animations: property <border-right-width> from [thin\] to [11px\] at (-0.3) should be [0px\]]
expected: FAIL
[CSS Animations: property <border-left-width> from [0px\] to [10px\] at (0) should be [0px\]]
expected: FAIL
[CSS Transitions: property <border-left-width> from [0px\] to [10px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0) should be [20px 40px 60px 80px\]]
expected: FAIL
[Web Animations: property <border-left-width> from [medium\] to [13px\] at (0.6) should be [9px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-left-width> from [inherit\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-left-width> from [initial\] to [20px\] at (0.6) should be [13.2px\]]
expected: FAIL
[CSS Transitions: property <border-left-width> from [medium\] to [13px\] at (0.3) should be [6px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-left-width> from [unset\] to [20px\] at (1.5) should be [28.5px\]]
expected: FAIL
[Web Animations: property <border-left-width> from [0px\] to [10px\] at (0.6) should be [6px\]]
expected: FAIL
[CSS Transitions: property <border-left-width> from [0px\] to [10px\] at (0.3) should be [3px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-right-width> from [thin\] to [11px\] at (0.3) should be [4px\]]
expected: FAIL
[Web Animations: property <border-left-width> from [inherit\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[CSS Animations: property <border-top-width> from [15px\] to [thick\] at (0) should be [15px\]]
expected: FAIL
[CSS Transitions: property <border-right-width> from [thin\] to [11px\] at (-2) should be [0px\]]
expected: FAIL
[CSS Animations: property <border-right-width> from [thin\] to [11px\] at (0.6) should be [7px\]]
expected: FAIL
@ -605,9 +389,6 @@
[CSS Animations: property <border-left-width> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[CSS Transitions: property <border-right-width> from [thin\] to [11px\] at (1.5) should be [16px\]]
expected: FAIL
[CSS Animations: property <border-left-width> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
@ -617,18 +398,12 @@
[Web Animations: property <border-left-width> from [initial\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-bottom-width> from [thick\] to [15px\] at (-0.3) should be [2px\]]
expected: FAIL
[Web Animations: property <border-left-width> from [0px\] to [10px\] at (-0.3) should be [0px\]]
expected: FAIL
[Web Animations: property <border-top-width> from [15px\] to [thick\] at (1) should be [5px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-right-width> from [thin\] to [11px\] at (1.5) should be [16px\]]
expected: FAIL
[CSS Animations: property <border-bottom-width> from [thick\] to [15px\] at (0.6) should be [11px\]]
expected: FAIL
@ -641,6 +416,3 @@
[Web Animations: property <border-left-width> from [0px\] to [10px\] at (1) should be [10px\]]
expected: FAIL
[CSS Transitions with transition: all: property <border-left-width> from [unset\] to [20px\] at (0.3) should be [8.1px\]]
expected: FAIL

View file

@ -2,75 +2,18 @@
[box-shadow-interpolation]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [black 15px 10px 5px 6px\] to [orange -15px -10px 25px -4px\] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px 9px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from neutral to [20px 20px 20px 20px black\] at (-0.3) should be [rgb(0, 0, 0) 7px 33px 7px 33px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from neutral to [20px 20px 20px 20px black\] at (0.3) should be [rgb(0, 0, 0) 13px 27px 13px 27px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [10px 20px rgba(255, 255, 0, 0.5), inset 5px 10em #008000\] to [none\] at (1.5) should be [rgba(0, 0, 0, 0) -5px -10px 0px 0px, rgba(0, 0, 0, 0) -2.5px -15px 0px 0px inset\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from neutral to [20px 20px 20px 20px black\] at (1.5) should be [rgb(0, 0, 0) 25px 15px 25px 15px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from neutral to [20px 20px 20px 20px black\] at (1.5) should be [rgb(0, 0, 0) 25px 15px 25px 15px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [black 15px 10px 5px 6px\] to [orange -15px -10px 25px -4px\] at (0.3) should be [rgb(77, 50, 0) 6px 4px 11px 3px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [10px 20px rgba(255, 255, 0, 0.5), inset 5px 10em #008000\] to [none\] at (0.3) should be [rgba(255, 255, 0, 0.353) 7px 14px 0px 0px, rgba(0, 128, 0, 0.7) 3.5px 21px 0px 0px inset\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [initial\] to [20px 20px 20px 20px black\] at (1.5) should be [rgb(0, 0, 0) 30px 30px 30px 30px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [black 15px 10px 5px 6px\] to [orange -15px -10px 25px -4px\] at (0.6) should be [rgb(153, 99, 0) -3px -2px 17px 0px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px\] at (1) should be [rgb(0, 128, 0) -15px -10px 25px -4px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px black\] to [10px 10px 10px 10px currentColor\] at (1.5) should be [rgb(0, 192, 0) 10px 10px 10px 10px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [initial\] to [20px 20px 20px 20px black\] at (0) should be [rgba(0, 0, 0, 0) 0px 0px 0px 0px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black inset\] to [-15px -10px 25px -4px orange inset\] at (1.5) should be [rgb(255, 248, 0) -30px -20px 35px -9px inset\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px\] at (0.3) should be [rgb(0, 38, 0) 6px 4px 11px 3px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [10px 20px rgba(255, 255, 0, 0.5), inset 5px 10em #008000\] to [none\] at (0.3) should be [rgba(255, 255, 0, 0.353) 7px 14px 0px 0px, rgba(0, 128, 0, 0.7) 3.5px 21px 0px 0px inset\]]
expected: FAIL
[Web Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black\] at (0) should be [rgb(0, 0, 0) 10px 30px 10px 30px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [10px 10px 10px 10px black\] to [10px 10px 10px 10px currentColor\] at (1.5) should be [rgb(0, 192, 0) 10px 10px 10px 10px\]]
expected: FAIL
[Web Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black\] at (0.6) should be [rgb(0, 0, 0) 16px 24px 16px 24px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [black 15px 10px 5px 6px\] to [orange -15px -10px 25px -4px\] at (1.5) should be [rgb(255, 248, 0) -30px -20px 35px -9px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px orange\] at (1.5) should be [rgb(255, 248, 0) -30px -20px 35px -9px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [unset\] to [20px 20px 20px 20px black\] at (0.6) should be [rgba(0, 0, 0, 0.6) 12px 12px 12px 12px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [initial\] to [20px 20px 20px 20px black\] at (-0.3) should be [rgba(0, 0, 0, 0) -6px -6px 0px -6px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [15px 10px 5px 6px black inset\] to [-15px -10px 25px -4px orange inset\] at (0) should be [rgb(0, 0, 0) 15px 10px 5px 6px inset\]]
expected: FAIL
@ -80,57 +23,24 @@
[CSS Animations: property <box-shadow> from [inherit\] to [20px 20px 20px 20px black\] at (1.5) should be [rgb(0, 0, 0) 15px 25px 15px 25px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px orange\] at (0.3) should be [rgb(77, 50, 0) 6px 4px 11px 3px\]]
expected: FAIL
[Web Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black\] at (0.3) should be [rgb(0, 0, 0) 13px 27px 13px 27px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px\] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px 9px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [black 15px 10px 5px 6px\] to [orange -15px -10px 25px -4px\] at (0.3) should be [rgb(77, 50, 0) 6px 4px 11px 3px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black\] at (0.6) should be [rgb(0, 0, 0) 16px 24px 16px 24px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px orange\] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px 9px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [unset\] to [20px 20px 20px 20px black\] at (1) should be [rgb(0, 0, 0) 20px 20px 20px 20px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [unset\] to [20px 20px 20px 20px black\] at (0) should be [rgba(0, 0, 0, 0) 0px 0px 0px 0px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [10px 10px 10px 10px black\] to [10px 10px 10px 10px currentColor\] at (0.3) should be [rgb(0, 38, 0) 10px 10px 10px 10px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green\] to [inset 5px 10px green, 15px 20px blue\] at (0) should be [10px 20px yellow, 5px 10px green\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [10px 20px rgba(255, 255, 0, 0.5), inset 5px 10em #008000\] to [none\] at (-0.3) should be [rgba(255, 255, 0, 0.65) 13px 26px 0px 0px, rgb(0, 166, 0) 6.5px 39px 0px 0px inset\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [initial\] to [20px 20px 20px 20px black\] at (-0.3) should be [rgba(0, 0, 0, 0) -6px -6px 0px -6px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [10px 20px rgba(255, 255, 0, 0.5), inset 5px 10em #008000\] to [none\] at (0.6) should be [rgba(255, 255, 0, 0.2) 4px 8px 0px 0px, rgba(0, 128, 0, 0.4) 2px 12px 0px 0px inset\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [black 15px 10px 5px 6px\] to [orange -15px -10px 25px -4px\] at (0) should be [rgb(0, 0, 0) 15px 10px 5px 6px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [10px 20px rgba(255, 255, 0, 0.5), inset 5px 10em #008000\] to [none\] at (0.3) should be [rgba(255, 255, 0, 0.353) 7px 14px 0px 0px, rgba(0, 128, 0, 0.7) 3.5px 21px 0px 0px inset\]]
expected: FAIL
[Web Animations: property <box-shadow> from [10px 20px rgba(255, 255, 0, 0.5), inset 5px 10em #008000\] to [none\] at (0.6) should be [rgba(255, 255, 0, 0.2) 4px 8px 0px 0px, rgba(0, 128, 0, 0.4) 2px 12px 0px 0px inset\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px orange\] at (0.6) should be [rgb(153, 99, 0) -3px -2px 17px 0px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [15px 10px 5px 6px black inset\] to [-15px -10px 25px -4px orange inset\] at (0.3) should be [rgb(77, 50, 0) 6px 4px 11px 3px inset\]]
expected: FAIL
@ -143,246 +53,90 @@
[CSS Animations: property <box-shadow> from [inherit\] to [20px 20px 20px 20px black\] at (0) should be [rgb(0, 0, 0) 30px 10px 30px 10px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [10px 10px 10px 10px black\] to [10px 10px 10px 10px currentColor\] at (0.3) should be [rgb(0, 38, 0) 10px 10px 10px 10px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black inset\] to [-15px -10px 25px -4px orange inset\] at (0.6) should be [rgb(153, 99, 0) -3px -2px 17px 0px inset\]]
expected: FAIL
[Web Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green\] to [inset 5px 10px green, 15px 20px blue\] at (0.3) should be [10px 20px yellow, 5px 10px green\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [initial\] to [20px 20px 20px 20px black\] at (0.3) should be [rgba(0, 0, 0, 0.3) 6px 6px 6px 6px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [inherit\] to [20px 20px 20px 20px black\] at (-0.3) should be [rgb(0, 0, 0) 33px 7px 33px 7px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [unset\] to [20px 20px 20px 20px black\] at (0.6) should be [rgba(0, 0, 0, 0.6) 12px 12px 12px 12px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green\] to [inset 5px 10px green, 15px 20px blue\] at (1) should be [inset 5px 10px green, 15px 20px blue\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [10px 20px rgba(255, 255, 0, 0.5), inset 5px 10em #008000\] to [none\] at (0.6) should be [rgba(255, 255, 0, 0.2) 4px 8px 0px 0px, rgba(0, 128, 0, 0.4) 2px 12px 0px 0px inset\]]
expected: FAIL
[Web Animations: property <box-shadow> from [15px 10px 5px 6px black inset\] to [-15px -10px 25px -4px orange inset\] at (1.5) should be [rgb(255, 248, 0) -30px -20px 35px -9px inset\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [unset\] to [20px 20px 20px 20px black\] at (0.6) should be [rgba(0, 0, 0, 0.6) 12px 12px 12px 12px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [black 15px 10px 5px 6px\] to [orange -15px -10px 25px -4px\] at (1.5) should be [rgb(255, 248, 0) -30px -20px 35px -9px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [10px 20px rgba(255, 255, 0, 0.5), inset 5px 10em #008000\] to [none\] at (0.3) should be [rgba(255, 255, 0, 0.353) 7px 14px 0px 0px, rgba(0, 128, 0, 0.7) 3.5px 21px 0px 0px inset\]]
expected: FAIL
[Web Animations: property <box-shadow> from [10px 20px rgba(255, 255, 0, 0.5), inset 5px 10em #008000\] to [none\] at (1.5) should be [rgba(0, 0, 0, 0) -5px -10px 0px 0px, rgba(0, 0, 0, 0) -2.5px -15px 0px 0px inset\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [10px 20px rgba(255, 255, 0, 0.5), inset 5px 10em #008000\] to [none\] at (-0.3) should be [rgba(255, 255, 0, 0.65) 13px 26px 0px 0px, rgb(0, 166, 0) 6.5px 39px 0px 0px inset\]]
expected: FAIL
[Web Animations: property <box-shadow> from [inherit\] to [20px 20px 20px 20px black\] at (-0.3) should be [rgb(0, 0, 0) 33px 7px 33px 7px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [15px 10px 5px 6px black inset\] to [-15px -10px 25px -4px orange inset\] at (0) should be [rgb(0, 0, 0) 15px 10px 5px 6px inset\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px orange\] at (1.5) should be [rgb(255, 248, 0) -30px -20px 35px -9px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px orange\] at (0) should be [rgb(0, 0, 0) 15px 10px 5px 6px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black inset\] to [-15px -10px 25px -4px orange inset\] at (0.6) should be [rgb(153, 99, 0) -3px -2px 17px 0px inset\]]
expected: FAIL
[Web Animations: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px\] at (1) should be [rgb(0, 128, 0) -15px -10px 25px -4px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [10px 10px 10px 10px black\] to [10px 10px 10px 10px currentColor\] at (0) should be [rgb(0, 0, 0) 10px 10px 10px 10px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [unset\] to [20px 20px 20px 20px black\] at (1.5) should be [rgb(0, 0, 0) 30px 30px 30px 30px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [unset\] to [20px 20px 20px 20px black\] at (1.5) should be [rgb(0, 0, 0) 30px 30px 30px 30px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green\] to [inset 5px 10px green, 15px 20px blue\] at (1) should be [inset 5px 10px green, 15px 20px blue\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px\] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px 9px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [15px 10px 5px 6px black inset\] to [-15px -10px 25px -4px orange inset\] at (0.3) should be [rgb(77, 50, 0) 6px 4px 11px 3px inset\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [initial\] to [20px 20px 20px 20px black\] at (1) should be [rgb(0, 0, 0) 20px 20px 20px 20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [10px 20px rgba(255, 255, 0, 0.5), inset 5px 10em #008000\] to [none\] at (-0.3) should be [rgba(255, 255, 0, 0.65) 13px 26px 0px 0px, rgb(0, 166, 0) 6.5px 39px 0px 0px inset\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [initial\] to [20px 20px 20px 20px black\] at (0.3) should be [rgba(0, 0, 0, 0.3) 6px 6px 6px 6px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px\] at (0.6) should be [rgb(0, 77, 0) -3px -2px 17px 0px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [inherit\] to [20px 20px 20px 20px black\] at (1.5) should be [rgb(0, 0, 0) 15px 25px 15px 25px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [15px 10px 5px 6px black inset\] to [-15px -10px 25px -4px orange inset\] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px 9px inset\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [initial\] to [20px 20px 20px 20px black\] at (0.6) should be [rgba(0, 0, 0, 0.6) 12px 12px 12px 12px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [unset\] to [20px 20px 20px 20px black\] at (-0.3) should be [rgba(0, 0, 0, 0) -6px -6px 0px -6px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [10px 20px rgba(255, 255, 0, 0.5), inset 5px 10em #008000\] to [none\] at (0.6) should be [rgba(255, 255, 0, 0.2) 4px 8px 0px 0px, rgba(0, 128, 0, 0.4) 2px 12px 0px 0px inset\]]
expected: FAIL
[Web Animations: property <box-shadow> from [unset\] to [20px 20px 20px 20px black\] at (1) should be [rgb(0, 0, 0) 20px 20px 20px 20px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [10px 10px 10px 10px black\] to [10px 10px 10px 10px currentColor\] at (1.5) should be [rgb(0, 192, 0) 10px 10px 10px 10px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [black 15px 10px 5px 6px\] to [orange -15px -10px 25px -4px\] at (0.3) should be [rgb(77, 50, 0) 6px 4px 11px 3px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [black 15px 10px 5px 6px\] to [orange -15px -10px 25px -4px\] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px 9px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black inset\] to [-15px -10px 25px -4px orange inset\] at (1.5) should be [rgb(255, 248, 0) -30px -20px 35px -9px inset\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px orange\] at (0.3) should be [rgb(77, 50, 0) 6px 4px 11px 3px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black inset\] to [-15px -10px 25px -4px orange inset\] at (0.3) should be [rgb(77, 50, 0) 6px 4px 11px 3px inset\]]
expected: FAIL
[Web Animations: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px\] at (0) should be [rgb(0, 0, 0) 15px 10px 5px 6px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green\] to [inset 5px 10px green, 15px 20px blue\] at (0.6) should be [inset 5px 10px green, 15px 20px blue\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [inherit\] to [20px 20px 20px 20px black\] at (1) should be [rgb(0, 0, 0) 20px 20px 20px 20px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [initial\] to [20px 20px 20px 20px black\] at (0.6) should be [rgba(0, 0, 0, 0.6) 12px 12px 12px 12px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [inherit\] to [20px 20px 20px 20px black\] at (-0.3) should be [rgb(0, 0, 0) 33px 7px 33px 7px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [initial\] to [20px 20px 20px 20px black\] at (1.5) should be [rgb(0, 0, 0) 30px 30px 30px 30px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [unset\] to [20px 20px 20px 20px black\] at (1.5) should be [rgb(0, 0, 0) 30px 30px 30px 30px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from neutral to [20px 20px 20px 20px black\] at (-0.3) should be [rgb(0, 0, 0) 7px 33px 7px 33px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [inherit\] to [20px 20px 20px 20px black\] at (-0.3) should be [rgb(0, 0, 0) 33px 7px 33px 7px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px orange\] at (1) should be [rgb(255, 165, 0) -15px -10px 25px -4px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green\] to [inset 5px 10px green, 15px 20px blue\] at (0.6) should be [inset 5px 10px green, 15px 20px blue\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [initial\] to [20px 20px 20px 20px black\] at (0.6) should be [rgba(0, 0, 0, 0.6) 12px 12px 12px 12px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px black\] to [10px 10px 10px 10px currentColor\] at (0.6) should be [rgb(0, 77, 0) 10px 10px 10px 10px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [15px 10px 5px 6px black inset\] to [-15px -10px 25px -4px orange inset\] at (1) should be [rgb(255, 165, 0) -15px -10px 25px -4px inset\]]
expected: FAIL
[Web Animations: property <box-shadow> from [initial\] to [20px 20px 20px 20px black\] at (-0.3) should be [rgba(0, 0, 0, 0) -6px -6px 0px -6px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px\] at (1.5) should be [rgb(0, 192, 0) -30px -20px 35px -9px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px\] at (0.3) should be [rgb(0, 38, 0) 6px 4px 11px 3px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [black 15px 10px 5px 6px\] to [orange -15px -10px 25px -4px\] at (0.6) should be [rgb(153, 99, 0) -3px -2px 17px 0px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [10px 20px rgba(255, 255, 0, 0.5), inset 5px 10em #008000\] to [none\] at (1) should be [rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px inset\]]
expected: FAIL
[Web Animations: property <box-shadow> from [black 15px 10px 5px 6px\] to [orange -15px -10px 25px -4px\] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px 9px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [inherit\] to [20px 20px 20px 20px black\] at (1) should be [rgb(0, 0, 0) 20px 20px 20px 20px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px orange\] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px 9px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from neutral to [20px 20px 20px 20px black\] at (0.6) should be [rgb(0, 0, 0) 16px 24px 16px 24px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green\] to [inset 5px 10px green, 15px 20px blue\] at (0) should be [10px 20px yellow, 5px 10px green\]]
expected: FAIL
[Web Animations: property <box-shadow> from [10px 10px 10px 10px black\] to [10px 10px 10px 10px currentColor\] at (0.6) should be [rgb(0, 77, 0) 10px 10px 10px 10px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px\] at (0.6) should be [rgb(0, 77, 0) -3px -2px 17px 0px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px orange\] at (0) should be [rgb(0, 0, 0) 15px 10px 5px 6px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [inherit\] to [20px 20px 20px 20px black\] at (0.3) should be [rgb(0, 0, 0) 27px 13px 27px 13px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green\] to [inset 5px 10px green, 15px 20px blue\] at (1.5) should be [inset 5px 10px green, 15px 20px blue\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px\] at (1.5) should be [rgb(0, 192, 0) -30px -20px 35px -9px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [15px 10px 5px 6px black inset\] to [-15px -10px 25px -4px orange inset\] at (0.6) should be [rgb(153, 99, 0) -3px -2px 17px 0px inset\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from neutral to [20px 20px 20px 20px black\] at (0.6) should be [rgb(0, 0, 0) 16px 24px 16px 24px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px orange\] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px 9px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [10px 10px 10px 10px black\] to [10px 10px 10px 10px currentColor\] at (1) should be [rgb(0, 128, 0) 10px 10px 10px 10px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green\] to [inset 5px 10px green, 15px 20px blue\] at (-0.3) should be [10px 20px yellow, 5px 10px green\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [10px 20px rgba(255, 255, 0, 0.5), inset 5px 10em #008000\] to [none\] at (1.5) should be [rgba(0, 0, 0, 0) -5px -10px 0px 0px, rgba(0, 0, 0, 0) -2.5px -15px 0px 0px inset\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [initial\] to [20px 20px 20px 20px black\] at (0.3) should be [rgba(0, 0, 0, 0.3) 6px 6px 6px 6px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black\] at (1.5) should be [rgb(0, 0, 0) 25px 15px 25px 15px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green\] to [inset 5px 10px green, 15px 20px blue\] at (0.5) should be [inset 5px 10px green, 15px 20px blue\]]
expected: FAIL
@ -398,36 +152,12 @@
[Web Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black\] at (1) should be [rgb(0, 0, 0) 20px 20px 20px 20px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [10px 10px 10px 10px black\] to [10px 10px 10px 10px currentColor\] at (1.5) should be [rgb(0, 192, 0) 10px 10px 10px 10px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [inherit\] to [20px 20px 20px 20px black\] at (0.3) should be [rgb(0, 0, 0) 27px 13px 27px 13px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [inherit\] to [20px 20px 20px 20px black\] at (0.3) should be [rgb(0, 0, 0) 27px 13px 27px 13px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [inherit\] to [20px 20px 20px 20px black\] at (0.6) should be [rgb(0, 0, 0) 24px 16px 24px 16px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black\] at (-0.3) should be [rgb(0, 0, 0) 7px 33px 7px 33px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from neutral to [20px 20px 20px 20px black\] at (0.3) should be [rgb(0, 0, 0) 13px 27px 13px 27px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [inherit\] to [20px 20px 20px 20px black\] at (0.6) should be [rgb(0, 0, 0) 24px 16px 24px 16px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [15px 10px 5px 6px black inset\] to [-15px -10px 25px -4px orange inset\] at (1) should be [rgb(255, 165, 0) -15px -10px 25px -4px inset\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [black 15px 10px 5px 6px\] to [orange -15px -10px 25px -4px\] at (1.5) should be [rgb(255, 248, 0) -30px -20px 35px -9px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black\] at (1) should be [rgb(0, 0, 0) 20px 20px 20px 20px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [initial\] to [20px 20px 20px 20px black\] at (0) should be [rgba(0, 0, 0, 0) 0px 0px 0px 0px\]]
expected: FAIL
@ -443,195 +173,81 @@
[Web Animations: property <box-shadow> from [black 15px 10px 5px 6px\] to [orange -15px -10px 25px -4px\] at (1) should be [rgb(255, 165, 0) -15px -10px 25px -4px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [unset\] to [20px 20px 20px 20px black\] at (-0.3) should be [rgba(0, 0, 0, 0) -6px -6px 0px -6px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [initial\] to [20px 20px 20px 20px black\] at (-0.3) should be [rgba(0, 0, 0, 0) -6px -6px 0px -6px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px\] at (0) should be [rgb(0, 0, 0) 15px 10px 5px 6px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px orange\] at (0.3) should be [rgb(77, 50, 0) 6px 4px 11px 3px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [10px 10px 10px 10px black\] to [10px 10px 10px 10px currentColor\] at (-0.3) should be [rgb(0, 0, 0) 10px 10px 10px 10px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [black 15px 10px 5px 6px\] to [orange -15px -10px 25px -4px\] at (0.3) should be [rgb(77, 50, 0) 6px 4px 11px 3px\]]
expected: FAIL
[Web Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black\] at (1.5) should be [rgb(0, 0, 0) 25px 15px 25px 15px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [initial\] to [20px 20px 20px 20px black\] at (1.5) should be [rgb(0, 0, 0) 30px 30px 30px 30px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black inset\] to [-15px -10px 25px -4px orange inset\] at (0.3) should be [rgb(77, 50, 0) 6px 4px 11px 3px inset\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [unset\] to [20px 20px 20px 20px black\] at (0) should be [rgba(0, 0, 0, 0) 0px 0px 0px 0px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [black 15px 10px 5px 6px\] to [orange -15px -10px 25px -4px\] at (0.6) should be [rgb(153, 99, 0) -3px -2px 17px 0px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px\] at (0.3) should be [rgb(0, 38, 0) 6px 4px 11px 3px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [unset\] to [20px 20px 20px 20px black\] at (0.3) should be [rgba(0, 0, 0, 0.3) 6px 6px 6px 6px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px black\] to [10px 10px 10px 10px currentColor\] at (0.3) should be [rgb(0, 38, 0) 10px 10px 10px 10px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green\] to [inset 5px 10px green, 15px 20px blue\] at (0.5) should be [inset 5px 10px green, 15px 20px blue\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green\] to [inset 5px 10px green, 15px 20px blue\] at (-0.3) should be [10px 20px yellow, 5px 10px green\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px\] at (0.6) should be [rgb(0, 77, 0) -3px -2px 17px 0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px orange\] at (0.6) should be [rgb(153, 99, 0) -3px -2px 17px 0px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px\] at (0.3) should be [rgb(0, 38, 0) 6px 4px 11px 3px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [unset\] to [20px 20px 20px 20px black\] at (0.3) should be [rgba(0, 0, 0, 0.3) 6px 6px 6px 6px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px orange\] at (0.6) should be [rgb(153, 99, 0) -3px -2px 17px 0px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [15px 10px 5px 6px black inset\] to [-15px -10px 25px -4px orange inset\] at (0.6) should be [rgb(153, 99, 0) -3px -2px 17px 0px inset\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [initial\] to [20px 20px 20px 20px black\] at (1.5) should be [rgb(0, 0, 0) 30px 30px 30px 30px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px\] at (0.6) should be [rgb(0, 77, 0) -3px -2px 17px 0px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px orange\] at (1) should be [rgb(255, 165, 0) -15px -10px 25px -4px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black inset\] to [-15px -10px 25px -4px orange inset\] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px 9px inset\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [inherit\] to [20px 20px 20px 20px black\] at (0.6) should be [rgb(0, 0, 0) 24px 16px 24px 16px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [black 15px 10px 5px 6px\] to [orange -15px -10px 25px -4px\] at (0.6) should be [rgb(153, 99, 0) -3px -2px 17px 0px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [10px 10px 10px 10px black\] to [10px 10px 10px 10px currentColor\] at (0) should be [rgb(0, 0, 0) 10px 10px 10px 10px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [10px 10px 10px 10px black\] to [10px 10px 10px 10px currentColor\] at (1) should be [rgb(0, 128, 0) 10px 10px 10px 10px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [10px 10px 10px 10px black\] to [10px 10px 10px 10px currentColor\] at (0.6) should be [rgb(0, 77, 0) 10px 10px 10px 10px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px orange\] at (0.3) should be [rgb(77, 50, 0) 6px 4px 11px 3px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px\] at (1.5) should be [rgb(0, 192, 0) -30px -20px 35px -9px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px\] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px 9px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [10px 20px rgba(255, 255, 0, 0.5), inset 5px 10em #008000\] to [none\] at (1) should be [rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px inset\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [unset\] to [20px 20px 20px 20px black\] at (0.3) should be [rgba(0, 0, 0, 0.3) 6px 6px 6px 6px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [unset\] to [20px 20px 20px 20px black\] at (1.5) should be [rgb(0, 0, 0) 30px 30px 30px 30px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px orange\] at (1.5) should be [rgb(255, 248, 0) -30px -20px 35px -9px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [10px 20px rgba(255, 255, 0, 0.5), inset 5px 10em #008000\] to [none\] at (1.5) should be [rgba(0, 0, 0, 0) -5px -10px 0px 0px, rgba(0, 0, 0, 0) -2.5px -15px 0px 0px inset\]]
expected: FAIL
[Web Animations: property <box-shadow> from [initial\] to [20px 20px 20px 20px black\] at (1) should be [rgb(0, 0, 0) 20px 20px 20px 20px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px orange\] at (1.5) should be [rgb(255, 248, 0) -30px -20px 35px -9px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [10px 20px rgba(255, 255, 0, 0.5), inset 5px 10em #008000\] to [none\] at (0) should be [rgba(255, 255, 0, 0.5) 10px 20px 0px 0px, rgb(0, 128, 0) 5px 30px 0px 0px inset\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [inherit\] to [20px 20px 20px 20px black\] at (0.3) should be [rgb(0, 0, 0) 27px 13px 27px 13px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [15px 10px 5px 6px black inset\] to [-15px -10px 25px -4px orange inset\] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px 9px inset\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px\] at (1.5) should be [rgb(0, 192, 0) -30px -20px 35px -9px\]]
expected: FAIL
[Web Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black\] at (-0.3) should be [rgb(0, 0, 0) 7px 33px 7px 33px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [unset\] to [20px 20px 20px 20px black\] at (0.3) should be [rgba(0, 0, 0, 0.3) 6px 6px 6px 6px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [10px 10px 10px 10px black\] to [10px 10px 10px 10px currentColor\] at (-0.3) should be [rgb(0, 0, 0) 10px 10px 10px 10px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [unset\] to [20px 20px 20px 20px black\] at (-0.3) should be [rgba(0, 0, 0, 0) -6px -6px 0px -6px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px orange\] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px 9px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [black 15px 10px 5px 6px\] to [orange -15px -10px 25px -4px\] at (1) should be [rgb(255, 165, 0) -15px -10px 25px -4px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [15px 10px 5px 6px black inset\] to [-15px -10px 25px -4px orange inset\] at (1.5) should be [rgb(255, 248, 0) -30px -20px 35px -9px inset\]]
expected: FAIL
[Web Animations: property <box-shadow> from [inherit\] to [20px 20px 20px 20px black\] at (0) should be [rgb(0, 0, 0) 30px 10px 30px 10px\]]
expected: FAIL
[Web Animations: property <box-shadow> from [10px 10px 10px 10px black\] to [10px 10px 10px 10px currentColor\] at (0.3) should be [rgb(0, 38, 0) 10px 10px 10px 10px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black\] at (0.3) should be [rgb(0, 0, 0) 13px 27px 13px 27px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [inherit\] to [20px 20px 20px 20px black\] at (0.6) should be [rgb(0, 0, 0) 24px 16px 24px 16px\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green\] to [inset 5px 10px green, 15px 20px blue\] at (1.5) should be [inset 5px 10px green, 15px 20px blue\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [black 15px 10px 5px 6px\] to [orange -15px -10px 25px -4px\] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px 9px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [inherit\] to [20px 20px 20px 20px black\] at (1.5) should be [rgb(0, 0, 0) 15px 25px 15px 25px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [black 15px 10px 5px 6px\] to [orange -15px -10px 25px -4px\] at (1.5) should be [rgb(255, 248, 0) -30px -20px 35px -9px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [10px 10px 10px 10px black\] to [10px 10px 10px 10px currentColor\] at (0.6) should be [rgb(0, 77, 0) 10px 10px 10px 10px\]]
expected: FAIL
[CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black inset\] to [-15px -10px 25px -4px orange inset\] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px 9px inset\]]
expected: FAIL
[CSS Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green\] to [inset 5px 10px green, 15px 20px blue\] at (0.3) should be [10px 20px yellow, 5px 10px green\]]
expected: FAIL
[Web Animations: property <box-shadow> from [15px 10px 5px 6px black\] to [-15px -10px 25px -4px orange\] at (0.6) should be [rgb(153, 99, 0) -3px -2px 17px 0px\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black inset\] to [-15px -10px 25px -4px orange inset\] at (1.5) should be [rgb(255, 248, 0) -30px -20px 35px -9px inset\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black inset\] to [-15px -10px 25px -4px orange inset\] at (0.6) should be [rgb(153, 99, 0) -3px -2px 17px 0px inset\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black inset\] to [-15px -10px 25px -4px orange inset\] at (0.3) should be [rgb(77, 50, 0) 6px 4px 11px 3px inset\]]
expected: FAIL
[CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black inset\] to [-15px -10px 25px -4px orange inset\] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px 9px inset\]]
expected: FAIL

View file

@ -2,30 +2,6 @@
[color interpolation]
expected: FAIL
[CSS Transitions with transition: all: property <color> from [initial\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[CSS Animations: property <color> from [initial\] to [green\] at (0.6) should be [rgb(0, 77, 0)\]]
expected: FAIL
[CSS Transitions: property <color> from [initial\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[CSS Animations: property <color> from [black\] to [orange\] at (1.5) should be [rgb(255, 248, 0)\]]
expected: FAIL
[CSS Animations: property <color> from [black\] to [orange\] at (1) should be [rgb(255, 165, 0)\]]
expected: FAIL
[CSS Animations: property <color> from [black\] to [orange\] at (-0.3) should be [rgb(0, 0, 0)\]]
expected: FAIL
[CSS Transitions: property <color> from [black\] to [orange\] at (0.3) should be [rgb(77, 50, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <color> from [black\] to [orange\] at (0.3) should be [rgb(77, 50, 0)\]]
expected: FAIL
[Web Animations: property <color> from [inherit\] to [green\] at (-0.3) should be [rgb(0, 0, 255)\]]
expected: FAIL
@ -38,24 +14,15 @@
[Web Animations: property <color> from [initial\] to [green\] at (0) should be [rgb(0, 0, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <color> from [initial\] to [green\] at (0.6) should be [rgb(0, 77, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <color> from [inherit\] to [green\] at (0.3) should be [rgb(0, 38, 179)\]]
expected: FAIL
[CSS Transitions: property <color> from neutral to [green\] at (1.5) should be [rgb(0, 65, 0)\]]
expected: FAIL
[CSS Animations: property <color> from [initial\] to [green\] at (0) should be [rgb(0, 0, 0)\]]
expected: FAIL
[Web Animations: property <color> from neutral to [green\] at (-0.3) should be [rgb(255, 255, 0)\]]
expected: FAIL
[CSS Animations: property <color> from [initial\] to [green\] at (-0.3) should be [rgb(0, 0, 0)\]]
expected: FAIL
[Web Animations: property <color> from [black\] to [orange\] at (0.3) should be [rgb(77, 50, 0)\]]
expected: FAIL
@ -68,12 +35,6 @@
[Web Animations: property <color> from neutral to [green\] at (0.6) should be [rgb(102, 179, 0)\]]
expected: FAIL
[CSS Transitions: property <color> from [initial\] to [green\] at (0.6) should be [rgb(0, 77, 0)\]]
expected: FAIL
[CSS Animations: property <color> from [unset\] to [green\] at (1) should be [rgb(0, 128, 0)\]]
expected: FAIL
[Web Animations: property <color> from [initial\] to [green\] at (-0.3) should be [rgb(0, 0, 0)\]]
expected: FAIL
@ -86,27 +47,15 @@
[CSS Animations: property <color> from [unset\] to [green\] at (-0.3) should be [rgb(0, 0, 255)\]]
expected: FAIL
[CSS Animations: property <color> from [black\] to [orange\] at (0) should be [rgb(0, 0, 0)\]]
expected: FAIL
[Web Animations: property <color> from neutral to [green\] at (1.5) should be [rgb(0, 65, 0)\]]
expected: FAIL
[Web Animations: property <color> from neutral to [green\] at (0.3) should be [rgb(179, 217, 0)\]]
expected: FAIL
[CSS Transitions: property <color> from [black\] to [orange\] at (1.5) should be [rgb(255, 248, 0)\]]
expected: FAIL
[CSS Animations: property <color> from neutral to [green\] at (1.5) should be [rgb(0, 65, 0)\]]
expected: FAIL
[CSS Transitions: property <color> from [inherit\] to [green\] at (0.6) should be [rgb(0, 77, 102)\]]
expected: FAIL
[CSS Transitions with transition: all: property <color> from [unset\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[Web Animations: property <color> from [inherit\] to [green\] at (0) should be [rgb(0, 0, 255)\]]
expected: FAIL
@ -116,27 +65,15 @@
[CSS Animations: property <color> from neutral to [green\] at (0.3) should be [rgb(179, 217, 0)\]]
expected: FAIL
[CSS Animations: property <color> from [black\] to [orange\] at (0.3) should be [rgb(77, 50, 0)\]]
expected: FAIL
[Web Animations: property <color> from [black\] to [orange\] at (1.5) should be [rgb(255, 248, 0)\]]
expected: FAIL
[Web Animations: property <color> from neutral to [green\] at (1) should be [rgb(0, 128, 0)\]]
expected: FAIL
[CSS Animations: property <color> from neutral to [green\] at (1) should be [rgb(0, 128, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <color> from [black\] to [orange\] at (1.5) should be [rgb(255, 248, 0)\]]
expected: FAIL
[CSS Transitions: property <color> from [unset\] to [green\] at (0.3) should be [rgb(0, 38, 179)\]]
expected: FAIL
[CSS Transitions with transition: all: property <color> from [inherit\] to [green\] at (0.6) should be [rgb(0, 77, 102)\]]
expected: FAIL
[Web Animations: property <color> from [initial\] to [green\] at (0.6) should be [rgb(0, 77, 0)\]]
expected: FAIL
@ -146,21 +83,9 @@
[Web Animations: property <color> from [unset\] to [green\] at (0.3) should be [rgb(0, 38, 179)\]]
expected: FAIL
[CSS Animations: property <color> from neutral to [green\] at (0.6) should be [rgb(102, 179, 0)\]]
expected: FAIL
[CSS Transitions: property <color> from [black\] to [orange\] at (0.6) should be [rgb(153, 99, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <color> from [inherit\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[CSS Animations: property <color> from [inherit\] to [green\] at (-0.3) should be [rgb(0, 0, 255)\]]
expected: FAIL
[CSS Transitions with transition: all: property <color> from [unset\] to [green\] at (0.6) should be [rgb(0, 77, 102)\]]
expected: FAIL
[Web Animations: property <color> from [initial\] to [green\] at (0.3) should be [rgb(0, 38, 0)\]]
expected: FAIL
@ -182,15 +107,6 @@
[CSS Animations: property <color> from [inherit\] to [green\] at (0) should be [rgb(0, 0, 255)\]]
expected: FAIL
[CSS Transitions with transition: all: property <color> from [initial\] to [green\] at (0.3) should be [rgb(0, 38, 0)\]]
expected: FAIL
[CSS Animations: property <color> from [black\] to [orange\] at (0.6) should be [rgb(153, 99, 0)\]]
expected: FAIL
[CSS Transitions: property <color> from [initial\] to [green\] at (0.3) should be [rgb(0, 38, 0)\]]
expected: FAIL
[CSS Animations: property <color> from [unset\] to [green\] at (0) should be [rgb(0, 0, 255)\]]
expected: FAIL
@ -200,12 +116,6 @@
[Web Animations: property <color> from [initial\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <color> from neutral to [green\] at (0.6) should be [rgb(102, 179, 0)\]]
expected: FAIL
[CSS Transitions: property <color> from [unset\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[Web Animations: property <color> from neutral to [green\] at (0) should be [rgb(255, 255, 0)\]]
expected: FAIL
@ -221,9 +131,6 @@
[CSS Animations: property <color> from [unset\] to [green\] at (0.6) should be [rgb(0, 77, 102)\]]
expected: FAIL
[CSS Transitions with transition: all: property <color> from [black\] to [orange\] at (0.6) should be [rgb(153, 99, 0)\]]
expected: FAIL
[Web Animations: property <color> from [unset\] to [green\] at (0.6) should be [rgb(0, 77, 102)\]]
expected: FAIL
@ -233,36 +140,15 @@
[CSS Transitions with transition: all: property <color> from neutral to [green\] at (0.3) should be [rgb(179, 217, 0)\]]
expected: FAIL
[CSS Transitions: property <color> from [inherit\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[CSS Transitions: property <color> from neutral to [green\] at (0.6) should be [rgb(102, 179, 0)\]]
expected: FAIL
[CSS Animations: property <color> from [inherit\] to [green\] at (1) should be [rgb(0, 128, 0)\]]
expected: FAIL
[CSS Animations: property <color> from [inherit\] to [green\] at (0.3) should be [rgb(0, 38, 179)\]]
expected: FAIL
[Web Animations: property <color> from [unset\] to [green\] at (0) should be [rgb(0, 0, 255)\]]
expected: FAIL
[CSS Animations: property <color> from [initial\] to [green\] at (0.3) should be [rgb(0, 38, 0)\]]
expected: FAIL
[Web Animations: property <color> from [inherit\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[CSS Transitions: property <color> from [unset\] to [green\] at (0.6) should be [rgb(0, 77, 102)\]]
expected: FAIL
[CSS Transitions with transition: all: property <color> from neutral to [green\] at (1.5) should be [rgb(0, 65, 0)\]]
expected: FAIL
[CSS Animations: property <color> from [initial\] to [green\] at (1) should be [rgb(0, 128, 0)\]]
expected: FAIL
[CSS Animations: property <color> from [initial\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL

View file

@ -5,48 +5,24 @@
[Web Animations: property <opacity> from [0\] to [1\] at (0) should be [0\]]
expected: FAIL
[CSS Transitions with transition: all: property <opacity> from neutral to [0.2\] at (0.3) should be [0.13\]]
expected: FAIL
[CSS Transitions with transition: all: property <opacity> from [inherit\] to [0.2\] at (1.5) should be [0\]]
expected: FAIL
[CSS Transitions with transition: all: property <opacity> from [unset\] to [0.2\] at (0.3) should be [0.76\]]
expected: FAIL
[CSS Transitions with transition: all: property <opacity> from [initial\] to [0.2\] at (1.5) should be [0\]]
expected: FAIL
[CSS Transitions with transition: all: property <opacity> from [initial\] to [0.2\] at (0.6) should be [0.52\]]
expected: FAIL
[CSS Transitions: property <opacity> from [inherit\] to [0.2\] at (1.5) should be [0\]]
expected: FAIL
[CSS Transitions: property <opacity> from [unset\] to [0.2\] at (0.3) should be [0.76\]]
expected: FAIL
[CSS Transitions with transition: all: property <opacity> from neutral to [0.2\] at (0.6) should be [0.16\]]
expected: FAIL
[Web Animations: property <opacity> from [inherit\] to [0.2\] at (0.3) should be [0.62\]]
expected: FAIL
[CSS Transitions: property <opacity> from [0\] to [1\] at (1.5) should be [1\]]
expected: FAIL
[CSS Animations: property <opacity> from [unset\] to [0.2\] at (1) should be [0.2\]]
expected: FAIL
[CSS Animations: property <opacity> from neutral to [0.2\] at (-0.3) should be [0.07\]]
expected: FAIL
[CSS Transitions with transition: all: property <opacity> from [unset\] to [0.2\] at (1.5) should be [0\]]
expected: FAIL
[CSS Transitions: property <opacity> from [unset\] to [0.2\] at (0.6) should be [0.52\]]
expected: FAIL
[Web Animations: property <opacity> from [initial\] to [0.2\] at (0.6) should be [0.52\]]
expected: FAIL
@ -62,18 +38,9 @@
[Web Animations: property <opacity> from [initial\] to [0.2\] at (1) should be [0.2\]]
expected: FAIL
[CSS Transitions: property <opacity> from [0\] to [1\] at (0.6) should be [0.6\]]
expected: FAIL
[Web Animations: property <opacity> from [0\] to [1\] at (1.5) should be [1\]]
expected: FAIL
[CSS Animations: property <opacity> from neutral to [0.2\] at (0.3) should be [0.13\]]
expected: FAIL
[CSS Transitions: property <opacity> from [inherit\] to [0.2\] at (-0.3) should be [0.98\]]
expected: FAIL
[Web Animations: property <opacity> from [inherit\] to [0.2\] at (-0.3) should be [0.98\]]
expected: FAIL
@ -83,9 +50,6 @@
[Web Animations: property <opacity> from [initial\] to [0.2\] at (-0.3) should be [1\]]
expected: FAIL
[CSS Transitions: property <opacity> from [initial\] to [0.2\] at (0.6) should be [0.52\]]
expected: FAIL
[Web Animations: property <opacity> from [unset\] to [0.2\] at (0.6) should be [0.52\]]
expected: FAIL
@ -98,90 +62,39 @@
[CSS Animations: property <opacity> from [unset\] to [0.2\] at (-0.3) should be [1\]]
expected: FAIL
[CSS Transitions: property <opacity> from neutral to [0.2\] at (1.5) should be [0.25\]]
expected: FAIL
[CSS Transitions: property <opacity> from [inherit\] to [0.2\] at (0.3) should be [0.62\]]
expected: FAIL
[CSS Transitions: property <opacity> from neutral to [0.2\] at (-0.3) should be [0.07\]]
expected: FAIL
[CSS Transitions: property <opacity> from [unset\] to [0.2\] at (1.5) should be [0\]]
expected: FAIL
[CSS Transitions with transition: all: property <opacity> from [inherit\] to [0.2\] at (-0.3) should be [0.98\]]
expected: FAIL
[Web Animations: property <opacity> from [0\] to [1\] at (0.3) should be [0.3\]]
expected: FAIL
[Web Animations: property <opacity> from [initial\] to [0.2\] at (1.5) should be [0\]]
expected: FAIL
[CSS Animations: property <opacity> from neutral to [0.2\] at (1) should be [0.2\]]
expected: FAIL
[CSS Animations: property <opacity> from neutral to [0.2\] at (0.6) should be [0.16\]]
expected: FAIL
[Web Animations: property <opacity> from [inherit\] to [0.2\] at (1.5) should be [0\]]
expected: FAIL
[CSS Transitions: property <opacity> from neutral to [0.2\] at (0.6) should be [0.16\]]
expected: FAIL
[CSS Animations: property <opacity> from [0\] to [1\] at (1.5) should be [1\]]
expected: FAIL
[Web Animations: property <opacity> from [unset\] to [0.2\] at (1) should be [0.2\]]
expected: FAIL
[CSS Animations: property <opacity> from [0\] to [1\] at (0) should be [0\]]
expected: FAIL
[Web Animations: property <opacity> from [unset\] to [0.2\] at (0) should be [1\]]
expected: FAIL
[CSS Animations: property <opacity> from [inherit\] to [0.2\] at (1) should be [0.2\]]
expected: FAIL
[CSS Animations: property <opacity> from [0\] to [1\] at (1) should be [1\]]
expected: FAIL
[CSS Transitions with transition: all: property <opacity> from neutral to [0.2\] at (-0.3) should be [0.07\]]
expected: FAIL
[Web Animations: property <opacity> from [inherit\] to [0.2\] at (0.6) should be [0.44\]]
expected: FAIL
[CSS Animations: property <opacity> from [initial\] to [0.2\] at (0) should be [1\]]
expected: FAIL
[CSS Animations: property <opacity> from [initial\] to [0.2\] at (1.5) should be [0\]]
expected: FAIL
[CSS Animations: property <opacity> from [initial\] to [0.2\] at (1) should be [0.2\]]
expected: FAIL
[CSS Animations: property <opacity> from [0\] to [1\] at (-0.3) should be [0\]]
expected: FAIL
[Web Animations: property <opacity> from [unset\] to [0.2\] at (-0.3) should be [1\]]
expected: FAIL
[CSS Animations: property <opacity> from [unset\] to [0.2\] at (0.3) should be [0.76\]]
expected: FAIL
[CSS Transitions with transition: all: property <opacity> from [unset\] to [0.2\] at (0.6) should be [0.52\]]
expected: FAIL
[CSS Transitions: property <opacity> from neutral to [0.2\] at (0.3) should be [0.13\]]
expected: FAIL
[CSS Transitions with transition: all: property <opacity> from [0\] to [1\] at (0.6) should be [0.6\]]
expected: FAIL
[Web Animations: property <opacity> from [0\] to [1\] at (1) should be [1\]]
expected: FAIL
@ -194,45 +107,18 @@
[CSS Transitions with transition: all: property <opacity> from [0\] to [1\] at (1.5) should be [1\]]
expected: FAIL
[CSS Animations: property <opacity> from neutral to [0.2\] at (1.5) should be [0.25\]]
expected: FAIL
[Web Animations: property <opacity> from [0\] to [1\] at (-0.3) should be [0\]]
expected: FAIL
[Web Animations: property <opacity> from [inherit\] to [0.2\] at (1) should be [0.2\]]
expected: FAIL
[CSS Animations: property <opacity> from [unset\] to [0.2\] at (0) should be [1\]]
expected: FAIL
[CSS Transitions with transition: all: property <opacity> from [0\] to [1\] at (0.3) should be [0.3\]]
expected: FAIL
[CSS Transitions: property <opacity> from [0\] to [1\] at (0.3) should be [0.3\]]
expected: FAIL
[CSS Transitions with transition: all: property <opacity> from [initial\] to [0.2\] at (0.3) should be [0.76\]]
expected: FAIL
[CSS Animations: property <opacity> from [inherit\] to [0.2\] at (0.6) should be [0.44\]]
expected: FAIL
[Web Animations: property <opacity> from [0\] to [1\] at (0.6) should be [0.6\]]
expected: FAIL
[CSS Animations: property <opacity> from [unset\] to [0.2\] at (0.6) should be [0.52\]]
expected: FAIL
[CSS Transitions: property <opacity> from [inherit\] to [0.2\] at (0.6) should be [0.44\]]
expected: FAIL
[CSS Animations: property <opacity> from [0\] to [1\] at (0.6) should be [0.6\]]
expected: FAIL
[CSS Transitions with transition: all: property <opacity> from neutral to [0.2\] at (1.5) should be [0.25\]]
expected: FAIL
[Web Animations: property <opacity> from neutral to [0.2\] at (0.6) should be [0.16\]]
expected: FAIL
@ -245,39 +131,39 @@
[Web Animations: property <opacity> from neutral to [0.2\] at (1.5) should be [0.25\]]
expected: FAIL
[CSS Animations: property <opacity> from [0\] to [1\] at (0.3) should be [0.3\]]
expected: FAIL
[CSS Transitions with transition: all: property <opacity> from [inherit\] to [0.2\] at (0.3) should be [0.62\]]
expected: FAIL
[Web Animations: property <opacity> from neutral to [0.2\] at (0) should be [0.1\]]
expected: FAIL
[Web Animations: property <opacity> from neutral to [0.2\] at (-0.3) should be [0.07\]]
expected: FAIL
[CSS Transitions with transition: all: property <opacity> from [inherit\] to [0.2\] at (0.6) should be [0.44\]]
expected: FAIL
[CSS Animations: property <opacity> from [initial\] to [0.2\] at (-0.3) should be [1\]]
expected: FAIL
[Web Animations: property <opacity> from [initial\] to [0.2\] at (0.3) should be [0.76\]]
expected: FAIL
[CSS Transitions: property <opacity> from [initial\] to [0.2\] at (0.3) should be [0.76\]]
expected: FAIL
[CSS Animations: property <opacity> from [initial\] to [0.2\] at (0.3) should be [0.76\]]
expected: FAIL
[CSS Animations: property <opacity> from [inherit\] to [0.2\] at (-0.3) should be [0.98\]]
expected: FAIL
[CSS Animations: property <opacity> from [initial\] to [0.2\] at (0.6) should be [0.52\]]
expected: FAIL
[CSS Animations: property <opacity> from [inherit\] to [0.2\] at (0.3) should be [0.62\]]
expected: FAIL
[CSS Transitions with transition: all: property <opacity> from [0\] to [1\] at (-0.3) should be [0\]]
expected: FAIL
[CSS Transitions: property <opacity> from [initial\] to [0.2\] at (-0.3) should be [1\]]
expected: FAIL
[CSS Transitions with transition: all: property <opacity> from [initial\] to [0.2\] at (-0.3) should be [1\]]
expected: FAIL
[CSS Transitions: property <opacity> from [0\] to [1\] at (-0.3) should be [0\]]
expected: FAIL
[CSS Transitions: property <opacity> from [unset\] to [0.2\] at (-0.3) should be [1\]]
expected: FAIL
[CSS Transitions with transition: all: property <opacity> from [unset\] to [0.2\] at (-0.3) should be [1\]]
expected: FAIL

View file

@ -8,27 +8,9 @@
[CSS Animations: property <flex-basis> from [unset\] to [2%\] at (0.6) should be [2%\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-basis> from neutral to [2%\] at (-0.3) should be [0.7%\]]
expected: FAIL
[CSS Animations: property <flex-basis> from [0px\] to [100px\] at (1.5) should be [150px\]]
expected: FAIL
[CSS Animations: property <flex-basis> from [inherit\] to [2%\] at (1) should be [2%\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-basis> from neutral to [2%\] at (0.3) should be [1.3%\]]
expected: FAIL
[CSS Transitions: property <flex-basis> from [0px\] to [100px\] at (0.4) should be [40px\]]
expected: FAIL
[CSS Animations: property <flex-basis> from [0px\] to [100px\] at (1) should be [100px\]]
expected: FAIL
[CSS Transitions: property <flex-basis> from [inherit\] to [2%\] at (-0.3) should be [3.3%\]]
expected: FAIL
[Web Animations: property <flex-basis> from neutral to [2%\] at (0) should be [1%\]]
expected: FAIL
@ -56,18 +38,9 @@
[CSS Animations: property <flex-basis> from [unset\] to [2%\] at (1.5) should be [2%\]]
expected: FAIL
[CSS Animations: property <flex-basis> from [0%\] to [100%\] at (-0.3) should be [0%\]]
expected: FAIL
[Web Animations: property <flex-basis> from [initial\] to [2%\] at (-0.3) should be [initial\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-basis> from [inherit\] to [2%\] at (0.3) should be [2.7%\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-basis> from [0%\] to [100%\] at (1.5) should be [150%\]]
expected: FAIL
[Web Animations: property <flex-basis> from [inherit\] to [2%\] at (0) should be [3%\]]
expected: FAIL
@ -80,54 +53,24 @@
[Web Animations: property <flex-basis> from neutral to [2%\] at (0.3) should be [1.3%\]]
expected: FAIL
[CSS Transitions: property <flex-basis> from neutral to [2%\] at (-0.3) should be [0.7%\]]
expected: FAIL
[Web Animations: property <flex-basis> from [initial\] to [2%\] at (0.6) should be [2%\]]
expected: FAIL
[CSS Animations: property <flex-basis> from [initial\] to [2%\] at (1.5) should be [2%\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-basis> from neutral to [2%\] at (1.5) should be [2.5%\]]
expected: FAIL
[Web Animations: property <flex-basis> from [initial\] to [2%\] at (0.3) should be [initial\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-basis> from [inherit\] to [2%\] at (0.6) should be [2.4%\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-basis> from [0px\] to [100px\] at (0.4) should be [40px\]]
expected: FAIL
[CSS Animations: property <flex-basis> from neutral to [2%\] at (0.3) should be [1.3%\]]
expected: FAIL
[CSS Transitions: property <flex-basis> from [inherit\] to [2%\] at (0.3) should be [2.7%\]]
expected: FAIL
[CSS Transitions: property <flex-basis> from neutral to [2%\] at (0.3) should be [1.3%\]]
expected: FAIL
[Web Animations: property <flex-basis> from [unset\] to [2%\] at (-0.3) should be [unset\]]
expected: FAIL
[Web Animations: property <flex-basis> from neutral to [2%\] at (0.6) should be [1.6%\]]
expected: FAIL
[CSS Transitions: property <flex-basis> from neutral to [2%\] at (1.5) should be [2.5%\]]
expected: FAIL
[Web Animations: property <flex-basis> from [inherit\] to [2%\] at (-0.3) should be [3.3%\]]
expected: FAIL
[CSS Animations: property <flex-basis> from neutral to [2%\] at (1.5) should be [2.5%\]]
expected: FAIL
[CSS Animations: property <flex-basis> from neutral to [2%\] at (0.6) should be [1.6%\]]
expected: FAIL
[Web Animations: property <flex-basis> from [initial\] to [2%\] at (0.5) should be [2%\]]
expected: FAIL
@ -140,27 +83,18 @@
[Web Animations: property <flex-basis> from [initial\] to [2%\] at (0) should be [initial\]]
expected: FAIL
[CSS Transitions: property <flex-basis> from [inherit\] to [2%\] at (0.6) should be [2.4%\]]
expected: FAIL
[Web Animations: property <flex-basis> from [unset\] to [2%\] at (0.3) should be [unset\]]
expected: FAIL
[CSS Transitions: property <flex-basis> from [0%\] to [100%\] at (0.6) should be [60%\]]
expected: FAIL
[CSS Transitions: property <flex-basis> from [0%\] to [100%\] at (1.5) should be [150%\]]
expected: FAIL
[Web Animations: property <flex-basis> from [unset\] to [2%\] at (1.5) should be [2%\]]
expected: FAIL
[Web Animations: property <flex-basis> from [unset\] to [2%\] at (0.5) should be [2%\]]
expected: FAIL
[CSS Animations: property <flex-basis> from [0px\] to [100px\] at (0.4) should be [40px\]]
expected: FAIL
[CSS Animations: property <flex-basis> from [unset\] to [2%\] at (0) should be [unset\]]
expected: FAIL
@ -173,15 +107,6 @@
[Web Animations: property <flex-basis> from [0%\] to [100%\] at (1) should be [100%\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-basis> from [0px\] to [100px\] at (0.6) should be [60px\]]
expected: FAIL
[CSS Animations: property <flex-basis> from [0%\] to [100%\] at (1.5) should be [150%\]]
expected: FAIL
[CSS Animations: property <flex-basis> from [0%\] to [100%\] at (0.6) should be [60%\]]
expected: FAIL
[Web Animations: property <flex-basis> from [0%\] to [100%\] at (0) should be [0%\]]
expected: FAIL
@ -194,15 +119,9 @@
[CSS Transitions: property <flex-basis> from [0%\] to [100%\] at (0.4) should be [40%\]]
expected: FAIL
[CSS Transitions: property <flex-basis> from [0px\] to [100px\] at (1.5) should be [150px\]]
expected: FAIL
[CSS Animations: property <flex-basis> from [initial\] to [2%\] at (1) should be [2%\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-basis> from [0%\] to [100%\] at (0.4) should be [40%\]]
expected: FAIL
[Web Animations: property <flex-basis> from [0%\] to [100%\] at (0.6) should be [60%\]]
expected: FAIL
@ -212,12 +131,6 @@
[CSS Animations: property <flex-basis> from [initial\] to [2%\] at (0.3) should be [initial\]]
expected: FAIL
[CSS Transitions: property <flex-basis> from [inherit\] to [2%\] at (1.5) should be [1.5%\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-basis> from neutral to [2%\] at (0.6) should be [1.6%\]]
expected: FAIL
[Web Animations: property <flex-basis> from [0px\] to [100px\] at (0.6) should be [60px\]]
expected: FAIL
@ -227,18 +140,6 @@
[CSS Animations: property <flex-basis> from [unset\] to [2%\] at (1) should be [2%\]]
expected: FAIL
[CSS Animations: property <flex-basis> from [0px\] to [100px\] at (-0.3) should be [0px\]]
expected: FAIL
[CSS Animations: property <flex-basis> from [0%\] to [100%\] at (0) should be [0%\]]
expected: FAIL
[CSS Animations: property <flex-basis> from neutral to [2%\] at (-0.3) should be [0.7%\]]
expected: FAIL
[CSS Animations: property <flex-basis> from neutral to [2%\] at (1) should be [2%\]]
expected: FAIL
[Web Animations: property <flex-basis> from [unset\] to [2%\] at (0) should be [unset\]]
expected: FAIL
@ -248,42 +149,21 @@
[Web Animations: property <flex-basis> from neutral to [2%\] at (1.5) should be [2.5%\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-basis> from [0px\] to [100px\] at (1.5) should be [150px\]]
expected: FAIL
[Web Animations: property <flex-basis> from [0%\] to [100%\] at (1.5) should be [150%\]]
expected: FAIL
[Web Animations: property <flex-basis> from [inherit\] to [2%\] at (0.3) should be [2.7%\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-basis> from [0%\] to [100%\] at (0.6) should be [60%\]]
expected: FAIL
[Web Animations: property <flex-basis> from [unset\] to [2%\] at (1) should be [2%\]]
expected: FAIL
[CSS Animations: property <flex-basis> from [inherit\] to [2%\] at (0) should be [3%\]]
expected: FAIL
[CSS Transitions: property <flex-basis> from neutral to [2%\] at (0.6) should be [1.6%\]]
expected: FAIL
[CSS Animations: property <flex-basis> from [0px\] to [100px\] at (0.6) should be [60px\]]
expected: FAIL
[CSS Animations: property <flex-basis> from [0%\] to [100%\] at (0.4) should be [40%\]]
expected: FAIL
[CSS Animations: property <flex-basis> from [0px\] to [100px\] at (0) should be [0px\]]
expected: FAIL
[CSS Animations: property <flex-basis> from [inherit\] to [2%\] at (-0.3) should be [3.3%\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-basis> from [inherit\] to [2%\] at (-0.3) should be [3.3%\]]
expected: FAIL
[Web Animations: property <flex-basis> from [0px\] to [100px\] at (-0.3) should be [0px\]]
expected: FAIL
@ -305,9 +185,21 @@
[Web Animations: property <flex-basis> from [inherit\] to [2%\] at (0.6) should be [2.4%\]]
expected: FAIL
[CSS Animations: property <flex-basis> from [0%\] to [100%\] at (1) should be [100%\]]
[CSS Transitions with transition: all: property <flex-basis> from [0px\] to [100px\] at (0.4) should be [40px\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-basis> from [inherit\] to [2%\] at (1.5) should be [1.5%\]]
[CSS Transitions: property <flex-basis> from [0%\] to [100%\] at (1.5) should be [150%\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-basis> from [0px\] to [100px\] at (0.6) should be [60px\]]
expected: FAIL
[CSS Transitions: property <flex-basis> from [0px\] to [100px\] at (1.5) should be [150px\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-basis> from [0%\] to [100%\] at (0.4) should be [40%\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-basis> from [0%\] to [100%\] at (0.6) should be [60%\]]
expected: FAIL

View file

@ -2,24 +2,12 @@
[flex-grow interpolation]
expected: FAIL
[CSS Animations: property <flex-grow> from [1\] to [2\] at (1.5) should be [2.5\]]
expected: FAIL
[Web Animations: property <flex-grow> from neutral to [2\] at (0.3) should be [1.3\]]
expected: FAIL
[CSS Transitions: property <flex-grow> from [1\] to [2\] at (-5) should be [0\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-grow> from [unset\] to [2\] at (0.3) should be [0.6\]]
expected: FAIL
[Web Animations: property <flex-grow> from [0\] to [1\] at (-0.3) should be [0\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [unset\] to [2\] at (0.6) should be [1.2\]]
expected: FAIL
[Web Animations: property <flex-grow> from [0\] to [1\] at (-5) should be [0\]]
expected: FAIL
@ -29,69 +17,21 @@
[Web Animations: property <flex-grow> from neutral to [2\] at (0.6) should be [1.6\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [inherit\] to [2\] at (1) should be [2\]]
expected: FAIL
[CSS Transitions: property <flex-grow> from [1\] to [2\] at (-0.3) should be [0.7\]]
expected: FAIL
[CSS Transitions: property <flex-grow> from [unset\] to [2\] at (1.5) should be [3\]]
expected: FAIL
[Web Animations: property <flex-grow> from [unset\] to [2\] at (1) should be [2\]]
expected: FAIL
[Web Animations: property <flex-grow> from [1\] to [2\] at (-5) should be [0\]]
expected: FAIL
[CSS Transitions: property <flex-grow> from [inherit\] to [2\] at (-0.3) should be [3.3\]]
expected: FAIL
[CSS Animations: property <flex-grow> from neutral to [2\] at (0.3) should be [1.3\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-grow> from neutral to [2\] at (-0.3) should be [0.7\]]
expected: FAIL
[Web Animations: property <flex-grow> from neutral to [2\] at (1.5) should be [2.5\]]
expected: FAIL
[CSS Transitions: property <flex-grow> from [inherit\] to [2\] at (0.3) should be [2.7\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [1\] to [2\] at (0.6) should be [1.6\]]
expected: FAIL
[CSS Transitions: property <flex-grow> from neutral to [2\] at (0.3) should be [1.3\]]
expected: FAIL
[Web Animations: property <flex-grow> from [1\] to [2\] at (0.6) should be [1.6\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [unset\] to [2\] at (1.5) should be [3\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [0\] to [1\] at (1.5) should be [1.5\]]
expected: FAIL
[Web Animations: property <flex-grow> from [0\] to [1\] at (0.3) should be [0.3\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [initial\] to [2\] at (-0.3) should be [0\]]
expected: FAIL
[CSS Transitions: property <flex-grow> from [unset\] to [2\] at (0.3) should be [0.6\]]
expected: FAIL
[CSS Transitions: property <flex-grow> from neutral to [2\] at (0.6) should be [1.6\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [1\] to [2\] at (0.3) should be [1.3\]]
expected: FAIL
[CSS Transitions: property <flex-grow> from [inherit\] to [2\] at (0.6) should be [2.4\]]
expected: FAIL
[Web Animations: property <flex-grow> from [inherit\] to [2\] at (-0.3) should be [3.3\]]
expected: FAIL
@ -113,33 +53,15 @@
[CSS Animations: property <flex-grow> from [inherit\] to [2\] at (1.5) should be [1.5\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-grow> from [initial\] to [2\] at (0.3) should be [0.6\]]
expected: FAIL
[Web Animations: property <flex-grow> from [unset\] to [2\] at (0) should be [0\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [1\] to [2\] at (-5) should be [0\]]
expected: FAIL
[Web Animations: property <flex-grow> from neutral to [2\] at (1) should be [2\]]
expected: FAIL
[CSS Transitions: property <flex-grow> from neutral to [2\] at (-0.3) should be [0.7\]]
expected: FAIL
[CSS Animations: property <flex-grow> from neutral to [2\] at (1) should be [2\]]
expected: FAIL
[CSS Transitions: property <flex-grow> from [1\] to [2\] at (1.5) should be [2.5\]]
expected: FAIL
[Web Animations: property <flex-grow> from [initial\] to [2\] at (0.3) should be [0.6\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-grow> from [1\] to [2\] at (1.5) should be [2.5\]]
expected: FAIL
[Web Animations: property <flex-grow> from [initial\] to [2\] at (1) should be [2\]]
expected: FAIL
@ -149,207 +71,63 @@
[Web Animations: property <flex-grow> from neutral to [2\] at (0) should be [1\]]
expected: FAIL
[CSS Transitions: property <flex-grow> from [1\] to [2\] at (0.3) should be [1.3\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-grow> from [0\] to [1\] at (0.3) should be [0.3\]]
expected: FAIL
[CSS Transitions: property <flex-grow> from [initial\] to [2\] at (0.3) should be [0.6\]]
expected: FAIL
[CSS Transitions: property <flex-grow> from neutral to [2\] at (1.5) should be [2.5\]]
expected: FAIL
[CSS Animations: property <flex-grow> from neutral to [2\] at (1.5) should be [2.5\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-grow> from [inherit\] to [2\] at (-0.3) should be [3.3\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-grow> from [1\] to [2\] at (0.6) should be [1.6\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-grow> from [1\] to [2\] at (0.3) should be [1.3\]]
expected: FAIL
[CSS Transitions: property <flex-grow> from [initial\] to [2\] at (1.5) should be [3\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-grow> from [1\] to [2\] at (-5) should be [0\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [0\] to [1\] at (-5) should be [0\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-grow> from [initial\] to [2\] at (1.5) should be [3\]]
expected: FAIL
[Web Animations: property <flex-grow> from [unset\] to [2\] at (0.6) should be [1.2\]]
expected: FAIL
[CSS Animations: property <flex-grow> from neutral to [2\] at (-0.3) should be [0.7\]]
expected: FAIL
[Web Animations: property <flex-grow> from [0\] to [1\] at (1.5) should be [1.5\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-grow> from neutral to [2\] at (0.6) should be [1.6\]]
expected: FAIL
[CSS Transitions: property <flex-grow> from [initial\] to [2\] at (0.6) should be [1.2\]]
expected: FAIL
[CSS Transitions: property <flex-grow> from [inherit\] to [2\] at (1.5) should be [1.5\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-grow> from [initial\] to [2\] at (0.6) should be [1.2\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-grow> from neutral to [2\] at (0.3) should be [1.3\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [unset\] to [2\] at (-0.3) should be [0\]]
expected: FAIL
[Web Animations: property <flex-grow> from [inherit\] to [2\] at (1.5) should be [1.5\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [0\] to [1\] at (-0.3) should be [0\]]
expected: FAIL
[Web Animations: property <flex-grow> from [initial\] to [2\] at (0.6) should be [1.2\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [inherit\] to [2\] at (0) should be [3\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [0\] to [1\] at (0.6) should be [0.6\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [initial\] to [2\] at (0.3) should be [0.6\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [initial\] to [2\] at (1.5) should be [3\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-grow> from [inherit\] to [2\] at (0.6) should be [2.4\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [inherit\] to [2\] at (0.3) should be [2.7\]]
expected: FAIL
[Web Animations: property <flex-grow> from [inherit\] to [2\] at (1) should be [2\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [unset\] to [2\] at (1) should be [2\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [unset\] to [2\] at (0.3) should be [0.6\]]
expected: FAIL
[CSS Transitions: property <flex-grow> from [0\] to [1\] at (0.3) should be [0.3\]]
expected: FAIL
[Web Animations: property <flex-grow> from [inherit\] to [2\] at (0) should be [3\]]
expected: FAIL
[Web Animations: property <flex-grow> from [initial\] to [2\] at (1.5) should be [3\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [1\] to [2\] at (-0.3) should be [0.7\]]
expected: FAIL
[Web Animations: property <flex-grow> from [unset\] to [2\] at (0.3) should be [0.6\]]
expected: FAIL
[CSS Transitions: property <flex-grow> from [1\] to [2\] at (0.6) should be [1.6\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-grow> from [1\] to [2\] at (-0.3) should be [0.7\]]
expected: FAIL
[CSS Transitions: property <flex-grow> from [unset\] to [2\] at (0.6) should be [1.2\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-grow> from [unset\] to [2\] at (1.5) should be [3\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-grow> from [inherit\] to [2\] at (0.3) should be [2.7\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [inherit\] to [2\] at (-0.3) should be [3.3\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [initial\] to [2\] at (0.6) should be [1.2\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-grow> from [unset\] to [2\] at (0.6) should be [1.2\]]
expected: FAIL
[Web Animations: property <flex-grow> from [1\] to [2\] at (-0.3) should be [0.7\]]
expected: FAIL
[Web Animations: property <flex-grow> from [0\] to [1\] at (0.6) should be [0.6\]]
expected: FAIL
[CSS Transitions: property <flex-grow> from [0\] to [1\] at (0.6) should be [0.6\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [initial\] to [2\] at (0) should be [0\]]
expected: FAIL
[Web Animations: property <flex-grow> from [1\] to [2\] at (1) should be [2\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [0\] to [1\] at (0.3) should be [0.3\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-grow> from [0\] to [1\] at (1.5) should be [1.5\]]
expected: FAIL
[Web Animations: property <flex-grow> from neutral to [2\] at (-0.3) should be [0.7\]]
expected: FAIL
[CSS Transitions: property <flex-grow> from [0\] to [1\] at (1.5) should be [1.5\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [0\] to [1\] at (0) should be [0\]]
expected: FAIL
[CSS Animations: property <flex-grow> from neutral to [2\] at (0.6) should be [1.6\]]
expected: FAIL
[Web Animations: property <flex-grow> from [1\] to [2\] at (0) should be [1\]]
expected: FAIL
[Web Animations: property <flex-grow> from [initial\] to [2\] at (-0.3) should be [0\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [1\] to [2\] at (1) should be [2\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-grow> from neutral to [2\] at (1.5) should be [2.5\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-grow> from [0\] to [1\] at (0.6) should be [0.6\]]
expected: FAIL
[Web Animations: property <flex-grow> from [unset\] to [2\] at (1.5) should be [3\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [unset\] to [2\] at (0) should be [0\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [initial\] to [2\] at (1) should be [2\]]
expected: FAIL
[Web Animations: property <flex-grow> from [inherit\] to [2\] at (0.3) should be [2.7\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-grow> from [inherit\] to [2\] at (1.5) should be [1.5\]]
expected: FAIL
[CSS Animations: property <flex-grow> from [inherit\] to [2\] at (0.6) should be [2.4\]]
expected: FAIL

View file

@ -8,27 +8,12 @@
[Web Animations: property <flex-shrink> from neutral to [2\] at (-0.3) should be [1.35\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-shrink> from [unset\] to [2\] at (0.6) should be [1.6\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [initial\] to [2\] at (0) should be [1\]]
expected: FAIL
[CSS Transitions: property <flex-shrink> from [unset\] to [2\] at (1.5) should be [2.5\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [inherit\] to [2\] at (0) should be [3\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [initial\] to [2\] at (1.5) should be [2.5\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [inherit\] to [2\] at (0.6) should be [2.4\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from neutral to [2\] at (0.3) should be [1.65\]]
expected: FAIL
[Web Animations: property <flex-shrink> from [1\] to [2\] at (1.5) should be [2.5\]]
expected: FAIL
@ -38,219 +23,54 @@
[Web Animations: property <flex-shrink> from [0\] to [1\] at (1) should be [1\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-shrink> from [1\] to [2\] at (-5) should be [0\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-shrink> from [inherit\] to [2\] at (1.5) should be [1.5\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from neutral to [2\] at (1) should be [2\]]
expected: FAIL
[Web Animations: property <flex-shrink> from [0\] to [1\] at (0.6) should be [0.6\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from neutral to [2\] at (0.6) should be [1.8\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [unset\] to [2\] at (0.6) should be [1.6\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-shrink> from [1\] to [2\] at (-0.3) should be [0.7\]]
expected: FAIL
[Web Animations: property <flex-shrink> from [unset\] to [2\] at (0.3) should be [1.3\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-shrink> from [inherit\] to [2\] at (-0.3) should be [3.3\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from neutral to [2\] at (1.5) should be [2.25\]]
expected: FAIL
[Web Animations: property <flex-shrink> from [unset\] to [2\] at (0) should be [1\]]
expected: FAIL
[Web Animations: property <flex-shrink> from [unset\] to [2\] at (-0.3) should be [0.7\]]
expected: FAIL
[CSS Transitions: property <flex-shrink> from [1\] to [2\] at (0.6) should be [1.6\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-shrink> from [initial\] to [2\] at (1.5) should be [2.5\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-shrink> from [unset\] to [2\] at (1.5) should be [2.5\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [unset\] to [2\] at (0.3) should be [1.3\]]
expected: FAIL
[CSS Transitions: property <flex-shrink> from neutral to [2\] at (1.5) should be [2.25\]]
expected: FAIL
[CSS Transitions: property <flex-shrink> from neutral to [2\] at (0.3) should be [1.65\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [1\] to [2\] at (0.6) should be [1.6\]]
expected: FAIL
[Web Animations: property <flex-shrink> from [inherit\] to [2\] at (1.5) should be [1.5\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [1\] to [2\] at (-5) should be [0\]]
expected: FAIL
[Web Animations: property <flex-shrink> from [initial\] to [2\] at (0.6) should be [1.6\]]
expected: FAIL
[Web Animations: property <flex-shrink> from [0\] to [1\] at (1.5) should be [1.5\]]
expected: FAIL
[CSS Transitions: property <flex-shrink> from [initial\] to [2\] at (0.6) should be [1.6\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-shrink> from [inherit\] to [2\] at (0.6) should be [2.4\]]
expected: FAIL
[CSS Transitions: property <flex-shrink> from [unset\] to [2\] at (-0.3) should be [0.7\]]
expected: FAIL
[CSS Transitions: property <flex-shrink> from neutral to [2\] at (-0.3) should be [1.35\]]
expected: FAIL
[CSS Transitions: property <flex-shrink> from [inherit\] to [2\] at (0.6) should be [2.4\]]
expected: FAIL
[CSS Transitions: property <flex-shrink> from [1\] to [2\] at (1.5) should be [2.5\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-shrink> from [0\] to [1\] at (1.5) should be [1.5\]]
expected: FAIL
[Web Animations: property <flex-shrink> from neutral to [2\] at (0.6) should be [1.8\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [0\] to [1\] at (-5) should be [0\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-shrink> from [1\] to [2\] at (0.6) should be [1.6\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [0\] to [1\] at (0.6) should be [0.6\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [1\] to [2\] at (1) should be [2\]]
expected: FAIL
[Web Animations: property <flex-shrink> from [0\] to [1\] at (-5) should be [0\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [initial\] to [2\] at (1) should be [2\]]
expected: FAIL
[Web Animations: property <flex-shrink> from [initial\] to [2\] at (-0.3) should be [0.7\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [inherit\] to [2\] at (0.3) should be [2.7\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [unset\] to [2\] at (1.5) should be [2.5\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-shrink> from neutral to [2\] at (-0.3) should be [1.35\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [unset\] to [2\] at (1) should be [2\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [0\] to [1\] at (-0.3) should be [0\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-shrink> from [initial\] to [2\] at (-0.3) should be [0.7\]]
expected: FAIL
[CSS Transitions: property <flex-shrink> from [0\] to [1\] at (0.6) should be [0.6\]]
expected: FAIL
[CSS Transitions: property <flex-shrink> from [inherit\] to [2\] at (-0.3) should be [3.3\]]
expected: FAIL
[CSS Transitions: property <flex-shrink> from [0\] to [1\] at (1.5) should be [1.5\]]
expected: FAIL
[CSS Transitions: property <flex-shrink> from [1\] to [2\] at (-0.3) should be [0.7\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-shrink> from [unset\] to [2\] at (0.3) should be [1.3\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [1\] to [2\] at (1.5) should be [2.5\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-shrink> from [0\] to [1\] at (0.3) should be [0.3\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [1\] to [2\] at (0.3) should be [1.3\]]
expected: FAIL
[CSS Transitions: property <flex-shrink> from [initial\] to [2\] at (0.3) should be [1.3\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-shrink> from [1\] to [2\] at (0.3) should be [1.3\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-shrink> from neutral to [2\] at (0.3) should be [1.65\]]
expected: FAIL
[CSS Transitions: property <flex-shrink> from [inherit\] to [2\] at (1.5) should be [1.5\]]
expected: FAIL
[Web Animations: property <flex-shrink> from [0\] to [1\] at (0) should be [0\]]
expected: FAIL
[CSS Transitions: property <flex-shrink> from [0\] to [1\] at (0.3) should be [0.3\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-shrink> from [initial\] to [2\] at (0.6) should be [1.6\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [unset\] to [2\] at (0) should be [1\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-shrink> from [1\] to [2\] at (1.5) should be [2.5\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [unset\] to [2\] at (-0.3) should be [0.7\]]
expected: FAIL
[Web Animations: property <flex-shrink> from [1\] to [2\] at (0) should be [1\]]
expected: FAIL
[CSS Transitions: property <flex-shrink> from neutral to [2\] at (0.6) should be [1.8\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [initial\] to [2\] at (0.6) should be [1.6\]]
expected: FAIL
[Web Animations: property <flex-shrink> from [inherit\] to [2\] at (0.6) should be [2.4\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-shrink> from [initial\] to [2\] at (0.3) should be [1.3\]]
expected: FAIL
[Web Animations: property <flex-shrink> from [initial\] to [2\] at (1) should be [2\]]
expected: FAIL
[CSS Transitions: property <flex-shrink> from [1\] to [2\] at (-5) should be [0\]]
expected: FAIL
[Web Animations: property <flex-shrink> from [1\] to [2\] at (-5) should be [0\]]
expected: FAIL
[CSS Transitions: property <flex-shrink> from [1\] to [2\] at (0.3) should be [1.3\]]
expected: FAIL
[Web Animations: property <flex-shrink> from [initial\] to [2\] at (0.3) should be [1.3\]]
expected: FAIL
@ -260,24 +80,12 @@
[Web Animations: property <flex-shrink> from [initial\] to [2\] at (1.5) should be [2.5\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from neutral to [2\] at (-0.3) should be [1.35\]]
expected: FAIL
[Web Animations: property <flex-shrink> from [inherit\] to [2\] at (1) should be [2\]]
expected: FAIL
[Web Animations: property <flex-shrink> from neutral to [2\] at (0) should be [1.5\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [inherit\] to [2\] at (1) should be [2\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [0\] to [1\] at (0) should be [0\]]
expected: FAIL
[CSS Transitions: property <flex-shrink> from [unset\] to [2\] at (0.6) should be [1.6\]]
expected: FAIL
[Web Animations: property <flex-shrink> from [1\] to [2\] at (-0.3) should be [0.7\]]
expected: FAIL
@ -287,81 +95,39 @@
[Web Animations: property <flex-shrink> from neutral to [2\] at (1.5) should be [2.25\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-shrink> from [inherit\] to [2\] at (0.3) should be [2.7\]]
expected: FAIL
[Web Animations: property <flex-shrink> from [1\] to [2\] at (1) should be [2\]]
expected: FAIL
[CSS Transitions: property <flex-shrink> from [initial\] to [2\] at (1.5) should be [2.5\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [1\] to [2\] at (0) should be [1\]]
expected: FAIL
[Web Animations: property <flex-shrink> from [unset\] to [2\] at (1) should be [2\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [0\] to [1\] at (0.3) should be [0.3\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-shrink> from neutral to [2\] at (0.6) should be [1.8\]]
expected: FAIL
[CSS Transitions: property <flex-shrink> from [inherit\] to [2\] at (0.3) should be [2.7\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-shrink> from [0\] to [1\] at (0.6) should be [0.6\]]
expected: FAIL
[Web Animations: property <flex-shrink> from [1\] to [2\] at (0.6) should be [1.6\]]
expected: FAIL
[Web Animations: property <flex-shrink> from neutral to [2\] at (1) should be [2\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [0\] to [1\] at (1) should be [1\]]
expected: FAIL
[CSS Transitions: property <flex-shrink> from [unset\] to [2\] at (0.3) should be [1.3\]]
expected: FAIL
[Web Animations: property <flex-shrink> from neutral to [2\] at (0.3) should be [1.65\]]
expected: FAIL
[Web Animations: property <flex-shrink> from [0\] to [1\] at (0.3) should be [0.3\]]
expected: FAIL
[CSS Transitions: property <flex-shrink> from [initial\] to [2\] at (-0.3) should be [0.7\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [1\] to [2\] at (-0.3) should be [0.7\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [inherit\] to [2\] at (-0.3) should be [3.3\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [initial\] to [2\] at (-0.3) should be [0.7\]]
expected: FAIL
[Web Animations: property <flex-shrink> from [1\] to [2\] at (0.3) should be [1.3\]]
expected: FAIL
[Web Animations: property <flex-shrink> from [inherit\] to [2\] at (0.3) should be [2.7\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-shrink> from neutral to [2\] at (1.5) should be [2.25\]]
expected: FAIL
[Web Animations: property <flex-shrink> from [unset\] to [2\] at (1.5) should be [2.5\]]
expected: FAIL
[Web Animations: property <flex-shrink> from [inherit\] to [2\] at (0) should be [3\]]
expected: FAIL
[CSS Animations: property <flex-shrink> from [initial\] to [2\] at (0.3) should be [1.3\]]
expected: FAIL
[CSS Transitions with transition: all: property <flex-shrink> from [unset\] to [2\] at (-0.3) should be [0.7\]]
[CSS Animations: property <flex-shrink> from [inherit\] to [2\] at (1.5) should be [1.5\]]
expected: FAIL

View file

@ -2,21 +2,9 @@
[order interpolation]
expected: FAIL
[CSS Transitions: property <order> from neutral to [20\] at (0.6) should be [16\]]
expected: FAIL
[Web Animations: property <order> from [initial\] to [20\] at (0.3) should be [6\]]
expected: FAIL
[CSS Animations: property <order> from [initial\] to [20\] at (1.5) should be [30\]]
expected: FAIL
[CSS Transitions: property <order> from [unset\] to [20\] at (0.3) should be [6\]]
expected: FAIL
[CSS Animations: property <order> from [initial\] to [20\] at (0) should be [0\]]
expected: FAIL
[Web Animations: property <order> from [inherit\] to [20\] at (0.6) should be [24\]]
expected: FAIL
@ -29,138 +17,39 @@
[Web Animations: property <order> from [inherit\] to [20\] at (-0.5) should be [35\]]
expected: FAIL
[CSS Animations: property <order> from [10\] to [20\] at (0.3) should be [13\]]
expected: FAIL
[CSS Animations: property <order> from [inherit\] to [20\] at (-3) should be [60\]]
expected: FAIL
[Web Animations: property <order> from neutral to [20\] at (-3) should be [-20\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from neutral to [20\] at (1.5) should be [25\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from [initial\] to [20\] at (-3) should be [-60\]]
expected: FAIL
[Web Animations: property <order> from [2\] to [4\] at (1.5) should be [5\]]
expected: FAIL
[CSS Animations: property <order> from [2\] to [4\] at (0.6) should be [3\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from [unset\] to [20\] at (-0.5) should be [-10\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from [10\] to [20\] at (-3) should be [-20\]]
expected: FAIL
[Web Animations: property <order> from [10\] to [20\] at (1) should be [20\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from [2\] to [4\] at (0.3) should be [3\]]
expected: FAIL
[CSS Transitions: property <order> from [unset\] to [20\] at (-0.5) should be [-10\]]
expected: FAIL
[CSS Animations: property <order> from [10\] to [20\] at (-0.5) should be [5\]]
expected: FAIL
[CSS Transitions: property <order> from [10\] to [20\] at (1.5) should be [25\]]
expected: FAIL
[CSS Animations: property <order> from [initial\] to [20\] at (0.3) should be [6\]]
expected: FAIL
[CSS Transitions: property <order> from [unset\] to [20\] at (0.6) should be [12\]]
expected: FAIL
[Web Animations: property <order> from [inherit\] to [20\] at (0) should be [30\]]
expected: FAIL
[CSS Animations: property <order> from neutral to [20\] at (0.3) should be [13\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from neutral to [20\] at (0.6) should be [16\]]
expected: FAIL
[CSS Transitions: property <order> from [unset\] to [20\] at (1.5) should be [30\]]
expected: FAIL
[Web Animations: property <order> from [inherit\] to [20\] at (1.5) should be [15\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from neutral to [20\] at (0.3) should be [13\]]
expected: FAIL
[CSS Transitions: property <order> from neutral to [20\] at (-0.5) should be [5\]]
expected: FAIL
[Web Animations: property <order> from [unset\] to [20\] at (0.6) should be [12\]]
expected: FAIL
[CSS Animations: property <order> from neutral to [20\] at (0.6) should be [16\]]
expected: FAIL
[CSS Transitions: property <order> from [10\] to [20\] at (0.6) should be [16\]]
expected: FAIL
[CSS Animations: property <order> from [unset\] to [20\] at (0.3) should be [6\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from [inherit\] to [20\] at (0.6) should be [24\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from [initial\] to [20\] at (0.6) should be [12\]]
expected: FAIL
[Web Animations: property <order> from [2\] to [4\] at (1) should be [4\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from [10\] to [20\] at (1.5) should be [25\]]
expected: FAIL
[CSS Animations: property <order> from neutral to [20\] at (1.5) should be [25\]]
expected: FAIL
[CSS Transitions: property <order> from [initial\] to [20\] at (0.3) should be [6\]]
expected: FAIL
[CSS Animations: property <order> from [2\] to [4\] at (-0.5) should be [1\]]
expected: FAIL
[Web Animations: property <order> from [10\] to [20\] at (1.5) should be [25\]]
expected: FAIL
[CSS Transitions: property <order> from [inherit\] to [20\] at (-3) should be [60\]]
expected: FAIL
[CSS Animations: property <order> from [10\] to [20\] at (1.5) should be [25\]]
expected: FAIL
[CSS Animations: property <order> from neutral to [20\] at (1) should be [20\]]
expected: FAIL
[CSS Animations: property <order> from [2\] to [4\] at (0) should be [2\]]
expected: FAIL
[CSS Animations: property <order> from [inherit\] to [20\] at (1.5) should be [15\]]
expected: FAIL
[CSS Transitions: property <order> from [10\] to [20\] at (0.3) should be [13\]]
expected: FAIL
[Web Animations: property <order> from [2\] to [4\] at (-0.5) should be [1\]]
expected: FAIL
[CSS Animations: property <order> from [unset\] to [20\] at (-3) should be [-60\]]
expected: FAIL
[CSS Animations: property <order> from [initial\] to [20\] at (0.6) should be [12\]]
expected: FAIL
[CSS Animations: property <order> from [inherit\] to [20\] at (0.3) should be [27\]]
expected: FAIL
@ -173,255 +62,84 @@
[Web Animations: property <order> from [initial\] to [20\] at (-3) should be [-60\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from [initial\] to [20\] at (1.5) should be [30\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from [inherit\] to [20\] at (0.3) should be [27\]]
expected: FAIL
[Web Animations: property <order> from [10\] to [20\] at (-3) should be [-20\]]
expected: FAIL
[CSS Animations: property <order> from [initial\] to [20\] at (-3) should be [-60\]]
expected: FAIL
[CSS Animations: property <order> from [unset\] to [20\] at (0) should be [0\]]
expected: FAIL
[Web Animations: property <order> from [initial\] to [20\] at (1) should be [20\]]
expected: FAIL
[CSS Animations: property <order> from [2\] to [4\] at (-3) should be [-4\]]
expected: FAIL
[Web Animations: property <order> from [inherit\] to [20\] at (-3) should be [60\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from [2\] to [4\] at (-0.5) should be [1\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from [inherit\] to [20\] at (-0.5) should be [35\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from [2\] to [4\] at (1.5) should be [5\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from [initial\] to [20\] at (0.3) should be [6\]]
expected: FAIL
[CSS Transitions: property <order> from [initial\] to [20\] at (1.5) should be [30\]]
expected: FAIL
[CSS Animations: property <order> from [2\] to [4\] at (1.5) should be [5\]]
expected: FAIL
[Web Animations: property <order> from neutral to [20\] at (0.3) should be [13\]]
expected: FAIL
[CSS Animations: property <order> from [unset\] to [20\] at (-0.5) should be [-10\]]
expected: FAIL
[Web Animations: property <order> from [10\] to [20\] at (0.3) should be [13\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from [unset\] to [20\] at (0.6) should be [12\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from [unset\] to [20\] at (1.5) should be [30\]]
expected: FAIL
[Web Animations: property <order> from [unset\] to [20\] at (0) should be [0\]]
expected: FAIL
[CSS Transitions: property <order> from [2\] to [4\] at (-0.5) should be [1\]]
expected: FAIL
[CSS Transitions: property <order> from [2\] to [4\] at (0.6) should be [3\]]
expected: FAIL
[CSS Animations: property <order> from [inherit\] to [20\] at (0) should be [30\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from [initial\] to [20\] at (-0.5) should be [-10\]]
expected: FAIL
[Web Animations: property <order> from neutral to [20\] at (0) should be [10\]]
expected: FAIL
[CSS Transitions: property <order> from [2\] to [4\] at (0.3) should be [3\]]
expected: FAIL
[CSS Transitions: property <order> from [2\] to [4\] at (-3) should be [-4\]]
expected: FAIL
[CSS Transitions: property <order> from neutral to [20\] at (-3) should be [-20\]]
expected: FAIL
[CSS Transitions: property <order> from [10\] to [20\] at (-0.5) should be [5\]]
expected: FAIL
[CSS Animations: property <order> from [inherit\] to [20\] at (-0.5) should be [35\]]
expected: FAIL
[Web Animations: property <order> from neutral to [20\] at (0.6) should be [16\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from neutral to [20\] at (-0.5) should be [5\]]
expected: FAIL
[CSS Transitions: property <order> from [inherit\] to [20\] at (0.3) should be [27\]]
expected: FAIL
[CSS Transitions: property <order> from neutral to [20\] at (0.3) should be [13\]]
expected: FAIL
[CSS Animations: property <order> from [10\] to [20\] at (1) should be [20\]]
expected: FAIL
[CSS Animations: property <order> from [2\] to [4\] at (0.3) should be [3\]]
expected: FAIL
[CSS Animations: property <order> from [inherit\] to [20\] at (1) should be [20\]]
expected: FAIL
[CSS Animations: property <order> from [unset\] to [20\] at (1) should be [20\]]
expected: FAIL
[CSS Animations: property <order> from [initial\] to [20\] at (1) should be [20\]]
expected: FAIL
[CSS Animations: property <order> from [unset\] to [20\] at (0.6) should be [12\]]
expected: FAIL
[CSS Transitions: property <order> from [2\] to [4\] at (1.5) should be [5\]]
expected: FAIL
[CSS Animations: property <order> from neutral to [20\] at (-3) should be [-20\]]
expected: FAIL
[CSS Transitions: property <order> from [inherit\] to [20\] at (0.6) should be [24\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from [10\] to [20\] at (0.3) should be [13\]]
expected: FAIL
[CSS Animations: property <order> from [inherit\] to [20\] at (0.6) should be [24\]]
expected: FAIL
[CSS Transitions: property <order> from [initial\] to [20\] at (0.6) should be [12\]]
expected: FAIL
[CSS Transitions: property <order> from [10\] to [20\] at (-3) should be [-20\]]
expected: FAIL
[CSS Animations: property <order> from [2\] to [4\] at (1) should be [4\]]
expected: FAIL
[Web Animations: property <order> from [2\] to [4\] at (0) should be [2\]]
expected: FAIL
[CSS Transitions: property <order> from [inherit\] to [20\] at (1.5) should be [15\]]
expected: FAIL
[CSS Animations: property <order> from [10\] to [20\] at (-3) should be [-20\]]
expected: FAIL
[Web Animations: property <order> from [initial\] to [20\] at (0) should be [0\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from [inherit\] to [20\] at (1.5) should be [15\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from [2\] to [4\] at (0.6) should be [3\]]
expected: FAIL
[CSS Transitions: property <order> from [inherit\] to [20\] at (-0.5) should be [35\]]
expected: FAIL
[Web Animations: property <order> from [unset\] to [20\] at (-3) should be [-60\]]
expected: FAIL
[CSS Animations: property <order> from [initial\] to [20\] at (-0.5) should be [-10\]]
expected: FAIL
[CSS Transitions: property <order> from neutral to [20\] at (1.5) should be [25\]]
expected: FAIL
[CSS Transitions: property <order> from [initial\] to [20\] at (-0.5) should be [-10\]]
expected: FAIL
[Web Animations: property <order> from [inherit\] to [20\] at (0.3) should be [27\]]
expected: FAIL
[Web Animations: property <order> from [initial\] to [20\] at (1.5) should be [30\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from neutral to [20\] at (-3) should be [-20\]]
expected: FAIL
[Web Animations: property <order> from [2\] to [4\] at (0.6) should be [3\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from [unset\] to [20\] at (0.3) should be [6\]]
expected: FAIL
[CSS Animations: property <order> from [10\] to [20\] at (0.6) should be [16\]]
expected: FAIL
[Web Animations: property <order> from [2\] to [4\] at (0.3) should be [3\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from [10\] to [20\] at (-0.5) should be [5\]]
expected: FAIL
[Web Animations: property <order> from neutral to [20\] at (1.5) should be [25\]]
expected: FAIL
[Web Animations: property <order> from [inherit\] to [20\] at (1) should be [20\]]
expected: FAIL
[CSS Transitions: property <order> from [unset\] to [20\] at (-3) should be [-60\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from [inherit\] to [20\] at (-3) should be [60\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from [2\] to [4\] at (-3) should be [-4\]]
expected: FAIL
[Web Animations: property <order> from [initial\] to [20\] at (-0.5) should be [-10\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from [10\] to [20\] at (0.6) should be [16\]]
expected: FAIL
[Web Animations: property <order> from [unset\] to [20\] at (0.3) should be [6\]]
expected: FAIL
[Web Animations: property <order> from neutral to [20\] at (-0.5) should be [5\]]
expected: FAIL
[CSS Animations: property <order> from neutral to [20\] at (-0.5) should be [5\]]
expected: FAIL
[Web Animations: property <order> from [unset\] to [20\] at (-0.5) should be [-10\]]
expected: FAIL
[CSS Animations: property <order> from [unset\] to [20\] at (1.5) should be [30\]]
expected: FAIL
[CSS Transitions: property <order> from [initial\] to [20\] at (-3) should be [-60\]]
expected: FAIL
[Web Animations: property <order> from [unset\] to [20\] at (1) should be [20\]]
expected: FAIL
[Web Animations: property <order> from [unset\] to [20\] at (1.5) should be [30\]]
expected: FAIL
[CSS Transitions with transition: all: property <order> from [unset\] to [20\] at (-3) should be [-60\]]
expected: FAIL
[Web Animations: property <order> from [10\] to [20\] at (0) should be [10\]]
expected: FAIL

View file

@ -11,276 +11,90 @@
[Web Animations: property <font-size> from [4px\] to [14px\] at (0.6) should be [10px\]]
expected: FAIL
[CSS Animations: property <font-size> from [4px\] to [14px\] at (0.3) should be [7px\]]
expected: FAIL
[Web Animations: property <font-size> from [unset\] to [20px\] at (-2) should be [50px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [4px\] to [14px\] at (-0.3) should be [1px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [4px\] to [14px\] at (-0.3) should be [1px\]]
expected: FAIL
[Web Animations: property <font-size> from [unset\] to [20px\] at (0) should be [30px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [4px\] to [14px\] at (1.5) should be [19px\]]
expected: FAIL
[CSS Animations: property <font-size> from [inherit\] to [20px\] at (-2) should be [50px\]]
expected: FAIL
[Web Animations: property <font-size> from [unset\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Animations: property <font-size> from neutral to [20px\] at (-2) should be [0px\]]
expected: FAIL
[Web Animations: property <font-size> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [inherit\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [initial\] to [20px\] at (0.3) should be [17.2px\]]
expected: FAIL
[Web Animations: property <font-size> from [4px\] to [14px\] at (0) should be [4px\]]
expected: FAIL
[CSS Animations: property <font-size> from [4px\] to [14px\] at (-0.3) should be [1px\]]
expected: FAIL
[CSS Animations: property <font-size> from [4px\] to [14px\] at (0) should be [4px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [inherit\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [4px\] to [14px\] at (0.6) should be [10px\]]
expected: FAIL
[CSS Animations: property <font-size> from neutral to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <font-size> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [4px\] to [14px\] at (0.6) should be [10px\]]
expected: FAIL
[Web Animations: property <font-size> from [unset\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [inherit\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[Web Animations: property <font-size> from [inherit\] to [20px\] at (0) should be [30px\]]
expected: FAIL
[CSS Animations: property <font-size> from [inherit\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Transitions: property <font-size> from neutral to [20px\] at (-2) should be [0px\]]
expected: FAIL
[Web Animations: property <font-size> from [inherit\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [initial\] to [20px\] at (-0.3) should be [14.8px\]]
expected: FAIL
[CSS Animations: property <font-size> from [unset\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [unset\] to [20px\] at (-2) should be [50px\]]
expected: FAIL
[CSS Transitions: property <font-size> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [inherit\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [initial\] to [20px\] at (-2) should be [8px\]]
expected: FAIL
[Web Animations: property <font-size> from [4px\] to [14px\] at (1.5) should be [19px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [unset\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Animations: property <font-size> from [inherit\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Animations: property <font-size> from [unset\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Animations: property <font-size> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [initial\] to [20px\] at (0.6) should be [18.4px\]]
expected: FAIL
[CSS Animations: property <font-size> from [unset\] to [20px\] at (0) should be [30px\]]
expected: FAIL
[Web Animations: property <font-size> from [initial\] to [20px\] at (0.3) should be [17.2px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [unset\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [inherit\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[Web Animations: property <font-size> from [initial\] to [20px\] at (1.5) should be [22px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [4px\] to [14px\] at (-2) should be [0px\]]
expected: FAIL
[CSS Animations: property <font-size> from [4px\] to [14px\] at (-2) should be [0px\]]
expected: FAIL
[Web Animations: property <font-size> from [unset\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [initial\] to [20px\] at (0.6) should be [18.4px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from neutral to [20px\] at (-2) should be [0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [unset\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Animations: property <font-size> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [unset\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[Web Animations: property <font-size> from [initial\] to [20px\] at (0.6) should be [18.4px\]]
expected: FAIL
[CSS Animations: property <font-size> from [initial\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [initial\] to [20px\] at (0.3) should be [17.2px\]]
expected: FAIL
[CSS Animations: property <font-size> from [inherit\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [initial\] to [20px\] at (-0.3) should be [14.8px\]]
expected: FAIL
[Web Animations: property <font-size> from [4px\] to [14px\] at (1) should be [14px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [initial\] to [20px\] at (1.5) should be [22px\]]
expected: FAIL
[CSS Animations: property <font-size> from [initial\] to [20px\] at (1.5) should be [22px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [inherit\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Animations: property <font-size> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[Web Animations: property <font-size> from [inherit\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [4px\] to [14px\] at (0.3) should be [7px\]]
expected: FAIL
[CSS Animations: property <font-size> from [4px\] to [14px\] at (1.5) should be [19px\]]
expected: FAIL
[CSS Animations: property <font-size> from [4px\] to [14px\] at (1) should be [14px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [unset\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [inherit\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Animations: property <font-size> from [unset\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [4px\] to [14px\] at (-2) should be [0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Animations: property <font-size> from [inherit\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <font-size> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Animations: property <font-size> from [unset\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[Web Animations: property <font-size> from [initial\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [unset\] to [20px\] at (-2) should be [50px\]]
expected: FAIL
[CSS Animations: property <font-size> from [initial\] to [20px\] at (0.6) should be [18.4px\]]
expected: FAIL
[CSS Animations: property <font-size> from [initial\] to [20px\] at (-2) should be [8px\]]
expected: FAIL
[CSS Animations: property <font-size> from [inherit\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[Web Animations: property <font-size> from neutral to [20px\] at (-2) should be [0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [initial\] to [20px\] at (-2) should be [8px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [unset\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[Web Animations: property <font-size> from [inherit\] to [20px\] at (-2) should be [50px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [inherit\] to [20px\] at (-2) should be [50px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [inherit\] to [20px\] at (-2) should be [50px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [4px\] to [14px\] at (0.3) should be [7px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[Web Animations: property <font-size> from [initial\] to [20px\] at (0) should be [16px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[CSS Animations: property <font-size> from [initial\] to [20px\] at (0.3) should be [17.2px\]]
expected: FAIL
[Web Animations: property <font-size> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
@ -296,15 +110,6 @@
[Web Animations: property <font-size> from [inherit\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Animations: property <font-size> from [initial\] to [20px\] at (-0.3) should be [14.8px\]]
expected: FAIL
[CSS Animations: property <font-size> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [unset\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[Web Animations: property <font-size> from [inherit\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
@ -317,24 +122,12 @@
[Web Animations: property <font-size> from neutral to [20px\] at (0) should be [10px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [initial\] to [20px\] at (1.5) should be [22px\]]
expected: FAIL
[CSS Animations: property <font-size> from [initial\] to [20px\] at (0) should be [16px\]]
expected: FAIL
[Web Animations: property <font-size> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[Web Animations: property <font-size> from [4px\] to [14px\] at (-2) should be [0px\]]
expected: FAIL
[CSS Transitions: property <font-size> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [inherit\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[Web Animations: property <font-size> from [4px\] to [14px\] at (-0.3) should be [1px\]]
expected: FAIL
@ -347,12 +140,6 @@
[Web Animations: property <font-size> from [unset\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [unset\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Animations: property <font-size> from [unset\] to [20px\] at (-2) should be [50px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [4px\] to [14px\] at (1.5) should be [19px\]]
expected: FAIL

View file

@ -5,9 +5,6 @@
[CSS Animations: property <font-size> from [unset\] to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [unset\] to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[Web Animations: property <font-size> from [unset\] to [20px\] at (0.6) should be [16px\]]
expected: FAIL
@ -17,54 +14,27 @@
[CSS Animations: property <font-size> from [unset\] to [20px\] at (-2) should be [0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [unset\] to [20px\] at (-2) should be [0px\]]
expected: FAIL
[Web Animations: property <font-size> from [unset\] to [20px\] at (0) should be [10px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [unset\] to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [unset\] to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [unset\] to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [unset\] to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Animations: property <font-size> from [unset\] to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[Web Animations: property <font-size> from [unset\] to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [unset\] to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[Web Animations: property <font-size> from [unset\] to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Animations: property <font-size> from [unset\] to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [unset\] to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[Web Animations: property <font-size> from [unset\] to [20px\] at (-2) should be [0px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [unset\] to [20px\] at (-2) should be [0px\]]
expected: FAIL
[CSS Animations: property <font-size> from [unset\] to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [unset\] to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[Web Animations: property <font-size> from [unset\] to [20px\] at (0.3) should be [13px\]]
expected: FAIL

View file

@ -5,69 +5,21 @@
[Web Animations: property <font-size> from [10px\] to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[CSS Animations: property <font-size> from [10px\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [10px\] to [20px\] at (-2) should be [0px\]]
expected: FAIL
[Web Animations: property <font-size> from [10px\] to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [10px\] to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[Web Animations: property <font-size> from [10px\] to [20px\] at (-2) should be [0px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [10px\] to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[Web Animations: property <font-size> from [10px\] to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Animations: property <font-size> from [10px\] to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [10px\] to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[CSS Animations: property <font-size> from [10px\] to [20px\] at (0) should be [10px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [10px\] to [20px\] at (-2) should be [0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [10px\] to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [10px\] to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[Web Animations: property <font-size> from [10px\] to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[Web Animations: property <font-size> from [10px\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Animations: property <font-size> from [10px\] to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[CSS Animations: property <font-size> from [10px\] to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[CSS Transitions: property <font-size> from [10px\] to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [10px\] to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[CSS Animations: property <font-size> from [10px\] to [20px\] at (-2) should be [0px\]]
expected: FAIL
[Web Animations: property <font-size> from [10px\] to [20px\] at (0) should be [10px\]]
expected: FAIL
[CSS Transitions with transition: all: property <font-size> from [10px\] to [20px\] at (0.3) should be [13px\]]
expected: FAIL

View file

@ -1,8 +0,0 @@
[font-style-interpolation.html]
bug: https://github.com/servo/servo/issues/21570
expected: TIMEOUT
[font-style transition]
expected: TIMEOUT
[font-style animation]
expected: TIMEOUT

View file

@ -1,9 +1,6 @@
[font-weight-interpolation.html]
bug: https://github.com/servo/servo/issues/21570
expected: TIMEOUT
[font-weight animation]
expected: TIMEOUT
[font-weight transition]
expected: TIMEOUT

View file

@ -11,135 +11,45 @@
[Web Animations: property <letter-spacing> from [normal\] to [10px\] at (0.3) should be [3px\]]
expected: FAIL
[CSS Transitions: property <letter-spacing> from [unset\] to [20px\] at (-0.3) should be [-3.4px\]]
expected: FAIL
[Web Animations: property <letter-spacing> from [inherit\] to [20px\] at (1.5) should be [29px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from neutral to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Transitions: property <letter-spacing> from [unset\] to [20px\] at (0.3) should be [7.4px\]]
expected: FAIL
[Web Animations: property <letter-spacing> from [-10px\] to [10px\] at (0.6) should be [2px\]]
expected: FAIL
[Web Animations: property <letter-spacing> from neutral to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from neutral to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[Web Animations: property <letter-spacing> from [-10px\] to [10px\] at (1) should be [10px\]]
expected: FAIL
[CSS Transitions with transition: all: property <letter-spacing> from [unset\] to [20px\] at (0.3) should be [7.4px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from [inherit\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <letter-spacing> from [unset\] to [20px\] at (0.6) should be [12.8px\]]
expected: FAIL
[CSS Transitions: property <letter-spacing> from neutral to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from [-10px\] to [10px\] at (0.3) should be [-4px\]]
expected: FAIL
[CSS Transitions: property <letter-spacing> from [initial\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[Web Animations: property <letter-spacing> from [unset\] to [20px\] at (-0.3) should be [-3.4px\]]
expected: FAIL
[Web Animations: property <letter-spacing> from neutral to [20px\] at (0) should be [30px\]]
expected: FAIL
[CSS Transitions with transition: all: property <letter-spacing> from [normal\] to [10px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Transitions: property <letter-spacing> from [inherit\] to [20px\] at (0.6) should be [12.8px\]]
expected: FAIL
[CSS Transitions with transition: all: property <letter-spacing> from [inherit\] to [20px\] at (0.6) should be [12.8px\]]
expected: FAIL
[CSS Transitions with transition: all: property <letter-spacing> from [normal\] to [10px\] at (0.6) should be [6px\]]
expected: FAIL
[CSS Transitions with transition: all: property <letter-spacing> from [initial\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[CSS Transitions with transition: all: property <letter-spacing> from [unset\] to [20px\] at (-0.3) should be [-3.4px\]]
expected: FAIL
[CSS Transitions: property <letter-spacing> from neutral to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from neutral to [20px\] at (1) should be [20px\]]
expected: FAIL
[Web Animations: property <letter-spacing> from [initial\] to [20px\] at (-0.3) should be [-6px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from [normal\] to [10px\] at (0.3) should be [3px\]]
expected: FAIL
[Web Animations: property <letter-spacing> from [normal\] to [10px\] at (0) should be [normal\]]
expected: FAIL
[CSS Transitions: property <letter-spacing> from [inherit\] to [20px\] at (-0.3) should be [-3.4px\]]
expected: FAIL
[CSS Transitions: property <letter-spacing> from [normal\] to [10px\] at (0.3) should be [3px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from [-10px\] to [10px\] at (-0.3) should be [-16px\]]
expected: FAIL
[CSS Transitions with transition: all: property <letter-spacing> from [initial\] to [20px\] at (-0.3) should be [-6px\]]
expected: FAIL
[CSS Transitions with transition: all: property <letter-spacing> from [initial\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[Web Animations: property <letter-spacing> from [normal\] to [10px\] at (1.5) should be [15px\]]
expected: FAIL
[Web Animations: property <letter-spacing> from [normal\] to [10px\] at (-0.3) should be [-3px\]]
expected: FAIL
[CSS Transitions with transition: all: property <letter-spacing> from [-10px\] to [10px\] at (0.3) should be [-4px\]]
expected: FAIL
[Web Animations: property <letter-spacing> from neutral to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from [-10px\] to [10px\] at (1) should be [10px\]]
expected: FAIL
[CSS Transitions: property <letter-spacing> from [-10px\] to [10px\] at (0.3) should be [-4px\]]
expected: FAIL
[CSS Transitions with transition: all: property <letter-spacing> from [-10px\] to [10px\] at (1.5) should be [20px\]]
expected: FAIL
[Web Animations: property <letter-spacing> from [inherit\] to [20px\] at (0.6) should be [12.8px\]]
expected: FAIL
[Web Animations: property <letter-spacing> from [-10px\] to [10px\] at (1.5) should be [20px\]]
expected: FAIL
[CSS Transitions: property <letter-spacing> from [normal\] to [10px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from [normal\] to [10px\] at (0.6) should be [6px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from [inherit\] to [20px\] at (1.5) should be [29px\]]
expected: FAIL
@ -152,42 +62,21 @@
[Web Animations: property <letter-spacing> from [unset\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <letter-spacing> from neutral to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from [unset\] to [20px\] at (0) should be [2px\]]
expected: FAIL
[Web Animations: property <letter-spacing> from neutral to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Transitions: property <letter-spacing> from [normal\] to [10px\] at (-0.3) should be [-3px\]]
expected: FAIL
[CSS Transitions: property <letter-spacing> from [initial\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[Web Animations: property <letter-spacing> from neutral to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from [-10px\] to [10px\] at (0.6) should be [2px\]]
expected: FAIL
[Web Animations: property <letter-spacing> from [normal\] to [10px\] at (0.6) should be [6px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from [inherit\] to [20px\] at (-0.3) should be [-3.4px\]]
expected: FAIL
[CSS Transitions with transition: all: property <letter-spacing> from [normal\] to [10px\] at (-0.3) should be [-3px\]]
expected: FAIL
[CSS Transitions with transition: all: property <letter-spacing> from [unset\] to [20px\] at (0.6) should be [12.8px\]]
expected: FAIL
[CSS Transitions: property <letter-spacing> from [initial\] to [20px\] at (-0.3) should be [-6px\]]
expected: FAIL
[Web Animations: property <letter-spacing> from [-10px\] to [10px\] at (0) should be [-10px\]]
expected: FAIL
@ -197,54 +86,18 @@
[Web Animations: property <letter-spacing> from [inherit\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from [normal\] to [10px\] at (0) should be [normal\]]
expected: FAIL
[CSS Transitions with transition: all: property <letter-spacing> from neutral to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from [normal\] to [10px\] at (1.5) should be [15px\]]
expected: FAIL
[Web Animations: property <letter-spacing> from neutral to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <letter-spacing> from [initial\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[Web Animations: property <letter-spacing> from [initial\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from [initial\] to [20px\] at (-0.3) should be [-6px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from neutral to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from [unset\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <letter-spacing> from neutral to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from [-10px\] to [10px\] at (0) should be [-10px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from [initial\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[Web Animations: property <letter-spacing> from [initial\] to [20px\] at (0) should be [normal\]]
expected: FAIL
[Web Animations: property <letter-spacing> from [initial\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from [initial\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <letter-spacing> from [normal\] to [10px\] at (0.3) should be [3px\]]
expected: FAIL
[Web Animations: property <letter-spacing> from [-10px\] to [10px\] at (-0.3) should be [-16px\]]
expected: FAIL
@ -254,36 +107,15 @@
[CSS Animations: property <letter-spacing> from [unset\] to [20px\] at (1.5) should be [29px\]]
expected: FAIL
[CSS Transitions: property <letter-spacing> from [normal\] to [10px\] at (0.6) should be [6px\]]
expected: FAIL
[CSS Transitions: property <letter-spacing> from [-10px\] to [10px\] at (0.6) should be [2px\]]
expected: FAIL
[Web Animations: property <letter-spacing> from [inherit\] to [20px\] at (-0.3) should be [-3.4px\]]
expected: FAIL
[CSS Transitions: property <letter-spacing> from [unset\] to [20px\] at (1.5) should be [29px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from [unset\] to [20px\] at (0.6) should be [12.8px\]]
expected: FAIL
[Web Animations: property <letter-spacing> from [inherit\] to [20px\] at (0.3) should be [7.4px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from [initial\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[CSS Transitions with transition: all: property <letter-spacing> from [unset\] to [20px\] at (1.5) should be [29px\]]
expected: FAIL
[CSS Transitions with transition: all: property <letter-spacing> from [-10px\] to [10px\] at (-0.3) should be [-16px\]]
expected: FAIL
[CSS Transitions with transition: all: property <letter-spacing> from neutral to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[Web Animations: property <letter-spacing> from [initial\] to [20px\] at (1) should be [20px\]]
expected: FAIL
@ -293,66 +125,18 @@
[CSS Animations: property <letter-spacing> from [unset\] to [20px\] at (0.3) should be [7.4px\]]
expected: FAIL
[CSS Transitions with transition: all: property <letter-spacing> from neutral to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[Web Animations: property <letter-spacing> from [initial\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[CSS Transitions: property <letter-spacing> from [-10px\] to [10px\] at (1.5) should be [20px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from [initial\] to [20px\] at (0) should be [normal\]]
expected: FAIL
[CSS Transitions with transition: all: property <letter-spacing> from [initial\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[CSS Transitions: property <letter-spacing> from [inherit\] to [20px\] at (0.3) should be [7.4px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from neutral to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Transitions: property <letter-spacing> from [inherit\] to [20px\] at (1.5) should be [29px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from [inherit\] to [20px\] at (0) should be [2px\]]
expected: FAIL
[CSS Transitions: property <letter-spacing> from [-10px\] to [10px\] at (-0.3) should be [-16px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from [-10px\] to [10px\] at (1.5) should be [20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <letter-spacing> from [inherit\] to [20px\] at (0.3) should be [7.4px\]]
expected: FAIL
[CSS Transitions with transition: all: property <letter-spacing> from [inherit\] to [20px\] at (-0.3) should be [-3.4px\]]
expected: FAIL
[CSS Transitions with transition: all: property <letter-spacing> from [inherit\] to [20px\] at (1.5) should be [29px\]]
expected: FAIL
[Web Animations: property <letter-spacing> from [normal\] to [10px\] at (1) should be [10px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from [normal\] to [10px\] at (-0.3) should be [-3px\]]
expected: FAIL
[Web Animations: property <letter-spacing> from [unset\] to [20px\] at (1.5) should be [29px\]]
expected: FAIL
[CSS Transitions with transition: all: property <letter-spacing> from [-10px\] to [10px\] at (0.6) should be [2px\]]
expected: FAIL
[CSS Transitions with transition: all: property <letter-spacing> from neutral to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from [inherit\] to [20px\] at (0.6) should be [12.8px\]]
expected: FAIL
[CSS Animations: property <letter-spacing> from [normal\] to [10px\] at (1) should be [10px\]]
expected: FAIL

View file

@ -5,9 +5,6 @@
[CSS Transitions: property <text-indent> from [0px hanging each-line\] to [50px each-line hanging\] at (0) should be [0 hanging each-line\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [inherit\] to [20px\] at (-0.3) should be [85px\]]
expected: FAIL
[Web Animations: property <text-indent> from [0px hanging each-line\] to [50px each-line hanging\] at (0.3) should be [15px hanging each-line\]]
expected: FAIL
@ -17,9 +14,6 @@
[CSS Animations: property <text-indent> from [0px\] to [50px each-line hanging\] at (0) should be [0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [unset\] to [20px\] at (1.5) should be [-5px\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [0px hanging\] to [50px hanging\] at (0.3) should be [15px hanging\]]
expected: FAIL
@ -32,9 +26,6 @@
[CSS Transitions with transition: all: property <text-indent> from [0px hanging\] to [50px hanging\] at (0) should be [0 hanging\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from neutral to [40px\] at (0.3) should be [19px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [inherit\] to [20px\] at (0.6) should be [40px\]]
expected: FAIL
@ -44,21 +35,12 @@
[CSS Animations: property <text-indent> from [0px hanging\] to [50px hanging\] at (0.6) should be [30px hanging\]]
expected: FAIL
[CSS Animations: property <text-indent> from neutral to [40px\] at (1) should be [40px\]]
expected: FAIL
[Web Animations: property <text-indent> from [0px hanging\] to [50px hanging\] at (0.3) should be [15px hanging\]]
expected: FAIL
[Web Animations: property <text-indent> from [inherit\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <text-indent> from neutral to [40px\] at (0.6) should be [28px\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [inherit\] to [20px\] at (0.6) should be [40px\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [0px\] to [50px each-line hanging\] at (1) should be [50px each-line hanging\]]
expected: FAIL
@ -74,12 +56,6 @@
[Web Animations: property <text-indent> from [unset\] to [20px\] at (0) should be [70px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [initial\] to [20px\] at (-0.3) should be [-6px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [initial\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [unset\] to [20px\] at (-0.3) should be [85px\]]
expected: FAIL
@ -89,18 +65,6 @@
[CSS Transitions with transition: all: property <text-indent> from [0px\] to [50px each-line hanging\] at (0) should be [50px each-line hanging\]]
expected: FAIL
[CSS Animations: property <text-indent> from [inherit\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [0px\] to [50px\] at (1.5) should be [75px\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [unset\] to [20px\] at (-0.3) should be [85px\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from neutral to [40px\] at (1.5) should be [55px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [inherit\] to [20px\] at (-0.3) should be [85px\]]
expected: FAIL
@ -116,15 +80,6 @@
[CSS Animations: property <text-indent> from [0px hanging\] to [50px hanging\] at (0.3) should be [15px hanging\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0px\] to [50px\] at (1.5) should be [75px\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [initial\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[CSS Transitions: property <text-indent> from neutral to [40px\] at (-0.3) should be [1px\]]
expected: FAIL
[Web Animations: property <text-indent> from [0px\] to [50px\] at (0) should be [0\]]
expected: FAIL
@ -134,18 +89,12 @@
[Web Animations: property <text-indent> from [unset\] to [20px\] at (0.3) should be [55px\]]
expected: FAIL
[CSS Animations: property <text-indent> from neutral to [40px\] at (0.6) should be [28px\]]
expected: FAIL
[Web Animations: property <text-indent> from [0px\] to [50px each-line hanging\] at (1.5) should be [50px each-line hanging\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0px\] to [50px each-line hanging\] at (0.3) should be [0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [initial\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[Web Animations: property <text-indent> from [0px each-line\] to [50px hanging\] at (1) should be [50px hanging\]]
expected: FAIL
@ -155,12 +104,6 @@
[Web Animations: property <text-indent> from [unset\] to [20px\] at (1.5) should be [-5px\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from neutral to [40px\] at (-0.3) should be [1px\]]
expected: FAIL
[CSS Transitions: property <text-indent> from neutral to [40px\] at (1.5) should be [55px\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [0px\] to [50px each-line hanging\] at (0.3) should be [50px each-line hanging\]]
expected: FAIL
@ -170,9 +113,6 @@
[CSS Animations: property <text-indent> from [0px each-line\] to [50px hanging\] at (0.5) should be [50px hanging\]]
expected: FAIL
[CSS Animations: property <text-indent> from neutral to [40px\] at (0.3) should be [19px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0px hanging each-line\] to [50px each-line hanging\] at (1.5) should be [75px hanging each-line\]]
expected: FAIL
@ -185,27 +125,9 @@
[CSS Transitions with transition: all: property <text-indent> from [0px hanging\] to [50px hanging\] at (1.5) should be [75px hanging\]]
expected: FAIL
[CSS Animations: property <text-indent> from neutral to [40px\] at (-0.3) should be [1px\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [0px\] to [50px\] at (-0.3) should be [-15px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [initial\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [inherit\] to [20px\] at (1.5) should be [-5px\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [inherit\] to [20px\] at (-0.3) should be [85px\]]
expected: FAIL
[Web Animations: property <text-indent> from [initial\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [unset\] to [20px\] at (0.6) should be [40px\]]
expected: FAIL
[Web Animations: property <text-indent> from [0px hanging\] to [50px hanging\] at (0.6) should be [30px hanging\]]
expected: FAIL
@ -215,12 +137,6 @@
[CSS Transitions: property <text-indent> from [0px\] to [50px each-line hanging\] at (1.5) should be [50px each-line hanging\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [initial\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0px\] to [50px\] at (-0.3) should be [-15px\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [0px hanging each-line\] to [50px each-line hanging\] at (-0.3) should be [-15px hanging each-line\]]
expected: FAIL
@ -248,9 +164,6 @@
[CSS Transitions with transition: all: property <text-indent> from [0px hanging\] to [50px hanging\] at (-0.3) should be [-15px hanging\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [inherit\] to [20px\] at (0.3) should be [55px\]]
expected: FAIL
[Web Animations: property <text-indent> from [0px hanging each-line\] to [50px each-line hanging\] at (0.6) should be [30px hanging each-line\]]
expected: FAIL
@ -278,15 +191,6 @@
[Web Animations: property <text-indent> from [initial\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [initial\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [unset\] to [20px\] at (-0.3) should be [85px\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from neutral to [40px\] at (0.6) should be [28px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0px\] to [50px each-line hanging\] at (1) should be [50px each-line hanging\]]
expected: FAIL
@ -305,9 +209,6 @@
[CSS Transitions with transition: all: property <text-indent> from [0px hanging each-line\] to [50px each-line hanging\] at (0.6) should be [30px hanging each-line\]]
expected: FAIL
[CSS Animations: property <text-indent> from [initial\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [0px each-line\] to [50px hanging\] at (-0.3) should be [50px hanging\]]
expected: FAIL
@ -317,18 +218,12 @@
[CSS Animations: property <text-indent> from [unset\] to [20px\] at (1.5) should be [-5px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0px\] to [50px\] at (0.6) should be [30px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0px\] to [50px each-line hanging\] at (0.5) should be [50px each-line hanging\]]
expected: FAIL
[Web Animations: property <text-indent> from [0px hanging\] to [50px hanging\] at (0) should be [0 hanging\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [0px\] to [50px\] at (0.3) should be [15px\]]
expected: FAIL
[Web Animations: property <text-indent> from [0px\] to [50px each-line hanging\] at (-0.3) should be [0px\]]
expected: FAIL
@ -341,18 +236,12 @@
[Web Animations: property <text-indent> from [0px hanging each-line\] to [50px each-line hanging\] at (1.5) should be [75px hanging each-line\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [initial\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[Web Animations: property <text-indent> from [initial\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[Web Animations: property <text-indent> from neutral to [40px\] at (0.6) should be [28px\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [unset\] to [20px\] at (1.5) should be [-5px\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [0px\] to [50px each-line hanging\] at (1) should be [50px each-line hanging\]]
expected: FAIL
@ -362,33 +251,21 @@
[CSS Animations: property <text-indent> from [0px each-line\] to [50px hanging\] at (1.5) should be [50px hanging\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [unset\] to [20px\] at (0.3) should be [55px\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [0px hanging\] to [50px hanging\] at (0.3) should be [15px hanging\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [0px hanging\] to [50px hanging\] at (0.6) should be [30px hanging\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [initial\] to [20px\] at (-0.3) should be [-6px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0px hanging\] to [50px hanging\] at (-0.3) should be [-15px hanging\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [0px\] to [50px\] at (0.3) should be [15px\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [0px hanging each-line\] to [50px each-line hanging\] at (1) should be [50px hanging each-line\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0px hanging each-line\] to [50px each-line hanging\] at (1) should be [50px hanging each-line\]]
expected: FAIL
[CSS Transitions: property <text-indent> from neutral to [40px\] at (0.3) should be [19px\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [0px\] to [50px each-line hanging\] at (0.6) should be [50px each-line hanging\]]
expected: FAIL
@ -422,15 +299,9 @@
[Web Animations: property <text-indent> from neutral to [40px\] at (0) should be [10px\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [initial\] to [20px\] at (-0.3) should be [-6px\]]
expected: FAIL
[Web Animations: property <text-indent> from [0px each-line\] to [50px hanging\] at (-0.3) should be [0px each-line\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [0px\] to [50px\] at (-0.3) should be [-15px\]]
expected: FAIL
[Web Animations: property <text-indent> from [0px hanging each-line\] to [50px each-line hanging\] at (1) should be [50px hanging each-line\]]
expected: FAIL
@ -458,27 +329,9 @@
[Web Animations: property <text-indent> from [0px\] to [50px\] at (0.6) should be [30px\]]
expected: FAIL
[CSS Animations: property <text-indent> from neutral to [40px\] at (1.5) should be [55px\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [inherit\] to [20px\] at (1.5) should be [-5px\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [inherit\] to [20px\] at (0.6) should be [40px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0px\] to [50px\] at (0.3) should be [15px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0px\] to [50px each-line hanging\] at (-0.3) should be [0px\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [unset\] to [20px\] at (0.3) should be [55px\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [inherit\] to [20px\] at (0.3) should be [55px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0px hanging\] to [50px hanging\] at (0) should be [0 hanging\]]
expected: FAIL
@ -488,9 +341,6 @@
[CSS Transitions with transition: all: property <text-indent> from [0px each-line\] to [50px hanging\] at (1) should be [50px hanging\]]
expected: FAIL
[CSS Animations: property <text-indent> from [unset\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [0px\] to [50px each-line hanging\] at (0.6) should be [50px each-line hanging\]]
expected: FAIL
@ -500,9 +350,6 @@
[CSS Transitions with transition: all: property <text-indent> from [0px hanging each-line\] to [50px each-line hanging\] at (1.5) should be [75px hanging each-line\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [0px\] to [50px\] at (0.6) should be [30px\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [0px hanging each-line\] to [50px each-line hanging\] at (0.6) should be [30px hanging each-line\]]
expected: FAIL
@ -530,9 +377,6 @@
[Web Animations: property <text-indent> from [0px hanging\] to [50px hanging\] at (1.5) should be [75px hanging\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0px\] to [50px\] at (0) should be [0\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [0px each-line\] to [50px hanging\] at (1.5) should be [50px hanging\]]
expected: FAIL
@ -542,33 +386,12 @@
[CSS Transitions: property <text-indent> from [0px each-line\] to [50px hanging\] at (0.5) should be [50px hanging\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [unset\] to [20px\] at (0.6) should be [40px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0px\] to [50px\] at (1) should be [50px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [initial\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[Web Animations: property <text-indent> from [0px\] to [50px each-line hanging\] at (0) should be [0px\]]
expected: FAIL
[Web Animations: property <text-indent> from [0px\] to [50px\] at (1.5) should be [75px\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [0px\] to [50px\] at (1.5) should be [75px\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [0px\] to [50px\] at (0.6) should be [30px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [initial\] to [20px\] at (0) should be [0px\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [initial\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0px hanging\] to [50px hanging\] at (1.5) should be [75px hanging\]]
expected: FAIL
@ -611,3 +434,6 @@
[CSS Animations: property <text-indent> from [0px each-line\] to [50px hanging\] at (-0.3) should be [0px each-line\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [0px\] to [50px\] at (-0.3) should be [-15px\]]
expected: FAIL

View file

@ -2,48 +2,15 @@
[word-spacing-interpolation]
expected: FAIL
[CSS Transitions: property <word-spacing> from [inherit\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[Web Animations: property <word-spacing> from [normal\] to [10px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Transitions: property <word-spacing> from [-10px\] to [40px\] at (-0.3) should be [-25px\]]
expected: FAIL
[Web Animations: property <word-spacing> from neutral to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <word-spacing> from [-10px\] to [40px\] at (0.6) should be [20px\]]
expected: FAIL
[Web Animations: property <word-spacing> from [-10px\] to [40px\] at (0.3) should be [5px\]]
expected: FAIL
[CSS Transitions with transition: all: property <word-spacing> from [inherit\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Transitions: property <word-spacing> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Transitions: property <word-spacing> from [-10px\] to [40px\] at (1.5) should be [65px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from [initial\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[CSS Transitions with transition: all: property <word-spacing> from [inherit\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Transitions: property <word-spacing> from [initial\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[CSS Transitions: property <word-spacing> from [unset\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from [-10px\] to [40px\] at (0) should be [-10px\]]
expected: FAIL
[Web Animations: property <word-spacing> from [normal\] to [10px\] at (0) should be [0px\]]
expected: FAIL
@ -53,39 +20,12 @@
[Web Animations: property <word-spacing> from [inherit\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from [initial\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[CSS Transitions: property <word-spacing> from [initial\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from [-10px\] to [40px\] at (1) should be [40px\]]
expected: FAIL
[CSS Transitions: property <word-spacing> from [inherit\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Transitions: property <word-spacing> from [inherit\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Transitions with transition: all: property <word-spacing> from [inherit\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from [inherit\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[Web Animations: property <word-spacing> from [unset\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from [initial\] to [20px\] at (0) should be [0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <word-spacing> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from [normal\] to [10px\] at (-0.3) should be [-3px\]]
expected: FAIL
[Web Animations: property <word-spacing> from [inherit\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
@ -95,99 +35,33 @@
[Web Animations: property <word-spacing> from [-10px\] to [40px\] at (1) should be [40px\]]
expected: FAIL
[CSS Transitions with transition: all: property <word-spacing> from [initial\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from [normal\] to [10px\] at (1.5) should be [15px\]]
expected: FAIL
[Web Animations: property <word-spacing> from [unset\] to [20px\] at (0) should be [30px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from [-10px\] to [40px\] at (0.6) should be [20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <word-spacing> from [-10px\] to [40px\] at (1.5) should be [65px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from [normal\] to [10px\] at (0) should be [0px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from [inherit\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <word-spacing> from [normal\] to [10px\] at (0.6) should be [6px\]]
expected: FAIL
[CSS Transitions with transition: all: property <word-spacing> from [initial\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[Web Animations: property <word-spacing> from [initial\] to [20px\] at (-0.3) should be [-6px\]]
expected: FAIL
[Web Animations: property <word-spacing> from [inherit\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[Web Animations: property <word-spacing> from [normal\] to [10px\] at (0.6) should be [6px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from [initial\] to [20px\] at (-0.3) should be [-6px\]]
expected: FAIL
[CSS Transitions: property <word-spacing> from [-10px\] to [40px\] at (0.6) should be [20px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from [inherit\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Transitions: property <word-spacing> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[CSS Transitions: property <word-spacing> from [normal\] to [10px\] at (0.3) should be [3px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from [unset\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Transitions: property <word-spacing> from [initial\] to [20px\] at (-0.3) should be [-6px\]]
expected: FAIL
[Web Animations: property <word-spacing> from [-10px\] to [40px\] at (0.6) should be [20px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from neutral to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <word-spacing> from [-10px\] to [40px\] at (0.3) should be [5px\]]
expected: FAIL
[CSS Transitions: property <word-spacing> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from [normal\] to [10px\] at (0.3) should be [3px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from [inherit\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Transitions with transition: all: property <word-spacing> from [normal\] to [10px\] at (-0.3) should be [-3px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[Web Animations: property <word-spacing> from [inherit\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Transitions with transition: all: property <word-spacing> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[CSS Transitions with transition: all: property <word-spacing> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[Web Animations: property <word-spacing> from [unset\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
@ -200,12 +74,6 @@
[Web Animations: property <word-spacing> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Transitions: property <word-spacing> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[CSS Transitions with transition: all: property <word-spacing> from [inherit\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[Web Animations: property <word-spacing> from [initial\] to [20px\] at (1) should be [20px\]]
expected: FAIL
@ -221,21 +89,12 @@
[Web Animations: property <word-spacing> from [initial\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[CSS Transitions: property <word-spacing> from [unset\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Transitions: property <word-spacing> from [normal\] to [10px\] at (-0.3) should be [-3px\]]
expected: FAIL
[Web Animations: property <word-spacing> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from [unset\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Transitions with transition: all: property <word-spacing> from [-10px\] to [40px\] at (-0.3) should be [-25px\]]
expected: FAIL
[Web Animations: property <word-spacing> from [initial\] to [20px\] at (0) should be [0px\]]
expected: FAIL
@ -248,24 +107,9 @@
[Web Animations: property <word-spacing> from [-10px\] to [40px\] at (1.5) should be [65px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from [-10px\] to [40px\] at (0.3) should be [5px\]]
expected: FAIL
[CSS Transitions with transition: all: property <word-spacing> from [unset\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Transitions with transition: all: property <word-spacing> from [unset\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Transitions: property <word-spacing> from [initial\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[Web Animations: property <word-spacing> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Transitions with transition: all: property <word-spacing> from [initial\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[Web Animations: property <word-spacing> from [unset\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
@ -278,36 +122,9 @@
[Web Animations: property <word-spacing> from [inherit\] to [20px\] at (0) should be [30px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Transitions with transition: all: property <word-spacing> from [normal\] to [10px\] at (0.3) should be [3px\]]
expected: FAIL
[CSS Transitions with transition: all: property <word-spacing> from [initial\] to [20px\] at (-0.3) should be [-6px\]]
expected: FAIL
[Web Animations: property <word-spacing> from [normal\] to [10px\] at (1) should be [10px\]]
expected: FAIL
[CSS Transitions: property <word-spacing> from [normal\] to [10px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Transitions with transition: all: property <word-spacing> from [unset\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[CSS Transitions with transition: all: property <word-spacing> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Transitions: property <word-spacing> from [inherit\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from [unset\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from [unset\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
@ -317,42 +134,9 @@
[Web Animations: property <word-spacing> from [normal\] to [10px\] at (-0.3) should be [-3px\]]
expected: FAIL
[CSS Transitions with transition: all: property <word-spacing> from [normal\] to [10px\] at (0.6) should be [6px\]]
expected: FAIL
[Web Animations: property <word-spacing> from [initial\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from [initial\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from [initial\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <word-spacing> from [-10px\] to [40px\] at (0.3) should be [5px\]]
expected: FAIL
[CSS Transitions: property <word-spacing> from [unset\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[Web Animations: property <word-spacing> from [inherit\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from [-10px\] to [40px\] at (1.5) should be [65px\]]
expected: FAIL
[CSS Transitions with transition: all: property <word-spacing> from [normal\] to [10px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Transitions: property <word-spacing> from [unset\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from [normal\] to [10px\] at (0.6) should be [6px\]]
expected: FAIL
[CSS Animations: property <word-spacing> from [-10px\] to [40px\] at (-0.3) should be [-25px\]]
expected: FAIL
[CSS Transitions with transition: all: property <word-spacing> from [unset\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL

View file

@ -89,9 +89,6 @@
[Transform list interpolation]
expected: FAIL
[CSS Animations: property <transform> from [none\] to [translate(200px) rotate(720deg)\] at (0.25) should be [translate(50px) rotate(180deg)\]]
expected: FAIL
[Web Animations: property <transform> from [none\] to [none\] at (0.25) should be [none\]]
expected: FAIL
@ -107,9 +104,6 @@
[CSS Transitions with transition: all: property <transform> 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 <transform> from [translate(100px) rotate(720deg)\] to [translate(200px)\] at (0.25) should be [translate(125px) rotate(540deg)\]]
expected: FAIL
[Web Animations: property <transform> from [rotate(0deg) scaleX(1)\] to [rotate(720deg) translateX(0px) scaleX(2)\] at (0.25) should be [rotate(180deg) matrix(1.25, 0, 0, 1, 0, 0)\]]
expected: FAIL
@ -128,9 +122,6 @@
[Web Animations: property <transform> 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 <transform> from [none\] to [translate(200px) rotate(720deg)\] at (0.25) should be [translate(50px) rotate(180deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> 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
@ -140,21 +131,12 @@
[CSS Transitions with transition: all: property <transform> 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 <transform> from [translate(200px) rotate(720deg)\] to [none\] at (0.25) should be [translate(150px) rotate(540deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [translate(200px) rotate(720deg)\] to [none\] at (0.25) should be [translate(150px) rotate(540deg)\]]
expected: FAIL
[Web Animations: property <transform> 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 Transitions: property <transform> 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 <transform> 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 <transform> 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
@ -194,9 +176,6 @@
[Web Animations: property <transform> from [rotate3d(1, 0, 0, 360deg) translateX(100px)\] to [rotate3d(0, 1, 0, -720deg) translateY(200px)\] at (0.25) should be [rotate3d(0, 0, 1, 0deg) translate(75px, 50px)\]]
expected: FAIL
[CSS Transitions: property <transform> from [none\] to [translate(200px) rotate(720deg)\] at (0.25) should be [translate(50px) rotate(180deg)\]]
expected: FAIL
[CSS Transitions: property <transform> from [rotateX(90deg) translateX(100px)\] to [rotateY(0deg) translateY(200px)\] at (0.25) should be [rotateX(67.5deg) translate(75px, 50px)\]]
expected: FAIL
@ -221,9 +200,6 @@
[Web Animations: property <transform> 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 Animations: property <transform> 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
[Web Animations: property <transform> from [rotateX(90deg) translateX(100px)\] to [rotateY(0deg) translateY(200px)\] at (0.25) should be [rotateX(67.5deg) translate(75px, 50px)\]]
expected: FAIL
@ -233,9 +209,6 @@
[CSS Transitions with transition: all: property <transform> 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 <transform> 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
[Web Animations: property <transform> from [scale(2) rotate(0deg)\] to [rotate(720deg) scale(2) translate(200px)\] at (0.25) should be [matrix(2, 0, 0, 2, 100, 0)\]]
expected: FAIL
@ -245,9 +218,6 @@
[CSS Transitions with transition: all: property <transform> 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 <transform> from [translate(100px)\] to [translate(200px) rotate(720deg)\] at (0.25) should be [translate(125px) rotate(180deg)\]]
expected: FAIL
[CSS Animations: property <transform> 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
@ -284,9 +254,6 @@
[CSS Transitions: property <transform> from [translate(100px)\] to [translate(200px) rotate(720deg)\] at (0.25) should be [translate(125px) rotate(180deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [translate(100px)\] to [translate(200px) rotate(720deg)\] at (0.25) should be [translate(125px) rotate(180deg)\]]
expected: FAIL
[CSS Transitions: property <transform> 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
@ -308,3 +275,6 @@
[Web Animations: property <transform> from [none\] to [translate(200px) rotate(720deg)\] at (0.25) should be [translate(50px) rotate(180deg)\]]
expected: FAIL
[CSS Transitions: property <transform> from [none\] to [translate(200px) rotate(720deg)\] at (0.25) should be [translate(50px) rotate(180deg)\]]
expected: FAIL

View file

@ -2,9 +2,6 @@
[ perspective interpolation]
expected: FAIL
[CSS Transitions: property <perspective> from [inherit\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Transitions: property <perspective> from [50px\] to [100px\] at (1.5) should be [125px\]]
expected: FAIL
@ -17,9 +14,6 @@
[CSS Animations: property <perspective> from [50px\] to [none\] at (0.3) should be [50px\]]
expected: FAIL
[CSS Animations: property <perspective> from [inherit\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[Web Animations: property <perspective> from [unset\] to [20px\] at (0.5) should be [20px\]]
expected: FAIL
@ -32,9 +26,6 @@
[CSS Animations: property <perspective> from [inherit\] to [20px\] at (0) should be [30px\]]
expected: FAIL
[CSS Transitions: property <perspective> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[Web Animations: property <perspective> from [inherit\] to [20px\] at (-1) should be [40px\]]
expected: FAIL
@ -50,24 +41,12 @@
[CSS Transitions with transition: all: property <perspective> from [50px\] to [100px\] at (-1) should be [none\]]
expected: FAIL
[CSS Animations: property <perspective> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[Web Animations: property <perspective> from [50px\] to [100px\] at (1) should be [100px\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[Web Animations: property <perspective> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective> from [50px\] to [100px\] at (1.5) should be [125px\]]
expected: FAIL
[CSS Animations: property <perspective> from [50px\] to [100px\] at (1.5) should be [125px\]]
expected: FAIL
[Web Animations: property <perspective> from [inherit\] to [20px\] at (0) should be [30px\]]
expected: FAIL
@ -86,9 +65,6 @@
[Web Animations: property <perspective> from [unset\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Animations: property <perspective> from [50px\] to [100px\] at (-0.3) should be [35px\]]
expected: FAIL
[CSS Animations: property <perspective> from [initial\] to [20px\] at (-0.3) should be [initial\]]
expected: FAIL
@ -125,9 +101,6 @@
[Web Animations: property <perspective> from [inherit\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[Web Animations: property <perspective> from [50px\] to [none\] at (0.3) should be [50px\]]
expected: FAIL
@ -143,45 +116,12 @@
[Web Animations: property <perspective> from [unset\] to [20px\] at (0.6) should be [20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective> from [50px\] to [100px\] at (0.3) should be [65px\]]
expected: FAIL
[CSS Animations: property <perspective> from [initial\] to [20px\] at (0) should be [initial\]]
expected: FAIL
[CSS Transitions: property <perspective> from [inherit\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Transitions: property <perspective> from [inherit\] to [20px\] at (-1) should be [40px\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective> from [50px\] to [100px\] at (0.6) should be [80px\]]
expected: FAIL
[CSS Animations: property <perspective> from [50px\] to [100px\] at (1) should be [100px\]]
expected: FAIL
[CSS Animations: property <perspective> from [50px\] to [100px\] at (0.3) should be [65px\]]
expected: FAIL
[CSS Animations: property <perspective> from [inherit\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective> from [inherit\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Transitions: property <perspective> from [inherit\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective> from [inherit\] to [20px\] at (-20) should be [230px\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective> from [inherit\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[Web Animations: property <perspective> from [50px\] to [none\] at (0.6) should be [none\]]
expected: FAIL
@ -197,12 +137,6 @@
[CSS Animations: property <perspective> from [50px\] to [none\] at (0.5) should be [none\]]
expected: FAIL
[CSS Animations: property <perspective> from [50px\] to [100px\] at (0.6) should be [80px\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective> from [inherit\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[Web Animations: property <perspective> from [initial\] to [20px\] at (1.5) should be [20px\]]
expected: FAIL
@ -227,9 +161,6 @@
[CSS Animations: property <perspective> from [50px\] to [100px\] at (-20) should be [none\]]
expected: FAIL
[CSS Transitions: property <perspective> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[Web Animations: property <perspective> from [50px\] to [100px\] at (0.6) should be [80px\]]
expected: FAIL
@ -242,9 +173,6 @@
[Web Animations: property <perspective> from [50px\] to [none\] at (-0.3) should be [50px\]]
expected: FAIL
[CSS Animations: property <perspective> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[Web Animations: property <perspective> from [unset\] to [20px\] at (0) should be [unset\]]
expected: FAIL
@ -272,9 +200,6 @@
[Web Animations: property <perspective> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[CSS Transitions: property <perspective> from [inherit\] to [20px\] at (-20) should be [230px\]]
expected: FAIL
[Web Animations: property <perspective> from [50px\] to [none\] at (0.5) should be [none\]]
expected: FAIL
@ -296,48 +221,21 @@
[CSS Transitions: property <perspective> from neutral to [20px\] at (-20) should be [none\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[CSS Animations: property <perspective> from neutral to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <perspective> from [50px\] to [100px\] at (-0.3) should be [35px\]]
expected: FAIL
[CSS Animations: property <perspective> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[CSS Transitions: property <perspective> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Transitions: property <perspective> from [50px\] to [100px\] at (0.3) should be [65px\]]
expected: FAIL
[CSS Transitions: property <perspective> from [inherit\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Animations: property <perspective> from [initial\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[Web Animations: property <perspective> from neutral to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Animations: property <perspective> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Animations: property <perspective> from [unset\] to [20px\] at (0.6) should be [20px\]]
expected: FAIL
[CSS Transitions: property <perspective> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Animations: property <perspective> from [50px\] to [100px\] at (0) should be [50px\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective> from [inherit\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[Web Animations: property <perspective> from [initial\] to [20px\] at (-0.3) should be [initial\]]
expected: FAIL
@ -356,9 +254,6 @@
[CSS Animations: property <perspective> from [inherit\] to [20px\] at (-1) should be [40px\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective> from [inherit\] to [20px\] at (-1) should be [40px\]]
expected: FAIL
[CSS Animations: property <perspective> from [initial\] to [20px\] at (1.5) should be [20px\]]
expected: FAIL
@ -377,3 +272,9 @@
[Web Animations: property <perspective> from [inherit\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective> from [50px\] to [100px\] at (0.3) should be [65px\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective> from [50px\] to [100px\] at (0.6) should be [80px\]]
expected: FAIL

View file

@ -11,42 +11,24 @@
[CSS Transitions: property <perspective-origin> from [unset\] to [20px 20px\] at (1.5) should be [17.5px 17.5px\]]
expected: FAIL
[CSS Animations: property <perspective-origin> from [0% 50%\] to [100% 150%\] at (0.6) should be [60% 110%\]]
expected: FAIL
[CSS Animations: property <perspective-origin> from [unset\] to [20px 20px\] at (0) should be [25px 25px\]]
expected: FAIL
[Web Animations: property <perspective-origin> from [initial\] to [20px 20px\] at (0.3) should be [23.5px 23.5px\]]
expected: FAIL
[CSS Animations: property <perspective-origin> from [0% 50%\] to [100% 150%\] at (1) should be [100% 150%\]]
expected: FAIL
[CSS Animations: property <perspective-origin> from [initial\] to [20px 20px\] at (0.6) should be [22px 22px\]]
expected: FAIL
[Web Animations: property <perspective-origin> from neutral to [20px 20px\] at (1) should be [20px 20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective-origin> from [inherit\] to [20px 20px\] at (0.6) should be [24px 16px\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective-origin> from [initial\] to [20px 20px\] at (0.3) should be [23.5px 23.5px\]]
expected: FAIL
[CSS Animations: property <perspective-origin> from neutral to [20px 20px\] at (0.6) should be [16px 24px\]]
expected: FAIL
[Web Animations: property <perspective-origin> from [inherit\] to [20px 20px\] at (0.6) should be [24px 16px\]]
expected: FAIL
[CSS Animations: property <perspective-origin> from [inherit\] to [20px 20px\] at (1) should be [20px 20px\]]
expected: FAIL
[CSS Transitions: property <perspective-origin> from [inherit\] to [20px 20px\] at (0.3) should be [27px 13px\]]
expected: FAIL
[Web Animations: property <perspective-origin> from [0% 50%\] to [100% 150%\] at (0.6) should be [60% 110%\]]
expected: FAIL
@ -56,33 +38,15 @@
[CSS Transitions with transition: all: property <perspective-origin> from [0% 50%\] to [100% 150%\] at (-0.3) should be [-30% 20%\]]
expected: FAIL
[CSS Animations: property <perspective-origin> from neutral to [20px 20px\] at (1) should be [20px 20px\]]
expected: FAIL
[CSS Transitions: property <perspective-origin> from [0% 50%\] to [100% 150%\] at (0.3) should be [30% 80%\]]
expected: FAIL
[CSS Transitions: property <perspective-origin> from neutral to [20px 20px\] at (0.3) should be [13px 27px\]]
expected: FAIL
[Web Animations: property <perspective-origin> from [unset\] to [20px 20px\] at (-0.3) should be [26.5px 26.5px\]]
expected: FAIL
[CSS Animations: property <perspective-origin> from [0% 50%\] to [100% 150%\] at (1.5) should be [150% 200%\]]
expected: FAIL
[CSS Transitions: property <perspective-origin> from [unset\] to [20px 20px\] at (-0.3) should be [26.5px 26.5px\]]
expected: FAIL
[CSS Transitions: property <perspective-origin> from [inherit\] to [20px 20px\] at (-0.3) should be [33px 7px\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective-origin> from [inherit\] to [20px 20px\] at (0.3) should be [27px 13px\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective-origin> from neutral to [20px 20px\] at (0.6) should be [16px 24px\]]
expected: FAIL
[CSS Animations: property <perspective-origin> from [inherit\] to [20px 20px\] at (0.3) should be [27px 13px\]]
expected: FAIL
@ -98,9 +62,6 @@
[CSS Transitions: property <perspective-origin> from [unset\] to [20px 20px\] at (0) should be [25px 25px\]]
expected: FAIL
[CSS Animations: property <perspective-origin> from neutral to [20px 20px\] at (0.3) should be [13px 27px\]]
expected: FAIL
[CSS Animations: property <perspective-origin> from [inherit\] to [20px 20px\] at (0.6) should be [24px 16px\]]
expected: FAIL
@ -125,9 +86,6 @@
[CSS Transitions: property <perspective-origin> from [unset\] to [20px 20px\] at (0.3) should be [23.5px 23.5px\]]
expected: FAIL
[CSS Transitions: property <perspective-origin> from neutral to [20px 20px\] at (0.6) should be [16px 24px\]]
expected: FAIL
[CSS Animations: property <perspective-origin> from [unset\] to [20px 20px\] at (1.5) should be [17.5px 17.5px\]]
expected: FAIL
@ -140,18 +98,12 @@
[CSS Transitions: property <perspective-origin> from [0% 50%\] to [100% 150%\] at (1.5) should be [150% 200%\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective-origin> from neutral to [20px 20px\] at (-0.3) should be [7px 33px\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective-origin> from [0% 50%\] to [100% 150%\] at (0.3) should be [30% 80%\]]
expected: FAIL
[Web Animations: property <perspective-origin> from neutral to [20px 20px\] at (0.6) should be [16px 24px\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective-origin> from [inherit\] to [20px 20px\] at (-0.3) should be [33px 7px\]]
expected: FAIL
[Web Animations: property <perspective-origin> from [0% 50%\] to [100% 150%\] at (0) should be [0% 50%\]]
expected: FAIL
@ -170,9 +122,6 @@
[Web Animations: property <perspective-origin> from [unset\] to [20px 20px\] at (0.6) should be [22px 22px\]]
expected: FAIL
[CSS Transitions: property <perspective-origin> from [inherit\] to [20px 20px\] at (0.6) should be [24px 16px\]]
expected: FAIL
[Web Animations: property <perspective-origin> from [0% 50%\] to [100% 150%\] at (0.3) should be [30% 80%\]]
expected: FAIL
@ -191,9 +140,6 @@
[Web Animations: property <perspective-origin> from [unset\] to [20px 20px\] at (0) should be [25px 25px\]]
expected: FAIL
[CSS Transitions: property <perspective-origin> from [inherit\] to [20px 20px\] at (1.5) should be [15px 25px\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective-origin> from [initial\] to [20px 20px\] at (1) should be [20px 20px\]]
expected: FAIL
@ -218,15 +164,6 @@
[Web Animations: property <perspective-origin> from [initial\] to [20px 20px\] at (0.6) should be [22px 22px\]]
expected: FAIL
[CSS Animations: property <perspective-origin> from [0% 50%\] to [100% 150%\] at (-0.3) should be [-30% 20%\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective-origin> from neutral to [20px 20px\] at (0.3) should be [13px 27px\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective-origin> from [inherit\] to [20px 20px\] at (1.5) should be [15px 25px\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective-origin> from [unset\] to [20px 20px\] at (1.5) should be [17.5px 17.5px\]]
expected: FAIL
@ -245,15 +182,9 @@
[CSS Transitions: property <perspective-origin> from [initial\] to [20px 20px\] at (-0.3) should be [26.5px 26.5px\]]
expected: FAIL
[CSS Animations: property <perspective-origin> from neutral to [20px 20px\] at (1.5) should be [25px 15px\]]
expected: FAIL
[CSS Transitions: property <perspective-origin> from [unset\] to [20px 20px\] at (1) should be [20px 20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective-origin> from neutral to [20px 20px\] at (1.5) should be [25px 15px\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective-origin> from [0% 50%\] to [100% 150%\] at (0.6) should be [60% 110%\]]
expected: FAIL
@ -281,9 +212,6 @@
[Web Animations: property <perspective-origin> from [unset\] to [20px 20px\] at (0.3) should be [23.5px 23.5px\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective-origin> from [0% 50%\] to [100% 150%\] at (1.5) should be [150% 200%\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective-origin> from [unset\] to [20px 20px\] at (1) should be [20px 20px\]]
expected: FAIL
@ -296,30 +224,15 @@
[CSS Transitions: property <perspective-origin> from [initial\] to [20px 20px\] at (1) should be [20px 20px\]]
expected: FAIL
[CSS Transitions: property <perspective-origin> from neutral to [20px 20px\] at (-0.3) should be [7px 33px\]]
expected: FAIL
[CSS Animations: property <perspective-origin> from neutral to [20px 20px\] at (-0.3) should be [7px 33px\]]
expected: FAIL
[CSS Transitions with transition: all: property <perspective-origin> from [unset\] to [20px 20px\] at (0) should be [25px 25px\]]
expected: FAIL
[Web Animations: property <perspective-origin> from neutral to [20px 20px\] at (-0.3) should be [7px 33px\]]
expected: FAIL
[CSS Animations: property <perspective-origin> from [0% 50%\] to [100% 150%\] at (0.3) should be [30% 80%\]]
expected: FAIL
[CSS Animations: property <perspective-origin> from [0% 50%\] to [100% 150%\] at (0) should be [0% 50%\]]
expected: FAIL
[Web Animations: property <perspective-origin> from neutral to [20px 20px\] at (0) should be [10px 30px\]]
expected: FAIL
[CSS Transitions: property <perspective-origin> from neutral to [20px 20px\] at (1.5) should be [25px 15px\]]
expected: FAIL
[CSS Transitions: property <perspective-origin> from [initial\] to [20px 20px\] at (0.3) should be [23.5px 23.5px\]]
expected: FAIL

View file

@ -80,45 +80,21 @@
[Web Animations: property <rotate> from [0 1 0 0deg\] to [1 0 0 450deg\] at (2) should be [1 0 0 900deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [1 1 0 90deg\] to [0 1 1 135deg\] at (-1) should be [0.67 -0.06 -0.74 124.97deg\]]
expected: FAIL
[Web Animations: property <rotate> from [0 1 0 100deg\] to [0 1 0 -100deg\] at (0.25) should be [0 1 0 50deg\]]
expected: FAIL
[Web Animations: property <rotate> from [1 0 0 450deg\] to [0 1 0 0deg\] at (2) should be [1 0 0 -450deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [100deg\] to [180deg\] at (2) should be [260deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [1 0 0 0deg\] to [0 1 0 10deg\] at (-1) should be [0 1 0 -10deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [0 1 0 100deg\] to [0 1 0 -100deg\] at (0.25) should be [0 1 0 50deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [none\] to [30deg\] at (0.25) should be [7.5deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [none\] to [7 -8 9 400grad\] at (0.125) should be [0.5 -0.57 0.65 50grad\]]
expected: FAIL
[CSS Animations: property <rotate> from [1 0 0 450deg\] to [0 1 0 0deg\] at (1) should be [1 0 0 0deg\]]
expected: FAIL
[Web Animations: property <rotate> from [inherit\] to [270deg\] at (-1) should be [-90deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [100deg\] to [180deg\] at (-1) should be [20deg\]]
expected: FAIL
[Web Animations: property <rotate> from [45deg\] to [-1 1 0 60deg\] at (0.875) should be [-0.70246 0.70246 0.114452 53.1994deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [1 1 0 90deg\] to [0 1 1 135deg\] at (0.75) should be [0.17 0.78 0.61 118.68deg\]]
expected: FAIL
[Web Animations: property <rotate> from [1 -2.5 3.64 100deg\] to [1 -2.5 3.64 -100deg\] at (-1) should be [0.22 -0.55 0.8 300deg\]]
expected: FAIL
@ -128,33 +104,18 @@
[CSS Transitions with transition: all: property <rotate> from [0 1 0 100deg\] to [0 1 0 -100deg\] at (0.25) should be [0 1 0 50deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [0 1 0 100deg\] to [0 1 0 -100deg\] at (2) should be [0 1 0 -300deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [none\] to [none\] at (0) should be [none\]]
expected: FAIL
[CSS Animations: property <rotate> from [0 1 0 0deg\] to [1 0 0 450deg\] at (0) should be [1 0 0 0deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [none\] to [none\] at (2) should be [none\]]
expected: FAIL
[CSS Transitions: property <rotate> from [none\] to [7 -8 9 400grad\] at (-1) should be [0.5 -0.57 0.65 -400grad\]]
expected: FAIL
[CSS Animations: property <rotate> from [45deg\] to [-1 1 0 60deg\] at (-1) should be [0.447214 -0.447214 0.774597 104.478deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [none\] to [7 -8 9 400grad\] at (0) should be [0.5 -0.57 0.65 0deg\]]
expected: FAIL
[Web Animations: property <rotate> from neutral to [30deg\] at (1) should be [30deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [1 0 0 0deg\] to [0 1 0 10deg\] at (0) should be [0 1 0 0deg\]]
expected: FAIL
[Web Animations: property <rotate> from [inherit\] to [270deg\] at (0) should be [90deg\]]
expected: FAIL
@ -176,21 +137,6 @@
[Web Animations: property <rotate> from [inherit\] to [270deg\] at (0.25) should be [135deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [45deg\] to [-1 1 0 60deg\] at (0.875) should be [-0.70246 0.70246 0.114452 53.1994deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [0 1 0 100deg\] to [0 1 0 -100deg\] at (-1) should be [0 1 0 300deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from neutral to [30deg\] at (0.75) should be [25deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [100deg\] to [180deg\] at (0.875) should be [170deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [1 1 0 90deg\] to [0 1 1 135deg\] at (2) should be [-0.52 0.29 0.81 208.96deg\]]
expected: FAIL
[Web Animations: property <rotate> from [inherit\] to [270deg\] at (0.75) should be [225deg\]]
expected: FAIL
@ -209,27 +155,9 @@
[CSS Transitions with transition: all: property <rotate> from [1 -2.5 3.64 100deg\] to [1 -2.5 3.64 -100deg\] at (0.75) should be [0.22 -0.55 0.8 -50deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [100deg\] to [180deg\] at (1) should be [180deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [none\] to [7 -8 9 400grad\] at (0.125) should be [0.5 -0.57 0.65 50grad\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [unset\] to [30deg\] at (0.25) should be [7.5deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [45deg\] to [-1 1 0 60deg\] at (0.125) should be [-0.136456 0.136456 0.981203 40.6037deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [100deg\] to [-100deg\] at (2) should be [-300deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [none\] to [7 -8 9 400grad\] at (0.125) should be [0.5 -0.57 0.65 50grad\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [45deg\] to [-1 1 0 60deg\] at (0.875) should be [-0.70246 0.70246 0.114452 53.1994deg\]]
expected: FAIL
[Web Animations: property <rotate> from [1 -2.5 3.64 100deg\] to [1 -2.5 3.64 -100deg\] at (0.75) should be [0.22 -0.55 0.8 -50deg\]]
expected: FAIL
@ -248,24 +176,12 @@
[CSS Transitions with transition: all: property <rotate> from [0 1 0 0deg\] to [1 0 0 450deg\] at (-1) should be [1 0 0 -450deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [1 1 0 90deg\] to [0 1 1 135deg\] at (2) should be [-0.52 0.29 0.81 208.96deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from neutral to [30deg\] at (-1) should be [-10deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [100deg\] to [180deg\] at (0.875) should be [170deg\]]
expected: FAIL
[Web Animations: property <rotate> from [1 -2.5 3.64 100deg\] to [1 -2.5 3.64 -100deg\] at (0) should be [0.22 -0.55 0.8 100deg\]]
expected: FAIL
[Web Animations: property <rotate> from [100deg\] to [-100deg\] at (0.25) should be [50deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [1 0 0 0deg\] to [0 1 0 10deg\] at (0.75) should be [0 1 0 7.5deg\]]
expected: FAIL
[Web Animations: property <rotate> from neutral to [30deg\] at (-1) should be [-10deg\]]
expected: FAIL
@ -275,75 +191,30 @@
[CSS Transitions with transition: all: property <rotate> from [100deg\] to [180deg\] at (-1) should be [20deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [unset\] to [30deg\] at (0.25) should be [7.5deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [1 1 0 90deg\] to [0 1 1 135deg\] at (0.25) should be [0.54 0.8 0.26 94.83deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [1 0 0 450deg\] to [0 1 0 0deg\] at (2) should be [1 0 0 -450deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from neutral to [30deg\] at (2) should be [50deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [0 1 0 0deg\] to [1 0 0 450deg\] at (-1) should be [1 0 0 -450deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [1 0 0 0deg\] to [0 1 0 10deg\] at (0.75) should be [0 1 0 7.5deg\]]
expected: FAIL
[Web Animations: property <rotate> from [100deg\] to [180deg\] at (0) should be [100deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [100deg\] to [180deg\] at (0) should be [100deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [none\] to [none\] at (0.125) should be [none\]]
expected: FAIL
[CSS Animations: property <rotate> from [45deg\] to [-1 1 0 60deg\] at (0.875) should be [-0.70246 0.70246 0.114452 53.1994deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [none\] to [none\] at (1) should be [none\]]
expected: FAIL
[CSS Animations: property <rotate> from [45deg\] to [-1 1 0 60deg\] at (1) should be [-0.71 0.71 0 60deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [1 -2.5 3.64 100deg\] to [1 -2.5 3.64 -100deg\] at (2) should be [0.22 -0.55 0.8 -300deg\]]
expected: FAIL
[Web Animations: property <rotate> from [none\] to [7 -8 9 400grad\] at (-1) should be [0.5 -0.57 0.65 -400grad\]]
expected: FAIL
[CSS Transitions: property <rotate> from [1 1 0 90deg\] to [0 1 1 135deg\] at (0.25) should be [0.54 0.8 0.26 94.83deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [unset\] to [30deg\] at (2) should be [60deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [100deg\] to [180deg\] at (2) should be [260deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [45deg\] to [-1 1 0 60deg\] at (-1) should be [0.447214 -0.447214 0.774597 104.478deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [0 1 0 0deg\] to [1 0 0 450deg\] at (0.25) should be [1 0 0 112.5deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [unset\] to [30deg\] at (2) should be [60deg\]]
expected: FAIL
[Web Animations: property <rotate> from [45deg\] to [-1 1 0 60deg\] at (2) should be [-0.637897 0.637897 -0.431479 124.975deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [1 1 0 90deg\] to [0 1 1 135deg\] at (0) should be [0.71 0.71 0 90deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [1 -2.5 3.64 100deg\] to [1 -2.5 3.64 -100deg\] at (0.25) should be [0.22 -0.55 0.8 50deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [0 1 0 100deg\] to [0 1 0 -100deg\] at (-1) should be [0 1 0 300deg\]]
expected: FAIL
@ -371,9 +242,6 @@
[Web Animations: property <rotate> from [100deg\] to [-100deg\] at (1) should be [-100deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [none\] to [7 -8 9 400grad\] at (-1) should be [0.5 -0.57 0.65 -400grad\]]
expected: FAIL
[Web Animations: property <rotate> from [none\] to [30deg\] at (0.75) should be [22.5deg\]]
expected: FAIL
@ -383,15 +251,9 @@
[Web Animations: property <rotate> from [none\] to [7 -8 9 400grad\] at (0) should be [0.5 -0.57 0.65 0deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [unset\] to [30deg\] at (-1) should be [-30deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [1 -2.5 3.64 100deg\] to [1 -2.5 3.64 -100deg\] at (-1) should be [0.22 -0.55 0.8 300deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [1 1 0 90deg\] to [0 1 1 135deg\] at (-1) should be [0.67 -0.06 -0.74 124.97deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [inherit\] to [270deg\] at (-1) should be [-90deg\]]
expected: FAIL
@ -401,9 +263,6 @@
[Web Animations: property <rotate> from [0 1 0 100deg\] to [0 1 0 -100deg\] at (0) should be [0 1 0 100deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [1 0 0 450deg\] to [0 1 0 0deg\] at (2) should be [1 0 0 -450deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [100deg\] to [180deg\] at (-1) should be [20deg\]]
expected: FAIL
@ -413,9 +272,6 @@
[Web Animations: property <rotate> from [0 1 0 0deg\] to [1 0 0 450deg\] at (0) should be [1 0 0 0deg\]]
expected: FAIL
[CSS Animations: property <rotate> from neutral to [30deg\] at (2) should be [50deg\]]
expected: FAIL
[Web Animations: property <rotate> from [1 1 0 90deg\] to [0 1 1 135deg\] at (0.25) should be [0.54 0.8 0.26 94.83deg\]]
expected: FAIL
@ -452,18 +308,9 @@
[Web Animations: property <rotate> from [1 -2.5 3.64 100deg\] to [1 -2.5 3.64 -100deg\] at (0.25) should be [0.22 -0.55 0.8 50deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [45deg\] to [-1 1 0 60deg\] at (0) should be [z 45deg\]]
expected: FAIL
[Web Animations: property <rotate> from [none\] to [none\] at (2) should be [none\]]
expected: FAIL
[CSS Animations: property <rotate> from [none\] to [30deg\] at (1) should be [30deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [none\] to [7 -8 9 400grad\] at (0.875) should be [0.5 -0.57 0.65 350grad\]]
expected: FAIL
[Web Animations: property <rotate> from [1 0 0 0deg\] to [0 1 0 10deg\] at (1) should be [0 1 0 10deg\]]
expected: FAIL
@ -473,54 +320,18 @@
[CSS Transitions with transition: all: property <rotate> from [inherit\] to [270deg\] at (0.25) should be [135deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [none\] to [30deg\] at (2) should be [60deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [45deg\] to [-1 1 0 60deg\] at (0.125) should be [-0.136456 0.136456 0.981203 40.6037deg\]]
expected: FAIL
[Web Animations: property <rotate> from [none\] to [none\] at (1) should be [none\]]
expected: FAIL
[CSS Animations: property <rotate> from [100deg\] to [-100deg\] at (-1) should be [300deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [unset\] to [30deg\] at (0.25) should be [7.5deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from neutral to [30deg\] at (0.25) should be [15deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [1 -2.5 3.64 100deg\] to [1 -2.5 3.64 -100deg\] at (0) should be [0.22 -0.55 0.8 100deg\]]
expected: FAIL
[Web Animations: property <rotate> from [45deg\] to [-1 1 0 60deg\] at (0.125) should be [-0.136456 0.136456 0.981203 40.6037deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from neutral to [30deg\] at (0.75) should be [25deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [none\] to [30deg\] at (2) should be [60deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [none\] to [7 -8 9 400grad\] at (0.875) should be [0.5 -0.57 0.65 350grad\]]
expected: FAIL
[CSS Animations: property <rotate> from [0 1 0 0deg\] to [1 0 0 450deg\] at (2) should be [1 0 0 900deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [1 1 0 90deg\] to [0 1 1 135deg\] at (0.75) should be [0.17 0.78 0.61 118.68deg\]]
expected: FAIL
[CSS Animations: property <rotate> from neutral to [30deg\] at (-1) should be [-10deg\]]
expected: FAIL
[Web Animations: property <rotate> from [none\] to [none\] at (0.875) should be [none\]]
expected: FAIL
[CSS Animations: property <rotate> from [none\] to [30deg\] at (0) should be [0deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [100deg\] to [-100deg\] at (0.25) should be [50deg\]]
expected: FAIL
@ -542,66 +353,27 @@
[CSS Animations: property <rotate> from [none\] to [none\] at (0.875) should be [none\]]
expected: FAIL
[CSS Animations: property <rotate> from [unset\] to [30deg\] at (0.75) should be [22.5deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [1 0 0 450deg\] to [0 1 0 0deg\] at (0.25) should be [1 0 0 337.5deg\]]
expected: FAIL
[Web Animations: property <rotate> from [unset\] to [30deg\] at (2) should be [60deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [none\] to [30deg\] at (0.25) should be [7.5deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [100deg\] to [180deg\] at (0.125) should be [110deg\]]
expected: FAIL
[Web Animations: property <rotate> from [none\] to [7 -8 9 400grad\] at (1) should be [0.5 -0.57 0.65 400grad\]]
expected: FAIL
[CSS Transitions: property <rotate> from [1 0 0 450deg\] to [0 1 0 0deg\] at (0.25) should be [1 0 0 337.5deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [45deg\] to [-1 1 0 60deg\] at (0.125) should be [-0.136456 0.136456 0.981203 40.6037deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [100deg\] to [-100deg\] at (1) should be [-100deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [1 -2.5 3.64 100deg\] to [1 -2.5 3.64 -100deg\] at (2) should be [0.22 -0.55 0.8 -300deg\]]
expected: FAIL
[Web Animations: property <rotate> from [1 0 0 450deg\] to [0 1 0 0deg\] at (0.75) should be [1 0 0 112.5deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [none\] to [30deg\] at (2) should be [60deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [inherit\] to [270deg\] at (0.75) should be [225deg\]]
expected: FAIL
[CSS Animations: property <rotate> from neutral to [30deg\] at (0.25) should be [15deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [1 0 0 0deg\] to [0 1 0 10deg\] at (0.25) should be [0 1 0 2.5deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [unset\] to [30deg\] at (1) should be [30deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [1 0 0 0deg\] to [0 1 0 10deg\] at (0.25) should be [0 1 0 2.5deg\]]
expected: FAIL
[Web Animations: property <rotate> from [100deg\] to [180deg\] at (0.125) should be [110deg\]]
expected: FAIL
[Web Animations: property <rotate> from [none\] to [none\] at (-1) should be [none\]]
expected: FAIL
[CSS Animations: property <rotate> from [unset\] to [30deg\] at (-1) should be [-30deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [inherit\] to [270deg\] at (0.25) should be [135deg\]]
expected: FAIL
@ -617,36 +389,15 @@
[Web Animations: property <rotate> from [none\] to [7 -8 9 400grad\] at (0.125) should be [0.5 -0.57 0.65 50grad\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [1 0 0 0deg\] to [0 1 0 10deg\] at (2) should be [0 1 0 20deg\]]
expected: FAIL
[Web Animations: property <rotate> from [unset\] to [30deg\] at (0.75) should be [22.5deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [0 1 0 100deg\] to [0 1 0 -100deg\] at (1) should be [0 1 0 -100deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [1 -2.5 3.64 100deg\] to [1 -2.5 3.64 -100deg\] at (0.25) should be [0.22 -0.55 0.8 50deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [100deg\] to [-100deg\] at (0.75) should be [-50deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [unset\] to [30deg\] at (-1) should be [-30deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [0 1 0 100deg\] to [0 1 0 -100deg\] at (2) should be [0 1 0 -300deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [100deg\] to [180deg\] at (2) should be [260deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [none\] to [30deg\] at (-1) should be [-30deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [unset\] to [30deg\] at (0) should be [0deg\]]
expected: FAIL
[Web Animations: property <rotate> from [1 0 0 0deg\] to [0 1 0 10deg\] at (0.75) should be [0 1 0 7.5deg\]]
expected: FAIL
@ -662,18 +413,6 @@
[Web Animations: property <rotate> from [1 0 0 450deg\] to [0 1 0 0deg\] at (0) should be [1 0 0 450deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [100deg\] to [180deg\] at (0.125) should be [110deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [1 0 0 0deg\] to [0 1 0 10deg\] at (-1) should be [0 1 0 -10deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [none\] to [7 -8 9 400grad\] at (2) should be [0.5 -0.57 0.65 800grad\]]
expected: FAIL
[CSS Animations: property <rotate> from neutral to [30deg\] at (0.75) should be [25deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [inherit\] to [270deg\] at (0.75) should be [225deg\]]
expected: FAIL
@ -695,30 +434,18 @@
[Web Animations: property <rotate> from [100deg\] to [-100deg\] at (-1) should be [300deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [inherit\] to [270deg\] at (1) should be [270deg\]]
expected: FAIL
[Web Animations: property <rotate> from [inherit\] to [270deg\] at (1) should be [270deg\]]
expected: FAIL
[Web Animations: property <rotate> from [unset\] to [30deg\] at (-1) should be [-30deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [1 0 0 0deg\] to [0 1 0 10deg\] at (2) should be [0 1 0 20deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [1 0 0 450deg\] to [0 1 0 0deg\] at (0) should be [1 0 0 450deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [1 -2.5 3.64 100deg\] to [1 -2.5 3.64 -100deg\] at (-1) should be [0.22 -0.55 0.8 300deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [1 0 0 450deg\] to [0 1 0 0deg\] at (0.25) should be [1 0 0 337.5deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [1 1 0 90deg\] to [0 1 1 135deg\] at (-1) should be [0.67 -0.06 -0.74 124.97deg\]]
expected: FAIL
[Web Animations: property <rotate> from [1 -2.5 3.64 100deg\] to [1 -2.5 3.64 -100deg\] at (2) should be [0.22 -0.55 0.8 -300deg\]]
expected: FAIL
@ -737,99 +464,30 @@
[Web Animations: property <rotate> from [0 1 0 100deg\] to [0 1 0 -100deg\] at (-1) should be [0 1 0 300deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [none\] to [30deg\] at (0.75) should be [22.5deg\]]
expected: FAIL
[Web Animations: property <rotate> from [1 1 0 90deg\] to [0 1 1 135deg\] at (1) should be [0 0.71 0.71 135deg\]]
expected: FAIL
[Web Animations: property <rotate> from [unset\] to [30deg\] at (0.25) should be [7.5deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [1 1 0 90deg\] to [0 1 1 135deg\] at (1) should be [0 0.71 0.71 135deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [none\] to [30deg\] at (-1) should be [-30deg\]]
expected: FAIL
[Web Animations: property <rotate> from [100deg\] to [180deg\] at (-1) should be [20deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from neutral to [30deg\] at (-1) should be [-10deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [unset\] to [30deg\] at (0.75) should be [22.5deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from neutral to [30deg\] at (0.25) should be [15deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [0 1 0 0deg\] to [1 0 0 450deg\] at (0.75) should be [1 0 0 337.5deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [none\] to [7 -8 9 400grad\] at (1) should be [0.5 -0.57 0.65 400grad\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [1 0 0 0deg\] to [0 1 0 10deg\] at (-1) should be [0 1 0 -10deg\]]
expected: FAIL
[Web Animations: property <rotate> from neutral to [30deg\] at (0.75) should be [25deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [100deg\] to [180deg\] at (0.875) should be [170deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [0 1 0 0deg\] to [1 0 0 450deg\] at (1) should be [1 0 0 450deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [1 0 0 450deg\] to [0 1 0 0deg\] at (1) should be [1 0 0 0deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [45deg\] to [-1 1 0 60deg\] at (2) should be [-0.637897 0.637897 -0.431479 124.975deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [100deg\] to [180deg\] at (0.125) should be [110deg\]]
expected: FAIL
[Web Animations: property <rotate> from neutral to [30deg\] at (0) should be [10deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [100deg\] to [-100deg\] at (0.25) should be [50deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [1 -2.5 3.64 100deg\] to [1 -2.5 3.64 -100deg\] at (0.75) should be [0.22 -0.55 0.8 -50deg\]]
expected: FAIL
[CSS Animations: property <rotate> from neutral to [30deg\] at (1) should be [30deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [1 0 0 0deg\] to [0 1 0 10deg\] at (2) should be [0 1 0 20deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [0 1 0 0deg\] to [1 0 0 450deg\] at (2) should be [1 0 0 900deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [none\] to [30deg\] at (0.75) should be [22.5deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [unset\] to [30deg\] at (0.75) should be [22.5deg\]]
expected: FAIL
[Web Animations: property <rotate> from [100deg\] to [-100deg\] at (0) should be [100deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [1 0 0 0deg\] to [0 1 0 10deg\] at (1) should be [0 1 0 10deg\]]
expected: FAIL
[Web Animations: property <rotate> from [0 1 0 0deg\] to [1 0 0 450deg\] at (-1) should be [1 0 0 -450deg\]]
expected: FAIL
[Web Animations: property <rotate> from [0 1 0 100deg\] to [0 1 0 -100deg\] at (2) should be [0 1 0 -300deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [100deg\] to [-100deg\] at (2) should be [-300deg\]]
expected: FAIL
[Web Animations: property <rotate> from neutral to [30deg\] at (2) should be [50deg\]]
expected: FAIL
@ -839,18 +497,12 @@
[Web Animations: property <rotate> from [none\] to [none\] at (0.125) should be [none\]]
expected: FAIL
[CSS Animations: property <rotate> from [0 1 0 100deg\] to [0 1 0 -100deg\] at (0.75) should be [0 1 0 -50deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [none\] to [7 -8 9 400grad\] at (2) should be [0.5 -0.57 0.65 800grad\]]
expected: FAIL
[Web Animations: property <rotate> from [1 1 0 90deg\] to [0 1 1 135deg\] at (0) should be [0.71 0.71 0 90deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [none\] to [30deg\] at (-1) should be [-30deg\]]
expected: FAIL
[Web Animations: property <rotate> from [1 0 0 450deg\] to [0 1 0 0deg\] at (1) should be [1 0 0 0deg\]]
expected: FAIL
@ -860,96 +512,54 @@
[CSS Transitions: property <rotate> from [100deg\] to [-100deg\] at (-1) should be [300deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [1 0 0 450deg\] to [0 1 0 0deg\] at (0.75) should be [1 0 0 112.5deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [0 1 0 100deg\] to [0 1 0 -100deg\] at (2) should be [0 1 0 -300deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [1 1 0 90deg\] to [0 1 1 135deg\] at (2) should be [-0.52 0.29 0.81 208.96deg\]]
expected: FAIL
[Web Animations: property <rotate> from [100deg\] to [180deg\] at (0.875) should be [170deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [none\] to [none\] at (-1) should be [none\]]
expected: FAIL
[CSS Animations: property <rotate> from [1 -2.5 3.64 100deg\] to [1 -2.5 3.64 -100deg\] at (-1) should be [0.22 -0.55 0.8 300deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [none\] to [30deg\] at (0.25) should be [7.5deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [0 1 0 100deg\] to [0 1 0 -100deg\] at (0) should be [0 1 0 100deg\]]
expected: FAIL
[Web Animations: property <rotate> from [100deg\] to [180deg\] at (1) should be [180deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [1 -2.5 3.64 100deg\] to [1 -2.5 3.64 -100deg\] at (1) should be [0.22 -0.55 0.8 -100deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [1 1 0 90deg\] to [0 1 1 135deg\] at (0.75) should be [0.17 0.78 0.61 118.68deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [100deg\] to [-100deg\] at (0.75) should be [-50deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [1 1 0 90deg\] to [0 1 1 135deg\] at (0.25) should be [0.54 0.8 0.26 94.83deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [inherit\] to [270deg\] at (0) should be [90deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [100deg\] to [-100deg\] at (0) should be [100deg\]]
expected: FAIL
[Web Animations: property <rotate> from [100deg\] to [180deg\] at (2) should be [260deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [unset\] to [30deg\] at (2) should be [60deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [none\] to [30deg\] at (0.75) should be [22.5deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [inherit\] to [270deg\] at (-1) should be [-90deg\]]
expected: FAIL
[Web Animations: property <rotate> from [inherit\] to [270deg\] at (2) should be [450deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from neutral to [30deg\] at (2) should be [50deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [1 0 0 0deg\] to [0 1 0 10deg\] at (0.75) should be [0 1 0 7.5deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [1 0 0 0deg\] to [0 1 0 10deg\] at (0.25) should be [0 1 0 2.5deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [45deg\] to [-1 1 0 60deg\] at (2) should be [-0.637897 0.637897 -0.431479 124.975deg\]]
expected: FAIL
[CSS Transitions with transition: all: property <rotate> from [inherit\] to [270deg\] at (2) should be [450deg\]]
expected: FAIL
[Web Animations: property <rotate> from [1 1 0 90deg\] to [0 1 1 135deg\] at (0.75) should be [0.17 0.78 0.61 118.68deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [0 1 0 0deg\] to [1 0 0 450deg\] at (0.25) should be [1 0 0 112.5deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [none\] to [7 -8 9 400grad\] at (2) should be [0.5 -0.57 0.65 800grad\]]
expected: FAIL
[Web Animations: property <rotate> from [1 -2.5 3.64 100deg\] to [1 -2.5 3.64 -100deg\] at (1) should be [0.22 -0.55 0.8 -100deg\]]
expected: FAIL
[CSS Animations: property <rotate> from [1 0 0 450deg\] to [0 1 0 0deg\] at (-1) should be [1 0 0 900deg\]]
[CSS Transitions with transition: all: property <rotate> from [100deg\] to [180deg\] at (0.875) should be [170deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [1 0 0 450deg\] to [0 1 0 0deg\] at (1) should be [1 0 0 0deg\]]
[CSS Transitions with transition: all: property <rotate> from [100deg\] to [180deg\] at (0.125) should be [110deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [100deg\] to [180deg\] at (2) should be [260deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [100deg\] to [180deg\] at (0.125) should be [110deg\]]
expected: FAIL
[CSS Transitions: property <rotate> from [100deg\] to [180deg\] at (0.875) should be [170deg\]]
expected: FAIL

View file

@ -92,99 +92,33 @@
[scale interpolation]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [26 17 9\] to [2 1\] at (0.875) should be [5 3 2\]]
expected: FAIL
[CSS Transitions: property <scale> from [2 30 400\] to [10 110 1200\] at (2) should be [18 190 2000\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [none\] to [4 3 2\] at (2) should be [7 5 3\]]
expected: FAIL
[CSS Animations: property <scale> from [26 17 9\] to [2 1\] at (-1) should be [50 33 17\]]
expected: FAIL
[CSS Animations: property <scale> from [2 0.5 1\] to [inherit\] at (0.25) should be [1.625 0.625 1.25\]]
expected: FAIL
[CSS Animations: property <scale> from [inherit\] to [2 0.5 1\] at (1) should be [2 0.5\]]
expected: FAIL
[CSS Animations: property <scale> from [inherit\] to [initial\] at (0) should be [0.5 1 2\]]
expected: FAIL
[CSS Animations: property <scale> from [-10 5 1\] to [1\] at (-1) should be [-21 9\]]
expected: FAIL
[Web Animations: property <scale> from [1\] to [10 -5 0\] at (0.25) should be [3.25 -0.5 0.75\]]
expected: FAIL
[CSS Transitions: property <scale> from [inherit\] to [initial\] at (0.25) should be [0.625 1 1.75\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from neutral to [1.5 1\] at (0.75) should be [1.4 1\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [inherit\] to [initial\] at (0.75) should be [0.875 1 1.25\]]
expected: FAIL
[CSS Animations: property <scale> from [2 0.5 1\] to [inherit\] at (0.75) should be [0.875 0.875 1.75\]]
expected: FAIL
[CSS Animations: property <scale> from [2 30 400\] to [10 110 1200\] at (1) should be [10 110 1200\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [1\] to [10 -5 0\] at (0.75) should be [7.75 -3.5 0.25\]]
expected: FAIL
[Web Animations: property <scale> from [inherit\] to [initial\] at (0.75) should be [0.875 1 1.25\]]
expected: FAIL
[CSS Animations: property <scale> from [26 17 9\] to [2 1\] at (2) should be [-22 -15 -7\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [1\] to [10 -5 0\] at (2) should be [19 -11 -1\]]
expected: FAIL
[CSS Animations: property <scale> from [unset\] to [1.5 1\] at (-1) should be [0.5 1\]]
expected: FAIL
[CSS Animations: property <scale> from [26 17 9\] to [2 1\] at (1) should be [2 1\]]
expected: FAIL
[CSS Transitions: property <scale> from [1\] to [10 -5 0\] at (-1) should be [-8 7 2\]]
expected: FAIL
[Web Animations: property <scale> from [none\] to [none\] at (-1) should be [none\]]
expected: FAIL
[CSS Animations: property <scale> from neutral to [1.5 1\] at (2) should be [1.9 1\]]
expected: FAIL
[CSS Transitions: property <scale> from [-10 5 1\] to [1\] at (0.75) should be [-1.75 2\]]
expected: FAIL
[CSS Transitions: property <scale> from [-10 5\] to [10 -5\] at (2) should be [30 -15\]]
expected: FAIL
[CSS Animations: property <scale> from [2 0.5 1\] to [initial\] at (0) should be [2 0.5\]]
expected: FAIL
[Web Animations: property <scale> from [1\] to [10 -5 0\] at (0) should be [1\]]
expected: FAIL
[CSS Transitions: property <scale> from [none\] to [4 3 2\] at (0.125) should be [1.375 1.25 1.125\]]
expected: FAIL
[CSS Transitions: property <scale> from [2 0.5 1\] to [inherit\] at (0.25) should be [1.625 0.625 1.25\]]
expected: FAIL
[CSS Animations: property <scale> from [1\] to [10 -5 0\] at (1) should be [10 -5 0\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [-10 5\] to [10 -5\] at (2) should be [30 -15\]]
expected: FAIL
[Web Animations: property <scale> from [none\] to [4 3 2\] at (2) should be [7 5 3\]]
expected: FAIL
@ -194,15 +128,6 @@
[CSS Transitions with transition: all: property <scale> from [2 30 400\] to [10 110 1200\] at (-1) should be [-6 -50 -400\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [-10 5 1\] to [1\] at (-1) should be [-21 9\]]
expected: FAIL
[CSS Animations: property <scale> from [2 30 400\] to [10 110 1200\] at (0) should be [2 30 400\]]
expected: FAIL
[CSS Transitions: property <scale> from [2 0.5 1\] to [inherit\] at (2) should be [-1 1.5 3\]]
expected: FAIL
[CSS Animations: property <scale> from [none\] to [none\] at (0.875) should be [none\]]
expected: FAIL
@ -221,12 +146,6 @@
[Web Animations: property <scale> from [2 0.5 1\] to [initial\] at (1) should be [1\]]
expected: FAIL
[CSS Animations: property <scale> from [2 0.5 1\] to [initial\] at (-1) should be [3 0\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [-10 5 1\] to [1\] at (2) should be [12 -3\]]
expected: FAIL
[Web Animations: property <scale> from [inherit\] to [2 0.5 1\] at (-1) should be [-1 1.5 3\]]
expected: FAIL
@ -236,144 +155,54 @@
[CSS Transitions: property <scale> from [2 30 400\] to [10 110 1200\] at (0.125) should be [3 40 500\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [-10 5\] to [10 -5\] at (0.75) should be [5 -2.5\]]
expected: FAIL
[Web Animations: property <scale> from [2 30 400\] to [10 110 1200\] at (0) should be [2 30 400\]]
expected: FAIL
[CSS Transitions: property <scale> from [2 0.5 1\] to [initial\] at (0.25) should be [1.75 0.6251\]]
expected: FAIL
[Web Animations: property <scale> from [-10 5\] to [10 -5\] at (1) should be [10 -5\]]
expected: FAIL
[CSS Transitions: property <scale> from [unset\] to [1.5 1\] at (2) should be [2 1\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [none\] to [4 3 2\] at (-1) should be [-2 -1 0\]]
expected: FAIL
[Web Animations: property <scale> from [26 17 9\] to [2 1\] at (0.875) should be [5 3 2\]]
expected: FAIL
[CSS Transitions: property <scale> from [2 0.5 1\] to [inherit\] at (-1) should be [3.5 0 0\]]
expected: FAIL
[CSS Animations: property <scale> from [none\] to [none\] at (-1) should be [none\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [initial\] to [2 0.5 1\] at (2) should be [3 0\]]
expected: FAIL
[CSS Transitions: property <scale> from [-10 5\] to [10 -5\] at (0.75) should be [5 -2.5\]]
expected: FAIL
[CSS Transitions: property <scale> from [inherit\] to [initial\] at (0.75) should be [0.875 1 1.25\]]
expected: FAIL
[Web Animations: property <scale> from [none\] to [4 3 2\] at (1) should be [4 3 2\]]
expected: FAIL
[Web Animations: property <scale> from [2 30 400\] to [10 110 1200\] at (2) should be [18 190 2000\]]
expected: FAIL
[CSS Transitions: property <scale> from [26 17 9\] to [2 1\] at (0.125) should be [23 15 8\]]
expected: FAIL
[CSS Transitions: property <scale> from [unset\] to [1.5 1\] at (0.75) should be [1.375 1\]]
expected: FAIL
[Web Animations: property <scale> from [unset\] to [1.5 1\] at (0.25) should be [1.125 1\]]
expected: FAIL
[Web Animations: property <scale> from [-10 5\] to [10 -5\] at (0) should be [-10 5\]]
expected: FAIL
[CSS Transitions: property <scale> from [-10 5 1\] to [1\] at (0.25) should be [-7.25 4\]]
expected: FAIL
[CSS Transitions: property <scale> from [inherit\] to [initial\] at (-1) should be [0 1 3\]]
expected: FAIL
[CSS Transitions: property <scale> from [26 17 9\] to [2 1\] at (-1) should be [50 33 17\]]
expected: FAIL
[Web Animations: property <scale> from [2 0.5 1\] to [inherit\] at (2) should be [-1 1.5 3\]]
expected: FAIL
[CSS Animations: property <scale> from [none\] to [none\] at (0.125) should be [none\]]
expected: FAIL
[CSS Animations: property <scale> from [initial\] to [2 0.5 1\] at (0) should be [1\]]
expected: FAIL
[CSS Transitions: property <scale> from [initial\] to [inherit\] at (2) should be [0 1 3\]]
expected: FAIL
[CSS Transitions: property <scale> from [1\] to [10 -5 0\] at (2) should be [19 -11 -1\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [-10 5\] to [10 -5\] at (0.25) should be [-5 2.5\]]
expected: FAIL
[CSS Transitions: property <scale> from [inherit\] to [2 0.5 1\] at (2) should be [3.5 0 0\]]
expected: FAIL
[CSS Transitions: property <scale> from [initial\] to [2 0.5 1\] at (2) should be [3 0\]]
expected: FAIL
[Web Animations: property <scale> from [1\] to [10 -5 0\] at (1) should be [10 -5 0\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [2 0.5 1\] to [inherit\] at (0.75) should be [0.875 0.875 1.75\]]
expected: FAIL
[CSS Animations: property <scale> from [-10 5\] to [10 -5\] at (0.75) should be [5 -2.5\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from neutral to [1.5 1\] at (2) should be [1.9 1\]]
expected: FAIL
[CSS Animations: property <scale> from [initial\] to [inherit\] at (1) should be [0.5 1 2\]]
expected: FAIL
[CSS Transitions: property <scale> from neutral to [1.5 1\] at (0.75) should be [1.4 1\]]
expected: FAIL
[Web Animations: property <scale> from [2 30 400\] to [10 110 1200\] at (-1) should be [-6 -50 -400\]]
expected: FAIL
[CSS Transitions: property <scale> from [inherit\] to [2 0.5 1\] at (0.25) should be [0.875 0.875 1.75\]]
expected: FAIL
[CSS Animations: property <scale> from neutral to [1.5 1\] at (0.25) should be [1.2 1\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [1\] to [10 -5 0\] at (0.25) should be [3.25 -0.5 0.75\]]
expected: FAIL
[CSS Transitions: property <scale> from [none\] to [4 3 2\] at (0.875) should be [3.625 2.75 1.875\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [2 0.5 1\] to [initial\] at (0.75) should be [1.25 0.875\]]
expected: FAIL
[CSS Animations: property <scale> from [-10 5 1\] to [1\] at (0) should be [-10 5\]]
expected: FAIL
[CSS Transitions: property <scale> from [initial\] to [2 0.5 1\] at (-1) should be [0 1.5\]]
expected: FAIL
[CSS Animations: property <scale> from [none\] to [none\] at (1) should be [none\]]
expected: FAIL
[CSS Animations: property <scale> from [2 0.5 1\] to [initial\] at (0.25) should be [1.75 0.6251\]]
expected: FAIL
[CSS Transitions: property <scale> from [-10 5 1\] to [1\] at (2) should be [12 -3\]]
expected: FAIL
[Web Animations: property <scale> from [26 17 9\] to [2 1\] at (0.125) should be [23 15 8\]]
expected: FAIL
@ -395,9 +224,6 @@
[Web Animations: property <scale> from [none\] to [none\] at (1) should be [none\]]
expected: FAIL
[CSS Animations: property <scale> from [-10 5 1\] to [1\] at (2) should be [12 -3\]]
expected: FAIL
[Web Animations: property <scale> from [-10 5 1\] to [1\] at (0) should be [-10 5\]]
expected: FAIL
@ -416,9 +242,6 @@
[Web Animations: property <scale> from [26 17 9\] to [2 1\] at (0) should be [26 17 9\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [unset\] to [1.5 1\] at (0.25) should be [1.125 1\]]
expected: FAIL
[CSS Animations: property <scale> from [2 0.5 1\] to [inherit\] at (0) should be [2 0.5\]]
expected: FAIL
@ -428,27 +251,9 @@
[CSS Animations: property <scale> from [inherit\] to [2 0.5 1\] at (2) should be [3.5 0 0\]]
expected: FAIL
[CSS Transitions: property <scale> from [26 17 9\] to [2 1\] at (0.875) should be [5 3 2\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [unset\] to [1.5 1\] at (2) should be [2 1\]]
expected: FAIL
[CSS Transitions: property <scale> from [-10 5\] to [10 -5\] at (0.25) should be [-5 2.5\]]
expected: FAIL
[Web Animations: property <scale> from [inherit\] to [2 0.5 1\] at (1) should be [2 0.5\]]
expected: FAIL
[CSS Animations: property <scale> from [-10 5\] to [10 -5\] at (2) should be [30 -15\]]
expected: FAIL
[CSS Transitions: property <scale> from [-10 5 1\] to [1\] at (-1) should be [-21 9\]]
expected: FAIL
[CSS Animations: property <scale> from [-10 5 1\] to [1\] at (1) should be [1\]]
expected: FAIL
[Web Animations: property <scale> from [2 0.5 1\] to [inherit\] at (-1) should be [3.5 0 0\]]
expected: FAIL
@ -458,21 +263,12 @@
[CSS Animations: property <scale> from [inherit\] to [initial\] at (2) should be [1.5 1 0\]]
expected: FAIL
[CSS Animations: property <scale> from [1\] to [10 -5 0\] at (0.75) should be [7.75 -3.5 0.25\]]
expected: FAIL
[CSS Transitions: property <scale> from [none\] to [4 3 2\] at (2) should be [7 5 3\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [initial\] to [2 0.5 1\] at (0.75) should be [1.75 0.625\]]
expected: FAIL
[CSS Transitions: property <scale> from [2 30 400\] to [10 110 1200\] at (0.875) should be [9 100 1100\]]
expected: FAIL
[CSS Animations: property <scale> from [1\] to [10 -5 0\] at (-1) should be [-8 7 2\]]
expected: FAIL
[Web Animations: property <scale> from [2 0.5 1\] to [initial\] at (0.75) should be [1.25 0.875\]]
expected: FAIL
@ -482,33 +278,15 @@
[Web Animations: property <scale> from [2 30 400\] to [10 110 1200\] at (1) should be [10 110 1200\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [none\] to [4 3 2\] at (0.125) should be [1.375 1.25 1.125\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [initial\] to [inherit\] at (0.75) should be [0.625 1 1.75\]]
expected: FAIL
[CSS Animations: property <scale> from [initial\] to [2 0.5 1\] at (2) should be [3 0\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [initial\] to [2 0.5 1\] at (0.25) should be [1.25 0.875\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [2 0.5 1\] to [initial\] at (-1) should be [3 0\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [26 17 9\] to [2 1\] at (-1) should be [50 33 17\]]
expected: FAIL
[Web Animations: property <scale> from [unset\] to [1.5 1\] at (0.75) should be [1.375 1\]]
expected: FAIL
[CSS Animations: property <scale> from [none\] to [4 3 2\] at (1) should be [4 3 2\]]
expected: FAIL
[CSS Animations: property <scale> from [-10 5 1\] to [1\] at (0.25) should be [-7.25 4\]]
expected: FAIL
[Web Animations: property <scale> from [unset\] to [1.5 1\] at (2) should be [2 1\]]
expected: FAIL
@ -518,9 +296,6 @@
[CSS Animations: property <scale> from [inherit\] to [initial\] at (0.75) should be [0.875 1 1.25\]]
expected: FAIL
[CSS Animations: property <scale> from [unset\] to [1.5 1\] at (0.25) should be [1.125 1\]]
expected: FAIL
[Web Animations: property <scale> from neutral to [1.5 1\] at (1) should be [1.5 1\]]
expected: FAIL
@ -536,21 +311,12 @@
[CSS Animations: property <scale> from [inherit\] to [2 0.5 1\] at (0) should be [0.5 1 2\]]
expected: FAIL
[CSS Animations: property <scale> from [none\] to [4 3 2\] at (-1) should be [-2 -1 0\]]
expected: FAIL
[CSS Transitions: property <scale> from [2 0.5 1\] to [initial\] at (0.75) should be [1.25 0.875\]]
expected: FAIL
[Web Animations: property <scale> from [1\] to [10 -5 0\] at (2) should be [19 -11 -1\]]
expected: FAIL
[Web Animations: property <scale> from [inherit\] to [initial\] at (1) should be [1\]]
expected: FAIL
[CSS Animations: property <scale> from [26 17 9\] to [2 1\] at (0.875) should be [5 3 2\]]
expected: FAIL
[CSS Transitions: property <scale> from [initial\] to [inherit\] at (0.25) should be [0.875 1 1.25\]]
expected: FAIL
@ -560,39 +326,15 @@
[CSS Animations: property <scale> from [2 0.5 1\] to [inherit\] at (-1) should be [3.5 0 0\]]
expected: FAIL
[CSS Animations: property <scale> from neutral to [1.5 1\] at (0.75) should be [1.4 1\]]
expected: FAIL
[CSS Transitions: property <scale> from [2 0.5 1\] to [initial\] at (2) should be [0 1.5\]]
expected: FAIL
[Web Animations: property <scale> from [-10 5 1\] to [1\] at (0.25) should be [-7.25 4\]]
expected: FAIL
[CSS Transitions: property <scale> from [unset\] to [1.5 1\] at (-1) should be [0.5 1\]]
expected: FAIL
[CSS Transitions: property <scale> from neutral to [1.5 1\] at (2) should be [1.9 1\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [inherit\] to [2 0.5 1\] at (-1) should be [-1 1.5 3\]]
expected: FAIL
[CSS Transitions: property <scale> from [2 0.5 1\] to [initial\] at (-1) should be [3 0\]]
expected: FAIL
[Web Animations: property <scale> from [inherit\] to [initial\] at (0) should be [0.5 1 2\]]
expected: FAIL
[Web Animations: property <scale> from [-10 5\] to [10 -5\] at (-1) should be [-30 15\]]
expected: FAIL
[CSS Animations: property <scale> from [none\] to [4 3 2\] at (2) should be [7 5 3\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [1\] to [10 -5 0\] at (-1) should be [-8 7 2\]]
expected: FAIL
[Web Animations: property <scale> from [initial\] to [2 0.5 1\] at (2) should be [3 0\]]
expected: FAIL
@ -602,9 +344,6 @@
[CSS Animations: property <scale> from [initial\] to [inherit\] at (2) should be [0 1 3\]]
expected: FAIL
[CSS Animations: property <scale> from [none\] to [4 3 2\] at (0.875) should be [3.625 2.75 1.875\]]
expected: FAIL
[Web Animations: property <scale> from [initial\] to [inherit\] at (0.75) should be [0.625 1 1.75\]]
expected: FAIL
@ -614,18 +353,12 @@
[CSS Transitions: property <scale> from [initial\] to [2 0.5 1\] at (0.25) should be [1.25 0.875\]]
expected: FAIL
[CSS Animations: property <scale> from [2 30 400\] to [10 110 1200\] at (0.125) should be [3 40 500\]]
expected: FAIL
[Web Animations: property <scale> from neutral to [1.5 1\] at (0.75) should be [1.4 1\]]
expected: FAIL
[Web Animations: property <scale> from [-10 5\] to [10 -5\] at (2) should be [30 -15\]]
expected: FAIL
[CSS Animations: property <scale> from [initial\] to [2 0.5 1\] at (-1) should be [0 1.5\]]
expected: FAIL
[Web Animations: property <scale> from neutral to [1.5 1\] at (-1) should be [0.7 1\]]
expected: FAIL
@ -635,15 +368,6 @@
[Web Animations: property <scale> from [2 0.5 1\] to [initial\] at (2) should be [0 1.5\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [unset\] to [1.5 1\] at (-1) should be [0.5 1\]]
expected: FAIL
[CSS Animations: property <scale> from [1\] to [10 -5 0\] at (0.25) should be [3.25 -0.5 0.75\]]
expected: FAIL
[CSS Animations: property <scale> from [initial\] to [2 0.5 1\] at (1) should be [2 0.5\]]
expected: FAIL
[Web Animations: property <scale> from [none\] to [4 3 2\] at (0) should be [1\]]
expected: FAIL
@ -653,9 +377,6 @@
[Web Animations: property <scale> from neutral to [1.5 1\] at (2) should be [1.9 1\]]
expected: FAIL
[CSS Animations: property <scale> from [inherit\] to [initial\] at (1) should be [1\]]
expected: FAIL
[Web Animations: property <scale> from neutral to [1.5 1\] at (0.25) should be [1.2 1\]]
expected: FAIL
@ -668,18 +389,9 @@
[CSS Transitions: property <scale> from [initial\] to [2 0.5 1\] at (0.75) should be [1.75 0.625\]]
expected: FAIL
[CSS Animations: property <scale> from [none\] to [4 3 2\] at (0.125) should be [1.375 1.25 1.125\]]
expected: FAIL
[CSS Transitions: property <scale> from [unset\] to [1.5 1\] at (0.25) should be [1.125 1\]]
expected: FAIL
[CSS Animations: property <scale> from [initial\] to [inherit\] at (0) should be [1\]]
expected: FAIL
[CSS Animations: property <scale> from [2 30 400\] to [10 110 1200\] at (0.875) should be [9 100 1100\]]
expected: FAIL
[Web Animations: property <scale> from [initial\] to [2 0.5 1\] at (0.25) should be [1.25 0.875\]]
expected: FAIL
@ -689,36 +401,12 @@
[Web Animations: property <scale> from [initial\] to [inherit\] at (-1) should be [1.5 1 0\]]
expected: FAIL
[CSS Transitions: property <scale> from [-10 5\] to [10 -5\] at (-1) should be [-30 15\]]
expected: FAIL
[CSS Animations: property <scale> from [unset\] to [1.5 1\] at (0) should be [1\]]
expected: FAIL
[Web Animations: property <scale> from [unset\] to [1.5 1\] at (1) should be [1.5 1\]]
expected: FAIL
[Web Animations: property <scale> from [2 0.5 1\] to [inherit\] at (0.25) should be [1.625 0.625 1.25\]]
expected: FAIL
[CSS Transitions: property <scale> from neutral to [1.5 1\] at (0.25) should be [1.2 1\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [unset\] to [1.5 1\] at (0.75) should be [1.375 1\]]
expected: FAIL
[CSS Animations: property <scale> from [2 0.5 1\] to [initial\] at (2) should be [0 1.5\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [inherit\] to [initial\] at (-1) should be [0 1 3\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [inherit\] to [initial\] at (0.25) should be [0.625 1 1.75\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [inherit\] to [2 0.5 1\] at (2) should be [3.5 0 0\]]
expected: FAIL
[CSS Animations: property <scale> from [inherit\] to [2 0.5 1\] at (0.25) should be [0.875 0.875 1.75\]]
expected: FAIL
@ -728,30 +416,18 @@
[Web Animations: property <scale> from [inherit\] to [2 0.5 1\] at (0.25) should be [0.875 0.875 1.75\]]
expected: FAIL
[CSS Transitions: property <scale> from [1\] to [10 -5 0\] at (0.25) should be [3.25 -0.5 0.75\]]
expected: FAIL
[CSS Animations: property <scale> from [initial\] to [inherit\] at (0.75) should be [0.625 1 1.75\]]
expected: FAIL
[CSS Transitions: property <scale> from [26 17 9\] to [2 1\] at (2) should be [-22 -15 -7\]]
expected: FAIL
[CSS Animations: property <scale> from [inherit\] to [2 0.5 1\] at (0.75) should be [1.625 0.625 1.25\]]
expected: FAIL
[Web Animations: property <scale> from [2 0.5 1\] to [initial\] at (0.25) should be [1.75 0.6251\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [2 0.5 1\] to [initial\] at (2) should be [0 1.5\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [initial\] to [inherit\] at (0.25) should be [0.875 1 1.25\]]
expected: FAIL
[CSS Animations: property <scale> from [unset\] to [1.5 1\] at (2) should be [2 1\]]
expected: FAIL
[Web Animations: property <scale> from [none\] to [none\] at (0.125) should be [none\]]
expected: FAIL
@ -761,99 +437,36 @@
[CSS Transitions with transition: all: property <scale> from [2 30 400\] to [10 110 1200\] at (0.875) should be [9 100 1100\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [2 0.5 1\] to [inherit\] at (-1) should be [3.5 0 0\]]
expected: FAIL
[CSS Animations: property <scale> from [initial\] to [inherit\] at (0.25) should be [0.875 1 1.25\]]
expected: FAIL
[CSS Transitions: property <scale> from [inherit\] to [initial\] at (2) should be [1.5 1 0\]]
expected: FAIL
[Web Animations: property <scale> from [2 0.5 1\] to [initial\] at (0) should be [2 0.5\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [26 17 9\] to [2 1\] at (0.125) should be [23 15 8\]]
expected: FAIL
[CSS Animations: property <scale> from [2 0.5 1\] to [inherit\] at (2) should be [-1 1.5 3\]]
expected: FAIL
[CSS Animations: property <scale> from [-10 5\] to [10 -5\] at (1) should be [10 -5\]]
expected: FAIL
[Web Animations: property <scale> from [2 30 400\] to [10 110 1200\] at (0.875) should be [9 100 1100\]]
expected: FAIL
[Web Animations: property <scale> from [unset\] to [1.5 1\] at (0) should be [1\]]
expected: FAIL
[CSS Transitions: property <scale> from [initial\] to [inherit\] at (-1) should be [1.5 1 0\]]
expected: FAIL
[CSS Transitions: property <scale> from neutral to [1.5 1\] at (-1) should be [0.7 1\]]
expected: FAIL
[CSS Animations: property <scale> from [-10 5 1\] to [1\] at (0.75) should be [-1.75 2\]]
expected: FAIL
[CSS Animations: property <scale> from [2 30 400\] to [10 110 1200\] at (-1) should be [-6 -50 -400\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [-10 5 1\] to [1\] at (0.25) should be [-7.25 4\]]
expected: FAIL
[CSS Animations: property <scale> from [-10 5\] to [10 -5\] at (0) should be [-10 5\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [initial\] to [inherit\] at (2) should be [0 1 3\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [-10 5 1\] to [1\] at (0.75) should be [-1.75 2\]]
expected: FAIL
[Web Animations: property <scale> from [26 17 9\] to [2 1\] at (1) should be [2 1\]]
expected: FAIL
[CSS Animations: property <scale> from [-10 5\] to [10 -5\] at (0.25) should be [-5 2.5\]]
expected: FAIL
[CSS Animations: property <scale> from [-10 5\] to [10 -5\] at (-1) should be [-30 15\]]
expected: FAIL
[CSS Transitions: property <scale> from [inherit\] to [2 0.5 1\] at (-1) should be [-1 1.5 3\]]
expected: FAIL
[Web Animations: property <scale> from [-10 5 1\] to [1\] at (-1) should be [-21 9\]]
expected: FAIL
[CSS Animations: property <scale> from [26 17 9\] to [2 1\] at (0.125) should be [23 15 8\]]
expected: FAIL
[Web Animations: property <scale> from [none\] to [4 3 2\] at (-1) should be [-2 -1 0\]]
expected: FAIL
[CSS Animations: property <scale> from [1\] to [10 -5 0\] at (2) should be [19 -11 -1\]]
expected: FAIL
[Web Animations: property <scale> from [26 17 9\] to [2 1\] at (-1) should be [50 33 17\]]
expected: FAIL
[CSS Animations: property <scale> from neutral to [1.5 1\] at (1) should be [1.5 1\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [2 0.5 1\] to [initial\] at (0.25) should be [1.75 0.6251\]]
expected: FAIL
[Web Animations: property <scale> from [none\] to [none\] at (2) should be [none\]]
expected: FAIL
[CSS Animations: property <scale> from [none\] to [4 3 2\] at (0) should be [1\]]
expected: FAIL
[CSS Animations: property <scale> from [26 17 9\] to [2 1\] at (0) should be [26 17 9\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [2 0.5 1\] to [inherit\] at (0.25) should be [1.625 0.625 1.25\]]
expected: FAIL
@ -869,99 +482,36 @@
[Web Animations: property <scale> from [initial\] to [2 0.5 1\] at (1) should be [2 0.5\]]
expected: FAIL
[CSS Animations: property <scale> from [2 0.5 1\] to [initial\] at (1) should be [1\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from neutral to [1.5 1\] at (0.25) should be [1.2 1\]]
expected: FAIL
[CSS Transitions: property <scale> from [inherit\] to [2 0.5 1\] at (0.75) should be [1.625 0.625 1.25\]]
expected: FAIL
[CSS Animations: property <scale> from [initial\] to [2 0.5 1\] at (0.75) should be [1.75 0.625\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [-10 5\] to [10 -5\] at (-1) should be [-30 15\]]
expected: FAIL
[Web Animations: property <scale> from [initial\] to [inherit\] at (0) should be [1\]]
expected: FAIL
[Web Animations: property <scale> from [none\] to [none\] at (0.875) should be [none\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [26 17 9\] to [2 1\] at (2) should be [-22 -15 -7\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [none\] to [4 3 2\] at (0.875) should be [3.625 2.75 1.875\]]
expected: FAIL
[CSS Transitions: property <scale> from [2 30 400\] to [10 110 1200\] at (-1) should be [-6 -50 -400\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from neutral to [1.5 1\] at (-1) should be [0.7 1\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [initial\] to [inherit\] at (-1) should be [1.5 1 0\]]
expected: FAIL
[CSS Animations: property <scale> from neutral to [1.5 1\] at (-1) should be [0.7 1\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [inherit\] to [initial\] at (2) should be [1.5 1 0\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [inherit\] to [2 0.5 1\] at (0.75) should be [1.625 0.625 1.25\]]
expected: FAIL
[CSS Animations: property <scale> from [unset\] to [1.5 1\] at (0.75) should be [1.375 1\]]
expected: FAIL
[CSS Animations: property <scale> from [1\] to [10 -5 0\] at (0) should be [1\]]
expected: FAIL
[Web Animations: property <scale> from [initial\] to [2 0.5 1\] at (0) should be [1\]]
expected: FAIL
[CSS Transitions: property <scale> from [1\] to [10 -5 0\] at (0.75) should be [7.75 -3.5 0.25\]]
expected: FAIL
[CSS Animations: property <scale> from [2 30 400\] to [10 110 1200\] at (2) should be [18 190 2000\]]
expected: FAIL
[CSS Animations: property <scale> from [2 0.5 1\] to [initial\] at (0.75) should be [1.25 0.875\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [2 0.5 1\] to [inherit\] at (2) should be [-1 1.5 3\]]
expected: FAIL
[Web Animations: property <scale> from [initial\] to [inherit\] at (2) should be [0 1 3\]]
expected: FAIL
[Web Animations: property <scale> from [1\] to [10 -5 0\] at (-1) should be [-8 7 2\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [initial\] to [2 0.5 1\] at (-1) should be [0 1.5\]]
expected: FAIL
[Web Animations: property <scale> from [-10 5 1\] to [1\] at (1) should be [1\]]
expected: FAIL
[CSS Animations: property <scale> from [initial\] to [2 0.5 1\] at (0.25) should be [1.25 0.875\]]
expected: FAIL
[CSS Animations: property <scale> from [initial\] to [inherit\] at (-1) should be [1.5 1 0\]]
expected: FAIL
[CSS Transitions: property <scale> from [none\] to [4 3 2\] at (-1) should be [-2 -1 0\]]
expected: FAIL
[CSS Transitions with transition: all: property <scale> from [2 30 400\] to [10 110 1200\] at (2) should be [18 190 2000\]]
expected: FAIL
[CSS Animations: property <scale> from [unset\] to [1.5 1\] at (1) should be [1.5 1\]]
expected: FAIL
[CSS Transitions: property <scale> from [initial\] to [inherit\] at (0.75) should be [0.625 1 1.75\]]
expected: FAIL

View file

@ -44,15 +44,9 @@
[CSS Transitions with transition: all: property <transform> from [skewX(10rad) perspective(400px)\] to [skewX(20rad) perspective(500px)\] at (-1) should be [skewX(0rad) perspective(300px)\]]
expected: FAIL
[CSS Animations: property <transform> from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 2, 0, 450deg)\] at (1) should be [rotate3d(0, 1, 0, 450deg)\]]
expected: FAIL
[Web Animations: property <transform> 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 <transform> 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
[Web Animations: property <transform> from [rotate(90deg)\] to [none\] at (0.75) should be [rotate(22.5deg)\]]
expected: FAIL
@ -77,12 +71,6 @@
[Web Animations: property <transform> from [rotate(90deg)\] to [none\] at (0) should be [rotate(90deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [none\] to [rotate(90deg)\] at (0.25) should be [rotate(22.5deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [skewX(10rad) perspective(400px)\] to [skewX(20rad) perspective(500px)\] at (0) should be [skewX(10rad) perspective(400px)\]]
expected: FAIL
[CSS Transitions: property <transform> from [rotateY(900deg)\] to [rotateZ(0deg)\] at (0) should be [rotateY(900deg)\]]
expected: FAIL
@ -101,12 +89,6 @@
[CSS Animations: property <transform> 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 <transform> from [rotate(90deg)\] to [none\] at (-1) should be [rotate(180deg)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [skewX(10rad) perspective(400px)\] to [skewX(20rad) perspective(500px)\] at (2) should be [skewX(30rad) perspective(600px)\]]
expected: FAIL
@ -122,9 +104,6 @@
[CSS Transitions: property <transform> from [rotateY(0deg)\] to [rotateY(800deg)\] at (2) should be [rotateY(1600deg)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [rotate3d(7, 8, 9, 0deg)\] to [rotate3d(7, 8, 9, 450deg)\] at (1) should be [rotate3d(7, 8, 9, 450deg)\]]
expected: FAIL
@ -149,45 +128,27 @@
[CSS Transitions with transition: all: property <transform> from [rotate(90deg)\] to [none\] at (-1) should be [rotate(180deg)\]]
expected: FAIL
[CSS Animations: property <transform> 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 with transition: all: property <transform> from [rotateY(900deg)\] to [rotateZ(0deg)\] at (0.25) should be [rotateY(675deg)\]]
expected: FAIL
[Web Animations: property <transform> from [skewX(10rad) perspective(400px)\] to [skewX(20rad) perspective(500px)\] at (1) should be [skewX(20rad) perspective(500px)\]]
expected: FAIL
[CSS Animations: property <transform> from [perspective(400px)\] to [perspective(500px)\] at (1) should be [perspective(500px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> 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
[Web Animations: property <transform> 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 <transform> 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 <transform> from [scaleZ(1) perspective(400px)\] to [scaleZ(2) perspective(500px)\] at (2) should be [scaleZ(3) perspective(600px)\]]
expected: FAIL
[CSS Transitions: property <transform> 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 <transform> 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 <transform> from [rotateX(0deg)\] to [rotateY(900deg)\] at (0) should be [rotateY(0deg)\]]
expected: FAIL
[Web Animations: property <transform> 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 <transform> from [skewX(10rad) perspective(400px)\] to [skewX(20rad) perspective(500px)\] at (1) should be [skewX(20rad) perspective(500px)\]]
expected: FAIL
[CSS Animations: property <transform> from [rotate3d(1, 1, 0, 90deg)\] to [rotate3d(0, 1, 1, 180deg)\] at (1) should be [rotate3d(0, 1, 1, 180deg)\]]
expected: FAIL
@ -197,12 +158,6 @@
[CSS Animations: property <transform> 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 <transform> from [rotateX(0deg)\] to [rotateX(700deg)\] at (0.25) should be [rotateX(175deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [rotateY(0deg)\] to [rotateY(800deg)\] at (0.75) should be [rotateY(600deg)\]]
expected: FAIL
[Web Animations: property <transform> from [rotate(90deg)\] to [none\] at (1) should be [rotate(0deg)\]]
expected: FAIL
@ -212,18 +167,12 @@
[CSS Transitions: property <transform> from [none\] to [rotate(90deg)\] at (0.25) should be [rotate(22.5deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [rotateX(0deg)\] to [rotateX(700deg)\] at (1) should be [rotateX(700deg)\]]
expected: FAIL
[Web Animations: property <transform> from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (1) should be [rotateZ(900deg)\]]
expected: FAIL
[CSS Transitions: property <transform> 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 <transform> from [rotate(30deg)\] to [rotate(330deg)\] at (2) should be [rotate(630deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [rotate(30deg)\] to [rotate(330deg)\] at (0.25) should be [rotate(105deg)\]]
expected: FAIL
@ -257,9 +206,6 @@
[Web Animations: property <transform> 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 <transform> from [scaleZ(1) perspective(400px)\] to [scaleZ(2) perspective(500px)\] at (0) should be [scaleZ(1) perspective(400px)\]]
expected: FAIL
[CSS Transitions: property <transform> 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
@ -269,9 +215,6 @@
[CSS Transitions with transition: all: property <transform> from [none\] to [rotate(90deg)\] at (0.75) should be [rotate(67.5deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [none\] to [rotate(90deg)\] at (-1) should be [rotate(-90deg)\]]
expected: FAIL
[CSS Transitions: property <transform> from [rotateX(0deg)\] to [rotateY(900deg)\] at (-1) should be [rotateY(-900deg)\]]
expected: FAIL
@ -287,9 +230,6 @@
[CSS Transitions with transition: all: property <transform> from [rotateX(0deg)\] to [rotateX(700deg)\] at (0.75) should be [rotateX(525deg)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [rotateX(0deg)\] to [rotateY(900deg)\] at (1) should be [rotateY(900deg)\]]
expected: FAIL
@ -326,24 +266,15 @@
[Web Animations: property <transform> from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (0) should be [rotateZ(0deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [rotateY(0deg)\] to [rotateY(800deg)\] at (-1) should be [rotateY(-800deg)\]]
expected: FAIL
[CSS Transitions: property <transform> from [rotate(90deg)\] to [none\] at (0.25) should be [rotate(67.5deg)\]]
expected: FAIL
[CSS Transitions: property <transform> 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 <transform> from [rotateX(0deg)\] to [rotateX(700deg)\] at (0) should be [rotateX(0deg)\]]
expected: FAIL
[Web Animations: property <transform> from [none\] to [rotate(90deg)\] at (2) should be [rotate(180deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [rotateY(0deg)\] to [rotateY(800deg)\] at (2) should be [rotateY(1600deg)\]]
expected: FAIL
[Web Animations: property <transform> from [rotateY(900deg)\] to [rotateZ(0deg)\] at (0) should be [rotateY(900deg)\]]
expected: FAIL
@ -362,15 +293,9 @@
[CSS Transitions with transition: all: property <transform> 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 <transform> from [none\] to [rotate(90deg)\] at (0.75) should be [rotate(67.5deg)\]]
expected: FAIL
[CSS Transitions: property <transform> from [rotate3d(1, 1, 0, 90deg)\] to [rotate3d(0, 1, 1, 180deg)\] at (1) should be [rotate3d(0, 1, 1, 180deg)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [rotate3d(7, 8, 9, 100deg)\] to [rotate3d(7, 8, 9, 260deg)\] at (0.25) should be [rotate3d(7, 8, 9, 140deg)\]]
expected: FAIL
@ -389,21 +314,9 @@
[CSS Transitions: property <transform> 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 <transform> from [none\] to [rotate(90deg)\] at (0) should be [rotate(0deg)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> 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 <transform> 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 <transform> from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (-1) should be [rotateZ(-900deg)\]]
expected: FAIL
[Web Animations: property <transform> from [rotateX(0deg)\] to [rotateX(700deg)\] at (-1) should be [rotateX(-700deg)\]]
expected: FAIL
@ -419,9 +332,6 @@
[Web Animations: property <transform> from [rotate3d(1, 1, 0, 90deg)\] to [rotate3d(0, 1, 1, 180deg)\] at (1) should be [rotate3d(0, 1, 1, 180deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [scaleZ(1) perspective(400px)\] to [scaleZ(2) perspective(500px)\] at (1) should be [scaleZ(2) perspective(500px)\]]
expected: FAIL
[Web Animations: property <transform> from [rotateY(900deg)\] to [rotateZ(0deg)\] at (1) should be [rotateY(0deg)\]]
expected: FAIL
@ -434,30 +344,18 @@
[CSS Transitions with transition: all: property <transform> 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 <transform> 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 <transform> 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 <transform> from [rotateX(0deg)\] to [rotateX(700deg)\] at (2) should be [rotateX(1400deg)\]]
expected: FAIL
[Web Animations: property <transform> from [rotateY(0deg)\] to [rotateY(800deg)\] at (2) should be [rotateY(1600deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (2) should be [rotateZ(1800deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [skewX(10rad) perspective(400px)\] to [skewX(20rad) perspective(500px)\] at (0.25) should be [skewX(12.5rad) perspective(425px)\]]
expected: FAIL
[Web Animations: property <transform> 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 <transform> from [rotate(90deg)\] to [none\] at (2) should be [rotate(-90deg)\]]
expected: FAIL
[CSS Transitions: property <transform> from [rotate(30deg)\] to [rotate(330deg)\] at (2) should be [rotate(630deg)\]]
expected: FAIL
@ -509,9 +407,6 @@
[CSS Transitions: property <transform> 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 <transform> from [none\] to [rotate(90deg)\] at (-1) should be [rotate(-90deg)\]]
expected: FAIL
[CSS Transitions: property <transform> from [rotate(90deg)\] to [none\] at (0.75) should be [rotate(22.5deg)\]]
expected: FAIL
@ -542,18 +437,12 @@
[CSS Transitions: property <transform> from [rotateY(900deg)\] to [rotateZ(0deg)\] at (1) should be [rotateY(0deg)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 1, 0, 450deg)\] at (-1) should be [rotate3d(0, 1, 0, -450deg)\]]
expected: FAIL
[Web Animations: property <transform> 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 <transform> 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 <transform> from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (-1) should be [rotateZ(-900deg)\]]
expected: FAIL
@ -572,12 +461,6 @@
[CSS Animations: property <transform> from [skewX(10rad) perspective(400px)\] to [skewX(20rad) perspective(500px)\] at (-1) should be [skewX(0rad) perspective(300px)\]]
expected: FAIL
[CSS Animations: property <transform> from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (0) should be [rotateZ(0deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [perspective(400px)\] to [perspective(500px)\] at (0) should be [perspective(400px)\]]
expected: FAIL
[CSS Transitions: property <transform> from [rotateY(0deg)\] to [rotateY(800deg)\] at (0.75) should be [rotateY(600deg)\]]
expected: FAIL
@ -587,9 +470,6 @@
[CSS Transitions: property <transform> from [rotateX(0deg)\] to [rotateY(900deg)\] at (0.75) should be [rotateY(675deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [rotateY(0deg)\] to [rotateY(800deg)\] at (1) should be [rotateY(800deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [skewX(10rad) perspective(400px)\] to [skewX(20rad) perspective(500px)\] at (0.75) should be [skewX(17.5rad) perspective(475px)\]]
expected: FAIL
@ -605,9 +485,6 @@
[CSS Transitions with transition: all: property <transform> 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 <transform> from [rotate(30deg)\] to [rotate(330deg)\] at (-1) should be [rotate(-270deg)\]]
expected: FAIL
[Web Animations: property <transform> from [perspective(400px)\] to [perspective(500px)\] at (0.25) should be [perspective(425px)\]]
expected: FAIL
@ -617,15 +494,6 @@
[CSS Transitions: property <transform> from [skewX(10rad) perspective(400px)\] to [skewX(20rad) perspective(500px)\] at (-1) should be [skewX(0rad) perspective(300px)\]]
expected: FAIL
[CSS Animations: property <transform> from [rotate(30deg)\] to [rotate(330deg)\] at (0.75) should be [rotate(255deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [rotateX(0deg)\] to [rotateX(700deg)\] at (-1) should be [rotateX(-700deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (1) should be [rotateZ(900deg)\]]
expected: FAIL
[Web Animations: property <transform> from [rotateY(0deg)\] to [rotateY(800deg)\] at (0.25) should be [rotateY(200deg)\]]
expected: FAIL
@ -635,21 +503,12 @@
[Web Animations: property <transform> 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 <transform> from [rotate(90deg)\] to [none\] at (0) should be [rotate(90deg)\]]
expected: FAIL
[CSS Transitions: property <transform> from [rotateY(900deg)\] to [rotateZ(0deg)\] at (2) should be [rotateY(-900deg)\]]
expected: FAIL
[Web Animations: property <transform> 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 Animations: property <transform> from [rotateY(0deg)\] to [rotateY(800deg)\] at (2) should be [rotateY(1600deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [none\] to [rotate(90deg)\] at (2) should be [rotate(180deg)\]]
expected: FAIL
[Web Animations: property <transform> 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
@ -689,9 +548,6 @@
[CSS Transitions with transition: all: property <transform> from [rotateY(900deg)\] to [rotateZ(0deg)\] at (0.75) should be [rotateY(225deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (0.75) should be [rotateZ(675deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [rotate(90deg)\] to [none\] at (0.75) should be [rotate(22.5deg)\]]
expected: FAIL
@ -767,9 +623,6 @@
[CSS Transitions: property <transform> 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 <transform> 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 <transform> from [rotateX(0deg)\] to [rotateY(900deg)\] at (2) should be [rotateY(1800deg)\]]
expected: FAIL
@ -785,9 +638,6 @@
[Web Animations: property <transform> from [perspective(400px)\] to [perspective(500px)\] at (0.75) should be [perspective(475px)\]]
expected: FAIL
[CSS Animations: property <transform> from [rotate(90deg)\] to [none\] at (0.75) should be [rotate(22.5deg)\]]
expected: FAIL
[Web Animations: property <transform> from [none\] to [rotate(90deg)\] at (-1) should be [rotate(-90deg)\]]
expected: FAIL
@ -797,18 +647,9 @@
[CSS Transitions with transition: all: property <transform> 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 <transform> from [rotateY(0deg)\] to [rotateY(800deg)\] at (0) should be [rotateY(0deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [perspective(400px)\] to [perspective(500px)\] at (-1) should be [perspective(300px)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [rotate(90deg)\] to [none\] at (1) should be [rotate(0deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [scaleZ(1) perspective(400px)\] to [scaleZ(2) perspective(500px)\] at (-1) should be [scaleZ(0) perspective(300px)\]]
expected: FAIL
@ -830,9 +671,6 @@
[CSS Transitions with transition: all: property <transform> from [perspective(400px)\] to [perspective(500px)\] at (0.25) should be [perspective(425px)\]]
expected: FAIL
[CSS Animations: property <transform> from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (2) should be [rotateZ(1800deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [rotateY(900deg)\] to [rotateZ(0deg)\] at (1) should be [rotateY(0deg)\]]
expected: FAIL
@ -866,9 +704,6 @@
[CSS Animations: property <transform> from [rotateX(0deg)\] to [rotateY(900deg)\] at (-1) should be [rotateY(-900deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [rotate(90deg)\] to [none\] at (0.25) should be [rotate(67.5deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [rotate3d(7, 8, 9, 0deg)\] to [rotate3d(7, 8, 9, 450deg)\] at (2) should be [rotate3d(7, 8, 9, 900deg)\]]
expected: FAIL
@ -914,12 +749,6 @@
[Web Animations: property <transform> 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 Animations: property <transform> 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 <transform> 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 <transform> from [rotate3d(7, 8, 9, 100deg)\] to [rotate3d(7, 8, 9, 260deg)\] at (2) should be [rotate3d(7, 8, 9, 420deg)\]]
expected: FAIL
@ -932,24 +761,15 @@
[CSS Transitions with transition: all: property <transform> from [perspective(400px)\] to [perspective(500px)\] at (0.75) should be [perspective(475px)\]]
expected: FAIL
[CSS Animations: property <transform> from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (0.25) should be [rotateZ(225deg)\]]
expected: FAIL
[CSS Transitions: property <transform> from [rotate(90deg)\] to [none\] at (-1) should be [rotate(180deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [rotateX(0deg)\] to [rotateX(700deg)\] at (2) should be [rotateX(1400deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [skewX(10rad) perspective(400px)\] to [skewX(20rad) perspective(500px)\] at (0.25) should be [skewX(12.5rad) perspective(425px)\]]
expected: FAIL
[Web Animations: property <transform> from [skewX(10rad) perspective(400px)\] to [skewX(20rad) perspective(500px)\] at (0) should be [skewX(10rad) perspective(400px)\]]
expected: FAIL
[CSS Animations: property <transform> from [rotate(30deg)\] to [rotate(330deg)\] at (2) should be [rotate(630deg)\]]
expected: FAIL
[Web Animations: property <transform> from [rotate(30deg)\] to [rotate(330deg)\] at (0.25) should be [rotate(105deg)\]]
expected: FAIL
@ -959,15 +779,9 @@
[CSS Transitions: property <transform> from [rotateY(0deg)\] to [rotateY(800deg)\] at (-1) should be [rotateY(-800deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [none\] to [rotate(90deg)\] at (2) should be [rotate(180deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> 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 <transform> from [rotate(30deg)\] to [rotate(330deg)\] at (0) should be [rotate(30deg)\]]
expected: FAIL
[Web Animations: property <transform> from [rotateX(0deg)\] to [rotateY(900deg)\] at (-1) should be [rotateY(-900deg)\]]
expected: FAIL
@ -980,36 +794,12 @@
[CSS Transitions: property <transform> 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 <transform> 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 <transform> from [none\] to [rotate(90deg)\] at (1) should be [rotate(90deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [rotateY(0deg)\] to [rotateY(800deg)\] at (0.25) should be [rotateY(200deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [rotateX(0deg)\] to [rotateX(700deg)\] at (0.75) should be [rotateX(525deg)\]]
expected: FAIL
[Web Animations: property <transform> from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (2) should be [rotateZ(1800deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [rotate3d(0, 1, 0, 0deg)\] to [rotate3d(0, 2, 0, 450deg)\] at (-1) should be [rotate3d(0, 1, 0, -450deg)\]]
expected: FAIL
[Web Animations: property <transform> from [rotateZ(0deg)\] to [rotateZ(900deg)\] at (0.75) should be [rotateZ(675deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [rotate(30deg)\] to [rotate(330deg)\] at (1) should be [rotate(330deg)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [rotateX(0deg)\] to [rotateX(700deg)\] at (2) should be [rotateX(1400deg)\]]
expected: FAIL
[Web Animations: property <transform> from [perspective(400px)\] to [perspective(500px)\] at (0) should be [perspective(400px)\]]
expected: FAIL
@ -1025,15 +815,6 @@
[CSS Transitions: property <transform> from [rotateX(0deg)\] to [rotateX(700deg)\] at (0.25) should be [rotateX(175deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [rotate(90deg)\] to [none\] at (2) should be [rotate(-90deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [none\] to [rotate(90deg)\] at (0.25) should be [rotate(22.5deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [rotate(30deg)\] to [rotate(330deg)\] at (0.25) should be [rotate(105deg)\]]
expected: FAIL
[Web Animations: property <transform> from [rotateY(0deg)\] to [rotateY(800deg)\] at (1) should be [rotateY(800deg)\]]
expected: FAIL
@ -1052,9 +833,6 @@
[Web Animations: property <transform> from [rotateY(0deg)\] to [rotateY(800deg)\] at (0) should be [rotateY(0deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> 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 <transform> from [rotateY(900deg)\] to [rotateZ(0deg)\] at (2) should be [rotateY(-900deg)\]]
expected: FAIL
@ -1082,3 +860,9 @@
[CSS Transitions: property <transform> from [rotateY(900deg)\] to [rotateZ(0deg)\] at (0.75) should be [rotateY(225deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [none\] to [rotate(90deg)\] at (0.25) should be [rotate(22.5deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [none\] to [rotate(90deg)\] at (-1) should be [rotate(-90deg)\]]
expected: FAIL

View file

@ -2,120 +2,51 @@
[transform interpolation]
expected: FAIL
[CSS Transitions: property <transform> from [scaleZ(1)\] to [scaleZ(2)\] at (0.75) should be [scaleZ(1.75)\]]
expected: FAIL
[CSS Animations: property <transform> from [scaleY(5)\] to [scaleY(9)\] at (0.25) should be [scaleY(6)\]]
expected: FAIL
[CSS Animations: property <transform> from [scaleX(0)\] to [scaleY(0)\] at (2) should be [scale(2, -1)\]]
expected: FAIL
[CSS Animations: property <transform> from [scale3d(2, 3, 5)\] to [none\] at (0) should be [scale3d(2, 3, 5)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [none\] to [scale3d(2, 3, 5)\] at (2) should be [scale3d(3, 5, 9)\]]
expected: FAIL
[Web Animations: property <transform> from [none\] to [scale3d(2, 3, 5)\] at (0.75) should be [scale3d(1.75, 2.5, 4)\]]
expected: FAIL
[Web Animations: property <transform> from [scaleZ(1)\] to [scaleZ(2)\] at (1) should be [scaleZ(2)\]]
expected: FAIL
[CSS Transitions: property <transform> 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
[Web Animations: property <transform> from [none\] to [scale3d(2, 3, 5)\] at (1) should be [scale3d(2, 3, 5)\]]
expected: FAIL
[Web Animations: property <transform> from [scaleX(10)\] to [scaleX(20)\] at (0.25) should be [scaleX(12.5)\]]
expected: FAIL
[CSS Animations: property <transform> from [scale(10, 5)\] to [scale(20, 9)\] at (1) should be [scale(20, 9)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [scale3d(2, 3, 5)\] to [none\] at (-1) should be [scale3d(3, 5, 9)\]]
expected: FAIL
[CSS Transitions: property <transform> 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 <transform> from [scaleX(0)\] to [scaleY(0)\] at (1) should be [scale(1, 0)\]]
expected: FAIL
[CSS Transitions: property <transform> from [scale3d(2, 3, 5)\] to [none\] at (2) should be [scale3d(0, -1, -3)\]]
expected: FAIL
[Web Animations: property <transform> 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 <transform> from [scale(10, 5)\] to [scale(20, 9)\] at (0.75) should be [scale(17.5, 8)\]]
expected: FAIL
[CSS Transitions: property <transform> from [scaleZ(1)\] to [scaleZ(2)\] at (-1) should be [scaleZ(0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [scaleX(10)\] to [scaleX(20)\] at (-1) should be [scaleX(0)\]]
expected: FAIL
[Web Animations: property <transform> 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 <transform> from [none\] to [scale3d(2, 3, 5)\] at (0.25) should be [scale3d(1.25, 1.5, 2)\]]
expected: FAIL
[CSS Animations: property <transform> from [scaleX(0)\] to [scaleY(0)\] at (0.25) should be [scale(0.25, 0.75)\]]
expected: FAIL
[Web Animations: property <transform> from [none\] to [scale3d(2, 3, 5)\] at (2) should be [scale3d(3, 5, 9)\]]
expected: FAIL
[CSS Animations: property <transform> from [scaleZ(1)\] to [scaleZ(2)\] at (2) should be [scaleZ(3)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [scaleX(0)\] to [scaleY(0)\] at (0) should be [scale(0, 1)\]]
expected: FAIL
[Web Animations: property <transform> from [scale3d(2, 3, 5)\] to [none\] at (0) should be [scale3d(2, 3, 5)\]]
expected: FAIL
[CSS Transitions: property <transform> 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 <transform> from [scaleX(0)\] to [scaleY(0)\] at (2) should be [scale(2, -1)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [scaleX(0)\] to [scaleY(0)\] at (0.25) should be [scale(0.25, 0.75)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [scale(10, 5)\] to [scale(20, 9)\] at (0.25) should be [scale(12.5, 6)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> 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 <transform> from [scale3d(10, 0.5, 1)\] to [scale3d(20, 1, 2)\] at (-1) should be [scale3d(0, 0, 0)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [scale3d(2, 3, 5)\] to [none\] at (0.75) should be [scale3d(1.25, 1.5, 2)\]]
expected: FAIL
[Web Animations: property <transform> from [scaleX(10)\] to [scaleX(20)\] at (0) should be [scaleX(10)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [scaleZ(1)\] to [scaleZ(2)\] at (0.75) should be [scaleZ(1.75)\]]
expected: FAIL
[Web Animations: property <transform> from [scale3d(10, 0.5, 1)\] to [scale3d(20, 1, 2)\] at (1) should be [scale3d(20, 1, 2)\]]
expected: FAIL
@ -131,54 +62,12 @@
[CSS Animations: property <transform> from [scaleX(0)\] to [scaleY(0)\] at (-1) should be [scale(-1, 2)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [none\] to [scale3d(2, 3, 5)\] at (0.25) should be [scale3d(1.25, 1.5, 2)\]]
expected: FAIL
[CSS Transitions: property <transform> from [scale3d(10, 0.5, 1)\] to [scale3d(20, 1, 2)\] at (-1) should be [scale3d(0, 0, 0)\]]
expected: FAIL
[CSS Animations: property <transform> from [scaleZ(1)\] to [scaleZ(2)\] at (0) should be [scaleZ(1)\]]
expected: FAIL
[CSS Animations: property <transform> from [scaleY(5)\] to [scaleY(9)\] at (0) should be [scaleY(5)\]]
expected: FAIL
[CSS Animations: property <transform> 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
[Web Animations: property <transform> from [scaleY(5)\] to [scaleY(9)\] at (-1) should be [scaleY(1)\]]
expected: FAIL
[CSS Transitions: property <transform> from [scale(10, 5)\] to [scale(20, 9)\] at (2) should be [scale(30, 13)\]]
expected: FAIL
[Web Animations: property <transform> from [scaleZ(1)\] to [scaleZ(2)\] at (0.75) should be [scaleZ(1.75)\]]
expected: FAIL
[CSS Animations: property <transform> from [scale(10, 5)\] to [scale(20, 9)\] at (2) should be [scale(30, 13)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> 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 <transform> from [scaleY(5)\] to [scaleY(9)\] at (0.75) should be [scaleY(8)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> 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 <transform> 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 <transform> from [scaleX(10)\] to [scaleX(20)\] at (2) should be [scaleX(30)\]]
expected: FAIL
[CSS Transitions: property <transform> from [scale(10, 5)\] to [scale(20, 9)\] at (-1) should be [scale(0, 1)\]]
expected: FAIL
[Web Animations: property <transform> from [scaleZ(1)\] to [scaleZ(2)\] at (-1) should be [scaleZ(0)\]]
expected: FAIL
@ -188,72 +77,24 @@
[CSS Transitions: property <transform> from [scaleX(0)\] to [scaleY(0)\] at (0.75) should be [scale(0.75, 0.25)\]]
expected: FAIL
[CSS Transitions: property <transform> from [scaleX(10)\] to [scaleX(20)\] at (-1) should be [scaleX(0)\]]
expected: FAIL
[Web Animations: property <transform> from [scaleY(5)\] to [scaleY(9)\] at (0) should be [scaleY(5)\]]
expected: FAIL
[CSS Animations: property <transform> from [scaleX(10)\] to [scaleX(20)\] at (0.25) should be [scaleX(12.5)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [none\] to [scale3d(2, 3, 5)\] at (0.75) should be [scale3d(1.75, 2.5, 4)\]]
expected: FAIL
[CSS Animations: property <transform> from [scaleX(10)\] to [scaleX(20)\] at (0.75) should be [scaleX(17.5)\]]
expected: FAIL
[CSS Animations: property <transform> from [scaleX(0)\] to [scaleY(0)\] at (0.75) should be [scale(0.75, 0.25)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [none\] to [scale3d(2, 3, 5)\] at (-1) should be [scale3d(0, -1, -3)\]]
expected: FAIL
[CSS Transitions: property <transform> from [scaleY(5)\] to [scaleY(9)\] at (-1) should be [scaleY(1)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> 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 <transform> from [scaleY(5)\] to [scaleY(9)\] at (0.25) should be [scaleY(6)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [scale3d(10, 0.5, 1)\] to [scale3d(20, 1, 2)\] at (-1) should be [scale3d(0, 0, 0)\]]
expected: FAIL
[Web Animations: property <transform> from [scale3d(10, 0.5, 1)\] to [scale3d(20, 1, 2)\] at (0) should be [scale3d(10, 0.5, 1)\]]
expected: FAIL
[CSS Animations: property <transform> from [scale(10, 5)\] to [scale(20, 9)\] at (0) should be [scale(10, 5)\]]
expected: FAIL
[CSS Transitions: property <transform> 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
[Web Animations: property <transform> from [scale3d(2, 3, 5)\] to [none\] at (1) should be [scale3d(1, 1, 1)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [scale(10, 5)\] to [scale(20, 9)\] at (2) should be [scale(30, 13)\]]
expected: FAIL
[CSS Animations: property <transform> from [none\] to [scale3d(2, 3, 5)\] at (0.25) should be [scale3d(1.25, 1.5, 2)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [scaleX(0)\] to [scaleY(0)\] at (0) should be [scale(0, 1)\]]
expected: FAIL
[Web Animations: property <transform> from [scaleZ(1)\] to [scaleZ(2)\] at (2) should be [scaleZ(3)\]]
expected: FAIL
[CSS Animations: property <transform> from [scaleZ(1)\] to [scaleZ(2)\] at (1) should be [scaleZ(2)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [scale3d(2, 3, 5)\] to [none\] at (2) should be [scale3d(0, -1, -3)\]]
expected: FAIL
[Web Animations: property <transform> 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
@ -269,210 +110,66 @@
[Web Animations: property <transform> from [scaleX(10)\] to [scaleX(20)\] at (1) should be [scaleX(20)\]]
expected: FAIL
[CSS Transitions: property <transform> from [scaleX(10)\] to [scaleX(20)\] at (0.75) should be [scaleX(17.5)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> 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 <transform> 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 <transform> 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
[Web Animations: property <transform> from [scaleY(5)\] to [scaleY(9)\] at (0.75) should be [scaleY(8)\]]
expected: FAIL
[Web Animations: property <transform> from [scale(10, 5)\] to [scale(20, 9)\] at (0) should be [scale(10, 5)\]]
expected: FAIL
[CSS Animations: property <transform> from [scale3d(2, 3, 5)\] to [none\] at (2) should be [scale3d(0, -1, -3)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> 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 <transform> from [scaleX(10)\] to [scaleX(20)\] at (1) should be [scaleX(20)\]]
expected: FAIL
[CSS Transitions: property <transform> from [none\] to [scale3d(2, 3, 5)\] at (2) should be [scale3d(3, 5, 9)\]]
expected: FAIL
[CSS Transitions: property <transform> from [scale3d(2, 3, 5)\] to [none\] at (0.25) should be [scale3d(1.75, 2.5, 4)\]]
expected: FAIL
[CSS Animations: property <transform> from [none\] to [scale3d(2, 3, 5)\] at (2) should be [scale3d(3, 5, 9)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [scaleZ(1)\] to [scaleZ(2)\] at (0.25) should be [scaleZ(1.25)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [scale(10, 5)\] to [scale(20, 9)\] at (-1) should be [scale(0, 1)\]]
expected: FAIL
[CSS Animations: property <transform> from [scale(10, 5)\] to [scale(20, 9)\] at (-1) should be [scale(0, 1)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [scaleZ(1)\] to [scaleZ(2)\] at (-1) should be [scaleZ(0)\]]
expected: FAIL
[Web Animations: property <transform> from [scale(10, 5)\] to [scale(20, 9)\] at (-1) should be [scale(0, 1)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [scaleX(10)\] to [scaleX(20)\] at (0.75) should be [scaleX(17.5)\]]
expected: FAIL
[CSS Transitions: property <transform> from [scale3d(2, 3, 5)\] to [none\] at (-1) should be [scale3d(3, 5, 9)\]]
expected: FAIL
[CSS Animations: property <transform> from [scaleY(5)\] to [scaleY(9)\] at (-1) should be [scaleY(1)\]]
expected: FAIL
[CSS Animations: property <transform> from [scaleX(10)\] to [scaleX(20)\] at (-1) should be [scaleX(0)\]]
expected: FAIL
[CSS Animations: property <transform> from [scaleX(10)\] to [scaleX(20)\] at (2) should be [scaleX(30)\]]
expected: FAIL
[CSS Animations: property <transform> from [scaleX(0)\] to [scaleY(0)\] at (1) should be [scale(1, 0)\]]
expected: FAIL
[Web Animations: property <transform> from [scaleX(0)\] to [scaleY(0)\] at (0.25) should be [scale(0.25, 0.75)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [scaleY(5)\] to [scaleY(9)\] at (1) should be [scaleY(9)\]]
expected: FAIL
[CSS Transitions: property <transform> from [scale(10, 5)\] to [scale(20, 9)\] at (0.25) should be [scale(12.5, 6)\]]
expected: FAIL
[Web Animations: property <transform> from [scaleZ(1)\] to [scaleZ(2)\] at (0.25) should be [scaleZ(1.25)\]]
expected: FAIL
[CSS Transitions: property <transform> 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 <transform> from [none\] to [scale3d(2, 3, 5)\] at (0) should be [scale3d(1, 1, 1)\]]
expected: FAIL
[CSS Animations: property <transform> from [scaleZ(1)\] to [scaleZ(2)\] at (-1) should be [scaleZ(0)\]]
expected: FAIL
[CSS Animations: property <transform> from [none\] to [scale3d(2, 3, 5)\] at (-1) should be [scale3d(0, -1, -3)\]]
expected: FAIL
[Web Animations: property <transform> from [none\] to [scale3d(2, 3, 5)\] at (0.25) should be [scale3d(1.25, 1.5, 2)\]]
expected: FAIL
[CSS Animations: property <transform> from [scale3d(2, 3, 5)\] to [none\] at (1) should be [scale3d(1, 1, 1)\]]
expected: FAIL
[Web Animations: property <transform> 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 with transition: all: property <transform> from [scaleY(5)\] to [scaleY(9)\] at (0.75) should be [scaleY(8)\]]
expected: FAIL
[Web Animations: property <transform> 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
[Web Animations: property <transform> from [scale3d(2, 3, 5)\] to [none\] at (0.25) should be [scale3d(1.75, 2.5, 4)\]]
expected: FAIL
[CSS Animations: property <transform> from [scale3d(2, 3, 5)\] to [none\] at (-1) should be [scale3d(3, 5, 9)\]]
expected: FAIL
[Web Animations: property <transform> from [scale3d(10, 0.5, 1)\] to [scale3d(20, 1, 2)\] at (-1) should be [scale3d(0, 0, 0)\]]
expected: FAIL
[Web Animations: property <transform> from [scaleX(0)\] to [scaleY(0)\] at (0.75) should be [scale(0.75, 0.25)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> 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
[Web Animations: property <transform> from [scaleX(0)\] to [scaleY(0)\] at (0) should be [scale(0, 1)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> 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
[Web Animations: property <transform> from [scaleX(0)\] to [scaleY(0)\] at (1) should be [scale(1, 0)\]]
expected: FAIL
[Web Animations: property <transform> from [scaleX(10)\] to [scaleX(20)\] at (0.75) should be [scaleX(17.5)\]]
expected: FAIL
[CSS Transitions: property <transform> from [scaleX(10)\] to [scaleX(20)\] at (0.25) should be [scaleX(12.5)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> 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
[Web Animations: property <transform> from [scaleX(0)\] to [scaleY(0)\] at (2) should be [scale(2, -1)\]]
expected: FAIL
[CSS Transitions: property <transform> from [scaleX(0)\] to [scaleY(0)\] at (0.25) should be [scale(0.25, 0.75)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [scaleZ(1)\] to [scaleZ(2)\] at (2) should be [scaleZ(3)\]]
expected: FAIL
[Web Animations: property <transform> from [none\] to [scale3d(2, 3, 5)\] at (-1) should be [scale3d(0, -1, -3)\]]
expected: FAIL
[Web Animations: property <transform> from [scale(10, 5)\] to [scale(20, 9)\] at (0.75) should be [scale(17.5, 8)\]]
expected: FAIL
[CSS Transitions: property <transform> from [none\] to [scale3d(2, 3, 5)\] at (-1) should be [scale3d(0, -1, -3)\]]
expected: FAIL
[CSS Animations: property <transform> from [scale3d(2, 3, 5)\] to [none\] at (0.75) should be [scale3d(1.25, 1.5, 2)\]]
expected: FAIL
[CSS Transitions: property <transform> from [scale(10, 5)\] to [scale(20, 9)\] at (0.75) should be [scale(17.5, 8)\]]
expected: FAIL
[CSS Animations: property <transform> from [scaleX(10)\] to [scaleX(20)\] at (0) should be [scaleX(10)\]]
expected: FAIL
[CSS Transitions: property <transform> from [scaleZ(1)\] to [scaleZ(2)\] at (2) should be [scaleZ(3)\]]
expected: FAIL
[Web Animations: property <transform> from [scaleY(5)\] to [scaleY(9)\] at (1) should be [scaleY(9)\]]
expected: FAIL
[CSS Transitions: property <transform> from [scale3d(2, 3, 5)\] to [none\] at (0.75) should be [scale3d(1.25, 1.5, 2)\]]
expected: FAIL
[CSS Transitions: property <transform> from [none\] to [scale3d(2, 3, 5)\] at (0.75) should be [scale3d(1.75, 2.5, 4)\]]
expected: FAIL
[CSS Animations: property <transform> from [scale3d(2, 3, 5)\] to [none\] at (0.25) should be [scale3d(1.75, 2.5, 4)\]]
expected: FAIL
[CSS Animations: property <transform> from [scaleZ(1)\] to [scaleZ(2)\] at (0.75) should be [scaleZ(1.75)\]]
expected: FAIL
[CSS Animations: property <transform> from [scale3d(10, 0.5, 1)\] to [scale3d(20, 1, 2)\] at (1) should be [scale3d(20, 1, 2)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [scaleY(5)\] to [scaleY(9)\] at (-1) should be [scaleY(1)\]]
expected: FAIL
[Web Animations: property <transform> from [scaleY(5)\] to [scaleY(9)\] at (2) should be [scaleY(13)\]]
expected: FAIL
@ -482,48 +179,24 @@
[CSS Transitions: property <transform> from [scaleX(0)\] to [scaleY(0)\] at (2) should be [scale(2, -1)\]]
expected: FAIL
[CSS Transitions: property <transform> from [scaleY(5)\] to [scaleY(9)\] at (2) should be [scaleY(13)\]]
expected: FAIL
[Web Animations: property <transform> from [scaleX(0)\] to [scaleY(0)\] at (-1) should be [scale(-1, 2)\]]
expected: FAIL
[CSS Transitions: property <transform> from [scaleZ(1)\] to [scaleZ(2)\] at (0.25) should be [scaleZ(1.25)\]]
expected: FAIL
[Web Animations: property <transform> from [scaleZ(1)\] to [scaleZ(2)\] at (0) should be [scaleZ(1)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [scaleX(0)\] to [scaleY(0)\] at (0.75) should be [scale(0.75, 0.25)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [scaleX(10)\] to [scaleX(20)\] at (0.25) should be [scaleX(12.5)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [scale(10, 5)\] to [scale(20, 9)\] at (0.25) should be [scale(12.5, 6)\]]
expected: FAIL
[Web Animations: property <transform> from [scale3d(2, 3, 5)\] to [none\] at (-1) should be [scale3d(3, 5, 9)\]]
expected: FAIL
[CSS Transitions: property <transform> from [scaleY(5)\] to [scaleY(9)\] at (0.25) should be [scaleY(6)\]]
expected: FAIL
[CSS Transitions: property <transform> from [scaleX(0)\] to [scaleY(0)\] at (-1) should be [scale(-1, 2)\]]
expected: FAIL
[CSS Animations: property <transform> from [none\] to [scale3d(2, 3, 5)\] at (1) should be [scale3d(2, 3, 5)\]]
expected: FAIL
[Web Animations: property <transform> from [scale(10, 5)\] to [scale(20, 9)\] at (0.25) should be [scale(12.5, 6)\]]
expected: FAIL
[CSS Animations: property <transform> from [scaleZ(1)\] to [scaleZ(2)\] at (0.25) should be [scaleZ(1.25)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [scaleY(5)\] to [scaleY(9)\] at (2) should be [scaleY(13)\]]
expected: FAIL
[Web Animations: property <transform> from [scale3d(2, 3, 5)\] to [none\] at (0.75) should be [scale3d(1.25, 1.5, 2)\]]
expected: FAIL
@ -542,15 +215,6 @@
[Web Animations: property <transform> from [scale3d(2, 3, 5)\] to [none\] at (2) should be [scale3d(0, -1, -3)\]]
expected: FAIL
[CSS Animations: property <transform> from [scaleY(5)\] to [scaleY(9)\] at (2) should be [scaleY(13)\]]
expected: FAIL
[CSS Animations: property <transform> from [scaleY(5)\] to [scaleY(9)\] at (0.75) should be [scaleY(8)\]]
expected: FAIL
[Web Animations: property <transform> 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 with transition: all: property <transform> from [scaleX(10)\] to [scaleX(20)\] at (2) should be [scaleX(30)\]]
expected: FAIL

View file

@ -14,33 +14,15 @@
[Web Animations: property <transform> from [skewX(10rad) scaleZ(1)\] to [skewX(20rad) scaleZ(2)\] at (0) should be [skewX(10rad) scaleZ(1)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [translateY(70%) scaleZ(1)\] to [translateY(90%) scaleZ(2)\] at (-1) should be [translateY(50%) scaleZ(0)\]]
expected: FAIL
[CSS Transitions: property <transform> from [skewY(10rad)\] to [skewY(20rad)\] at (0.75) should be [skewY(17.5rad)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (2) should be [translateY(110%) scaleZ(3)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (2) should be [translateY(110%) scaleZ(3)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [skewX(10rad)\] to [skewX(20rad)\] at (0.75) should be [skewX(17.5rad)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> 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 <transform> from [skewX(10rad) scaleZ(1)\] to [skewX(20rad) scaleZ(2)\] at (2) should be [skewX(30rad) scaleZ(3)\]]
expected: FAIL
[Web Animations: property <transform> from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (0.75) should be [skewX(17.5rad) scaleZ(1.75)\]]
expected: FAIL
@ -56,27 +38,9 @@
[Web Animations: property <transform> from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (-1) should be [translateY(50%) scaleZ(0)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [skewX(10rad)\] to [skewX(20rad)\] at (2) should be [skewX(30rad)\]]
expected: FAIL
[CSS Animations: property <transform> from [skewY(10rad)\] to [skewY(20rad)\] at (0.25) should be [skewY(12.5rad)\]]
expected: FAIL
[CSS Transitions: property <transform> 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 <transform> 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 <transform> from [skewX(10rad)\] to [skewX(20rad)\] at (2) should be [skewX(30rad)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [skewX(10rad) scaleZ(1)\] to [skewX(20rad) scaleZ(2)\] at (0.75) should be [skewX(17.5rad) scaleZ(1.75)\]]
expected: FAIL
@ -98,60 +62,27 @@
[Web Animations: property <transform> from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (2) should be [skewX(30rad) scaleZ(3)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> 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 <transform> from [skewY(10rad)\] to [skewY(20rad)\] at (2) should be [skewY(30rad)\]]
expected: FAIL
[CSS Animations: property <transform> from [skewX(10rad) scaleZ(1)\] to [skewX(20rad) scaleZ(2)\] at (0) should be [skewX(10rad) scaleZ(1)\]]
expected: FAIL
[Web Animations: property <transform> 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 <transform> from [skewY(10rad)\] to [skewY(20rad)\] at (0.75) should be [skewY(17.5rad)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (0.75) should be [translateY(85%) scaleZ(1.75)\]]
expected: FAIL
[CSS Animations: property <transform> from [skewX(10rad)\] to [skewX(20rad)\] at (0.25) should be [skewX(12.5rad)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [skewX(10rad)\] to [skewX(20rad)\] at (0.25) should be [skewX(12.5rad)\]]
expected: FAIL
[CSS Animations: property <transform> from [skewX(10rad) scaleZ(1)\] to [skewX(20rad) scaleZ(2)\] at (1) should be [skewX(20rad) scaleZ(2)\]]
expected: FAIL
[CSS Transitions: property <transform> from [skewY(10rad)\] to [skewY(20rad)\] at (2) should be [skewY(30rad)\]]
expected: FAIL
[CSS Animations: property <transform> from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (-1) should be [skewX(0rad) scaleZ(0)\]]
expected: FAIL
[CSS Transitions: property <transform> 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
[Web Animations: property <transform> from [skewX(10rad)\] to [skewX(20rad)\] at (2) should be [skewX(30rad)\]]
expected: FAIL
[CSS Transitions: property <transform> from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (0.75) should be [translateY(85%) scaleZ(1.75)\]]
expected: FAIL
[CSS Animations: property <transform> from [skewY(10rad)\] to [skewY(20rad)\] at (2) should be [skewY(30rad)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [translateY(70%) scaleZ(1)\] to [translateY(90%) scaleZ(2)\] at (0.25) should be [translateY(75%) scaleZ(1.25)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> 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
@ -170,30 +101,15 @@
[CSS Transitions: property <transform> 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 <transform> from [skewX(10rad)\] to [skewX(20rad)\] at (-1) should be [skewX(0rad)\]]
expected: FAIL
[CSS Animations: property <transform> from [skewX(10rad) scaleZ(1)\] to [skewX(20rad) scaleZ(2)\] at (-1) should be [skewX(0rad) scaleZ(0)\]]
expected: FAIL
[Web Animations: property <transform> 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 <transform> from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (1) should be [translateY(90%) scaleZ(2)\]]
expected: FAIL
[CSS Transitions: property <transform> from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (-1) should be [skewX(0rad) scaleZ(0)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (0) should be [translateY(70%)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [skewX(10rad) scaleZ(1)\] to [skewX(20rad) scaleZ(2)\] at (2) should be [skewX(30rad) scaleZ(3)\]]
expected: FAIL
[CSS Animations: property <transform> 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
@ -203,18 +119,9 @@
[CSS Transitions: property <transform> 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 <transform> from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (0.75) should be [skewX(17.5rad) scaleZ(1.75)\]]
expected: FAIL
[CSS Animations: property <transform> from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (2) should be [skewX(30rad) scaleZ(3)\]]
expected: FAIL
[Web Animations: property <transform> 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 with transition: all: property <transform> from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (-1) should be [translateY(50%) scaleZ(0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> 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
@ -236,30 +143,15 @@
[CSS Transitions with transition: all: property <transform> 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 <transform> from [translateY(70%) scaleZ(1)\] to [translateY(90%) scaleZ(2)\] at (-1) should be [translateY(50%) scaleZ(0)\]]
expected: FAIL
[CSS Transitions: property <transform> from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (0.25) should be [translateY(75%) scaleZ(1.25)\]]
expected: FAIL
[CSS Animations: property <transform> from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (0.25) should be [skewX(12.5rad) scaleZ(1.25)\]]
expected: FAIL
[Web Animations: property <transform> from [skewX(10rad)\] to [skewX(20rad)\] at (0) should be [skewX(10rad)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [skewY(10rad)\] to [skewY(20rad)\] at (-1) should be [skewY(0rad)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> 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 <transform> from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (2) should be [translateY(110%) scaleZ(3)\]]
expected: FAIL
[Web Animations: property <transform> from [skewY(10rad)\] to [skewY(20rad)\] at (0.75) should be [skewY(17.5rad)\]]
expected: FAIL
@ -275,9 +167,6 @@
[Web Animations: property <transform> from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (0.25) should be [skewX(12.5rad) scaleZ(1.25)\]]
expected: FAIL
[CSS Animations: property <transform> from [translateY(70%) scaleZ(1)\] to [translateY(90%) scaleZ(2)\] at (0.75) should be [translateY(85%) scaleZ(1.75)\]]
expected: FAIL
[Web Animations: property <transform> from [translateY(70%) scaleZ(1)\] to [translateY(90%) scaleZ(2)\] at (2) should be [translateY(110%) scaleZ(3)\]]
expected: FAIL
@ -287,42 +176,24 @@
[CSS Transitions: property <transform> from [skewX(10rad)\] to [skewX(20rad)\] at (-1) should be [skewX(0rad)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (2) should be [skewX(30rad) scaleZ(3)\]]
expected: FAIL
[CSS Transitions: property <transform> from [skewX(10rad) scaleZ(1)\] to [skewX(20rad) scaleZ(2)\] at (2) should be [skewX(30rad) scaleZ(3)\]]
expected: FAIL
[CSS Animations: property <transform> from [translateY(70%) scaleZ(1)\] to [translateY(90%) scaleZ(2)\] at (1) should be [translateY(90%) scaleZ(2)\]]
expected: FAIL
[CSS Animations: property <transform> from [skewY(10rad)\] to [skewY(20rad)\] at (0) should be [skewY(10rad)\]]
expected: FAIL
[Web Animations: property <transform> from [skewY(10rad)\] to [skewY(20rad)\] at (2) should be [skewY(30rad)\]]
expected: FAIL
[CSS Animations: property <transform> from [skewY(10rad)\] to [skewY(20rad)\] at (0.75) should be [skewY(17.5rad)\]]
expected: FAIL
[Web Animations: property <transform> from [translateY(70%) scaleZ(1)\] to [translateY(90%) scaleZ(2)\] at (0.25) should be [translateY(75%) scaleZ(1.25)\]]
expected: FAIL
[Web Animations: property <transform> 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 Animations: property <transform> from [skewY(10rad)\] to [skewY(20rad)\] at (-1) should be [skewY(0rad)\]]
expected: FAIL
[CSS Animations: property <transform> 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
[Web Animations: property <transform> 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 <transform> from [skewX(10rad)\] to [skewX(20rad)\] at (0) should be [skewX(10rad)\]]
expected: FAIL
[Web Animations: property <transform> from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (0) should be [skewX(10rad) scaleZ(1)\]]
expected: FAIL
@ -335,33 +206,15 @@
[CSS Transitions: property <transform> from [skewX(10rad) scaleZ(1)\] to [skewX(20rad) scaleZ(2)\] at (-1) should be [skewX(0rad) scaleZ(0)\]]
expected: FAIL
[CSS Animations: property <transform> from [skewX(10rad)\] to [skewX(20rad)\] at (1) should be [skewX(20rad)\]]
expected: FAIL
[Web Animations: property <transform> from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (0) should be [translateY(70%)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (0.25) should be [translateY(75%) scaleZ(1.25)\]]
expected: FAIL
[Web Animations: property <transform> from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (-1) should be [skewX(0rad) scaleZ(0)\]]
expected: FAIL
[CSS Animations: property <transform> from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (0) should be [skewX(10rad) scaleZ(1)\]]
expected: FAIL
[CSS Animations: property <transform> from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (-1) should be [translateY(50%) scaleZ(0)\]]
expected: FAIL
[CSS Transitions: property <transform> from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (0.75) should be [skewX(17.5rad) scaleZ(1.75)\]]
expected: FAIL
[CSS Animations: property <transform> from [skewX(10rad)\] to [skewX(20rad)\] at (0.75) should be [skewX(17.5rad)\]]
expected: FAIL
[CSS Animations: property <transform> from [skewX(10rad)\] to [skewX(20rad) scaleZ(2)\] at (1) should be [skewX(20rad) scaleZ(2)\]]
expected: FAIL
[CSS Transitions: property <transform> from [skewX(10rad) scaleZ(1)\] to [skewX(20rad) scaleZ(2)\] at (0.75) should be [skewX(17.5rad) scaleZ(1.75)\]]
expected: FAIL
@ -398,18 +251,9 @@
[Web Animations: property <transform> from [skewX(10rad)\] to [skewX(20rad)\] at (-1) should be [skewX(0rad)\]]
expected: FAIL
[CSS Transitions: property <transform> from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (-1) should be [translateY(50%) scaleZ(0)\]]
expected: FAIL
[CSS Transitions: property <transform> from [skewY(10rad)\] to [skewY(20rad)\] at (-1) should be [skewY(0rad)\]]
expected: FAIL
[CSS Transitions: property <transform> 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 <transform> 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 <transform> from [skewX(10rad)\] to [skewX(20rad)\] at (0.25) should be [skewX(12.5rad)\]]
expected: FAIL
@ -425,18 +269,9 @@
[CSS Transitions with transition: all: property <transform> from [skewX(10rad)\] to [skewX(20rad)\] at (-1) should be [skewX(0rad)\]]
expected: FAIL
[CSS Transitions: property <transform> from [translateY(70%) scaleZ(1)\] to [translateY(90%) scaleZ(2)\] at (2) should be [translateY(110%) scaleZ(3)\]]
expected: FAIL
[CSS Animations: property <transform> from [translateY(70%)\] to [translateY(90%) scaleZ(2)\] at (0.25) should be [translateY(75%) scaleZ(1.25)\]]
expected: FAIL
[Web Animations: property <transform> from [translateY(70%) scaleZ(1)\] to [translateY(90%) scaleZ(2)\] at (0) should be [translateY(70%) scaleZ(1)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [skewY(10rad)\] to [skewY(20rad)\] at (1) should be [skewY(20rad)\]]
expected: FAIL

View file

@ -11,42 +11,15 @@
[CSS Transitions with transition: all: property <transform> 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 <transform> 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 <transform> 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 <transform> from [translateY(70%)\] to [translateY(90%)\] at (-1) should be [translateY(50%)\]]
expected: FAIL
[CSS Transitions: property <transform> 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 <transform> from [skewX(10rad) translateY(70%)\] to [skewX(20rad) translateY(90%)\] at (0.75) should be [skewX(17.5rad) translateY(85%)\]]
expected: FAIL
[Web Animations: property <transform> from [translateZ(2em)\] to [translateZ(3em)\] at (0.75) should be [translateZ(2.75em)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [translateY(70%)\] to [translateY(90%)\] at (0.75) should be [translateY(85%)\]]
expected: FAIL
[CSS Transitions: property <transform> 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 <transform> 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 <transform> from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (0) should be [translate(12px, 70%)\]]
expected: FAIL
[CSS Transitions: property <transform> from [translateZ(2em)\] to [translateZ(3em)\] at (0.75) should be [translateZ(2.75em)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> 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
@ -56,45 +29,18 @@
[CSS Transitions: property <transform> 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 <transform> from [translateZ(2em)\] to [translateZ(3em)\] at (0.75) should be [translateZ(2.75em)\]]
expected: FAIL
[CSS Animations: property <transform> from [translateX(12px)\] to [translateX(13px)\] at (2) should be [translateX(14px)\]]
expected: FAIL
[CSS Transitions: property <transform> 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 <transform> from [translateX(12px)\] to [translateX(13px)\] at (0.25) should be [translateX(12.25px)\]]
expected: FAIL
[CSS Animations: property <transform> from [translateY(70%)\] to [translateY(90%)\] at (0) should be [translateY(70%)\]]
expected: FAIL
[Web Animations: property <transform> 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 <transform> 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 <transform> 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 <transform> from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (2) should be [translate(14px, 110%)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> 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 <transform> from [translateY(70%)\] to [translateY(90%)\] at (0.25) should be [translateY(75%)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [translateZ(2em)\] to [translateZ(3em)\] at (-1) should be [translateZ(1em)\]]
expected: FAIL
[Web Animations: property <transform> from [translateY(70%)\] to [translateY(90%)\] at (0.25) should be [translateY(75%)\]]
expected: FAIL
@ -113,12 +59,6 @@
[Web Animations: property <transform> from [translateX(12px)\] to [translateX(13px)\] at (0) should be [translateX(12px)\]]
expected: FAIL
[CSS Transitions: property <transform> from [translateX(12px)\] to [translateX(13px)\] at (0.75) should be [translateX(12.75px)\]]
expected: FAIL
[CSS Animations: property <transform> from [translateY(70%)\] to [translateY(90%)\] at (0.75) should be [translateY(85%)\]]
expected: FAIL
[Web Animations: property <transform> 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
@ -134,18 +74,9 @@
[CSS Animations: property <transform> 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 <transform> from [translateX(12px)\] to [translateX(13px)\] at (0.25) should be [translateX(12.25px)\]]
expected: FAIL
[Web Animations: property <transform> 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 <transform> 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 <transform> from [translate3d(12px, 70%, 2em)\] to [translate3d(13px, 90%, 3em)\] at (-1) should be [translate3d(11px, 50%, 1em)\]]
expected: FAIL
[Web Animations: property <transform> from [translate3d(12px, 70%, 2em)\] to [translate3d(13px, 90%, 3em)\] at (2) should be [translate3d(14px, 110%, 4em)\]]
expected: FAIL
@ -167,9 +98,6 @@
[CSS Animations: property <transform> 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 <transform> from [translate3d(12px, 70%, 2em)\] to [translate3d(13px, 90%, 3em)\] at (2) should be [translate3d(14px, 110%, 4em)\]]
expected: FAIL
[Web Animations: property <transform> from [translateX(12px)\] to [translateX(13px)\] at (0.25) should be [translateX(12.25px)\]]
expected: FAIL
@ -188,30 +116,12 @@
[CSS Transitions: property <transform> 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 <transform> 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 <transform> 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 <transform> 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
[Web Animations: property <transform> from [translateZ(2em)\] to [translateZ(3em)\] at (0) should be [translateZ(2em)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [translateY(70%)\] to [translateY(90%)\] at (0.25) should be [translateY(75%)\]]
expected: FAIL
[CSS Transitions: property <transform> from [translateX(12px)\] to [translateX(13px)\] at (2) should be [translateX(14px)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [translateX(12px)\] to [translateX(13px)\] at (2) should be [translateX(14px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> 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
@ -230,30 +140,18 @@
[Web Animations: property <transform> from [translate3d(12px, 70%, 2em)\] to [translate3d(13px, 90%, 3em)\] at (-1) should be [translate3d(11px, 50%, 1em)\]]
expected: FAIL
[CSS Transitions: property <transform> from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (-1) should be [translate(11px, 50%)\]]
expected: FAIL
[CSS Transitions: property <transform> 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
[Web Animations: property <transform> 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 <transform> from [translateY(70%)\] to [translateY(90%)\] at (0.25) should be [translateY(75%)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> 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 <transform> 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 <transform> from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (0.75) should be [translate(12.75px, 85%)\]]
expected: FAIL
[CSS Animations: property <transform> from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (2) should be [translate(14px, 110%)\]]
expected: FAIL
[Web Animations: property <transform> from [translateX(12px)\] to [translateX(13px)\] at (1) should be [translateX(13px)\]]
expected: FAIL
@ -269,18 +167,9 @@
[CSS Transitions with transition: all: property <transform> 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 <transform> 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 <transform> 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
[Web Animations: property <transform> 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 <transform> from [translateZ(2em)\] to [translateZ(3em)\] at (0.75) should be [translateZ(2.75em)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [translate3D(100px, 200px, 300px)\] to [none\] at (1) should be [matrix(1, 0, 0, 1, 0, 0) \]]
expected: FAIL
@ -302,54 +191,24 @@
[CSS Transitions: property <transform> 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 <transform> from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (-1) should be [translate(11px, 50%)\]]
expected: FAIL
[CSS Transitions: property <transform> from [translateX(12px)\] to [translateX(13px)\] at (0.25) should be [translateX(12.25px)\]]
expected: FAIL
[Web Animations: property <transform> 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 <transform> 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 <transform> 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 <transform> from [skewX(10rad) translateY(70%)\] to [skewX(20rad) translateY(90%)\] at (2) should be [skewX(30rad) translateY(110%)\]]
expected: FAIL
[Web Animations: property <transform> 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 <transform> 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 <transform> from [translateY(70%)\] to [translateY(90%)\] at (-1) should be [translateY(50%)\]]
expected: FAIL
[CSS Transitions: property <transform> from [skewX(10rad) translateY(70%)\] to [skewX(20rad) translateY(90%)\] at (-1) should be [skewX(0rad) translateY(50%)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [translate3d(12px, 70%, 2em)\] to [translate3d(13px, 90%, 3em)\] at (-1) should be [translate3d(11px, 50%, 1em)\]]
expected: FAIL
[CSS Animations: property <transform> 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
[Web Animations: property <transform> 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 Animations: property <transform> from [translateZ(2em)\] to [translateZ(3em)\] at (0.25) should be [translateZ(2.25em)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [translateY(70%)\] to [translateY(90%)\] at (2) should be [translateY(110%)\]]
expected: FAIL
[Web Animations: property <transform> 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
@ -359,42 +218,21 @@
[Web Animations: property <transform> 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 Animations: property <transform> 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 <transform> from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (1) should be [translate(13px, 90%)\]]
expected: FAIL
[Web Animations: property <transform> 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 <transform> 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 <transform> from [translateY(70%)\] to [translateY(90%)\] at (2) should be [translateY(110%)\]]
expected: FAIL
[CSS Animations: property <transform> from [skewX(10rad) translateY(70%)\] to [skewX(20rad) translateY(90%)\] at (1) should be [skewX(20rad) translateY(90%)\]]
expected: FAIL
[CSS Transitions: property <transform> from [translate3D(100px, 200px, 300px)\] to [none\] at (1) should be [matrix(1, 0, 0, 1, 0, 0) \]]
expected: FAIL
[CSS Transitions: property <transform> from [translateZ(2em)\] to [translateZ(3em)\] at (-1) should be [translateZ(1em)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [translateZ(2em)\] to [translateZ(3em)\] at (0.25) should be [translateZ(2.25em)\]]
expected: FAIL
[Web Animations: property <transform> 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 <transform> 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 <transform> 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 <transform> from [skewX(10rad) translateY(70%)\] to [skewX(20rad) translateY(90%)\] at (-1) should be [skewX(0rad) translateY(50%)\]]
expected: FAIL
@ -404,9 +242,6 @@
[CSS Transitions: property <transform> 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 <transform> 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 <transform> 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
@ -428,42 +263,21 @@
[CSS Transitions with transition: all: property <transform> 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 <transform> from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (2) should be [translate(14px, 110%)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> 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 <transform> from [skewX(10rad) translateY(70%)\] to [skewX(20rad) translateY(90%)\] at (0) should be [skewX(10rad) translateY(70%)\]]
expected: FAIL
[CSS Animations: property <transform> from [translateZ(2em)\] to [translateZ(3em)\] at (0) should be [translateZ(2em)\]]
expected: FAIL
[CSS Transitions: property <transform> from [translateY(70%)\] to [translateY(90%)\] at (2) should be [translateY(110%)\]]
expected: FAIL
[CSS Transitions: property <transform> 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 <transform> from [translateX(12px)\] to [translateX(13px)\] at (1) should be [translateX(13px)\]]
expected: FAIL
[Web Animations: property <transform> from [translate3d(12px, 70%, 2em)\] to [translate3d(13px, 90%, 3em)\] at (0) should be [translate3d(12px, 70%, 2em)\]]
expected: FAIL
[CSS Transitions: property <transform> from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (0.25) should be [translate(12.25px, 75%)\]]
expected: FAIL
[Web Animations: property <transform> 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 <transform> from [translateZ(2em)\] to [translateZ(3em)\] at (2) should be [translateZ(4em)\]]
expected: FAIL
[CSS Transitions: property <transform> 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
@ -479,15 +293,9 @@
[Web Animations: property <transform> from [translateX(12px)\] to [translateX(13px)\] at (2) should be [translateX(14px)\]]
expected: FAIL
[CSS Animations: property <transform> from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (-1) should be [translate(11px, 50%)\]]
expected: FAIL
[CSS Transitions: property <transform> 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 Animations: property <transform> from [translateX(12px)\] to [translateX(13px)\] at (0.75) should be [translateX(12.75px)\]]
expected: FAIL
[CSS Transitions: property <transform> from [skewX(10rad) translateY(70%)\] to [skewX(20rad) translateY(90%)\] at (0.75) should be [skewX(17.5rad) translateY(85%)\]]
expected: FAIL
@ -506,9 +314,6 @@
[CSS Transitions: property <transform> 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 <transform> 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 <transform> 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
@ -536,9 +341,6 @@
[CSS Animations: property <transform> 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 Animations: property <transform> from [translateZ(2em)\] to [translateZ(3em)\] at (1) should be [translateZ(3em)\]]
expected: FAIL
[Web Animations: property <transform> from [translate3D(100px, 200px, 300px)\] to [none\] at (1) should be [matrix(1, 0, 0, 1, 0, 0) \]]
expected: FAIL
@ -551,12 +353,6 @@
[Web Animations: property <transform> from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (2) should be [translate(14px, 110%)\]]
expected: FAIL
[CSS Transitions: property <transform> 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 <transform> from [translateY(70%)\] to [translateY(90%)\] at (-1) should be [translateY(50%)\]]
expected: FAIL
[CSS Animations: property <transform> 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
@ -575,33 +371,12 @@
[CSS Animations: property <transform> 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 <transform> 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 <transform> 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
[Web Animations: property <transform> from [translateY(70%)\] to [translateY(90%)\] at (1) should be [translateY(90%)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [translateZ(2em)\] to [translateZ(3em)\] at (2) should be [translateZ(4em)\]]
expected: FAIL
[CSS Animations: property <transform> from [translateX(12px)\] to [translateX(13px)\] at (0) should be [translateX(12px)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> 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 <transform> 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 <transform> 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
@ -620,9 +395,6 @@
[Web Animations: property <transform> from [skewX(10rad) translateY(70%)\] to [skewX(20rad) translateY(90%)\] at (2) should be [skewX(30rad) translateY(110%)\]]
expected: FAIL
[CSS Animations: property <transform> from [skewX(10rad) translateY(70%)\] to [skewX(20rad) translateY(90%)\] at (-1) should be [skewX(0rad) translateY(50%)\]]
expected: FAIL
[Web Animations: property <transform> from [translateZ(2em)\] to [translateZ(3em)\] at (1) should be [translateZ(3em)\]]
expected: FAIL
@ -635,9 +407,6 @@
[CSS Animations: property <transform> 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 <transform> from [translateX(12px)\] to [translateX(13px)\] at (-1) should be [translateX(11px)\]]
expected: FAIL
[CSS Transitions: property <transform> 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
@ -647,9 +416,6 @@
[CSS Transitions: property <transform> 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 <transform> from [translateX(12px)\] to [translateX(13px)\] at (-1) should be [translateX(11px)\]]
expected: FAIL
[CSS Transitions: property <transform> 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
@ -668,12 +434,6 @@
[Web Animations: property <transform> 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 with transition: all: property <transform> from [skewX(10rad) translateY(70%)\] to [skewX(20rad) translateY(90%)\] at (2) should be [skewX(30rad) translateY(110%)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> 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
@ -683,27 +443,15 @@
[CSS Transitions with transition: all: property <transform> 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 <transform> from [translate3d(12px, 70%, 2em)\] to [translate3d(13px, 90%, 3em)\] at (0) should be [translate3d(12px, 70%, 2em)\]]
expected: FAIL
[CSS Transitions: property <transform> from [translateY(70%)\] to [translateY(90%)\] at (0.75) should be [translateY(85%)\]]
expected: FAIL
[CSS Transitions: property <transform> 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 <transform> from [translate(12px, 70%)\] to [translate(13px, 90%)\] at (0.25) should be [translate(12.25px, 75%)\]]
expected: FAIL
[CSS Transitions: property <transform> 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 <transform> 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 <transform> from [translateX(12px)\] to [translateX(13px)\] at (0.75) should be [translateX(12.75px)\]]
expected: FAIL
[Web Animations: property <transform> 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
@ -740,36 +488,18 @@
[Web Animations: property <transform> 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 <transform> from [translateY(70%)\] to [translateY(90%)\] at (1) should be [translateY(90%)\]]
expected: FAIL
[CSS Transitions: property <transform> from [translateX(12px)\] to [translateX(13px)\] at (-1) should be [translateX(11px)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> 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 <transform> 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 <transform> from [translateZ(2em)\] to [translateZ(3em)\] at (0.25) should be [translateZ(2.25em)\]]
expected: FAIL
[CSS Transitions: property <transform> from [translateZ(2em)\] to [translateZ(3em)\] at (2) should be [translateZ(4em)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> 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
[Web Animations: property <transform> 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 <transform> from [translateZ(2em)\] to [translateZ(3em)\] at (-1) should be [translateZ(1em)\]]
expected: FAIL
[Web Animations: property <transform> from [translateX(12px)\] to [translateX(13px)\] at (0.75) should be [translateX(12.75px)\]]
expected: FAIL
@ -782,3 +512,18 @@
[Web Animations: property <transform> from [skewX(10rad) translateY(70%)\] to [skewX(20rad) translateY(90%)\] at (1) should be [skewX(20rad) translateY(90%)\]]
expected: FAIL
[CSS Transitions: property <transform> 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: property <transform> 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 <transform> 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 <transform> 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 <transform> 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

View file

@ -2,15 +2,6 @@
[transform interpolation]
expected: FAIL
[CSS Transitions with transition: all: property <transform> 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 <transform> from [none\] to [rotate(180deg)\] at (0.75) should be [rotate(135deg)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> 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
@ -20,102 +11,39 @@
[CSS Transitions: property <transform> from [rotate(180deg)\] to [none\] at (0.25) should be [rotate(135deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [none\] to [matrix(7, 0, 2, 2, 6, 0)\] at (1) should be [matrix(7, 0, 2, 2, 6, 0)\]]
expected: FAIL
[Web Animations: property <transform> from [none\] to [rotate(360deg)\] at (2) should be [rotate(720deg)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [none\] to [rotate(360deg)\] at (2) should be [rotate(720deg)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> 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 <transform> 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
[Web Animations: property <transform> from [rotate(180deg)\] to [none\] at (-1) should be [rotate(360deg)\]]
expected: FAIL
[Web Animations: property <transform> 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 with transition: all: property <transform> 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
[Web Animations: property <transform> 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 <transform> 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 <transform> from [matrix(3, 0, 0, 5, 0, -6)\] to [none\] at (0.5) should be [matrix(2, 0, 0, 3, 0, -3)\]]
expected: FAIL
[Web Animations: property <transform> from [none\] to [rotate(180deg)\] at (0) should be [rotate(0deg)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [none\] to [rotate(360deg)\] at (-1) should be [rotate(-360deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [none\] to [rotate(360deg)\] at (0.75) should be [rotate(270deg)\]]
expected: FAIL
[Web Animations: property <transform> 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 <transform> 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
[Web Animations: property <transform> from [none\] to [rotate(180deg)\] at (-1) should be [rotate(-180deg)\]]
expected: FAIL
[CSS Animations: property <transform> 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
[Web Animations: property <transform> 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 <transform> 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 <transform> from [rotate(180deg)\] to [none\] at (-1) should be [rotate(360deg)\]]
expected: FAIL
[CSS Transitions: property <transform> 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
[Web Animations: property <transform> 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 Animations: property <transform> from [rotate(180deg)\] to [none\] at (0.75) should be [rotate(45deg)\]]
expected: FAIL
[CSS Transitions: property <transform> 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 <transform> from [none\] to [rotate(180deg)\] at (1) should be [rotate(180deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [none\] to [rotate(360deg)\] at (1) should be [rotate(360deg)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> 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 <transform> from [none\] to [rotate(360deg)\] at (0.75) should be [rotate(270deg)\]]
expected: FAIL
@ -128,36 +56,15 @@
[Web Animations: property <transform> 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 <transform> 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 <transform> 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 <transform> 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 <transform> 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 <transform> from [none\] to [rotate(360deg)\] at (2) should be [rotate(720deg)\]]
expected: FAIL
[Web Animations: property <transform> 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 <transform> 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
[Web Animations: property <transform> 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
[Web Animations: property <transform> 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 Animations: property <transform> 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
[Web Animations: property <transform> 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
@ -167,39 +74,21 @@
[Web Animations: property <transform> 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 <transform> 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
[Web Animations: property <transform> 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 with transition: all: property <transform> 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
[Web Animations: property <transform> 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 <transform> 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 <transform> 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 <transform> 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
[Web Animations: property <transform> 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 <transform> 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 <transform> 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 <transform> 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 Animations: property <transform> 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
@ -209,66 +98,33 @@
[Web Animations: property <transform> 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 <transform> 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
[Web Animations: property <transform> 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 <transform> 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
[Web Animations: property <transform> 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 <transform> 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 <transform> 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
[Web Animations: property <transform> 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
[Web Animations: property <transform> 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 Animations: property <transform> from [matrix(3, 0, 0, 5, 0, -6)\] to [none\] at (0.5) should be [matrix(2, 0, 0, 3, 0, -3)\]]
expected: FAIL
[Web Animations: property <transform> from [none\] to [matrix(7, 0, 2, 2, 6, 0)\] at (1) should be [matrix(7, 0, 2, 2, 6, 0)\]]
expected: FAIL
[CSS Transitions: property <transform> 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 <transform> 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 <transform> from [none\] to [rotate(360deg)\] at (2) should be [rotate(720deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> 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 <transform> 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 <transform> 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 <transform> from [none\] to [rotate(180deg)\] at (0.25) should be [rotate(45deg)\]]
expected: FAIL
[Web Animations: property <transform> 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 Transitions with transition: all: property <transform> 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 <transform> 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 <transform> from [none\] to [rotate(360deg)\] at (0.25) should be [rotate(90deg)\]]
expected: FAIL
@ -287,21 +143,9 @@
[CSS Transitions with transition: all: property <transform> 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 <transform> 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
[Web Animations: property <transform> from [none\] to [rotate(180deg)\] at (0.25) should be [rotate(45deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [none\] to [rotate(180deg)\] at (2) should be [rotate(360deg)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> 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
[Web Animations: property <transform> 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
@ -314,36 +158,18 @@
[CSS Transitions with transition: all: property <transform> 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 <transform> 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
[Web Animations: property <transform> 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 <transform> 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 <transform> 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 <transform> 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 <transform> 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 <transform> from [none\] to [rotate(360deg)\] at (-1) should be [rotate(-360deg)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [rotate(180deg)\] to [none\] at (0.75) should be [rotate(45deg)\]]
expected: FAIL
[CSS Animations: property <transform> 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
[Web Animations: property <transform> 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
@ -353,48 +179,15 @@
[CSS Transitions: property <transform> 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 <transform> 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 <transform> 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 <transform> 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 <transform> 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 <transform> 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 <transform> 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 <transform> from [rotate(180deg)\] to [none\] at (0.75) should be [rotate(45deg)\]]
expected: FAIL
[CSS Transitions: property <transform> from [none\] to [rotate(180deg)\] at (2) should be [rotate(360deg)\]]
expected: FAIL
[CSS Animations: property <transform> 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
[Web Animations: property <transform> 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 <transform> from [rotate(180deg)\] to [none\] at (2) should be [rotate(-180deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [rotate(180deg)\] to [none\] at (1) should be [rotate(0deg)\]]
expected: FAIL
[CSS Transitions: property <transform> 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 <transform> 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 <transform> 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
@ -404,9 +197,6 @@
[CSS Transitions: property <transform> 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 <transform> 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 <transform> 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
@ -422,105 +212,45 @@
[Web Animations: property <transform> 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 <transform> 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 <transform> 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 <transform> 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 <transform> 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 <transform> 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 <transform> 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
[Web Animations: property <transform> 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 with transition: all: property <transform> 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 <transform> 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
[Web Animations: property <transform> 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 <transform> 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
[Web Animations: property <transform> 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 Transitions with transition: all: property <transform> 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 <transform> 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 <transform> 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 <transform> 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
[Web Animations: property <transform> 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 with transition: all: property <transform> from [none\] to [rotate(180deg)\] at (-1) should be [rotate(-180deg)\]]
expected: FAIL
[CSS Transitions: property <transform> 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 <transform> 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 <transform> from [none\] to [rotate(180deg)\] at (0) should be [rotate(0deg)\]]
expected: FAIL
[Web Animations: property <transform> 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 <transform> 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 <transform> 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 <transform> from [rotate(180deg)\] to [none\] at (2) should be [rotate(-180deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> 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 <transform> from [rotate(180deg)\] to [none\] at (0.25) should be [rotate(135deg)\]]
expected: FAIL
[Web Animations: property <transform> 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
[Web Animations: property <transform> 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 <transform> 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 <transform> 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
[Web Animations: property <transform> 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 <transform> 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
[Web Animations: property <transform> 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
@ -530,156 +260,66 @@
[Web Animations: property <transform> 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 <transform> 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 <transform> 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 <transform> 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
[Web Animations: property <transform> 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 <transform> 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
[Web Animations: property <transform> 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 <transform> 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 <transform> from [rotate(180deg)\] to [none\] at (0) should be [rotate(180deg)\]]
expected: FAIL
[Web Animations: property <transform> 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: property <transform> 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 <transform> 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 <transform> from [none\] to [rotate(360deg)\] at (0) should be [rotate(0deg)\]]
expected: FAIL
[CSS Transitions: property <transform> 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 <transform> 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 <transform> 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 <transform> 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 <transform> from [none\] to [rotate(180deg)\] at (0.25) should be [rotate(45deg)\]]
expected: FAIL
[CSS Animations: property <transform> 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
[Web Animations: property <transform> 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 Animations: property <transform> 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 <transform> from [none\] to [rotate(180deg)\] at (-1) should be [rotate(-180deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> 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 <transform> 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 <transform> 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 <transform> from [none\] to [rotate(180deg)\] at (0.75) should be [rotate(135deg)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [none\] to [rotate(360deg)\] at (0.25) should be [rotate(90deg)\]]
expected: FAIL
[CSS Transitions: property <transform> 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 <transform> 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 <transform> from [none\] to [rotate(180deg)\] at (0.75) should be [rotate(135deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> 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
[Web Animations: property <transform> 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
[Web Animations: property <transform> 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 Animations: property <transform> 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 <transform> 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 with transition: all: property <transform> from [none\] to [rotate(360deg)\] at (0.75) should be [rotate(270deg)\]]
expected: FAIL
[CSS Animations: property <transform> from [matrix(3, 0, 0, 5, 0, -6)\] to [none\] at (0) should be [matrix(3, 0, 0, 5, 0, -6)\]]
expected: FAIL
[Web Animations: property <transform> 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 <transform> from [rotate(180deg)\] to [none\] at (2) should be [rotate(-180deg)\]]
expected: FAIL
[Web Animations: property <transform> 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 <transform> 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
[Web Animations: property <transform> 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
[Web Animations: property <transform> 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 <transform> 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
[Web Animations: property <transform> 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 <transform> 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 <transform> from [none\] to [rotate(180deg)\] at (0.25) should be [rotate(45deg)\]]
expected: FAIL
[CSS Transitions: property <transform> 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
[Web Animations: property <transform> from [none\] to [rotate(360deg)\] at (1) should be [rotate(360deg)\]]
expected: FAIL
[CSS Animations: property <transform> 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 <transform> from [rotate(180deg)\] to [none\] at (-1) should be [rotate(360deg)\]]
expected: FAIL
@ -695,93 +335,39 @@
[CSS Animations: property <transform> 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 <transform> 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 <transform> 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 <transform> 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 <transform> 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
[Web Animations: property <transform> 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 <transform> 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 <transform> 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
[Web Animations: property <transform> 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 with transition: all: property <transform> 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 <transform> 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 <transform> 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 <transform> 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
[Web Animations: property <transform> 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
[Web Animations: property <transform> 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 Animations: property <transform> from [none\] to [rotate(180deg)\] at (2) should be [rotate(360deg)\]]
expected: FAIL
[Web Animations: property <transform> 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 with transition: all: property <transform> 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 <transform> 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
[Web Animations: property <transform> from [none\] to [rotate(180deg)\] at (0.75) should be [rotate(135deg)\]]
expected: FAIL
[CSS Transitions: property <transform> 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
[Web Animations: property <transform> 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 <transform> 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
[Web Animations: property <transform> from [none\] to [rotate(180deg)\] at (2) should be [rotate(360deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> 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
[Web Animations: property <transform> 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 <transform> 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 Animations: property <transform> 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 <transform> 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 <transform> 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 <transform> 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
@ -791,15 +377,6 @@
[Web Animations: property <transform> 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 Animations: property <transform> 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 <transform> 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 <transform> 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 <transform> from [none\] to [rotate(360deg)\] at (0.25) should be [rotate(90deg)\]]
expected: FAIL
@ -812,9 +389,6 @@
[CSS Transitions: property <transform> 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 <transform> 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
[Web Animations: property <transform> from [rotate(180deg)\] to [none\] at (1) should be [rotate(0deg)\]]
expected: FAIL
@ -824,27 +398,15 @@
[Web Animations: property <transform> 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 with transition: all: property <transform> 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 <transform> from [none\] to [rotate(360deg)\] at (-1) should be [rotate(-360deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> 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 <transform> 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 <transform> 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 <transform> 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 <transform> 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 <transform> 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
@ -869,9 +431,6 @@
[CSS Transitions: property <transform> 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 <transform> 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 <transform> 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
@ -881,24 +440,21 @@
[Web Animations: property <transform> 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 <transform> 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 <transform> 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
[Web Animations: property <transform> from [rotate(180deg)\] to [none\] at (2) should be [rotate(-180deg)\]]
expected: FAIL
[Web Animations: property <transform> 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 <transform> from [matrix(3, 0, 0, 5, 0, -6)\] to [none\] at (2) should be [matrix(-1, 0, 0, -3, 0, 6)\]]
expected: FAIL
[Web Animations: property <transform> from [rotate(180deg)\] to [none\] at (0.75) should be [rotate(45deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [rotate(180deg)\] to [none\] at (0.25) should be [rotate(135deg)\]]
expected: FAIL
[CSS Transitions: property <transform> 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 <transform> 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

View file

@ -2,84 +2,39 @@
[transform interpolation]
expected: FAIL
[CSS Transitions: property <transform> from [inherit\] to [translate(20px)\] at (0.75) should be [translate(22.5px)\]]
expected: FAIL
[Web Animations: property <transform> from neutral to [translate(20px)\] at (0.75) should be [translate(17.5px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [unset\] to [translate(20px)\] at (2) should be [translate(40px)\]]
expected: FAIL
[Web Animations: property <transform> from [initial\] to [translate(20px)\] at (0.75) should be [translate(15px)\]]
expected: FAIL
[CSS Transitions: property <transform> from [initial\] to [translate(20px)\] at (-1) should be [translate(-20px)\]]
expected: FAIL
[CSS Animations: property <transform> from [initial\] to [translate(20px)\] at (2) should be [translate(40px)\]]
expected: FAIL
[Web Animations: property <transform> from [unset\] to [translate(20px)\] at (1) should be [translate(20px)\]]
expected: FAIL
[Web Animations: property <transform> from [inherit\] to [translate(20px)\] at (-1) should be [translate(40px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [inherit\] to [translate(20px)\] at (0.25) should be [translate(27.5px)\]]
expected: FAIL
[Web Animations: property <transform> from [unset\] to [translate(20px)\] at (0.75) should be [translate(15px)\]]
expected: FAIL
[Web Animations: property <transform> from [unset\] to [translate(20px)\] at (0) should be [translate(0px)\]]
expected: FAIL
[CSS Transitions: property <transform> from [unset\] to [translate(20px)\] at (0.75) should be [translate(15px)\]]
expected: FAIL
[Web Animations: property <transform> from neutral to [translate(20px)\] at (2) should be [translate(30px)\]]
expected: FAIL
[CSS Animations: property <transform> from neutral to [translate(20px)\] at (-1) should be [translate(0px)\]]
expected: FAIL
[Web Animations: property <transform> from neutral to [translate(20px)\] at (0.25) should be [translate(12.5px)\]]
expected: FAIL
[CSS Transitions: property <transform> from neutral to [translate(20px)\] at (0.25) should be [translate(12.5px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [unset\] to [translate(20px)\] at (0.25) should be [translate(5px)\]]
expected: FAIL
[CSS Animations: property <transform> from [inherit\] to [translate(20px)\] at (1) should be [translate(20px)\]]
expected: FAIL
[CSS Transitions: property <transform> from neutral to [translate(20px)\] at (-1) should be [translate(0px)\]]
expected: FAIL
[Web Animations: property <transform> from [unset\] to [translate(20px)\] at (-1) should be [translate(-20px)\]]
expected: FAIL
[CSS Transitions: property <transform> from neutral to [translate(20px)\] at (0.75) should be [translate(17.5px)\]]
expected: FAIL
[Web Animations: property <transform> from [initial\] to [translate(20px)\] at (1) should be [translate(20px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [unset\] to [translate(20px)\] at (0.75) should be [translate(15px)\]]
expected: FAIL
[Web Animations: property <transform> from [inherit\] to [translate(20px)\] at (2) should be [translate(10px)\]]
expected: FAIL
[CSS Transitions: property <transform> from neutral to [translate(20px)\] at (2) should be [translate(30px)\]]
expected: FAIL
[CSS Transitions: property <transform> from [initial\] to [translate(20px)\] at (0.75) should be [translate(15px)\]]
expected: FAIL
[Web Animations: property <transform> from [inherit\] to [translate(20px)\] at (0.25) should be [translate(27.5px)\]]
expected: FAIL
@ -89,27 +44,6 @@
[Web Animations: property <transform> from [unset\] to [translate(20px)\] at (2) should be [translate(40px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [inherit\] to [translate(20px)\] at (-1) should be [translate(40px)\]]
expected: FAIL
[CSS Animations: property <transform> from [unset\] to [translate(20px)\] at (0.25) should be [translate(5px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [initial\] to [translate(20px)\] at (0.25) should be [translate(5px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [initial\] to [translate(20px)\] at (0.75) should be [translate(15px)\]]
expected: FAIL
[CSS Animations: property <transform> from [unset\] to [translate(20px)\] at (-1) should be [translate(-20px)\]]
expected: FAIL
[CSS Animations: property <transform> from [initial\] to [translate(20px)\] at (0.25) should be [translate(5px)\]]
expected: FAIL
[CSS Animations: property <transform> from [unset\] to [translate(20px)\] at (2) should be [translate(40px)\]]
expected: FAIL
[Web Animations: property <transform> from neutral to [translate(20px)\] at (0) should be [translate(10px)\]]
expected: FAIL
@ -119,87 +53,18 @@
[Web Animations: property <transform> from [initial\] to [translate(20px)\] at (0) should be [translate(0px)\]]
expected: FAIL
[CSS Animations: property <transform> from [unset\] to [translate(20px)\] at (1) should be [translate(20px)\]]
expected: FAIL
[CSS Animations: property <transform> from [initial\] to [translate(20px)\] at (-1) should be [translate(-20px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [unset\] to [translate(20px)\] at (-1) should be [translate(-20px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [initial\] to [translate(20px)\] at (2) should be [translate(40px)\]]
expected: FAIL
[CSS Animations: property <transform> from [initial\] to [translate(20px)\] at (1) should be [translate(20px)\]]
expected: FAIL
[CSS Animations: property <transform> from neutral to [translate(20px)\] at (0.25) should be [translate(12.5px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from neutral to [translate(20px)\] at (0.75) should be [translate(17.5px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [inherit\] to [translate(20px)\] at (0.75) should be [translate(22.5px)\]]
expected: FAIL
[CSS Animations: property <transform> from neutral to [translate(20px)\] at (2) should be [translate(30px)\]]
expected: FAIL
[Web Animations: property <transform> from [inherit\] to [translate(20px)\] at (0) should be [translate(30px)\]]
expected: FAIL
[CSS Transitions: property <transform> from [initial\] to [translate(20px)\] at (0.25) should be [translate(5px)\]]
expected: FAIL
[Web Animations: property <transform> from [inherit\] to [translate(20px)\] at (1) should be [translate(20px)\]]
expected: FAIL
[CSS Transitions: property <transform> from [unset\] to [translate(20px)\] at (0.25) should be [translate(5px)\]]
expected: FAIL
[CSS Animations: property <transform> from [inherit\] to [translate(20px)\] at (0) should be [translate(30px)\]]
expected: FAIL
[CSS Transitions: property <transform> from [unset\] to [translate(20px)\] at (2) should be [translate(40px)\]]
expected: FAIL
[CSS Transitions: property <transform> from [unset\] to [translate(20px)\] at (-1) should be [translate(-20px)\]]
expected: FAIL
[CSS Animations: property <transform> from neutral to [translate(20px)\] at (0.75) should be [translate(17.5px)\]]
expected: FAIL
[Web Animations: property <transform> from [unset\] to [translate(20px)\] at (0.25) should be [translate(5px)\]]
expected: FAIL
[CSS Animations: property <transform> from [unset\] to [translate(20px)\] at (0.75) should be [translate(15px)\]]
expected: FAIL
[CSS Animations: property <transform> from [unset\] to [translate(20px)\] at (0) should be [translate(0px)\]]
expected: FAIL
[CSS Transitions: property <transform> from [inherit\] to [translate(20px)\] at (2) should be [translate(10px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from neutral to [translate(20px)\] at (-1) should be [translate(0px)\]]
expected: FAIL
[CSS Transitions: property <transform> from [inherit\] to [translate(20px)\] at (0.25) should be [translate(27.5px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from neutral to [translate(20px)\] at (2) should be [translate(30px)\]]
expected: FAIL
[CSS Transitions: property <transform> from [inherit\] to [translate(20px)\] at (-1) should be [translate(40px)\]]
expected: FAIL
[CSS Animations: property <transform> from neutral to [translate(20px)\] at (1) should be [translate(20px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [initial\] to [translate(20px)\] at (-1) should be [translate(-20px)\]]
expected: FAIL
[Web Animations: property <transform> from neutral to [translate(20px)\] at (-1) should be [translate(0px)\]]
expected: FAIL
@ -209,21 +74,9 @@
[CSS Animations: property <transform> from [inherit\] to [translate(20px)\] at (-1) should be [translate(40px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from neutral to [translate(20px)\] at (0.25) should be [translate(12.5px)\]]
expected: FAIL
[CSS Animations: property <transform> from [initial\] to [translate(20px)\] at (0.75) should be [translate(15px)\]]
expected: FAIL
[Web Animations: property <transform> from neutral to [translate(20px)\] at (1) should be [translate(20px)\]]
expected: FAIL
[CSS Animations: property <transform> from [initial\] to [translate(20px)\] at (0) should be [translate(0px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform> from [inherit\] to [translate(20px)\] at (2) should be [translate(10px)\]]
expected: FAIL
[Web Animations: property <transform> from [initial\] to [translate(20px)\] at (-1) should be [translate(-20px)\]]
expected: FAIL
@ -233,6 +86,6 @@
[Web Animations: property <transform> from [initial\] to [translate(20px)\] at (2) should be [translate(40px)\]]
expected: FAIL
[CSS Transitions: property <transform> from [initial\] to [translate(20px)\] at (2) should be [translate(40px)\]]
[CSS Animations: property <transform> from [inherit\] to [translate(20px)\] at (2) should be [translate(10px)\]]
expected: FAIL

View file

@ -5,9 +5,6 @@
[CSS Transitions: property <transform-origin> from [0% 50% 5px\] to [100% 150% 0px\] at (0.6) should be [60% 110% 2px\]]
expected: FAIL
[CSS Transitions: property <transform-origin> from [inherit\] to [20px 20px\] at (1.5) should be [15px 25px\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform-origin> from [initial\] to [20px 20px\] at (-0.3) should be [26.5px 26.5px\]]
expected: FAIL
@ -38,12 +35,6 @@
[Web Animations: property <transform-origin> from [unset\] to [20px 20px\] at (0.6) should be [22px 22px\]]
expected: FAIL
[CSS Animations: property <transform-origin> from neutral to [20px 20px\] at (0.6) should be [16px 24px\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform-origin> from [0% 50% 5px\] to [100% 150% 0px\] at (0.6) should be [60% 110% 2px\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform-origin> from [initial\] to [20px 20px\] at (0) should be [25px 25px\]]
expected: FAIL
@ -56,9 +47,6 @@
[CSS Animations: property <transform-origin> from [center center\] to [0% 100px\] at (0) should be [25px 25px\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform-origin> from [inherit\] to [20px 20px\] at (-0.3) should be [33px 7px\]]
expected: FAIL
[CSS Animations: property <transform-origin> from [top left\] to [bottom right\] at (0.6) should be [30px 30px\]]
expected: FAIL
@ -77,24 +65,15 @@
[Web Animations: property <transform-origin> from neutral to [20px 20px\] at (1.5) should be [25px 15px\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform-origin> from [0% 50% 5px\] to [100% 150% 0px\] at (1.5) should be [150% 200% -2.5px\]]
expected: FAIL
[Web Animations: property <transform-origin> from [inherit\] to [20px 20px\] at (1.5) should be [15px 25px\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform-origin> from neutral to [20px 20px\] at (0.6) should be [16px 24px\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform-origin> from [center center\] to [0% 100px\] at (-0.3) should be [32.5px 2.5px\]]
expected: FAIL
[Web Animations: property <transform-origin> from [inherit\] to [20px 20px\] at (-0.3) should be [33px 7px\]]
expected: FAIL
[CSS Transitions: property <transform-origin> from [inherit\] to [20px 20px\] at (0.6) should be [24px 16px\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform-origin> from [top left\] to [bottom right\] at (1) should be [50px 50px\]]
expected: FAIL
@ -107,18 +86,12 @@
[Web Animations: property <transform-origin> from [top left\] to [bottom right\] at (1.5) should be [75px 75px\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform-origin> from [inherit\] to [20px 20px\] at (0.3) should be [27px 13px\]]
expected: FAIL
[CSS Transitions: property <transform-origin> from [center center\] to [0% 100px\] at (0.6) should be [10px 70px\]]
expected: FAIL
[Web Animations: property <transform-origin> from neutral to [20px 20px\] at (0.6) should be [16px 24px\]]
expected: FAIL
[CSS Animations: property <transform-origin> from neutral to [20px 20px\] at (-0.3) should be [7px 33px\]]
expected: FAIL
[Web Animations: property <transform-origin> from [center center\] to [0% 100px\] at (0.3) should be [17.5px 47.5px\]]
expected: FAIL
@ -137,9 +110,6 @@
[Web Animations: property <transform-origin> from [0% 50% 5px\] to [100% 150% 0px\] at (0.3) should be [30% 80% 3.5px\]]
expected: FAIL
[CSS Transitions: property <transform-origin> from neutral to [20px 20px\] at (0.3) should be [13px 27px\]]
expected: FAIL
[CSS Transitions: property <transform-origin> from [top left\] to [bottom right\] at (1.5) should be [75px 75px\]]
expected: FAIL
@ -161,18 +131,12 @@
[CSS Transitions with transition: all: property <transform-origin> from [center center\] to [0% 100px\] at (0.3) should be [17.5px 47.5px\]]
expected: FAIL
[CSS Animations: property <transform-origin> from [0% 50% 5px\] to [100% 150% 0px\] at (1) should be [100% 150% 0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform-origin> from [initial\] to [20px 20px\] at (1.5) should be [17.5px 17.5px\]]
expected: FAIL
[Web Animations: property <transform-origin> from [0% 50% 5px\] to [100% 150% 0px\] at (0.6) should be [60% 110% 2px\]]
expected: FAIL
[CSS Transitions: property <transform-origin> from [inherit\] to [20px 20px\] at (-0.3) should be [33px 7px\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform-origin> from [top left\] to [bottom right\] at (0) should be [0px 0px\]]
expected: FAIL
@ -185,15 +149,9 @@
[CSS Animations: property <transform-origin> from [inherit\] to [20px 20px\] at (0.3) should be [27px 13px\]]
expected: FAIL
[CSS Animations: property <transform-origin> from [0% 50% 5px\] to [100% 150% 0px\] at (0) should be [0% 50% 5px\]]
expected: FAIL
[CSS Transitions: property <transform-origin> from [initial\] to [20px 20px\] at (1) should be [20px 20px\]]
expected: FAIL
[CSS Transitions: property <transform-origin> from [inherit\] to [20px 20px\] at (0.3) should be [27px 13px\]]
expected: FAIL
[Web Animations: property <transform-origin> from [initial\] to [20px 20px\] at (1.5) should be [17.5px 17.5px\]]
expected: FAIL
@ -230,9 +188,6 @@
[CSS Transitions: property <transform-origin> from [unset\] to [20px 20px\] at (1.5) should be [17.5px 17.5px\]]
expected: FAIL
[CSS Animations: property <transform-origin> from [inherit\] to [20px 20px\] at (1) should be [20px 20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform-origin> from [unset\] to [20px 20px\] at (0.6) should be [22px 22px\]]
expected: FAIL
@ -245,27 +200,15 @@
[CSS Animations: property <transform-origin> from [inherit\] to [20px 20px\] at (1.5) should be [15px 25px\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform-origin> from neutral to [20px 20px\] at (1.5) should be [25px 15px\]]
expected: FAIL
[CSS Transitions: property <transform-origin> from neutral to [20px 20px\] at (1.5) should be [25px 15px\]]
expected: FAIL
[CSS Transitions: property <transform-origin> from [initial\] to [20px 20px\] at (0.6) should be [22px 22px\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform-origin> from [inherit\] to [20px 20px\] at (1.5) should be [15px 25px\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform-origin> from [center center\] to [0% 100px\] at (1.5) should be [-12.5px 137.5px\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform-origin> from [top left\] to [bottom right\] at (-0.3) should be [-15px -15px\]]
expected: FAIL
[CSS Animations: property <transform-origin> from neutral to [20px 20px\] at (1.5) should be [25px 15px\]]
expected: FAIL
[CSS Transitions: property <transform-origin> from [top left\] to [bottom right\] at (0.6) should be [30px 30px\]]
expected: FAIL
@ -296,9 +239,6 @@
[CSS Animations: property <transform-origin> from [initial\] to [20px 20px\] at (0) should be [25px 25px\]]
expected: FAIL
[CSS Animations: property <transform-origin> 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 <transform-origin> from [initial\] to [20px 20px\] at (0.3) should be [23.5px 23.5px\]]
expected: FAIL
@ -320,9 +260,6 @@
[CSS Animations: property <transform-origin> from [unset\] to [20px 20px\] at (0.3) should be [23.5px 23.5px\]]
expected: FAIL
[CSS Animations: property <transform-origin> from neutral to [20px 20px\] at (0.3) should be [13px 27px\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform-origin> from [top left\] to [bottom right\] at (1.5) should be [75px 75px\]]
expected: FAIL
@ -341,12 +278,6 @@
[Web Animations: property <transform-origin> from neutral to [20px 20px\] at (1) should be [20px 20px\]]
expected: FAIL
[CSS Transitions: property <transform-origin> from neutral to [20px 20px\] at (-0.3) should be [7px 33px\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform-origin> from neutral to [20px 20px\] at (-0.3) should be [7px 33px\]]
expected: FAIL
[Web Animations: property <transform-origin> from [0% 50% 5px\] to [100% 150% 0px\] at (1.5) should be [150% 200% -2.5px\]]
expected: FAIL
@ -365,9 +296,6 @@
[Web Animations: property <transform-origin> from [initial\] to [20px 20px\] at (0) should be [25px 25px\]]
expected: FAIL
[CSS Animations: property <transform-origin> from neutral to [20px 20px\] at (1) should be [20px 20px\]]
expected: FAIL
[CSS Animations: property <transform-origin> from [center center\] to [0% 100px\] at (0.6) should be [10px 70px\]]
expected: FAIL
@ -380,9 +308,6 @@
[CSS Animations: property <transform-origin> from [unset\] to [20px 20px\] at (-0.3) should be [26.5px 26.5px\]]
expected: FAIL
[CSS Animations: property <transform-origin> from [0% 50% 5px\] to [100% 150% 0px\] at (0.3) should be [30% 80% 3.5px\]]
expected: FAIL
[CSS Transitions: property <transform-origin> from [unset\] to [20px 20px\] at (-0.3) should be [26.5px 26.5px\]]
expected: FAIL
@ -425,15 +350,9 @@
[CSS Transitions: property <transform-origin> from [center center\] to [0% 100px\] at (1.5) should be [-12.5px 137.5px\]]
expected: FAIL
[CSS Animations: property <transform-origin> from [0% 50% 5px\] to [100% 150% 0px\] at (0.6) should be [60% 110% 2px\]]
expected: FAIL
[Web Animations: property <transform-origin> from [0% 50% 5px\] to [100% 150% 0px\] at (1) should be [100% 150% 0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform-origin> from [inherit\] to [20px 20px\] at (0.6) should be [24px 16px\]]
expected: FAIL
[CSS Transitions: property <transform-origin> from [0% 50% 5px\] to [100% 150% 0px\] at (0.3) should be [30% 80% 3.5px\]]
expected: FAIL
@ -446,18 +365,9 @@
[CSS Animations: property <transform-origin> from [center center\] to [0% 100px\] at (-0.3) should be [32.5px 2.5px\]]
expected: FAIL
[CSS Animations: property <transform-origin> from [0% 50% 5px\] to [100% 150% 0px\] at (1.5) should be [150% 200% -2.5px\]]
expected: FAIL
[CSS Transitions: property <transform-origin> from neutral to [20px 20px\] at (0.6) should be [16px 24px\]]
expected: FAIL
[Web Animations: property <transform-origin> from [initial\] to [20px 20px\] at (0.6) should be [22px 22px\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform-origin> from neutral to [20px 20px\] at (0.3) should be [13px 27px\]]
expected: FAIL
[CSS Transitions: property <transform-origin> from [initial\] to [20px 20px\] at (0.3) should be [23.5px 23.5px\]]
expected: FAIL
@ -467,3 +377,6 @@
[CSS Transitions with transition: all: property <transform-origin> from [unset\] to [20px 20px\] at (1) should be [20px 20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <transform-origin> from [0% 50% 5px\] to [100% 150% 0px\] at (0.6) should be [60% 110% 2px\]]
expected: FAIL

View file

@ -74,9 +74,6 @@
[translate interpolation]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [-100px -50px\] to [100px 50px\] at (2) should be [300px 150px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [inherit\] to [200px 100px 200px\] at (-1) should be [0px 300px 400px\]]
expected: FAIL
@ -89,9 +86,6 @@
[Web Animations: property <translate> from [inherit\] to [200px 100px 200px\] at (0.75) should be [175px 125px 225px\]]
expected: FAIL
[CSS Animations: property <translate> from [unset\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <translate> from [-100%\] to [100%\] at (2) should be [300%\]]
expected: FAIL
@ -110,9 +104,6 @@
[Web Animations: property <translate> from [none\] to [none\] at (0) should be [none\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [inherit\] to [initial\] at (2) should be [-100px -200px -300px\]]
expected: FAIL
[CSS Transitions: property <translate> from [200px 100px 400px\] to [initial\] at (-1) should be [400px 200px 800px\]]
expected: FAIL
@ -122,12 +113,6 @@
[Web Animations: property <translate> from [0px\] to [-100px -50px 100px\] at (0.75) should be [-75px -37.5px 75px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from neutral to [20px\] at (2) should be [30px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [unset\] to [20px\] at (0.25) should be [5px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [inherit\] to [200px 100px 200px\] at (0.25) should be [125px 175px 275px\]]
expected: FAIL
@ -140,27 +125,15 @@
[Web Animations: property <translate> from [200px 100px 400px\] to [initial\] at (0.25) should be [150px 75px 300px\]]
expected: FAIL
[CSS Animations: property <translate> from [-100px -50px 100px\] to [0px\] at (0.25) should be [-75px -37.5px 75px\]]
expected: FAIL
[Web Animations: property <translate> from [initial\] to [inherit\] at (0) should be [0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [unset\] to [20px\] at (0.75) should be [15px\]]
expected: FAIL
[CSS Animations: property <translate> from [200px 100px 400px\] to [initial\] at (0) should be [200px 100px 400px\]]
expected: FAIL
[Web Animations: property <translate> from [unset\] to [20px\] at (2) should be [40px\]]
expected: FAIL
[Web Animations: property <translate> from [inherit\] to [initial\] at (0) should be [100px 200px 300px\]]
expected: FAIL
[CSS Animations: property <translate> from [-100%\] to [100%\] at (0) should be [-100%\]]
expected: FAIL
[Web Animations: property <translate> from [-100px -50px\] to [100px 50px\] at (0.25) should be [-50px -25px\]]
expected: FAIL
@ -191,9 +164,6 @@
[Web Animations: property <translate> from [-100px -50px 100px\] to [0px\] at (1) should be [0px\]]
expected: FAIL
[CSS Animations: property <translate> from [unset\] to [20px\] at (0.75) should be [15px\]]
expected: FAIL
[CSS Transitions: property <translate> from [initial\] to [inherit\] at (0.75) should be [75px 150px 225px\]]
expected: FAIL
@ -206,9 +176,6 @@
[CSS Transitions: property <translate> from [-100px -50px\] to [100px 50px\] at (-1) should be [-300px -150px\]]
expected: FAIL
[CSS Animations: property <translate> from [initial\] to [200px 100px 200px\] at (1) should be [200px 100px 200px\]]
expected: FAIL
[Web Animations: property <translate> from [200px 100px 200px\] to [inherit\] at (2) should be [0px 300px 400px\]]
expected: FAIL
@ -218,30 +185,15 @@
[CSS Animations: property <translate> from [initial\] to [inherit\] at (0.25) should be [25px 50px 75px\]]
expected: FAIL
[CSS Animations: property <translate> from [none\] to [8px 80% 800px\] at (-1) should be [-8px -80% -800px\]]
expected: FAIL
[CSS Animations: property <translate> from [220px 240px 260px\] to [300px 400px 500px\] at (0.125) should be [230px 260px 290px\]]
expected: FAIL
[Web Animations: property <translate> from [-100px\] to [100px\] at (-1) should be [-300px\]]
expected: FAIL
[Web Animations: property <translate> from [-100%\] to [100%\] at (0.75) should be [50%\]]
expected: FAIL
[CSS Animations: property <translate> from [-100px -50px\] to [100px 50px\] at (0.75) should be [50px 25px\]]
expected: FAIL
[CSS Animations: property <translate> from [0px\] to [-100px -50px 100px\] at (2) should be [-200px -100px 200px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [initial\] to [inherit\] at (-1) should be [-100px -200px -300px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [480px 400px 320px\] to [240% 160%\] at (2) should be [calc(480% - 480px) calc(320% - 400px) -320px\]]
expected: FAIL
[Web Animations: property <translate> from [unset\] to [20px\] at (-1) should be [-20px\]]
expected: FAIL
@ -254,96 +206,48 @@
[Web Animations: property <translate> from [-100px -50px 100px\] to [0px\] at (0) should be [-100px -50px 100px\]]
expected: FAIL
[CSS Animations: property <translate> from [-100px -50px 100px\] to [0px\] at (1) should be [0px\]]
expected: FAIL
[CSS Animations: property <translate> from [200px 100px 400px\] to [initial\] at (-1) should be [400px 200px 800px\]]
expected: FAIL
[Web Animations: property <translate> from [none\] to [none\] at (-1) should be [none\]]
expected: FAIL
[CSS Transitions: property <translate> from neutral to [20px\] at (2) should be [30px\]]
expected: FAIL
[CSS Animations: property <translate> from [200px 100px 400px\] to [initial\] at (1) should be [0px\]]
expected: FAIL
[CSS Animations: property <translate> from [none\] to [8px 80% 800px\] at (2) should be [16px 160% 1600px\]]
expected: FAIL
[Web Animations: property <translate> from [-100px\] to [100px\] at (1) should be [100px\]]
expected: FAIL
[CSS Animations: property <translate> from [unset\] to [20px\] at (2) should be [40px\]]
expected: FAIL
[CSS Transitions: property <translate> from [inherit\] to [initial\] at (-1) should be [200px 400px 600px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [200px 100px 200px\] to [inherit\] at (-1) should be [300px 0px 100px\]]
expected: FAIL
[CSS Animations: property <translate> from [480px 400px 320px\] to [240% 160%\] at (-1) should be [calc(960px - 240%) calc(800px - 160%) 640px\]]
expected: FAIL
[Web Animations: property <translate> from [none\] to [none\] at (0.125) should be [none\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [-100%\] to [100%\] at (0.25) should be [-50%\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [unset\] to [20px\] at (2) should be [40px\]]
expected: FAIL
[Web Animations: property <translate> from [none\] to [8px 80% 800px\] at (0.125) should be [1px 10% 100px\]]
expected: FAIL
[CSS Animations: property <translate> from [200px 100px 400px\] to [initial\] at (0.75) should be [50px 25px 100px\]]
expected: FAIL
[CSS Animations: property <translate> from [inherit\] to [200px 100px 200px\] at (0.25) should be [125px 175px 275px\]]
expected: FAIL
[CSS Transitions: property <translate> from [initial\] to [inherit\] at (-1) should be [-100px -200px -300px\]]
expected: FAIL
[CSS Animations: property <translate> from [inherit\] to [200px 100px 200px\] at (1) should be [200px 100px 200px\]]
expected: FAIL
[CSS Animations: property <translate> from [-100%\] to [100%\] at (0.75) should be [50%\]]
expected: FAIL
[CSS Transitions: property <translate> from [200px 100px 200px\] to [inherit\] at (2) should be [0px 300px 400px\]]
expected: FAIL
[Web Animations: property <translate> from [none\] to [8px 80% 800px\] at (1) should be [8px 80% 800px\]]
expected: FAIL
[CSS Animations: property <translate> from [-100%\] to [100%\] at (-1) should be [-300%\]]
expected: FAIL
[Web Animations: property <translate> from [0px\] to [-100px -50px 100px\] at (1) should be [-100px -50px 100px\]]
expected: FAIL
[CSS Animations: property <translate> from [-100px\] to [100px\] at (0) should be [-100px\]]
expected: FAIL
[CSS Transitions: property <translate> from [0px\] to [-100px -50px 100px\] at (-1) should be [100px 50px -100px\]]
expected: FAIL
[CSS Animations: property <translate> from [220px 240px 260px\] to [300px 400px 500px\] at (0) should be [220px 240px 260px\]]
expected: FAIL
[Web Animations: property <translate> from [inherit\] to [200px 100px 200px\] at (-1) should be [0px 300px 400px\]]
expected: FAIL
[CSS Animations: property <translate> from [none\] to [8px 80% 800px\] at (1) should be [8px 80% 800px\]]
expected: FAIL
[CSS Animations: property <translate> from [initial\] to [200px 100px 200px\] at (2) should be [400px 200px 400px\]]
expected: FAIL
[Web Animations: property <translate> from [unset\] to [20px\] at (0) should be [0px\]]
expected: FAIL
@ -353,9 +257,6 @@
[Web Animations: property <translate> from [220px 240px 260px\] to [300px 400px 500px\] at (-1) should be [140px 80px 20px\]]
expected: FAIL
[CSS Animations: property <translate> from [480px 400px 320px\] to [240% 160%\] at (1) should be [240% 160%\]]
expected: FAIL
[CSS Transitions: property <translate> from [480px 400px 320px\] to [240% 160%\] at (2) should be [calc(480% - 480px) calc(320% - 400px) -320px\]]
expected: FAIL
@ -377,9 +278,6 @@
[CSS Transitions with transition: all: property <translate> from [0px\] to [-100px -50px 100px\] at (-1) should be [100px 50px -100px\]]
expected: FAIL
[CSS Animations: property <translate> from [unset\] to [20px\] at (0.25) should be [5px\]]
expected: FAIL
[Web Animations: property <translate> from [0px\] to [-100px -50px 100px\] at (0) should be [0px\]]
expected: FAIL
@ -395,9 +293,6 @@
[Web Animations: property <translate> from neutral to [20px\] at (-1) should be [0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [-100px\] to [100px\] at (2) should be [300px\]]
expected: FAIL
[Web Animations: property <translate> from [480px 400px 320px\] to [240% 160%\] at (2) should be [calc(480% - 480px) calc(320% - 400px) -320px\]]
expected: FAIL
@ -416,9 +311,6 @@
[CSS Animations: property <translate> from [200px 100px 200px\] to [inherit\] at (0) should be [200px 100px 200px\]]
expected: FAIL
[CSS Transitions: property <translate> from [unset\] to [20px\] at (2) should be [40px\]]
expected: FAIL
[CSS Transitions: property <translate> from [-100px\] to [100px\] at (0.75) should be [50px\]]
expected: FAIL
@ -434,18 +326,9 @@
[CSS Animations: property <translate> from [inherit\] to [initial\] at (2) should be [-100px -200px -300px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [initial\] to [200px 100px 200px\] at (2) should be [400px 200px 400px\]]
expected: FAIL
[CSS Transitions: property <translate> from [inherit\] to [initial\] at (2) should be [-100px -200px -300px\]]
expected: FAIL
[CSS Animations: property <translate> from [unset\] to [20px\] at (-1) should be [-20px\]]
expected: FAIL
[CSS Animations: property <translate> from [-100px -50px\] to [100px 50px\] at (1) should be [100px 50px\]]
expected: FAIL
[Web Animations: property <translate> from [200px 100px 400px\] to [initial\] at (-1) should be [400px 200px 800px\]]
expected: FAIL
@ -461,9 +344,6 @@
[Web Animations: property <translate> from [200px 100px 200px\] to [inherit\] at (0) should be [200px 100px 200px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [-100%\] to [100%\] at (2) should be [300%\]]
expected: FAIL
[Web Animations: property <translate> from [220px 240px 260px\] to [300px 400px 500px\] at (0) should be [220px 240px 260px\]]
expected: FAIL
@ -476,27 +356,15 @@
[Web Animations: property <translate> from neutral to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Animations: property <translate> from [initial\] to [200px 100px 200px\] at (0.75) should be [150px 75px 150px\]]
expected: FAIL
[CSS Animations: property <translate> from [-100px -50px 100px\] to [0px\] at (-1) should be [-200px -100px 200px\]]
expected: FAIL
[CSS Transitions: property <translate> from [initial\] to [200px 100px 200px\] at (2) should be [400px 200px 400px\]]
expected: FAIL
[CSS Animations: property <translate> from [-100%\] to [100%\] at (1) should be [100%\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [inherit\] to [initial\] at (0.75) should be [25px 50px 75px\]]
expected: FAIL
[CSS Animations: property <translate> from [none\] to [none\] at (-1) should be [none\]]
expected: FAIL
[CSS Animations: property <translate> from neutral to [20px\] at (2) should be [30px\]]
expected: FAIL
[CSS Transitions: property <translate> from [-100px -50px\] to [100px 50px\] at (2) should be [300px 150px\]]
expected: FAIL
@ -506,21 +374,12 @@
[Web Animations: property <translate> from [200px 100px 400px\] to [initial\] at (0.75) should be [50px 25px 100px\]]
expected: FAIL
[CSS Transitions: property <translate> from [unset\] to [20px\] at (0.25) should be [5px\]]
expected: FAIL
[Web Animations: property <translate> from [-100px -50px\] to [100px 50px\] at (0) should be [-100px -50px\]]
expected: FAIL
[CSS Animations: property <translate> from [none\] to [8px 80% 800px\] at (0) should be [0px\]]
expected: FAIL
[CSS Animations: property <translate> from [inherit\] to [initial\] at (-1) should be [200px 400px 600px\]]
expected: FAIL
[CSS Animations: property <translate> from [-100px -50px 100px\] to [0px\] at (0.75) should be [-25px -12.5px 25px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [220px 240px 260px\] to [300px 400px 500px\] at (0.875) should be [290px 380px 470px\]]
expected: FAIL
@ -551,48 +410,15 @@
[CSS Transitions with transition: all: property <translate> from [initial\] to [inherit\] at (0.75) should be [75px 150px 225px\]]
expected: FAIL
[CSS Animations: property <translate> from [-100%\] to [100%\] at (2) should be [300%\]]
expected: FAIL
[CSS Animations: property <translate> from neutral to [20px\] at (0.25) should be [12.5px\]]
expected: FAIL
[CSS Animations: property <translate> from [480px 400px 320px\] to [240% 160%\] at (0) should be [480px 400px 320px\]]
expected: FAIL
[CSS Animations: property <translate> from [-100px -50px 100px\] to [0px\] at (0) should be [-100px -50px 100px\]]
expected: FAIL
[CSS Transitions: property <translate> from neutral to [20px\] at (-1) should be [0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [200px 100px 200px\] to [inherit\] at (2) should be [0px 300px 400px\]]
expected: FAIL
[CSS Animations: property <translate> from [none\] to [8px 80% 800px\] at (0.875) should be [7px 70% 700px\]]
expected: FAIL
[CSS Animations: property <translate> from [inherit\] to [initial\] at (1) should be [0px\]]
expected: FAIL
[CSS Animations: property <translate> from [-100px\] to [100px\] at (0.75) should be [50px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [220px 240px 260px\] to [300px 400px 500px\] at (2) should be [380px 560px 740px\]]
expected: FAIL
[CSS Animations: property <translate> from [-100%\] to [100%\] at (0.25) should be [-50%\]]
expected: FAIL
[Web Animations: property <translate> from neutral to [20px\] at (2) should be [30px\]]
expected: FAIL
[CSS Transitions: property <translate> from [-100px\] to [100px\] at (2) should be [300px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from neutral to [20px\] at (0.25) should be [12.5px\]]
expected: FAIL
[Web Animations: property <translate> from [-100px -50px 100px\] to [0px\] at (0.25) should be [-75px -37.5px 75px\]]
expected: FAIL
@ -602,9 +428,6 @@
[Web Animations: property <translate> from [inherit\] to [initial\] at (-1) should be [200px 400px 600px\]]
expected: FAIL
[CSS Animations: property <translate> from [0px\] to [-100px -50px 100px\] at (0.75) should be [-75px -37.5px 75px\]]
expected: FAIL
[CSS Transitions: property <translate> from [inherit\] to [200px 100px 200px\] at (2) should be [300px 0px 100px\]]
expected: FAIL
@ -614,18 +437,12 @@
[Web Animations: property <translate> from [initial\] to [200px 100px 200px\] at (1) should be [200px 100px 200px\]]
expected: FAIL
[CSS Animations: property <translate> from [-100px -50px\] to [100px 50px\] at (0) should be [-100px -50px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [inherit\] to [200px 100px 200px\] at (0.75) should be [175px 125px 225px\]]
expected: FAIL
[Web Animations: property <translate> from [220px 240px 260px\] to [300px 400px 500px\] at (2) should be [380px 560px 740px\]]
expected: FAIL
[CSS Animations: property <translate> from [220px 240px 260px\] to [300px 400px 500px\] at (0.875) should be [290px 380px 470px\]]
expected: FAIL
[CSS Transitions: property <translate> from [inherit\] to [initial\] at (0.75) should be [25px 50px 75px\]]
expected: FAIL
@ -635,21 +452,9 @@
[Web Animations: property <translate> from [-100px -50px\] to [100px 50px\] at (2) should be [300px 150px\]]
expected: FAIL
[CSS Animations: property <translate> from neutral to [20px\] at (-1) should be [0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from neutral to [20px\] at (0.75) should be [17.5px\]]
expected: FAIL
[Web Animations: property <translate> from [inherit\] to [initial\] at (1) should be [0px\]]
expected: FAIL
[CSS Animations: property <translate> from [480px 400px 320px\] to [240% 160%\] at (2) should be [calc(480% - 480px) calc(320% - 400px) -320px\]]
expected: FAIL
[CSS Animations: property <translate> from [-100px -50px 100px\] to [0px\] at (2) should be [100px 50px -100px\]]
expected: FAIL
[CSS Transitions: property <translate> from [-100px -50px 100px\] to [0px\] at (0.75) should be [-25px -12.5px 25px\]]
expected: FAIL
@ -668,54 +473,27 @@
[CSS Transitions with transition: all: property <translate> from [-100px\] to [100px\] at (0.25) should be [-50px\]]
expected: FAIL
[CSS Transitions: property <translate> from [unset\] to [20px\] at (-1) should be [-20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from neutral to [20px\] at (-1) should be [0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [220px 240px 260px\] to [300px 400px 500px\] at (-1) should be [140px 80px 20px\]]
expected: FAIL
[CSS Animations: property <translate> from [0px\] to [-100px -50px 100px\] at (0) should be [0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [initial\] to [inherit\] at (2) should be [200px 400px 600px\]]
expected: FAIL
[Web Animations: property <translate> from [initial\] to [200px 100px 200px\] at (0.75) should be [150px 75px 150px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [-100px\] to [100px\] at (-1) should be [-300px\]]
expected: FAIL
[CSS Animations: property <translate> from [unset\] to [20px\] at (0) should be [0px\]]
expected: FAIL
[Web Animations: property <translate> from [initial\] to [200px 100px 200px\] at (0.25) should be [50px 25px 50px\]]
expected: FAIL
[Web Animations: property <translate> from [-100px -50px 100px\] to [0px\] at (2) should be [100px 50px -100px\]]
expected: FAIL
[CSS Animations: property <translate> from [220px 240px 260px\] to [300px 400px 500px\] at (1) should be [300px 400px 500px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [480px 400px 320px\] to [240% 160%\] at (0) should be [480px 400px 320px\]]
expected: FAIL
[CSS Transitions: property <translate> from [0px\] to [-100px -50px 100px\] at (0.75) should be [-75px -37.5px 75px\]]
expected: FAIL
[CSS Transitions: property <translate> from neutral to [20px\] at (0.75) should be [17.5px\]]
expected: FAIL
[CSS Animations: property <translate> from [-100px -50px\] to [100px 50px\] at (0.25) should be [-50px -25px\]]
expected: FAIL
[CSS Animations: property <translate> from [-100px -50px\] to [100px 50px\] at (-1) should be [-300px -150px\]]
expected: FAIL
[Web Animations: property <translate> from [-100px -50px\] to [100px 50px\] at (1) should be [100px 50px\]]
expected: FAIL
@ -740,21 +518,9 @@
[CSS Transitions with transition: all: property <translate> from [200px 100px 400px\] to [initial\] at (0.25) should be [150px 75px 300px\]]
expected: FAIL
[CSS Animations: property <translate> from [220px 240px 260px\] to [300px 400px 500px\] at (2) should be [380px 560px 740px\]]
expected: FAIL
[CSS Animations: property <translate> from [-100px -50px\] to [100px 50px\] at (2) should be [300px 150px\]]
expected: FAIL
[CSS Animations: property <translate> from [200px 100px 200px\] to [inherit\] at (0.75) should be [125px 175px 275px\]]
expected: FAIL
[CSS Animations: property <translate> from [none\] to [8px 80% 800px\] at (0.125) should be [1px 10% 100px\]]
expected: FAIL
[CSS Animations: property <translate> from [-100px\] to [100px\] at (1) should be [100px\]]
expected: FAIL
[Web Animations: property <translate> from [-100px\] to [100px\] at (0) should be [-100px\]]
expected: FAIL
@ -764,36 +530,21 @@
[Web Animations: property <translate> from [initial\] to [inherit\] at (1) should be [100px 200px 300px\]]
expected: FAIL
[CSS Animations: property <translate> from [480px 400px 320px\] to [240% 160%\] at (0.875) should be [calc(210% + 60px) calc(140% + 50px) 40px\]]
expected: FAIL
[CSS Animations: property <translate> from [initial\] to [200px 100px 200px\] at (-1) should be [-200px -100px -200px\]]
expected: FAIL
[CSS Transitions: property <translate> from [200px 100px 200px\] to [inherit\] at (-1) should be [300px 0px 100px\]]
expected: FAIL
[Web Animations: property <translate> from [480px 400px 320px\] to [240% 160%\] at (0.125) should be [calc(420px + 30%) calc(350px + 20%) 280px\]]
expected: FAIL
[CSS Animations: property <translate> from [0px\] to [-100px -50px 100px\] at (-1) should be [100px 50px -100px\]]
expected: FAIL
[CSS Transitions: property <translate> from [none\] to [8px 80% 800px\] at (0.875) should be [7px 70% 700px\]]
expected: FAIL
[CSS Transitions: property <translate> from [unset\] to [20px\] at (0.75) should be [15px\]]
expected: FAIL
[Web Animations: property <translate> from [unset\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <translate> from [none\] to [8px 80% 800px\] at (2) should be [16px 160% 1600px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [inherit\] to [200px 100px 200px\] at (2) should be [300px 0px 100px\]]
expected: FAIL
[Web Animations: property <translate> from [inherit\] to [200px 100px 200px\] at (0.25) should be [125px 175px 275px\]]
expected: FAIL
@ -815,9 +566,6 @@
[Web Animations: property <translate> from [0px\] to [-100px -50px 100px\] at (0.25) should be [-25px -12.5px 25px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [-100px -50px 100px\] to [0px\] at (2) should be [100px 50px -100px\]]
expected: FAIL
[CSS Transitions: property <translate> from [initial\] to [200px 100px 200px\] at (0.25) should be [50px 25px 50px\]]
expected: FAIL
@ -833,9 +581,6 @@
[CSS Transitions with transition: all: property <translate> from [none\] to [8px 80% 800px\] at (0.125) should be [1px 10% 100px\]]
expected: FAIL
[CSS Animations: property <translate> from [initial\] to [200px 100px 200px\] at (0.25) should be [50px 25px 50px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [-100px -50px\] to [100px 50px\] at (-1) should be [-300px -150px\]]
expected: FAIL
@ -851,12 +596,6 @@
[Web Animations: property <translate> from [200px 100px 200px\] to [inherit\] at (0.75) should be [125px 175px 275px\]]
expected: FAIL
[CSS Animations: property <translate> from [-100px\] to [100px\] at (0.25) should be [-50px\]]
expected: FAIL
[CSS Animations: property <translate> from [480px 400px 320px\] to [240% 160%\] at (0.125) should be [calc(420px + 30%) calc(350px + 20%) 280px\]]
expected: FAIL
[Web Animations: property <translate> from [none\] to [8px 80% 800px\] at (-1) should be [-8px -80% -800px\]]
expected: FAIL
@ -878,9 +617,6 @@
[CSS Transitions: property <translate> from [none\] to [8px 80% 800px\] at (0.125) should be [1px 10% 100px\]]
expected: FAIL
[CSS Animations: property <translate> from neutral to [20px\] at (1) should be [20px\]]
expected: FAIL
[Web Animations: property <translate> from [-100%\] to [100%\] at (0) should be [-100%\]]
expected: FAIL
@ -896,12 +632,6 @@
[CSS Transitions: property <translate> from [480px 400px 320px\] to [240% 160%\] at (0) should be [480px 400px 320px\]]
expected: FAIL
[CSS Animations: property <translate> from [-100px\] to [100px\] at (2) should be [300px\]]
expected: FAIL
[CSS Animations: property <translate> from [0px\] to [-100px -50px 100px\] at (0.25) should be [-25px -12.5px 25px\]]
expected: FAIL
[Web Animations: property <translate> from [-100%\] to [100%\] at (-1) should be [-300%\]]
expected: FAIL
@ -917,9 +647,6 @@
[Web Animations: property <translate> from [200px 100px 200px\] to [inherit\] at (1) should be [100px 200px 300px\]]
expected: FAIL
[CSS Animations: property <translate> from [-100px\] to [100px\] at (-1) should be [-300px\]]
expected: FAIL
[CSS Animations: property <translate> from [200px 100px 200px\] to [inherit\] at (0.25) should be [175px 125px 225px\]]
expected: FAIL
@ -947,12 +674,6 @@
[CSS Animations: property <translate> from [inherit\] to [initial\] at (0.25) should be [75px 150px 225px\]]
expected: FAIL
[CSS Animations: property <translate> from [initial\] to [200px 100px 200px\] at (0) should be [0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [unset\] to [20px\] at (-1) should be [-20px\]]
expected: FAIL
[CSS Transitions: property <translate> from [220px 240px 260px\] to [300px 400px 500px\] at (-1) should be [140px 80px 20px\]]
expected: FAIL
@ -971,18 +692,12 @@
[CSS Transitions: property <translate> from [200px 100px 400px\] to [initial\] at (0.75) should be [50px 25px 100px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [200px 100px 400px\] to [initial\] at (2) should be [-200px -100px -400px\]]
expected: FAIL
[CSS Transitions: property <translate> from [480px 400px 320px\] to [240% 160%\] at (-1) should be [calc(960px - 240%) calc(800px - 160%) 640px\]]
expected: FAIL
[CSS Transitions: property <translate> from [-100px -50px\] to [100px 50px\] at (0.25) should be [-50px -25px\]]
expected: FAIL
[CSS Animations: property <translate> from [0px\] to [-100px -50px 100px\] at (1) should be [-100px -50px 100px\]]
expected: FAIL
[CSS Transitions: property <translate> from [-100%\] to [100%\] at (0.25) should be [-50%\]]
expected: FAIL
@ -992,24 +707,12 @@
[CSS Transitions: property <translate> from [initial\] to [inherit\] at (0.25) should be [25px 50px 75px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [none\] to [8px 80% 800px\] at (2) should be [16px 160% 1600px\]]
expected: FAIL
[CSS Animations: property <translate> from neutral to [20px\] at (0.75) should be [17.5px\]]
expected: FAIL
[CSS Transitions: property <translate> from [220px 240px 260px\] to [300px 400px 500px\] at (2) should be [380px 560px 740px\]]
expected: FAIL
[CSS Transitions with transition: all: property <translate> from [0px\] to [-100px -50px 100px\] at (2) should be [-200px -100px 200px\]]
expected: FAIL
[CSS Transitions: property <translate> from [none\] to [8px 80% 800px\] at (-1) should be [-8px -80% -800px\]]
expected: FAIL
[CSS Animations: property <translate> from [200px 100px 400px\] to [initial\] at (2) should be [-200px -100px -400px\]]
expected: FAIL
[CSS Animations: property <translate> from [inherit\] to [200px 100px 200px\] at (0) should be [100px 200px 300px\]]
expected: FAIL
@ -1019,9 +722,6 @@
[Web Animations: property <translate> from [220px 240px 260px\] to [300px 400px 500px\] at (1) should be [300px 400px 500px\]]
expected: FAIL
[CSS Animations: property <translate> from [200px 100px 400px\] to [initial\] at (0.25) should be [150px 75px 300px\]]
expected: FAIL
[CSS Animations: property <translate> from [none\] to [none\] at (0) should be [none\]]
expected: FAIL
@ -1058,9 +758,6 @@
[Web Animations: property <translate> from [220px 240px 260px\] to [300px 400px 500px\] at (0.125) should be [230px 260px 290px\]]
expected: FAIL
[CSS Transitions: property <translate> from neutral to [20px\] at (0.25) should be [12.5px\]]
expected: FAIL
[CSS Animations: property <translate> from [initial\] to [inherit\] at (2) should be [200px 400px 600px\]]
expected: FAIL
@ -1070,6 +767,3 @@
[Web Animations: property <translate> from [none\] to [none\] at (1) should be [none\]]
expected: FAIL
[CSS Animations: property <translate> from [220px 240px 260px\] to [300px 400px 500px\] at (-1) should be [140px 80px 20px\]]
expected: FAIL

View file

@ -2,9 +2,6 @@
[text-shadow interpolation]
expected: FAIL
[CSS Transitions: property <text-shadow> 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 <text-shadow> from [unset\] to [green 20px 20px 20px\] at (1.5) should be [rgb(0, 110, 0) 15px 25px 15px\]]
expected: FAIL
@ -29,69 +26,27 @@
[CSS Transitions: property <text-shadow> from [unset\] to [green 20px 20px 20px\] at (0.3) should be [rgb(179, 154, 0) 27px 13px 27px\]]
expected: FAIL
[CSS Animations: property <text-shadow> 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 <text-shadow> 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 <text-shadow> from [inherit\] to [green 20px 20px 20px\] at (-0.3) should be [rgb(255, 176, 0) 33px 7px 33px\]]
expected: FAIL
[CSS Animations: property <text-shadow> 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 <text-shadow> 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 <text-shadow> 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 <text-shadow> from neutral to [green 20px 20px 20px\] at (-0.3) should be [rgb(255, 176, 0) 7px 33px 7px\]]
expected: FAIL
[CSS Animations: property <text-shadow> 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 <text-shadow> from neutral to [green 20px 20px 20px\] at (0.6) should be [rgb(102, 143, 0) 16px 24px 16px\]]
expected: FAIL
[Web Animations: property <text-shadow> 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 <text-shadow> from neutral to [green 20px 20px 20px\] at (0.6) should be [rgb(102, 143, 0) 16px 24px 16px\]]
expected: FAIL
[Web Animations: property <text-shadow> 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 <text-shadow> from [unset\] to [green 20px 20px 20px\] at (1.5) should be [rgb(0, 110, 0) 15px 25px 15px\]]
expected: FAIL
[CSS Animations: property <text-shadow> 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 <text-shadow> 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 <text-shadow> from neutral to [green 20px 20px 20px\] at (1.5) should be [rgb(0, 110, 0) 25px 15px 25px\]]
expected: FAIL
[Web Animations: property <text-shadow> from [inherit\] to [green 20px 20px 20px\] at (0.6) should be [rgb(102, 143, 0) 24px 16px 24px\]]
expected: FAIL
[CSS Animations: property <text-shadow> 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 <text-shadow> from [inherit\] to [green 20px 20px 20px\] at (-0.3) should be [rgb(255, 176, 0) 33px 7px 33px\]]
expected: FAIL
[Web Animations: property <text-shadow> from [unset\] to [green 20px 20px 20px\] at (0.6) should be [rgb(102, 143, 0) 24px 16px 24px\]]
expected: FAIL
[CSS Transitions: property <text-shadow> from [inherit\] to [green 20px 20px 20px\] at (0.6) should be [rgb(102, 143, 0) 24px 16px 24px\]]
expected: FAIL
[CSS Animations: property <text-shadow> from [inherit\] to [green 20px 20px 20px\] at (0.6) should be [rgb(102, 143, 0) 24px 16px 24px\]]
expected: FAIL
@ -101,36 +56,15 @@
[CSS Animations: property <text-shadow> from [inherit\] to [green 20px 20px 20px\] at (0.3) should be [rgb(179, 154, 0) 27px 13px 27px\]]
expected: FAIL
[CSS Animations: property <text-shadow> 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 <text-shadow> from neutral to [green 20px 20px 20px\] at (0.6) should be [rgb(102, 143, 0) 16px 24px 16px\]]
expected: FAIL
[CSS Transitions: property <text-shadow> from neutral to [green 20px 20px 20px\] at (-0.3) should be [rgb(255, 176, 0) 7px 33px 7px\]]
expected: FAIL
[Web Animations: property <text-shadow> 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 <text-shadow> 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 <text-shadow> 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 <text-shadow> 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 <text-shadow> 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 <text-shadow> 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 <text-shadow> from [black 10px 10px 10px\] to [currentColor 10px 10px 10px\] at (1.5) should be [rgb(0, 192, 0) 10px 10px 10px\]]
expected: FAIL
[Web Animations: property <text-shadow> from [unset\] to [green 20px 20px 20px\] at (0.3) should be [rgb(179, 154, 0) 27px 13px 27px\]]
expected: FAIL
@ -140,63 +74,27 @@
[CSS Transitions with transition: all: property <text-shadow> from neutral to [green 20px 20px 20px\] at (0.3) should be [rgb(179, 154, 0) 13px 27px 13px\]]
expected: FAIL
[CSS Transitions: property <text-shadow> 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 <text-shadow> 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 <text-shadow> 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 <text-shadow> 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 <text-shadow> from [inherit\] to [green 20px 20px 20px\] at (1.5) should be [rgb(0, 110, 0) 15px 25px 15px\]]
expected: FAIL
[CSS Animations: property <text-shadow> from [initial\] to [green 20px 20px 20px\] at (0.6) should be [rgba(0, 128, 0, 0.6) 12px 12px 12px\]]
expected: FAIL
[CSS Animations: property <text-shadow> from [initial\] to [green 20px 20px 20px\] at (0) should be [rgba(0, 0, 0, 0) 0px 0px 0px\]]
expected: FAIL
[CSS Animations: property <text-shadow> from [initial\] to [green 20px 20px 20px\] at (1) should be [rgb(0, 128, 0) 20px 20px 20px\]]
expected: FAIL
[CSS Animations: property <text-shadow> from [inherit\] to [green 20px 20px 20px\] at (1.5) should be [rgb(0, 110, 0) 15px 25px 15px\]]
expected: FAIL
[Web Animations: property <text-shadow> 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 <text-shadow> from [black 15px 10px 5px\] to [orange -15px -10px 25px\] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px\]]
expected: FAIL
[Web Animations: property <text-shadow> 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 <text-shadow> 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 <text-shadow> 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 <text-shadow> from neutral to [green 20px 20px 20px\] at (-0.3) should be [rgb(255, 176, 0) 7px 33px 7px\]]
expected: FAIL
[CSS Animations: property <text-shadow> from neutral to [green 20px 20px 20px\] at (0.3) should be [rgb(179, 154, 0) 13px 27px 13px\]]
expected: FAIL
[CSS Animations: property <text-shadow> from [unset\] to [green 20px 20px 20px\] at (1) should be [rgb(0, 128, 0) 20px 20px 20px\]]
expected: FAIL
[Web Animations: property <text-shadow> from neutral to [green 20px 20px 20px\] at (0) should be [rgb(255, 165, 0) 10px 30px 10px\]]
expected: FAIL
[CSS Transitions: property <text-shadow> from [initial\] to [green 20px 20px 20px\] at (1.5) should be [rgb(0, 192, 0) 30px 30px 30px\]]
expected: FAIL
[CSS Transitions: property <text-shadow> from [inherit\] to [green 20px 20px 20px\] at (1.5) should be [rgb(0, 110, 0) 15px 25px 15px\]]
expected: FAIL
@ -224,63 +122,21 @@
[Web Animations: property <text-shadow> 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 <text-shadow> from neutral to [green 20px 20px 20px\] at (-0.3) should be [rgb(255, 176, 0) 7px 33px 7px\]]
expected: FAIL
[CSS Transitions: property <text-shadow> 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 <text-shadow> from [unset\] to [green 20px 20px 20px\] at (0.6) should be [rgb(102, 143, 0) 24px 16px 24px\]]
expected: FAIL
[CSS Animations: property <text-shadow> 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 <text-shadow> 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 <text-shadow> from [initial\] to [green 20px 20px 20px\] at (1) should be [rgb(0, 128, 0) 20px 20px 20px\]]
expected: FAIL
[CSS Animations: property <text-shadow> 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 <text-shadow> 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 <text-shadow> 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 <text-shadow> from [inherit\] to [green 20px 20px 20px\] at (0.3) should be [rgb(179, 154, 0) 27px 13px 27px\]]
expected: FAIL
[Web Animations: property <text-shadow> 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 <text-shadow> 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 <text-shadow> from [inherit\] to [green 20px 20px 20px\] at (0) should be [rgb(255, 165, 0) 30px 10px 30px\]]
expected: FAIL
[CSS Transitions: property <text-shadow> from [inherit\] to [green 20px 20px 20px\] at (-0.3) should be [rgb(255, 176, 0) 33px 7px 33px\]]
expected: FAIL
[CSS Animations: property <text-shadow> 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 <text-shadow> 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 <text-shadow> 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 <text-shadow> 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 <text-shadow> 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 <text-shadow> from [initial\] to [green 20px 20px 20px\] at (1.5) should be [rgb(0, 192, 0) 30px 30px 30px\]]
expected: FAIL
@ -296,60 +152,21 @@
[Web Animations: property <text-shadow> 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 <text-shadow> 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 <text-shadow> 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 <text-shadow> from [inherit\] to [green 20px 20px 20px\] at (1) should be [rgb(0, 128, 0) 20px 20px 20px\]]
expected: FAIL
[CSS Transitions: property <text-shadow> 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 <text-shadow> from [unset\] to [green 20px 20px 20px\] at (0) should be [rgb(255, 165, 0) 30px 10px 30px\]]
expected: FAIL
[CSS Animations: property <text-shadow> from [initial\] to [green 20px 20px 20px\] at (1.5) should be [rgb(0, 192, 0) 30px 30px 30px\]]
expected: FAIL
[CSS Animations: property <text-shadow> 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 <text-shadow> 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 <text-shadow> 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 <text-shadow> from [unset\] to [green 20px 20px 20px\] at (-0.3) should be [rgb(255, 176, 0) 33px 7px 33px\]]
expected: FAIL
[Web Animations: property <text-shadow> from neutral to [green 20px 20px 20px\] at (1.5) should be [rgb(0, 110, 0) 25px 15px 25px\]]
expected: FAIL
[CSS Transitions: property <text-shadow> from neutral to [green 20px 20px 20px\] at (0.3) should be [rgb(179, 154, 0) 13px 27px 13px\]]
expected: FAIL
[CSS Animations: property <text-shadow> 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 <text-shadow> from [inherit\] to [green 20px 20px 20px\] at (1) should be [rgb(0, 128, 0) 20px 20px 20px\]]
expected: FAIL
[CSS Transitions: property <text-shadow> 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 <text-shadow> 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 <text-shadow> 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 <text-shadow> from [unset\] 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 <text-shadow> from [inherit\] to [green 20px 20px 20px\] at (0.6) should be [rgb(102, 143, 0) 24px 16px 24px\]]
expected: FAIL

View file

@ -11,12 +11,6 @@
[CSS Animations: property <vertical-align> from [unset\] to [40px\] at (0.3) should be [unset\]]
expected: FAIL
[CSS Animations: property <vertical-align> from [0px\] to [100px\] at (1.5) should be [150px\]]
expected: FAIL
[CSS Transitions: property <vertical-align> from [40px\] to [40%\] at (-0.5) should be [calc(60px - 20%)\]]
expected: FAIL
[CSS Animations: property <vertical-align> from [inherit\] to [40px\] at (-0.5) should be [130px\]]
expected: FAIL
@ -29,48 +23,21 @@
[Web Animations: property <vertical-align> from [super\] to [40%\] at (0) should be [super\]]
expected: FAIL
[CSS Animations: property <vertical-align> from [40px\] to [40%\] at (1) should be [calc(0px + 40%)\]]
expected: FAIL
[CSS Transitions: property <vertical-align> from [inherit\] to [40px\] at (-0.5) should be [130px\]]
expected: FAIL
[Web Animations: property <vertical-align> from [initial\] to [40px\] at (1.5) should be [40px\]]
expected: FAIL
[CSS Transitions with transition: all: property <vertical-align> from neutral to [40px\] at (-0.5) should be [-5px\]]
expected: FAIL
[Web Animations: property <vertical-align> from [40px\] to [40%\] at (0) should be [calc(40px + 0%)\]]
expected: FAIL
[CSS Transitions with transition: all: property <vertical-align> from neutral to [40px\] at (1.5) should be [55px\]]
expected: FAIL
[CSS Transitions: property <vertical-align> from neutral to [40px\] at (0.3) should be [19px\]]
expected: FAIL
[CSS Transitions with transition: all: property <vertical-align> from [0px\] to [100px\] at (0.6) should be [60px\]]
expected: FAIL
[Web Animations: property <vertical-align> from [inherit\] to [40px\] at (1) should be [40px\]]
expected: FAIL
[CSS Transitions with transition: all: property <vertical-align> from [40px\] to [40%\] at (1.5) should be [calc(-20px + 60%)\]]
expected: FAIL
[CSS Animations: property <vertical-align> from [super\] to [40%\] at (0.6) should be [40%\]]
expected: FAIL
[CSS Transitions: property <vertical-align> from neutral to [40px\] at (-0.5) should be [-5px\]]
expected: FAIL
[CSS Animations: property <vertical-align> from [super\] to [40%\] at (0.3) should be [super\]]
expected: FAIL
[CSS Transitions with transition: all: property <vertical-align> from [0px\] to [100px\] at (-0.5) should be [-50px\]]
expected: FAIL
[Web Animations: property <vertical-align> from [inherit\] to [40px\] at (0.6) should be [64px\]]
expected: FAIL
@ -80,18 +47,9 @@
[CSS Animations: property <vertical-align> from [inherit\] to [40px\] at (0) should be [100px\]]
expected: FAIL
[CSS Transitions: property <vertical-align> from [0px\] to [100px\] at (0.6) should be [60px\]]
expected: FAIL
[Web Animations: property <vertical-align> from [initial\] to [40px\] at (0.5) should be [40px\]]
expected: FAIL
[CSS Animations: property <vertical-align> from neutral to [40px\] at (1) should be [40px\]]
expected: FAIL
[CSS Animations: property <vertical-align> from [40px\] to [40%\] at (0) should be [calc(40px + 0%)\]]
expected: FAIL
[CSS Animations: property <vertical-align> from [super\] to [40%\] at (1.5) should be [40%\]]
expected: FAIL
@ -101,24 +59,12 @@
[Web Animations: property <vertical-align> from [40px\] to [40%\] at (-0.5) should be [calc(60px - 20%)\]]
expected: FAIL
[CSS Animations: property <vertical-align> from neutral to [40px\] at (-0.5) should be [-5px\]]
expected: FAIL
[CSS Transitions: property <vertical-align> from neutral to [40px\] at (0.6) should be [28px\]]
expected: FAIL
[CSS Animations: property <vertical-align> from [super\] to [40%\] at (-0.3) should be [super\]]
expected: FAIL
[CSS Animations: property <vertical-align> from [initial\] to [40px\] at (0.6) should be [40px\]]
expected: FAIL
[CSS Transitions with transition: all: property <vertical-align> from neutral to [40px\] at (0.3) should be [19px\]]
expected: FAIL
[CSS Animations: property <vertical-align> from neutral to [40px\] at (0.6) should be [28px\]]
expected: FAIL
[Web Animations: property <vertical-align> from [initial\] to [40px\] at (0.3) should be [initial\]]
expected: FAIL
@ -128,9 +74,6 @@
[CSS Animations: property <vertical-align> from [unset\] to [40px\] at (1.5) should be [40px\]]
expected: FAIL
[CSS Transitions: property <vertical-align> from [inherit\] to [40px\] at (0.3) should be [82px\]]
expected: FAIL
[Web Animations: property <vertical-align> from neutral to [40px\] at (0.3) should be [19px\]]
expected: FAIL
@ -140,18 +83,6 @@
[Web Animations: property <vertical-align> from [super\] to [40%\] at (-0.3) should be [super\]]
expected: FAIL
[CSS Transitions: property <vertical-align> from [0px\] to [100px\] at (-0.5) should be [-50px\]]
expected: FAIL
[CSS Transitions with transition: all: property <vertical-align> from [40px\] to [40%\] at (0.3) should be [calc(28px + 12%)\]]
expected: FAIL
[CSS Transitions with transition: all: property <vertical-align> from [inherit\] to [40px\] at (-0.5) should be [130px\]]
expected: FAIL
[CSS Animations: property <vertical-align> from [40px\] to [40%\] at (-0.5) should be [calc(60px - 20%)\]]
expected: FAIL
[Web Animations: property <vertical-align> from [inherit\] to [40px\] at (0.3) should be [82px\]]
expected: FAIL
@ -161,9 +92,6 @@
[CSS Animations: property <vertical-align> from [unset\] to [40px\] at (-0.3) should be [unset\]]
expected: FAIL
[CSS Transitions: property <vertical-align> from [40px\] to [40%\] at (1.5) should be [calc(-20px + 60%)\]]
expected: FAIL
[Web Animations: property <vertical-align> from [super\] to [40%\] at (1.5) should be [40%\]]
expected: FAIL
@ -182,48 +110,24 @@
[Web Animations: property <vertical-align> from neutral to [40px\] at (0) should be [10px\]]
expected: FAIL
[CSS Animations: property <vertical-align> from [0px\] to [100px\] at (1) should be [100px\]]
expected: FAIL
[CSS Transitions: property <vertical-align> from [0px\] to [100px\] at (1.5) should be [150px\]]
expected: FAIL
[Web Animations: property <vertical-align> from [0px\] to [100px\] at (1) should be [100px\]]
expected: FAIL
[Web Animations: property <vertical-align> from [0px\] to [100px\] at (1.5) should be [150px\]]
expected: FAIL
[CSS Animations: property <vertical-align> from neutral to [40px\] at (0.3) should be [19px\]]
expected: FAIL
[Web Animations: property <vertical-align> from [unset\] to [40px\] at (0.6) should be [40px\]]
expected: FAIL
[CSS Transitions with transition: all: property <vertical-align> from [inherit\] to [40px\] at (1.5) should be [10px\]]
expected: FAIL
[CSS Transitions with transition: all: property <vertical-align> from [40px\] to [40%\] at (-0.5) should be [calc(60px - 20%)\]]
expected: FAIL
[Web Animations: property <vertical-align> from [unset\] to [40px\] at (0.5) should be [40px\]]
expected: FAIL
[Web Animations: property <vertical-align> from [inherit\] to [40px\] at (1.5) should be [10px\]]
expected: FAIL
[CSS Transitions: property <vertical-align> from neutral to [40px\] at (1.5) should be [55px\]]
expected: FAIL
[Web Animations: property <vertical-align> from [initial\] to [40px\] at (-0.3) should be [initial\]]
expected: FAIL
[CSS Animations: property <vertical-align> from [inherit\] to [40px\] at (1) should be [40px\]]
expected: FAIL
[CSS Animations: property <vertical-align> from [0px\] to [100px\] at (-0.5) should be [-50px\]]
expected: FAIL
[CSS Animations: property <vertical-align> from [initial\] to [40px\] at (1) should be [40px\]]
expected: FAIL
@ -236,24 +140,9 @@
[Web Animations: property <vertical-align> from neutral to [40px\] at (1) should be [40px\]]
expected: FAIL
[CSS Transitions with transition: all: property <vertical-align> from [inherit\] to [40px\] at (0.6) should be [64px\]]
expected: FAIL
[CSS Transitions with transition: all: property <vertical-align> from neutral to [40px\] at (0.6) should be [28px\]]
expected: FAIL
[CSS Transitions with transition: all: property <vertical-align> from [0px\] to [100px\] at (1.5) should be [150px\]]
expected: FAIL
[CSS Animations: property <vertical-align> from [initial\] to [40px\] at (1.5) should be [40px\]]
expected: FAIL
[CSS Animations: property <vertical-align> from [0px\] to [100px\] at (0) should be [0px\]]
expected: FAIL
[CSS Transitions: property <vertical-align> from [inherit\] to [40px\] at (0.6) should be [64px\]]
expected: FAIL
[CSS Animations: property <vertical-align> from [initial\] to [40px\] at (-0.3) should be [initial\]]
expected: FAIL
@ -263,36 +152,21 @@
[Web Animations: property <vertical-align> from [40px\] to [40%\] at (0.3) should be [calc(28px + 12%)\]]
expected: FAIL
[CSS Transitions with transition: all: property <vertical-align> from [inherit\] to [40px\] at (0.3) should be [82px\]]
expected: FAIL
[Web Animations: property <vertical-align> from [inherit\] to [40px\] at (-0.5) should be [130px\]]
expected: FAIL
[Web Animations: property <vertical-align> from [0px\] to [100px\] at (0) should be [0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <vertical-align> from [0px\] to [100px\] at (0.3) should be [30px\]]
expected: FAIL
[CSS Animations: property <vertical-align> from [40px\] to [40%\] at (0.3) should be [calc(28px + 12%)\]]
expected: FAIL
[Web Animations: property <vertical-align> from [unset\] to [40px\] at (-0.3) should be [unset\]]
expected: FAIL
[CSS Transitions: property <vertical-align> from [inherit\] to [40px\] at (1.5) should be [10px\]]
expected: FAIL
[Web Animations: property <vertical-align> from [unset\] to [40px\] at (0.3) should be [unset\]]
expected: FAIL
[CSS Animations: property <vertical-align> from [super\] to [40%\] at (0) should be [super\]]
expected: FAIL
[CSS Animations: property <vertical-align> from [0px\] to [100px\] at (0.3) should be [30px\]]
expected: FAIL
[Web Animations: property <vertical-align> from [initial\] to [40px\] at (0.6) should be [40px\]]
expected: FAIL
@ -305,21 +179,12 @@
[Web Animations: property <vertical-align> from [super\] to [40%\] at (1) should be [40%\]]
expected: FAIL
[CSS Animations: property <vertical-align> from [0px\] to [100px\] at (0.6) should be [60px\]]
expected: FAIL
[CSS Transitions: property <vertical-align> from [40px\] to [40%\] at (0.3) should be [calc(28px + 12%)\]]
expected: FAIL
[CSS Animations: property <vertical-align> from [super\] to [40%\] at (0.5) should be [40%\]]
expected: FAIL
[CSS Animations: property <vertical-align> from [unset\] to [40px\] at (0.6) should be [40px\]]
expected: FAIL
[CSS Animations: property <vertical-align> from [40px\] to [40%\] at (1.5) should be [calc(-20px + 60%)\]]
expected: FAIL
[Web Animations: property <vertical-align> from [unset\] to [40px\] at (1) should be [40px\]]
expected: FAIL
@ -335,15 +200,30 @@
[Web Animations: property <vertical-align> from [unset\] to [40px\] at (1.5) should be [40px\]]
expected: FAIL
[CSS Animations: property <vertical-align> from neutral to [40px\] at (1.5) should be [55px\]]
expected: FAIL
[Web Animations: property <vertical-align> from [unset\] to [40px\] at (0) should be [unset\]]
expected: FAIL
[CSS Animations: property <vertical-align> from [inherit\] to [40px\] at (0.3) should be [82px\]]
expected: FAIL
[CSS Animations: property <vertical-align> from [inherit\] to [40px\] at (1.5) should be [10px\]]
expected: FAIL
[CSS Transitions with transition: all: property <vertical-align> from [0px\] to [100px\] at (0.6) should be [60px\]]
expected: FAIL
[CSS Transitions with transition: all: property <vertical-align> from [0px\] to [100px\] at (-0.5) should be [-50px\]]
expected: FAIL
[CSS Transitions: property <vertical-align> from [0px\] to [100px\] at (0.6) should be [60px\]]
expected: FAIL
[CSS Transitions: property <vertical-align> from [0px\] to [100px\] at (-0.5) should be [-50px\]]
expected: FAIL
[CSS Transitions with transition: all: property <vertical-align> from [0px\] to [100px\] at (0.3) should be [30px\]]
expected: FAIL
[CSS Transitions: property <vertical-align> from [0px\] to [100px\] at (0.3) should be [30px\]]
expected: FAIL

View file

@ -1,28 +1,13 @@
[z-index-interpolation.html]
[CSS Animations: property <z-index> from [2\] to [4\] at (0.6) should be [3\]]
expected: FAIL
[CSS Transitions: property <z-index> from neutral to [5\] at (-0.3) should be [-4\]]
expected: FAIL
[Web Animations: property <z-index> from [unset\] to [5\] at (1.5) should be [5\]]
expected: FAIL
[Web Animations: property <z-index> from [2\] to [4\] at (0.3) should be [3\]]
expected: FAIL
[CSS Transitions with transition: all: property <z-index> from neutral to [5\] at (1.5) should be [9\]]
expected: FAIL
[CSS Transitions with transition: all: property <z-index> from [2\] to [4\] at (-0.3) should be [1\]]
expected: FAIL
[Web Animations: property <z-index> from [auto\] to [10\] at (1.5) should be [10\]]
expected: FAIL
[CSS Transitions with transition: all: property <z-index> from [-2\] to [-4\] at (0.6) should be [-3\]]
expected: FAIL
[CSS Animations: property <z-index> from [unset\] to [5\] at (0.3) should be [unset\]]
expected: FAIL
@ -32,48 +17,21 @@
[CSS Animations: property <z-index> from [initial\] to [5\] at (1.5) should be [5\]]
expected: FAIL
[CSS Transitions: property <z-index> from neutral to [5\] at (0.6) should be [2\]]
expected: FAIL
[Web Animations: property <z-index> from [auto\] to [10\] at (-0.3) should be [auto\]]
expected: FAIL
[Web Animations: property <z-index> from neutral to [5\] at (-0.3) should be [-4\]]
expected: FAIL
[CSS Animations: property <z-index> from [-5\] to [5\] at (0) should be [-5\]]
expected: FAIL
[CSS Transitions: property <z-index> from [inherit\] to [5\] at (-0.3) should be [18\]]
expected: FAIL
[CSS Animations: property <z-index> from neutral to [5\] at (1) should be [5\]]
expected: FAIL
[CSS Animations: property <z-index> from [2\] to [4\] at (0) should be [2\]]
expected: FAIL
[CSS Animations: property <z-index> from [2\] to [4\] at (-0.3) should be [1\]]
expected: FAIL
[Web Animations: property <z-index> from neutral to [5\] at (1.5) should be [9\]]
expected: FAIL
[CSS Transitions with transition: all: property <z-index> from [-5\] to [5\] at (1.5) should be [10\]]
expected: FAIL
[CSS Transitions with transition: all: property <z-index> from [inherit\] to [5\] at (1.5) should be [0\]]
expected: FAIL
[CSS Animations: property <z-index> from [initial\] to [5\] at (0) should be [initial\]]
expected: FAIL
[Web Animations: property <z-index> from [2\] to [4\] at (-0.3) should be [1\]]
expected: FAIL
[CSS Transitions with transition: all: property <z-index> from [2\] to [4\] at (1.5) should be [5\]]
expected: FAIL
[Web Animations: property <z-index> from [initial\] to [5\] at (0.6) should be [5\]]
expected: FAIL
@ -83,54 +41,27 @@
[Web Animations: property <z-index> from neutral to [5\] at (1) should be [5\]]
expected: FAIL
[CSS Animations: property <z-index> from [-2\] to [-4\] at (0.3) should be [-3\]]
expected: FAIL
[CSS Animations: property <z-index> from [unset\] to [5\] at (0.5) should be [5\]]
expected: FAIL
[CSS Transitions with transition: all: property <z-index> from [-2\] to [-4\] at (-0.3) should be [-1\]]
expected: FAIL
[CSS Transitions: property <z-index> from [-5\] to [5\] at (0.6) should be [1\]]
expected: FAIL
[CSS Transitions with transition: all: property <z-index> from [-5\] to [5\] at (0.3) should be [-2\]]
expected: FAIL
[CSS Animations: property <z-index> from [unset\] to [5\] at (1.5) should be [5\]]
expected: FAIL
[Web Animations: property <z-index> from [initial\] to [5\] at (0.5) should be [5\]]
expected: FAIL
[CSS Animations: property <z-index> from [-2\] to [-4\] at (-0.3) should be [-1\]]
expected: FAIL
[Web Animations: property <z-index> from [inherit\] to [5\] at (1.5) should be [0\]]
expected: FAIL
[CSS Transitions: property <z-index> from [-2\] to [-4\] at (-0.3) should be [-1\]]
expected: FAIL
[CSS Animations: property <z-index> from [2\] to [4\] at (1) should be [4\]]
expected: FAIL
[Web Animations: property <z-index> from [-2\] to [-4\] at (1.5) should be [-5\]]
expected: FAIL
[CSS Transitions: property <z-index> from [inherit\] to [5\] at (0.3) should be [12\]]
expected: FAIL
[Web Animations: property <z-index> from [2\] to [4\] at (0.6) should be [3\]]
expected: FAIL
[Web Animations: property <z-index> from [-2\] to [-4\] at (0) should be [-2\]]
expected: FAIL
[CSS Transitions: property <z-index> from [inherit\] to [5\] at (1.5) should be [0\]]
expected: FAIL
[Web Animations: property <z-index> from [-2\] to [-4\] at (1) should be [-4\]]
expected: FAIL
@ -143,30 +74,15 @@
[Web Animations: property <z-index> from [initial\] to [5\] at (0.3) should be [initial\]]
expected: FAIL
[CSS Transitions with transition: all: property <z-index> from neutral to [5\] at (0.6) should be [2\]]
expected: FAIL
[Web Animations: property <z-index> from [initial\] to [5\] at (1.5) should be [5\]]
expected: FAIL
[CSS Transitions: property <z-index> from [inherit\] to [5\] at (0.6) should be [9\]]
expected: FAIL
[CSS Transitions: property <z-index> from [2\] to [4\] at (0.3) should be [3\]]
expected: FAIL
[CSS Animations: property <z-index> from [initial\] to [5\] at (-0.3) should be [initial\]]
expected: FAIL
[CSS Transitions with transition: all: property <z-index> from [-2\] to [-4\] at (1.5) should be [-5\]]
expected: FAIL
[Web Animations: property <z-index> from [initial\] to [5\] at (0) should be [initial\]]
expected: FAIL
[CSS Animations: property <z-index> from neutral to [5\] at (0.6) should be [2\]]
expected: FAIL
[Web Animations: property <z-index> from [2\] to [4\] at (0) should be [2\]]
expected: FAIL
@ -185,24 +101,9 @@
[CSS Animations: property <z-index> from [auto\] to [10\] at (1) should be [10\]]
expected: FAIL
[CSS Transitions with transition: all: property <z-index> from [-5\] to [5\] at (0.6) should be [1\]]
expected: FAIL
[CSS Animations: property <z-index> from [-5\] to [5\] at (1.5) should be [10\]]
expected: FAIL
[CSS Animations: property <z-index> from neutral to [5\] at (1.5) should be [9\]]
expected: FAIL
[Web Animations: property <z-index> from [2\] to [4\] at (1) should be [4\]]
expected: FAIL
[CSS Transitions: property <z-index> from [2\] to [4\] at (1.5) should be [5\]]
expected: FAIL
[CSS Transitions: property <z-index> from neutral to [5\] at (1.5) should be [9\]]
expected: FAIL
[Web Animations: property <z-index> from [inherit\] to [5\] at (0.3) should be [12\]]
expected: FAIL
@ -212,57 +113,24 @@
[Web Animations: property <z-index> from [inherit\] to [5\] at (0.6) should be [9\]]
expected: FAIL
[CSS Transitions: property <z-index> from [-5\] to [5\] at (-0.3) should be [-8\]]
expected: FAIL
[CSS Transitions: property <z-index> from [-5\] to [5\] at (1.5) should be [10\]]
expected: FAIL
[Web Animations: property <z-index> from neutral to [5\] at (0.3) should be [0\]]
expected: FAIL
[CSS Animations: property <z-index> from [auto\] to [10\] at (1.5) should be [10\]]
expected: FAIL
[CSS Transitions: property <z-index> from [2\] to [4\] at (0.6) should be [3\]]
expected: FAIL
[CSS Transitions with transition: all: property <z-index> from [inherit\] to [5\] at (0.3) should be [12\]]
expected: FAIL
[CSS Animations: property <z-index> from [unset\] to [5\] at (0.6) should be [5\]]
expected: FAIL
[Web Animations: property <z-index> from [-5\] to [5\] at (0.6) should be [1\]]
expected: FAIL
[CSS Transitions: property <z-index> from [-2\] to [-4\] at (0.3) should be [-3\]]
expected: FAIL
[CSS Animations: property <z-index> from [-2\] to [-4\] at (0.6) should be [-3\]]
expected: FAIL
[CSS Animations: property <z-index> from [-2\] to [-4\] at (1.5) should be [-5\]]
expected: FAIL
[CSS Animations: property <z-index> from [unset\] to [5\] at (1) should be [5\]]
expected: FAIL
[CSS Animations: property <z-index> from [2\] to [4\] at (0.3) should be [3\]]
expected: FAIL
[Web Animations: property <z-index> from [unset\] to [5\] at (0.5) should be [5\]]
expected: FAIL
[CSS Animations: property <z-index> from [-5\] to [5\] at (1) should be [5\]]
expected: FAIL
[CSS Transitions with transition: all: property <z-index> from [-5\] to [5\] at (-0.3) should be [-8\]]
expected: FAIL
[CSS Animations: property <z-index> from neutral to [5\] at (-0.3) should be [-4\]]
expected: FAIL
[Web Animations: property <z-index> from [2\] to [4\] at (1.5) should be [5\]]
expected: FAIL
@ -287,42 +155,21 @@
[Web Animations: property <z-index> from [-5\] to [5\] at (-0.3) should be [-8\]]
expected: FAIL
[CSS Animations: property <z-index> from [2\] to [4\] at (1.5) should be [5\]]
expected: FAIL
[CSS Animations: property <z-index> from [inherit\] to [5\] at (1.5) should be [0\]]
expected: FAIL
[CSS Transitions: property <z-index> from [-2\] to [-4\] at (1.5) should be [-5\]]
expected: FAIL
[CSS Transitions with transition: all: property <z-index> from [2\] to [4\] at (0.3) should be [3\]]
expected: FAIL
[CSS Transitions with transition: all: property <z-index> from [-2\] to [-4\] at (0.3) should be [-3\]]
expected: FAIL
[CSS Animations: property <z-index> from neutral to [5\] at (0.3) should be [0\]]
expected: FAIL
[CSS Animations: property <z-index> from [auto\] to [10\] at (0) should be [auto\]]
expected: FAIL
[CSS Animations: property <z-index> from [unset\] to [5\] at (-0.3) should be [unset\]]
expected: FAIL
[CSS Animations: property <z-index> from [-5\] to [5\] at (0.6) should be [1\]]
expected: FAIL
[Web Animations: property <z-index> from [-2\] to [-4\] at (0.1) should be [-2\]]
expected: FAIL
[Web Animations: property <z-index> from [-5\] to [5\] at (1.5) should be [10\]]
expected: FAIL
[CSS Transitions: property <z-index> from [-5\] to [5\] at (0.3) should be [-2\]]
expected: FAIL
[Web Animations: property <z-index> from [-5\] to [5\] at (0) should be [-5\]]
expected: FAIL
@ -341,39 +188,21 @@
[Web Animations: property <z-index> from [unset\] to [5\] at (0.3) should be [unset\]]
expected: FAIL
[CSS Animations: property <z-index> from [inherit\] to [5\] at (1) should be [5\]]
expected: FAIL
[CSS Animations: property <z-index> from [inherit\] to [5\] at (-0.3) should be [18\]]
expected: FAIL
[CSS Animations: property <z-index> from [initial\] to [5\] at (0.6) should be [5\]]
expected: FAIL
[CSS Animations: property <z-index> from [-2\] to [-4\] at (1) should be [-4\]]
expected: FAIL
[CSS Animations: property <z-index> from [-5\] to [5\] at (-0.3) should be [-8\]]
expected: FAIL
[Web Animations: property <z-index> from [auto\] to [10\] at (0.5) should be [10\]]
expected: FAIL
[CSS Animations: property <z-index> from [initial\] to [5\] at (0.5) should be [5\]]
expected: FAIL
[CSS Transitions with transition: all: property <z-index> from [inherit\] to [5\] at (0.6) should be [9\]]
expected: FAIL
[Web Animations: property <z-index> from [auto\] to [10\] at (0.3) should be [auto\]]
expected: FAIL
[CSS Transitions: property <z-index> from neutral to [5\] at (0.3) should be [0\]]
expected: FAIL
[CSS Transitions with transition: all: property <z-index> from [2\] to [4\] at (0.6) should be [3\]]
expected: FAIL
[Web Animations: property <z-index> from [auto\] to [10\] at (0.6) should be [10\]]
expected: FAIL
@ -383,21 +212,9 @@
[CSS Animations: property <z-index> from [unset\] to [5\] at (0) should be [unset\]]
expected: FAIL
[CSS Transitions with transition: all: property <z-index> from neutral to [5\] at (-0.3) should be [-4\]]
expected: FAIL
[CSS Transitions: property <z-index> from [2\] to [4\] at (-0.3) should be [1\]]
expected: FAIL
[CSS Transitions: property <z-index> from [-2\] to [-4\] at (0.6) should be [-3\]]
expected: FAIL
[CSS Animations: property <z-index> from [auto\] to [10\] at (-0.3) should be [auto\]]
expected: FAIL
[CSS Transitions with transition: all: property <z-index> from neutral to [5\] at (0.3) should be [0\]]
expected: FAIL
[CSS Animations: property <z-index> from [initial\] to [5\] at (0.3) should be [initial\]]
expected: FAIL
@ -413,9 +230,6 @@
[CSS Animations: property <z-index> from [inherit\] to [5\] at (0.3) should be [12\]]
expected: FAIL
[CSS Transitions with transition: all: property <z-index> from [inherit\] to [5\] at (-0.3) should be [18\]]
expected: FAIL
[CSS Animations: property <z-index> from [auto\] to [10\] at (0.6) should be [10\]]
expected: FAIL

View file

@ -1,4 +0,0 @@
[changing-while-transition-001.html]
[Changes to transition-duration should not affect in-flight transitions]
expected: FAIL

View file

@ -1,4 +0,0 @@
[changing-while-transition-002.html]
[Changes to transition-timing-function should not affect in-flight transitions]
expected: FAIL

View file

@ -1,4 +0,0 @@
[changing-while-transition-003.html]
[Changes to transition-delay should not affect in-flight transitions]
expected: FAIL

View file

@ -473,9 +473,6 @@
[font-stretch font-stretch(keyword) / values]
expected: FAIL
[transform-origin horizontal(keyword) / values]
expected: FAIL
[border-top-right-radius border-radius(px) / values]
expected: FAIL

View file

@ -2,18 +2,6 @@
[top auto(to) / values]
expected: FAIL
[top auto(from) / events]
expected: FAIL
[left auto(from) / events]
expected: FAIL
[right auto(from) / events]
expected: FAIL
[margin-top auto(to) / events]
expected: FAIL
[z-index auto(to) / values]
expected: FAIL
@ -29,36 +17,12 @@
[right auto(from) / values]
expected: FAIL
[top auto(to) / events]
expected: FAIL
[width auto(to) / events]
expected: FAIL
[bottom auto(to) / events]
expected: FAIL
[bottom auto(from) / events]
expected: FAIL
[marker-offset auto(to) / events]
expected: FAIL
[height auto(to) / values]
expected: FAIL
[height auto(to) / events]
expected: FAIL
[margin-bottom auto(from) / events]
expected: FAIL
[margin-right auto(from) / events]
expected: FAIL
[margin-bottom auto(to) / events]
expected: FAIL
[marker-offset auto(from) / events]
expected: FAIL
@ -77,12 +41,6 @@
[margin-top auto(to) / values]
expected: FAIL
[width auto(from) / events]
expected: FAIL
[margin-left auto(from) / events]
expected: FAIL
[clip auto(from) / values]
expected: FAIL
@ -107,27 +65,12 @@
[margin-right auto(to) / values]
expected: FAIL
[margin-top auto(from) / events]
expected: FAIL
[right auto(to) / values]
expected: FAIL
[right auto(to) / events]
expected: FAIL
[margin-right auto(to) / events]
expected: FAIL
[margin-left auto(to) / values]
expected: FAIL
[margin-left auto(to) / events]
expected: FAIL
[height auto(from) / events]
expected: FAIL
[top auto(from) / values]
expected: FAIL
@ -140,6 +83,3 @@
[left auto(from) / values]
expected: FAIL
[left auto(to) / events]
expected: FAIL

View file

@ -1,4 +0,0 @@
[starting-of-transitions-001.html]
[changes to transition-property should cancel in-flight transitions]
expected: FAIL

View file

@ -2,39 +2,21 @@
[outline-color interpolation]
expected: FAIL
[CSS Transitions with transition: all: property <outline-color> from [white\] to [orange\] at (1.5) should be [rgb(255, 120, 0)\]]
expected: FAIL
[CSS Animations: property <outline-color> from [white\] to [orange\] at (-0.3) should be [white\]]
expected: FAIL
[CSS Animations: property <outline-color> from [inherit\] to [green\] at (1.5) should be [rgb(0, 65, 0)\]]
expected: FAIL
[CSS Transitions: property <outline-color> from [unset\] to [green\] at (0.6) should be [rgb(0, 77, 0)\]]
expected: FAIL
[Web Animations: property <outline-color> from [white\] to [orange\] at (0.3) should be [rgb(255, 228, 179)\]]
expected: FAIL
[Web Animations: property <outline-color> from [initial\] to [green\] at (0) should be [rgb(0, 0, 0)\]]
expected: FAIL
[CSS Animations: property <outline-color> from [initial\] to [green\] at (0.6) should be [rgb(0, 77, 0)\]]
expected: FAIL
[Web Animations: property <outline-color> from [inherit\] to [green\] at (1.5) should be [rgb(0, 65, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-color> from neutral to [green\] at (0.3) should be [rgb(0, 38, 179)\]]
expected: FAIL
[CSS Animations: property <outline-color> from [inherit\] to [green\] at (1) should be [rgb(0, 128, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-color> from [unset\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[Web Animations: property <outline-color> from [white\] to [orange\] at (0) should be [white\]]
expected: FAIL
@ -77,15 +59,9 @@
[Web Animations: property <outline-color> from [initial\] to [green\] at (0.3) should be [rgb(0, 38, 0)\]]
expected: FAIL
[CSS Animations: property <outline-color> from neutral to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[Web Animations: property <outline-color> from [white\] to [orange\] at (0.6) should be [rgb(255, 201, 102)\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-color> from neutral to [green\] at (0.6) should be [rgb(0, 77, 102)\]]
expected: FAIL
[CSS Animations: property <outline-color> from [inherit\] to [green\] at (0.6) should be [rgb(102, 179, 0)\]]
expected: FAIL
@ -98,135 +74,42 @@
[CSS Transitions: property <outline-color> from [inherit\] to [green\] at (1.5) should be [rgb(0, 65, 0)\]]
expected: FAIL
[CSS Animations: property <outline-color> from [initial\] to [green\] at (1) should be [rgb(0, 128, 0)\]]
expected: FAIL
[Web Animations: property <outline-color> from [initial\] to [green\] at (-0.3) should be [rgb(0, 0, 0)\]]
expected: FAIL
[CSS Transitions: property <outline-color> from [inherit\] to [green\] at (0.6) should be [rgb(102, 179, 0)\]]
expected: FAIL
[Web Animations: property <outline-color> from [white\] to [orange\] at (-0.3) should be [white\]]
expected: FAIL
[CSS Transitions: property <outline-color> from neutral to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[Web Animations: property <outline-color> from [white\] to [orange\] at (1.5) should be [rgb(255, 120, 0)\]]
expected: FAIL
[CSS Animations: property <outline-color> from [initial\] to [green\] at (-0.3) should be [rgb(0, 0, 0)\]]
expected: FAIL
[Web Animations: property <outline-color> from [initial\] to [green\] at (1) should be [rgb(0, 128, 0)\]]
expected: FAIL
[CSS Animations: property <outline-color> from [inherit\] to [green\] at (0.3) should be [rgb(179, 217, 0)\]]
expected: FAIL
[CSS Transitions: property <outline-color> from [unset\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-color> from [initial\] to [green\] at (0.6) should be [rgb(0, 77, 0)\]]
expected: FAIL
[CSS Transitions: property <outline-color> from [initial\] to [green\] at (0.6) should be [rgb(0, 77, 0)\]]
expected: FAIL
[CSS Animations: property <outline-color> from [initial\] to [green\] at (0.3) should be [rgb(0, 38, 0)\]]
expected: FAIL
[CSS Animations: property <outline-color> from neutral to [green\] at (1) should be [rgb(0, 128, 0)\]]
expected: FAIL
[CSS Animations: property <outline-color> from [unset\] to [green\] at (0) should be [rgb(0, 0, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-color> from [unset\] to [green\] at (0.3) should be [rgb(0, 38, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-color> from [white\] to [orange\] at (0.6) should be [rgb(255, 201, 102)\]]
expected: FAIL
[CSS Animations: property <outline-color> from [white\] to [orange\] at (0) should be [white\]]
expected: FAIL
[CSS Transitions: property <outline-color> from [unset\] to [green\] at (0.3) should be [rgb(0, 38, 0)\]]
expected: FAIL
[CSS Animations: property <outline-color> from [unset\] to [green\] at (1) should be [rgb(0, 128, 0)\]]
expected: FAIL
[CSS Transitions: property <outline-color> from neutral to [green\] at (0.6) should be [rgb(0, 77, 102)\]]
expected: FAIL
[CSS Animations: property <outline-color> from [unset\] to [green\] at (0.6) should be [rgb(0, 77, 0)\]]
expected: FAIL
[CSS Animations: property <outline-color> from [white\] to [orange\] at (0.3) should be [rgb(255, 228, 179)\]]
expected: FAIL
[CSS Animations: property <outline-color> from [white\] to [orange\] at (1.5) should be [rgb(255, 120, 0)\]]
expected: FAIL
[CSS Animations: property <outline-color> from [unset\] to [green\] at (0.3) should be [rgb(0, 38, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-color> from [initial\] to [green\] at (0.3) should be [rgb(0, 38, 0)\]]
expected: FAIL
[Web Animations: property <outline-color> from [inherit\] to [green\] at (0.3) should be [rgb(179, 217, 0)\]]
expected: FAIL
[CSS Animations: property <outline-color> from [unset\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[Web Animations: property <outline-color> from [inherit\] to [green\] at (0) should be [rgb(255, 255, 0)\]]
expected: FAIL
[Web Animations: property <outline-color> from [white\] to [orange\] at (1) should be [orange\]]
expected: FAIL
[CSS Transitions: property <outline-color> from [initial\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[CSS Animations: property <outline-color> from [white\] to [orange\] at (1) should be [orange\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-color> from [unset\] to [green\] at (0.6) should be [rgb(0, 77, 0)\]]
expected: FAIL
[CSS Animations: property <outline-color> from [initial\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-color> from [white\] to [orange\] at (0.3) should be [rgb(255, 228, 179)\]]
expected: FAIL
[CSS Animations: property <outline-color> from neutral to [green\] at (0.3) should be [rgb(0, 38, 179)\]]
expected: FAIL
[CSS Transitions: property <outline-color> from [initial\] to [green\] at (0.3) should be [rgb(0, 38, 0)\]]
expected: FAIL
[CSS Animations: property <outline-color> from [inherit\] to [green\] at (0) should be [rgb(255, 255, 0)\]]
expected: FAIL
[CSS Animations: property <outline-color> from [white\] to [orange\] at (0.6) should be [rgb(255, 201, 102)\]]
expected: FAIL
[CSS Animations: property <outline-color> from neutral to [green\] at (0.6) should be [rgb(0, 77, 102)\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-color> from [initial\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-color> from neutral to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[CSS Animations: property <outline-color> from [initial\] to [green\] at (0) should be [rgb(0, 0, 0)\]]
expected: FAIL
[Web Animations: property <outline-color> from [unset\] to [green\] at (1) should be [rgb(0, 128, 0)\]]
expected: FAIL
@ -239,15 +122,9 @@
[Web Animations: property <outline-color> from neutral to [green\] at (0.6) should be [rgb(0, 77, 102)\]]
expected: FAIL
[CSS Transitions: property <outline-color> from [white\] to [orange\] at (1.5) should be [rgb(255, 120, 0)\]]
expected: FAIL
[CSS Transitions: property <outline-color> from [white\] to [orange\] at (0.3) should be [rgb(255, 228, 179)\]]
expected: FAIL
[CSS Animations: property <outline-color> from [unset\] to [green\] at (-0.3) should be [rgb(0, 0, 0)\]]
expected: FAIL
[Web Animations: property <outline-color> from neutral to [green\] at (0) should be [rgb(0, 0, 255)\]]
expected: FAIL
@ -257,12 +134,3 @@
[Web Animations: property <outline-color> from [unset\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-color> from [inherit\] to [green\] at (0.6) should be [rgb(102, 179, 0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-color> from [inherit\] to [green\] at (1.5) should be [rgb(0, 65, 0)\]]
expected: FAIL
[CSS Transitions: property <outline-color> from [white\] to [orange\] at (0.6) should be [rgb(255, 201, 102)\]]
expected: FAIL

View file

@ -5,15 +5,9 @@
[Web Animations: property <outline-offset> from [inherit\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Animations: property <outline-offset> from [initial\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[Web Animations: property <outline-offset> from neutral to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Animations: property <outline-offset> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[Web Animations: property <outline-offset> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
@ -23,66 +17,24 @@
[Web Animations: property <outline-offset> from [unset\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[CSS Animations: property <outline-offset> from [-5px\] to [5px\] at (0.3) should be [-2px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-offset> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[CSS Transitions: property <outline-offset> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Animations: property <outline-offset> from [initial\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[CSS Transitions: property <outline-offset> from [inherit\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-offset> from [initial\] to [20px\] at (-0.3) should be [-6px\]]
expected: FAIL
[CSS Animations: property <outline-offset> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-offset> from [initial\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[Web Animations: property <outline-offset> from [initial\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[Web Animations: property <outline-offset> from [initial\] to [20px\] at (0) should be [0px\]]
expected: FAIL
[CSS Animations: property <outline-offset> from [initial\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[Web Animations: property <outline-offset> from [unset\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[Web Animations: property <outline-offset> from [initial\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-offset> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[Web Animations: property <outline-offset> from [inherit\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[Web Animations: property <outline-offset> from [inherit\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-offset> from [initial\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[CSS Animations: property <outline-offset> from [-5px\] to [5px\] at (-0.3) should be [-8px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-offset> from [-5px\] to [5px\] at (0.6) should be [1px\]]
expected: FAIL
[CSS Transitions: property <outline-offset> from [inherit\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[Web Animations: property <outline-offset> from [-5px\] to [5px\] at (1.5) should be [10px\]]
expected: FAIL
@ -92,33 +44,18 @@
[CSS Animations: property <outline-offset> from [inherit\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Animations: property <outline-offset> from [-5px\] to [5px\] at (0) should be [-5px\]]
expected: FAIL
[Web Animations: property <outline-offset> from [unset\] to [20px\] at (-0.3) should be [-6px\]]
expected: FAIL
[CSS Transitions: property <outline-offset> from [initial\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[CSS Transitions: property <outline-offset> from [unset\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[Web Animations: property <outline-offset> from [-5px\] to [5px\] at (0.3) should be [-2px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-offset> from [unset\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[Web Animations: property <outline-offset> from [inherit\] to [20px\] at (0) should be [30px\]]
expected: FAIL
[Web Animations: property <outline-offset> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-offset> from [-5px\] to [5px\] at (0.3) should be [-2px\]]
expected: FAIL
[Web Animations: property <outline-offset> from [unset\] to [20px\] at (1) should be [20px\]]
expected: FAIL
@ -128,171 +65,45 @@
[Web Animations: property <outline-offset> from neutral to [20px\] at (0) should be [10px\]]
expected: FAIL
[CSS Animations: property <outline-offset> from neutral to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <outline-offset> from [initial\] to [20px\] at (-0.3) should be [-6px\]]
expected: FAIL
[Web Animations: property <outline-offset> from [initial\] to [20px\] at (-0.3) should be [-6px\]]
expected: FAIL
[CSS Animations: property <outline-offset> from [unset\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[Web Animations: property <outline-offset> from [unset\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-offset> from [-5px\] to [5px\] at (1.5) should be [10px\]]
expected: FAIL
[Web Animations: property <outline-offset> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Transitions: property <outline-offset> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Animations: property <outline-offset> from [initial\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[CSS Animations: property <outline-offset> from [-5px\] to [5px\] at (1) should be [5px\]]
expected: FAIL
[CSS Animations: property <outline-offset> from [-5px\] to [5px\] at (0.6) should be [1px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-offset> from [unset\] to [20px\] at (1.5) should be [30px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-offset> from [inherit\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Transitions: property <outline-offset> from [-5px\] to [5px\] at (1.5) should be [10px\]]
expected: FAIL
[CSS Transitions: property <outline-offset> from [initial\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[CSS Transitions: property <outline-offset> from [unset\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[CSS Animations: property <outline-offset> from [inherit\] to [20px\] at (0) should be [30px\]]
expected: FAIL
[CSS Transitions: property <outline-offset> from [unset\] to [20px\] at (-0.3) should be [-6px\]]
expected: FAIL
[CSS Animations: property <outline-offset> from [unset\] to [20px\] at (-0.3) should be [-6px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-offset> from [inherit\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Transitions: property <outline-offset> from [initial\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[CSS Animations: property <outline-offset> from [inherit\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Animations: property <outline-offset> from [unset\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[CSS Animations: property <outline-offset> from [initial\] to [20px\] at (0) should be [0px\]]
expected: FAIL
[Web Animations: property <outline-offset> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[Web Animations: property <outline-offset> from [initial\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[CSS Animations: property <outline-offset> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-offset> from [initial\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[CSS Animations: property <outline-offset> from [inherit\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Transitions: property <outline-offset> from [inherit\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Animations: property <outline-offset> from [inherit\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Transitions: property <outline-offset> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[CSS Transitions: property <outline-offset> from [-5px\] to [5px\] at (0.6) should be [1px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-offset> from [inherit\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Transitions: property <outline-offset> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[Web Animations: property <outline-offset> from [-5px\] to [5px\] at (0) should be [-5px\]]
expected: FAIL
[CSS Animations: property <outline-offset> from [unset\] to [20px\] at (0) should be [0px\]]
expected: FAIL
[CSS Transitions: property <outline-offset> from [unset\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[CSS Animations: property <outline-offset> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-offset> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-offset> from [inherit\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Animations: property <outline-offset> from [inherit\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[Web Animations: property <outline-offset> from [-5px\] to [5px\] at (-0.3) should be [-8px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-offset> from [unset\] to [20px\] at (-0.3) should be [-6px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-offset> from [unset\] to [20px\] at (0.6) should be [12px\]]
expected: FAIL
[CSS Transitions: property <outline-offset> from [inherit\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-offset> from [-5px\] to [5px\] at (-0.3) should be [-8px\]]
expected: FAIL
[CSS Animations: property <outline-offset> from [initial\] to [20px\] at (-0.3) should be [-6px\]]
expected: FAIL
[CSS Transitions: property <outline-offset> from [-5px\] to [5px\] at (-0.3) should be [-8px\]]
expected: FAIL
[Web Animations: property <outline-offset> from [inherit\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <outline-offset> from [-5px\] to [5px\] at (0.3) should be [-2px\]]
expected: FAIL
[Web Animations: property <outline-offset> from [inherit\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-offset> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Animations: property <outline-offset> from [unset\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Animations: property <outline-offset> from [unset\] to [20px\] at (0.3) should be [6px\]]
expected: FAIL
[Web Animations: property <outline-offset> from [unset\] to [20px\] at (0) should be [0px\]]
expected: FAIL

View file

@ -2,18 +2,12 @@
[outline-width interpolation]
expected: FAIL
[CSS Transitions with transition: all: property <outline-width> from [inherit\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[Web Animations: property <outline-width> from [inherit\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Animations: property <outline-width> from [inherit\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Transitions: property <outline-width> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[Web Animations: property <outline-width> from [initial\] to [20px\] at (-0.3) should be [0px\]]
expected: FAIL
@ -26,18 +20,12 @@
[CSS Transitions: property <outline-width> from [initial\] to [20px\] at (0.6) should be [13px\]]
expected: FAIL
[CSS Transitions: property <outline-width> from [inherit\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[Web Animations: property <outline-width> from [unset\] to [20px\] at (1.5) should be [28px\]]
expected: FAIL
[CSS Animations: property <outline-width> from [inherit\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Transitions: property <outline-width> from [thick\] to [15px\] at (-2) should be [0px\]]
expected: FAIL
[CSS Animations: property <outline-width> from [0px\] to [10px\] at (0.6) should be [6px\]]
expected: FAIL
@ -62,18 +50,9 @@
[Web Animations: property <outline-width> from [unset\] to [20px\] at (0.3) should be [8px\]]
expected: FAIL
[CSS Transitions: property <outline-width> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[CSS Transitions: property <outline-width> from [thick\] to [15px\] at (0.3) should be [8px\]]
expected: FAIL
[Web Animations: property <outline-width> from [unset\] to [20px\] at (0.6) should be [13px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-width> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[CSS Animations: property <outline-width> from [unset\] to [20px\] at (0.6) should be [13px\]]
expected: FAIL
@ -92,33 +71,21 @@
[Web Animations: property <outline-width> from neutral to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <outline-width> from [inherit\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[Web Animations: property <outline-width> from [0px\] to [10px\] at (0) should be [0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-width> from [inherit\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Animations: property <outline-width> from [inherit\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[Web Animations: property <outline-width> from [thick\] to [15px\] at (1.5) should be [20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-width> from neutral to [20px\] at (0.6) should be [16px\]]
expected: FAIL
[Web Animations: property <outline-width> from [thick\] to [15px\] at (1) should be [15px\]]
expected: FAIL
[Web Animations: property <outline-width> from [inherit\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-width> from [thick\] to [15px\] at (0.6) should be [11px\]]
expected: FAIL
[CSS Animations: property <outline-width> from [unset\] to [20px\] at (0.3) should be [8px\]]
expected: FAIL
@ -137,51 +104,30 @@
[Web Animations: property <outline-width> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-width> from [unset\] to [20px\] at (-0.3) should be [0px\]]
expected: FAIL
[Web Animations: property <outline-width> from [initial\] to [20px\] at (0.6) should be [13px\]]
expected: FAIL
[CSS Animations: property <outline-width> from [thick\] to [15px\] at (1.5) should be [20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-width> from [0px\] to [10px\] at (0.6) should be [6px\]]
expected: FAIL
[CSS Transitions: property <outline-width> from [unset\] to [20px\] at (-0.3) should be [0px\]]
expected: FAIL
[Web Animations: property <outline-width> from [unset\] to [20px\] at (-0.3) should be [0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-width> from [unset\] to [20px\] at (0.3) should be [8px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-width> from [thick\] to [15px\] at (-0.3) should be [2px\]]
expected: FAIL
[CSS Animations: property <outline-width> from [inherit\] to [20px\] at (0) should be [30px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-width> from [inherit\] to [20px\] at (-0.3) should be [33px\]]
expected: FAIL
[CSS Animations: property <outline-width> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[Web Animations: property <outline-width> from [thick\] to [15px\] at (0) should be [5px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-width> from [thick\] to [15px\] at (1.5) should be [20px\]]
expected: FAIL
[CSS Animations: property <outline-width> from [unset\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <outline-width> from [initial\] to [20px\] at (-0.3) should be [0px\]]
expected: FAIL
[CSS Animations: property <outline-width> from [initial\] to [20px\] at (1.5) should be [28px\]]
expected: FAIL
@ -191,45 +137,21 @@
[Web Animations: property <outline-width> from [unset\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <outline-width> from [inherit\] to [20px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Animations: property <outline-width> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Transitions: property <outline-width> from [thick\] to [15px\] at (-0.3) should be [2px\]]
expected: FAIL
[CSS Animations: property <outline-width> from [inherit\] to [20px\] at (0.6) should be [24px\]]
expected: FAIL
[CSS Transitions: property <outline-width> from [thick\] to [15px\] at (0.6) should be [11px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-width> from [initial\] to [20px\] at (1.5) should be [28px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-width> from [thick\] to [15px\] at (0.3) should be [8px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-width> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Animations: property <outline-width> from [0px\] to [10px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-width> from [thick\] to [15px\] at (-2) should be [0px\]]
expected: FAIL
[CSS Animations: property <outline-width> from [initial\] to [20px\] at (-0.3) should be [0px\]]
expected: FAIL
[CSS Transitions: property <outline-width> from [thick\] to [15px\] at (1.5) should be [20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-width> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[CSS Animations: property <outline-width> from [thick\] to [15px\] at (-2) should be [0px\]]
expected: FAIL
@ -239,9 +161,6 @@
[CSS Animations: property <outline-width> from [0px\] to [10px\] at (0.3) should be [3px\]]
expected: FAIL
[CSS Transitions: property <outline-width> from [inherit\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-width> from [initial\] to [20px\] at (0.6) should be [13px\]]
expected: FAIL
@ -254,9 +173,6 @@
[Web Animations: property <outline-width> from [0px\] to [10px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Transitions: property <outline-width> from [0px\] to [10px\] at (1.5) should be [15px\]]
expected: FAIL
[CSS Animations: property <outline-width> from [thick\] to [15px\] at (1) should be [15px\]]
expected: FAIL
@ -272,27 +188,18 @@
[Web Animations: property <outline-width> from [thick\] to [15px\] at (-0.3) should be [2px\]]
expected: FAIL
[CSS Transitions: property <outline-width> from [0px\] to [10px\] at (0.6) should be [6px\]]
expected: FAIL
[CSS Animations: property <outline-width> from [initial\] to [20px\] at (0.6) should be [13px\]]
expected: FAIL
[CSS Animations: property <outline-width> from [unset\] to [20px\] at (-0.3) should be [0px\]]
expected: FAIL
[CSS Transitions: property <outline-width> from [0px\] to [10px\] at (0.3) should be [3px\]]
expected: FAIL
[CSS Animations: property <outline-width> from [unset\] to [20px\] at (1.5) should be [28px\]]
expected: FAIL
[Web Animations: property <outline-width> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-width> from [0px\] to [10px\] at (1.5) should be [15px\]]
expected: FAIL
[Web Animations: property <outline-width> from [initial\] to [20px\] at (0) should be [3px\]]
expected: FAIL
@ -311,9 +218,6 @@
[CSS Animations: property <outline-width> from [thick\] to [15px\] at (0.6) should be [11px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-width> from [0px\] to [10px\] at (0.3) should be [3px\]]
expected: FAIL
[CSS Transitions: property <outline-width> from [unset\] to [20px\] at (0.6) should be [13px\]]
expected: FAIL
@ -323,9 +227,6 @@
[CSS Animations: property <outline-width> from [inherit\] to [20px\] at (1) should be [20px\]]
expected: FAIL
[CSS Transitions: property <outline-width> from neutral to [20px\] at (1.5) should be [25px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-width> from [initial\] to [20px\] at (0.3) should be [8px\]]
expected: FAIL
@ -338,15 +239,9 @@
[CSS Animations: property <outline-width> from neutral to [20px\] at (0.3) should be [13px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-width> from [initial\] to [20px\] at (-0.3) should be [0px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-width> from [unset\] to [20px\] at (1.5) should be [28px\]]
expected: FAIL
[CSS Transitions with transition: all: property <outline-width> from [inherit\] to [20px\] at (0.3) should be [27px\]]
expected: FAIL
[CSS Animations: property <outline-width> from [0px\] to [10px\] at (-0.3) should be [0px\]]
expected: FAIL
@ -356,9 +251,6 @@
[CSS Transitions: property <outline-width> from [unset\] to [20px\] at (0.3) should be [8px\]]
expected: FAIL
[CSS Transitions: property <outline-width> from neutral to [20px\] at (-0.3) should be [7px\]]
expected: FAIL
[CSS Transitions: property <outline-width> from [unset\] to [20px\] at (1.5) should be [28px\]]
expected: FAIL

View file

@ -11,9 +11,6 @@
[Web Animations: property <text-indent> from [0%\] to [100px\] at (1) should be [calc(0% + 100px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [0em\] to [100px\] at (1.25) should be [125px\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [0%\] to [100px\] at (0.25) should be [calc(0% + 25px)\]]
expected: FAIL
@ -26,9 +23,6 @@
[CSS Animations: property <left> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (0.75) should be [30px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0%\] to [100px\] at (0.25) should be [calc(0% + 25px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [0em\] to [100px\] at (0.25) should be [25px\]]
expected: FAIL
@ -50,33 +44,21 @@
[CSS Transitions: property <left> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (0.25) should be [10px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (0) should be [calc(50% - 25px)\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [0em\] to [100px\] at (0.25) should be [25px\]]
expected: FAIL
[Web Animations: property <text-indent> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (0) should be [calc(50% - 25px)\]]
expected: FAIL
[CSS Animations: property <text-indent> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (1) should be [calc(100% - 10px)\]]
expected: FAIL
[Web Animations: property <text-indent> from [0em\] to [100px\] at (1) should be [100px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0%\] to [100px\] at (1.25) should be [calc(0% + 125px)\]]
expected: FAIL
[Web Animations: property <left> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (1) should be [40px\]]
expected: FAIL
[CSS Transitions: property <left> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (0.5) should be [20px\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (0.25) should be [calc(((50% - 25px) * 0.75) + ((100% - 10px) * 0.25))\]]
expected: FAIL
[CSS Animations: property <left> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (1) should be [40px\]]
expected: FAIL
@ -86,9 +68,6 @@
[CSS Animations: property <left> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (0.25) should be [10px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (1.25) should be [calc(((50% - 25px) * -0.25) + ((100% - 10px) * 1.25))\]]
expected: FAIL
[CSS Transitions: property <left> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (0.75) should be [30px\]]
expected: FAIL
@ -98,12 +77,6 @@
[Web Animations: property <left> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (0.75) should be [30px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0%\] to [100px\] at (-0.25) should be [calc(0% + -25px)\]]
expected: FAIL
[CSS Animations: property <text-indent> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (0.75) should be [calc(((50% - 25px) * 0.25) + ((100% - 10px) * 0.75))\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (-0.25) should be [calc(((50% - 25px) * 1.25) + ((100% - 10px) * -0.25))\]]
expected: FAIL
@ -113,9 +86,6 @@
[Web Animations: property <text-indent> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (-0.25) should be [calc(((50% - 25px) * 1.25) + ((100% - 10px) * -0.25))\]]
expected: FAIL
[CSS Animations: property <text-indent> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (0.25) should be [calc(((50% - 25px) * 0.75) + ((100% - 10px) * 0.25))\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [0%\] to [100px\] at (-0.25) should be [calc(0% + -25px)\]]
expected: FAIL
@ -125,9 +95,6 @@
[Web Animations: property <text-indent> from [0em\] to [100px\] at (-0.25) should be [-25px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0%\] to [100px\] at (0) should be [0%\]]
expected: FAIL
[CSS Transitions with transition: all: property <left> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (0.75) should be [30px\]]
expected: FAIL
@ -140,15 +107,9 @@
[Web Animations: property <text-indent> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (1.25) should be [calc(((50% - 25px) * -0.25) + ((100% - 10px) * 1.25))\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [0%\] to [100px\] at (1.25) should be [calc(0% + 125px)\]]
expected: FAIL
[Web Animations: property <left> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (0.25) should be [10px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0em\] to [100px\] at (1.25) should be [125px\]]
expected: FAIL
[Web Animations: property <left> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (0) should be [0px\]]
expected: FAIL
@ -185,15 +146,9 @@
[CSS Transitions: property <text-indent> from [0em\] to [100px\] at (1.25) should be [125px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (0.5) should be [calc(((50% - 25px) * 0.5) + ((100% - 10px) * 0.5))\]]
expected: FAIL
[CSS Animations: property <left> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (1.25) should be [50px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0%\] to [100px\] at (0.5) should be [calc(0% + 50px)\]]
expected: FAIL
[Web Animations: property <text-indent> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (0.25) should be [calc(((50% - 25px) * 0.75) + ((100% - 10px) * 0.25))\]]
expected: FAIL
@ -203,21 +158,12 @@
[CSS Transitions: property <text-indent> from [0em\] to [100px\] at (-0.25) should be [-25px\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (0.75) should be [calc(((50% - 25px) * 0.25) + ((100% - 10px) * 0.75))\]]
expected: FAIL
[Web Animations: property <text-indent> from [0em\] to [100px\] at (0.5) should be [50px\]]
expected: FAIL
[Web Animations: property <text-indent> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (0.5) should be [calc(((50% - 25px) * 0.5) + ((100% - 10px) * 0.5))\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0em\] to [100px\] at (0.75) should be [75px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (-0.25) should be [calc(((50% - 25px) * 1.25) + ((100% - 10px) * -0.25))\]]
expected: FAIL
[CSS Transitions with transition: all: property <left> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (1.25) should be [50px\]]
expected: FAIL
@ -239,15 +185,9 @@
[CSS Animations: property <left> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (0.5) should be [20px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0em\] to [100px\] at (0.25) should be [25px\]]
expected: FAIL
[Web Animations: property <text-indent> from [0%\] to [100px\] at (-0.25) should be [calc(0% + -25px)\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0%\] to [100px\] at (0.75) should be [calc(0% + 75px)\]]
expected: FAIL
[CSS Animations: property <left> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (-0.25) should be [-10px\]]
expected: FAIL
@ -260,21 +200,9 @@
[CSS Transitions: property <text-indent> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (0.25) should be [calc(((50% - 25px) * 0.75) + ((100% - 10px) * 0.25))\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (1.25) should be [calc(((50% - 25px) * -0.25) + ((100% - 10px) * 1.25))\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0em\] to [100px\] at (-0.25) should be [-25px\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [0em\] to [100px\] at (0.5) should be [50px\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0%\] to [100px\] at (1) should be [calc(0% + 100px)\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0em\] to [100px\] at (1) should be [100px\]]
expected: FAIL
[CSS Transitions: property <left> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (0) should be [0px\]]
expected: FAIL
@ -287,12 +215,15 @@
[CSS Transitions: property <text-indent> from [0%\] to [100px\] at (1.25) should be [calc(0% + 125px)\]]
expected: FAIL
[CSS Animations: property <text-indent> from [0em\] to [100px\] at (0.5) should be [50px\]]
expected: FAIL
[CSS Transitions: property <text-indent> from [0%\] to [100px\] at (0.5) should be [calc(0% + 50px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <left> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (0.25) should be [10px\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (0.25) should be [calc(((50% - 25px) * 0.75) + ((100% - 10px) * 0.25))\]]
expected: FAIL
[CSS Transitions with transition: all: property <text-indent> from [calc(50% - 25px)\] to [calc(100% - 10px)\] at (0.75) should be [calc(((50% - 25px) * 0.25) + ((100% - 10px) * 0.75))\]]
expected: FAIL

View file

@ -38,87 +38,33 @@
[filter interpolation]
expected: FAIL
[CSS Transitions: property <filter> 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 <filter> 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 <filter> from [initial\] to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(30deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> 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 <filter> from [inherit\] to [hue-rotate(20deg)\] at (0.3) should be [hue-rotate(27deg)\]]
expected: FAIL
[Web Animations: property <filter> from neutral to [hue-rotate(20deg)\] at (1) should be [hue-rotate(20deg)\]]
expected: FAIL
[Web Animations: property <filter> from neutral to [hue-rotate(20deg)\] at (-0.5) should be [hue-rotate(5deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from neutral to [hue-rotate(20deg)\] at (0.6) should be [hue-rotate(16deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from neutral to [hue-rotate(20deg)\] at (-0.5) should be [hue-rotate(5deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [unset\] to [hue-rotate(20deg)\] at (0.6) should be [hue-rotate(12deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [hue-rotate(80deg) blur(6mm)\] to [hue-rotate(100grad) blur(1cm)\] at (0) should be [hue-rotate(80deg) blur(6mm)\]]
expected: FAIL
[Web Animations: property <filter> from [unset\] to [hue-rotate(20deg)\] at (1) should be [hue-rotate(20deg)\]]
expected: FAIL
[CSS Transitions: property <filter> from [initial\] to [hue-rotate(20deg)\] at (0.3) should be [hue-rotate(6deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [inherit\] to [hue-rotate(20deg)\] at (0) should be [hue-rotate(30deg)\]]
expected: FAIL
[CSS Transitions: property <filter> from [unset\] to [hue-rotate(20deg)\] at (0.3) should be [hue-rotate(6deg)\]]
expected: FAIL
[Web Animations: property <filter> 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 <filter> from neutral to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(25deg)\]]
expected: FAIL
[CSS Transitions: property <filter> 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
[Web Animations: property <filter> from neutral to [hue-rotate(20deg)\] at (0.3) should be [hue-rotate(13deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [inherit\] to [hue-rotate(20deg)\] at (0.3) should be [hue-rotate(27deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> 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 <filter> from [initial\] to [hue-rotate(20deg)\] at (0) should be [hue-rotate(0deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [initial\] to [hue-rotate(20deg)\] at (-0.5) should be [hue-rotate(-10deg)\]]
expected: FAIL
[CSS Animations: property <filter> 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 <filter> from [inherit\] to [hue-rotate(20deg)\] at (1) should be [hue-rotate(20deg)\]]
expected: FAIL
[Web Animations: property <filter> from [initial\] to [hue-rotate(20deg)\] at (1) should be [hue-rotate(20deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [initial\] to [hue-rotate(20deg)\] at (-0.5) should be [hue-rotate(-10deg)\]]
expected: FAIL
[CSS Transitions: property <filter> from [hue-rotate(0deg) blur(6px)\] to [hue-rotate(180deg) blur(10px)\] at (0.25) should be [hue-rotate(45deg) blur(7px)\]]
expected: FAIL
@ -137,144 +83,48 @@
[Web Animations: property <filter> 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 <filter> from neutral to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(25deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> 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 <filter> from [hue-rotate(80deg) blur(6mm)\] to [hue-rotate(100grad) blur(1cm)\] at (1.5) should be [hue-rotate(95deg) blur(12mm)\]]
expected: FAIL
[Web Animations: property <filter> 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 <filter> 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 <filter> from [initial\] to [hue-rotate(20deg)\] at (0.6) should be [hue-rotate(12deg)\]]
expected: FAIL
[CSS Animations: property <filter> from neutral to [hue-rotate(20deg)\] at (0.6) should be [hue-rotate(16deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [initial\] to [hue-rotate(20deg)\] at (0.3) should be [hue-rotate(6deg)\]]
expected: FAIL
[CSS Animations: property <filter> 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 <filter> from [initial\] to [hue-rotate(20deg)\] at (0.6) should be [hue-rotate(12deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [unset\] to [hue-rotate(20deg)\] at (-0.5) should be [hue-rotate(-10deg)\]]
expected: FAIL
[CSS Animations: property <filter> 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
[Web Animations: property <filter> from [inherit\] to [hue-rotate(20deg)\] at (0.3) should be [hue-rotate(27deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [hue-rotate(80deg) blur(6mm)\] to [hue-rotate(100grad) blur(1cm)\] at (-0.5) should be [hue-rotate(75deg) blur(4mm)\]]
expected: FAIL
[Web Animations: property <filter> from [inherit\] to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(15deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [inherit\] to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(15deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [unset\] to [hue-rotate(20deg)\] at (0.6) should be [hue-rotate(12deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [initial\] to [hue-rotate(20deg)\] at (0.6) should be [hue-rotate(12deg)\]]
expected: FAIL
[CSS Transitions: property <filter> from neutral to [hue-rotate(20deg)\] at (-0.5) should be [hue-rotate(5deg)\]]
expected: FAIL
[Web Animations: property <filter> from [unset\] to [hue-rotate(20deg)\] at (0) should be [hue-rotate(0deg)\]]
expected: FAIL
[CSS Transitions: property <filter> 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 <filter> from [unset\] to [hue-rotate(20deg)\] at (0.3) should be [hue-rotate(6deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [initial\] to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(30deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [unset\] to [hue-rotate(20deg)\] at (0) should be [hue-rotate(0deg)\]]
expected: FAIL
[CSS Transitions: property <filter> from [unset\] to [hue-rotate(20deg)\] at (-0.5) should be [hue-rotate(-10deg)\]]
expected: FAIL
[Web Animations: property <filter> from [unset\] to [hue-rotate(20deg)\] at (-0.5) should be [hue-rotate(-10deg)\]]
expected: FAIL
[CSS Transitions: property <filter> from neutral to [hue-rotate(20deg)\] at (0.3) should be [hue-rotate(13deg)\]]
expected: FAIL
[CSS Transitions: property <filter> from [inherit\] to [hue-rotate(20deg)\] at (0.6) should be [hue-rotate(24deg)\]]
expected: FAIL
[Web Animations: property <filter> 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 <filter> 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 <filter> 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 <filter> from neutral to [hue-rotate(20deg)\] at (0.3) should be [hue-rotate(13deg)\]]
expected: FAIL
[CSS Transitions: property <filter> from [unset\] to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(30deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> 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 <filter> from [inherit\] to [hue-rotate(20deg)\] at (0.6) should be [hue-rotate(24deg)\]]
expected: FAIL
[Web Animations: property <filter> from [initial\] to [hue-rotate(20deg)\] at (-0.5) should be [hue-rotate(-10deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [unset\] to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(30deg)\]]
expected: FAIL
[CSS Transitions: property <filter> from [initial\] to [hue-rotate(20deg)\] at (-0.5) should be [hue-rotate(-10deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [inherit\] to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(15deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [hue-rotate(0deg) blur(6px)\] to [hue-rotate(180deg) blur(10px)\] at (1.5) should be [hue-rotate(270deg) blur(12px)\]]
expected: FAIL
[Web Animations: property <filter> 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 <filter> from [initial\] to [hue-rotate(20deg)\] at (1) should be [hue-rotate(20deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [inherit\] to [hue-rotate(20deg)\] at (0.6) should be [hue-rotate(24deg)\]]
expected: FAIL
[Web Animations: property <filter> from neutral to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(25deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [unset\] to [hue-rotate(20deg)\] at (0.3) should be [hue-rotate(6deg)\]]
expected: FAIL
[CSS Transitions: property <filter> from neutral to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(25deg)\]]
expected: FAIL
[Web Animations: property <filter> from [initial\] to [hue-rotate(20deg)\] at (0) should be [hue-rotate(0deg)\]]
expected: FAIL
@ -284,69 +134,24 @@
[Web Animations: property <filter> 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 <filter> from neutral to [hue-rotate(20deg)\] at (0.3) should be [hue-rotate(13deg)\]]
expected: FAIL
[CSS Transitions: property <filter> from [unset\] to [hue-rotate(20deg)\] at (0.6) should be [hue-rotate(12deg)\]]
expected: FAIL
[Web Animations: property <filter> from [inherit\] to [hue-rotate(20deg)\] at (-0.5) should be [hue-rotate(35deg)\]]
expected: FAIL
[Web Animations: property <filter> from [hue-rotate(80deg) blur(6mm)\] to [hue-rotate(100grad) blur(1cm)\] at (1) should be [hue-rotate(90deg) blur(10mm)\]]
expected: FAIL
[CSS Animations: property <filter> from neutral to [hue-rotate(20deg)\] at (-0.5) should be [hue-rotate(5deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [hue-rotate(80deg) blur(6mm)\] to [hue-rotate(100grad) blur(1cm)\] at (-0.5) should be [hue-rotate(75deg) blur(4mm)\]]
expected: FAIL
[Web Animations: property <filter> from neutral to [hue-rotate(20deg)\] at (0.6) should be [hue-rotate(16deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [initial\] to [hue-rotate(20deg)\] at (0.3) should be [hue-rotate(6deg)\]]
expected: FAIL
[CSS Transitions: property <filter> 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 <filter> from neutral to [hue-rotate(20deg)\] at (0.6) should be [hue-rotate(16deg)\]]
expected: FAIL
[Web Animations: property <filter> from [inherit\] to [hue-rotate(20deg)\] at (1) should be [hue-rotate(20deg)\]]
expected: FAIL
[CSS Animations: property <filter> 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 <filter> from [initial\] to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(30deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [unset\] to [hue-rotate(20deg)\] at (-0.5) should be [hue-rotate(-10deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [unset\] to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(30deg)\]]
expected: FAIL
[CSS Animations: property <filter> 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 <filter> from [hue-rotate(0deg) blur(6px)\] to [hue-rotate(180deg) blur(10px)\] at (0) should be [hue-rotate(0deg) blur(6px)\]]
expected: FAIL
[Web Animations: property <filter> from neutral to [hue-rotate(20deg)\] at (0) should be [hue-rotate(10deg)\]]
expected: FAIL
[CSS Transitions: property <filter> 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 <filter> from [inherit\] to [hue-rotate(20deg)\] at (-0.5) should be [hue-rotate(35deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [inherit\] to [hue-rotate(20deg)\] at (0.3) should be [hue-rotate(27deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [hue-rotate(0deg) blur(6px)\] to [hue-rotate(180deg) blur(10px)\] at (0.25) should be [hue-rotate(45deg) blur(7px)\]]
expected: FAIL
@ -356,24 +161,15 @@
[Web Animations: property <filter> from [unset\] to [hue-rotate(20deg)\] at (0.3) should be [hue-rotate(6deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [hue-rotate(0deg) blur(6px)\] to [hue-rotate(180deg) blur(10px)\] at (1) should be [hue-rotate(180deg) blur(10px)\]]
expected: FAIL
[Web Animations: property <filter> from [hue-rotate(0deg) blur(6px)\] to [hue-rotate(180deg) blur(10px)\] at (1.5) should be [hue-rotate(270deg) blur(12px)\]]
expected: FAIL
[Web Animations: property <filter> 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 <filter> from [unset\] to [hue-rotate(20deg)\] at (1) should be [hue-rotate(20deg)\]]
expected: FAIL
[Web Animations: property <filter> from [hue-rotate(0deg) blur(6px)\] to [hue-rotate(180deg) blur(10px)\] at (0) should be [hue-rotate(0deg) blur(6px)\]]
expected: FAIL
[CSS Animations: property <filter> from neutral to [hue-rotate(20deg)\] at (1) should be [hue-rotate(20deg)\]]
expected: FAIL
[Web Animations: property <filter> from [initial\] to [hue-rotate(20deg)\] at (0.6) should be [hue-rotate(12deg)\]]
expected: FAIL
@ -383,12 +179,6 @@
[Web Animations: property <filter> 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 <filter> from [inherit\] to [hue-rotate(20deg)\] at (-0.5) should be [hue-rotate(35deg)\]]
expected: FAIL
[CSS Transitions: property <filter> from [inherit\] to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(15deg)\]]
expected: FAIL
[Web Animations: property <filter> from [unset\] to [hue-rotate(20deg)\] at (1.5) should be [hue-rotate(30deg)\]]
expected: FAIL

View file

@ -65,33 +65,21 @@
[CSS Transitions with transition: all: property <filter> from [hue-rotate(180deg)\] to [none\] at (-0.5) should be [hue-rotate(270deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [blur(6px)\] to [blur(10px) hue-rotate(180deg)\] at (1.5) should be [blur(12px) hue-rotate(270deg)\]]
expected: FAIL
[Web Animations: property <filter> from [none\] to [opacity(0.5) hue-rotate(180deg)\] at (0.25) should be [opacity(0.875) hue-rotate(45deg)\]]
expected: FAIL
[CSS Transitions: property <filter> from [blur(6px)\] to [blur(10px) hue-rotate(180deg)\] at (-0.5) should be [blur(4px) hue-rotate(-90deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [blur(6px)\] to [blur(10px) hue-rotate(180deg)\] at (1) should be [blur(10px) hue-rotate(180deg)\]]
expected: FAIL
[Web Animations: property <filter> from [hue-rotate(180deg)\] to [none\] at (1) should be [hue-rotate(0deg)\]]
expected: FAIL
[Web Animations: property <filter> from [blur(6px)\] to [blur(10px) hue-rotate(180deg)\] at (0.25) should be [blur(7px) hue-rotate(45deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [opacity(0.5) hue-rotate(180deg)\] at (0) should be [opacity(1) hue-rotate(0deg)\]]
expected: FAIL
[Web Animations: property <filter> from [hue-rotate(180deg)\] to [none\] at (0) should be [hue-rotate(180deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [hue-rotate(180deg)\] to [none\] at (0.5) should be [hue-rotate(90deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [drop-shadow(0px 0px 0px currentcolor)\] to [drop-shadow(20px 10px green)\] at (-1) should be [drop-shadow(-20px -10px white)\]]
expected: FAIL
@ -107,9 +95,6 @@
[CSS Transitions with transition: all: property <filter> 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 <filter> from [none\] to [hue-rotate(180deg)\] at (0.5) should be [hue-rotate(90deg)\]]
expected: FAIL
[Web Animations: property <filter> from [none\] to [hue-rotate(180deg)\] at (0.25) should be [hue-rotate(45deg)\]]
expected: FAIL
@ -140,18 +125,12 @@
[CSS Transitions: property <filter> from [hue-rotate(180deg)\] to [none\] at (1.5) should be [hue-rotate(-90deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [blur(6px)\] to [blur(10px) hue-rotate(180deg)\] at (0) should be [blur(6px) hue-rotate(0deg)\]]
expected: FAIL
[Web Animations: property <filter> from [hue-rotate(180deg)\] to [none\] at (0.5) should be [hue-rotate(90deg)\]]
expected: FAIL
[CSS Transitions: property <filter> from [none\] to [hue-rotate(180deg)\] at (0.5) should be [hue-rotate(90deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [blur(6px)\] to [blur(10px) hue-rotate(180deg)\] at (0.5) should be [blur(8px) hue-rotate(90deg)\]]
expected: FAIL
[CSS Transitions: property <filter> from [drop-shadow(0px 0px 0px currentcolor)\] to [drop-shadow(20px 10px green)\] at (-1) should be [drop-shadow(-20px -10px white)\]]
expected: FAIL
@ -194,9 +173,6 @@
[CSS Transitions with transition: all: property <filter> from [drop-shadow(20px 10px blue)\] to [drop-shadow(20px 10px green)\] at (2147483648) should be [drop-shadow(20px 10px #00FF00\]]
expected: FAIL
[CSS Animations: property <filter> from [hue-rotate(180deg)\] to [none\] at (1) should be [hue-rotate(0deg)\]]
expected: FAIL
[Web Animations: property <filter> from [grayscale(0) blur(0px)\] to [blur(10px)\] at (0.5) should be [blur(10px)\]]
expected: FAIL
@ -212,18 +188,12 @@
[CSS Animations: property <filter> from [grayscale(0) blur(0px)\] to [blur(10px)\] at (0) should be [grayscale(0) blur(0px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [hue-rotate(180deg)\] to [none\] at (1.5) should be [hue-rotate(-90deg)\]]
expected: FAIL
[CSS Transitions: property <filter> from [drop-shadow(0px 0px 0px currentcolor)\] to [drop-shadow(20px 10px green)\] at (1) should be [drop-shadow(20px 10px green)\]]
expected: FAIL
[Web Animations: property <filter> from [hue-rotate(180deg)\] to [none\] at (1.5) should be [hue-rotate(-90deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [blur(6px)\] to [blur(10px) hue-rotate(180deg)\] at (-0.5) should be [blur(4px) hue-rotate(-90deg)\]]
expected: FAIL
[Web Animations: property <filter> from [hue-rotate(180deg)\] to [none\] at (-0.5) should be [hue-rotate(270deg)\]]
expected: FAIL
@ -245,9 +215,6 @@
[CSS Transitions with transition: all: property <filter> from [none\] to [opacity(0.5) hue-rotate(180deg)\] at (-0.5) should be [opacity(1) hue-rotate(-90deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [hue-rotate(180deg)\] at (1) should be [hue-rotate(180deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [drop-shadow(0px 0px 0px currentcolor)\] to [drop-shadow(20px 10px green)\] at (0.5) should be [drop-shadow(10px 5px #80C080)\]]
expected: FAIL
@ -260,36 +227,21 @@
[Web Animations: property <filter> from [grayscale(0) blur(0px)\] to [blur(10px)\] at (0.3) should be [grayscale(0) blur(0px)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [opacity(0.5) hue-rotate(180deg)\] at (1.5) should be [opacity(0.25) hue-rotate(270deg)\]]
expected: FAIL
[Web Animations: property <filter> from [grayscale(0) blur(0px)\] to [blur(10px)\] at (1) should be [blur(10px)\]]
expected: FAIL
[Web Animations: property <filter> from [none\] to [hue-rotate(180deg)\] at (0.5) should be [hue-rotate(90deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [opacity(0.5) hue-rotate(180deg)\] at (-0.5) should be [opacity(1) hue-rotate(-90deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [hue-rotate(180deg)\] to [none\] at (1.5) should be [hue-rotate(-90deg)\]]
expected: FAIL
[Web Animations: property <filter> from [none\] to [opacity(0.5) hue-rotate(180deg)\] at (1) should be [opacity(0.5) hue-rotate(180deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [opacity(0.5) hue-rotate(180deg)\] at (1) should be [opacity(0.5) hue-rotate(180deg)\]]
expected: FAIL
[CSS Transitions: property <filter> from [none\] to [hue-rotate(180deg)\] at (0.25) should be [hue-rotate(45deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [drop-shadow(0px 0px 0px currentcolor)\] to [drop-shadow(20px 10px green)\] at (-1) should be [drop-shadow(-20px -10px white)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> 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 <filter> from [blur(6px)\] to [blur(10px) hue-rotate(180deg)\] at (-0.5) should be [blur(4px) hue-rotate(-90deg)\]]
expected: FAIL
@ -302,30 +254,18 @@
[Web Animations: property <filter> from [drop-shadow(0px 0px 0px currentcolor)\] to [drop-shadow(20px 10px green)\] at (-1) should be [drop-shadow(-20px -10px white)\]]
expected: FAIL
[CSS Animations: property <filter> from [hue-rotate(180deg)\] to [none\] at (0) should be [hue-rotate(180deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [hue-rotate(180deg)\] to [none\] at (-0.5) should be [hue-rotate(270deg)\]]
expected: FAIL
[CSS Transitions: property <filter> 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 <filter> from [grayscale(0) blur(0px)\] to [blur(10px)\] at (1) should be [blur(10px)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [hue-rotate(180deg)\] at (0.25) should be [hue-rotate(45deg)\]]
expected: FAIL
[CSS Transitions: property <filter> 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 <filter> from [blur(6px)\] to [blur(10px) hue-rotate(180deg)\] at (1.5) should be [blur(12px) hue-rotate(270deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [hue-rotate(180deg)\] to [none\] at (0.25) should be [hue-rotate(135deg)\]]
expected: FAIL
[CSS Transitions: property <filter> from [none\] to [opacity(0.5) hue-rotate(180deg)\] at (1.5) should be [opacity(0.25) hue-rotate(270deg)\]]
expected: FAIL
@ -338,15 +278,9 @@
[Web Animations: property <filter> from [drop-shadow(0px 0px 0px currentcolor)\] to [drop-shadow(20px 10px green)\] at (1) should be [drop-shadow(20px 10px green)\]]
expected: FAIL
[CSS Animations: property <filter> 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 <filter> from [none\] to [hue-rotate(180deg)\] at (-0.5) should be [hue-rotate(-90deg)\]]
expected: FAIL
[CSS Animations: property <filter> 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 <filter> from [drop-shadow(0px 0px 0px currentcolor)\] to [drop-shadow(20px 10px green)\] at (0.5) should be [drop-shadow(10px 5px #80C080)\]]
expected: FAIL
@ -356,15 +290,6 @@
[Web Animations: property <filter> from [drop-shadow(0px 0px 0px currentcolor)\] to [drop-shadow(20px 10px green)\] at (0.5) should be [drop-shadow(10px 5px #80C080)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [hue-rotate(180deg)\] at (1.5) should be [hue-rotate(270deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [hue-rotate(180deg)\] at (-0.5) should be [hue-rotate(-90deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [blur(6px)\] to [blur(10px) hue-rotate(180deg)\] at (0.25) should be [blur(7px) hue-rotate(45deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [drop-shadow(0px 0px 0px currentcolor)\] to [drop-shadow(20px 10px green)\] at (0.5) should be [drop-shadow(10px 5px #80C080)\]]
expected: FAIL
@ -377,18 +302,9 @@
[CSS Transitions with transition: all: property <filter> from [drop-shadow(0px 0px 0px currentcolor)\] to [drop-shadow(20px 10px green)\] at (1) should be [drop-shadow(20px 10px green)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> 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 <filter> from [hue-rotate(180deg)\] to [none\] at (0.5) should be [hue-rotate(90deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [hue-rotate(180deg)\] at (0) should be [hue-rotate(0deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [none\] to [hue-rotate(180deg)\] at (1.5) should be [hue-rotate(270deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [blur(6px)\] to [blur(10px) hue-rotate(180deg)\] at (0.25) should be [blur(7px) hue-rotate(45deg)\]]
expected: FAIL

View file

@ -146,48 +146,21 @@
[filter interpolation]
expected: FAIL
[CSS Transitions: property <filter> from [none\] to [sepia(1)\] at (1.5) should be [sepia(1)\]]
expected: FAIL
[CSS Animations: property <filter> from [url("#svgfilter")\] to [none\] at (1) should be [none\]]
expected: FAIL
[CSS Animations: property <filter> from [contrast(0)\] to [none\] at (0.5) should be [contrast(0.5)\]]
expected: FAIL
[CSS Animations: property <filter> from [contrast(0)\] to [none\] at (1) should be [contrast(1)\]]
expected: FAIL
[Web Animations: property <filter> from [none\] to [hue-rotate(360deg)\] at (1.5) should be [hue-rotate(540deg)\]]
expected: FAIL
[Web Animations: property <filter> from [none\] to [blur(10px)\] at (0) should be [blur(0px)\]]
expected: FAIL
[CSS Transitions: property <filter> from [none\] to [invert(1)\] at (1.5) should be [invert(1)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [grayscale(1)\] at (1) should be [grayscale(1)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [blur(10px)\] at (0.5) should be [blur(5px)\]]
expected: FAIL
[Web Animations: property <filter> from [url("#svgfilter")\] to [none\] at (-0.3) should be [url("#svgfilter")\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [saturate(0)\] to [none\] at (1.5) should be [saturate(1.5)\]]
expected: FAIL
[CSS Transitions: property <filter> from [brightness(0)\] to [none\] at (0.5) should be [brightness(0.5)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [url("#svgfilter")\] to [none\] at (0) should be [none\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [blur(10px)\] at (1.5) should be [blur(15px)\]]
expected: FAIL
[CSS Transitions: property <filter> from [none\] to [drop-shadow(20px 10px green)\] at (1) should be [drop-shadow(20px 10px green)\]]
expected: FAIL
@ -212,15 +185,6 @@
[CSS Transitions: property <filter> from [url("#svgfilter")\] to [none\] at (0.6) should be [none\]]
expected: FAIL
[CSS Transitions: property <filter> from [none\] to [sepia(1)\] at (0.5) should be [sepia(0.5)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [none\] to [invert(1)\] at (0.5) should be [invert(0.5)\]]
expected: FAIL
[CSS Transitions: property <filter> from [opacity(0)\] to [none\] at (0.5) should be [opacity(0.5)\]]
expected: FAIL
[Web Animations: property <filter> from [none\] to [grayscale(1)\] at (-1) should be [grayscale(0)\]]
expected: FAIL
@ -242,18 +206,9 @@
[Web Animations: property <filter> from [url("#svgfilter")\] to [blur(5px)\] at (0) should be [url("#svgfilter")\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [sepia(1)\] at (1.5) should be [sepia(1)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [none\] to [grayscale(1)\] at (0.5) should be [grayscale(0.5)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [url("#svgfilter")\] to [none\] at (1.5) should be [none\]]
expected: FAIL
[CSS Transitions: property <filter> from [none\] to [grayscale(1)\] at (0.5) should be [grayscale(0.5)\]]
expected: FAIL
[CSS Animations: property <filter> from [url("#svgfilter")\] to [none\] at (-0.3) should be [url("#svgfilter")\]]
expected: FAIL
@ -278,24 +233,9 @@
[Web Animations: property <filter> from [initial\] to [sepia(1)\] at (0.5) should be [sepia(0.5)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [brightness(0)\] to [none\] at (0.5) should be [brightness(0.5)\]]
expected: FAIL
[CSS Animations: property <filter> from [brightness(0)\] to [none\] at (-1) should be [brightness(0)\]]
expected: FAIL
[CSS Animations: property <filter> from [brightness(0)\] to [none\] at (1.5) should be [brightness(1.5)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [hue-rotate(360deg)\] at (-1) should be [hue-rotate(-360deg)\]]
expected: FAIL
[Web Animations: property <filter> from [none\] to [invert(1)\] at (1.5) should be [invert(1)\]]
expected: FAIL
[CSS Transitions: property <filter> from [saturate(0)\] to [none\] at (1.5) should be [saturate(1.5)\]]
expected: FAIL
[CSS Transitions: property <filter> from [url("#svgfilter")\] to [blur(5px)\] at (-0.3) should be [blur(5px)\]]
expected: FAIL
@ -305,12 +245,6 @@
[Web Animations: property <filter> from [url("#svgfilter")\] to [none\] at (0.3) should be [url("#svgfilter")\]]
expected: FAIL
[CSS Animations: property <filter> from [brightness(0)\] to [none\] at (1) should be [brightness(1)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [brightness(0)\] to [none\] at (1.5) should be [brightness(1.5)\]]
expected: FAIL
[Web Animations: property <filter> from [none\] to [invert(1)\] at (0) should be [invert(0)\]]
expected: FAIL
@ -320,9 +254,6 @@
[CSS Transitions with transition: all: property <filter> from [url("#svgfilter")\] to [blur(5px)\] at (1.5) should be [blur(5px)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [invert(1)\] at (-1) should be [invert(0)\]]
expected: FAIL
[CSS Transitions: property <filter> from [none\] to [hue-rotate(360deg)\] at (-1) should be [hue-rotate(-360deg)\]]
expected: FAIL
@ -335,45 +266,21 @@
[Web Animations: property <filter> from [none\] to [blur(10px)\] at (-1) should be [blur(0px)\]]
expected: FAIL
[CSS Animations: property <filter> from [brightness(0)\] to [none\] at (0) should be [brightness(0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [none\] to [drop-shadow(20px 10px green)\] at (0) should be [drop-shadow(0px 0px 0px transparent)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [blur(10px)\] at (1) should be [blur(10px)\]]
expected: FAIL
[Web Animations: property <filter> from [none\] to [invert(1)\] at (1) should be [invert(1)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [invert(1)\] at (0) should be [invert(0)\]]
expected: FAIL
[Web Animations: property <filter> from [none\] to [blur(10px)\] at (1) should be [blur(10px)\]]
expected: FAIL
[CSS Transitions: property <filter> from [none\] to [blur(10px)\] at (0.5) should be [blur(5px)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [drop-shadow(20px 10px green)\] at (1) should be [drop-shadow(20px 10px green)\]]
expected: FAIL
[CSS Animations: property <filter> from [saturate(0)\] to [none\] at (1.5) should be [saturate(1.5)\]]
expected: FAIL
[CSS Animations: property <filter> from [initial\] to [sepia(1)\] at (-1) should be [sepia(0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [url("#svgfilter")\] to [blur(5px)\] at (-0.3) should be [blur(5px)\]]
expected: FAIL
[CSS Animations: property <filter> from [initial\] to [sepia(1)\] at (0) should be [sepia(0)\]]
expected: FAIL
[CSS Animations: property <filter> from [opacity(0)\] to [none\] at (1) should be [opacity(1)\]]
expected: FAIL
[Web Animations: property <filter> from [none\] to [grayscale(1)\] at (0) should be [grayscale(0)\]]
expected: FAIL
@ -389,12 +296,6 @@
[Web Animations: property <filter> from [none\] to [drop-shadow(20px 10px green)\] at (0.5) should be [drop-shadow(10px 5px rgba(0, 128, 0, 0.5))\]]
expected: FAIL
[CSS Animations: property <filter> from [saturate(0)\] to [none\] at (1) should be [saturate(1)\]]
expected: FAIL
[CSS Animations: property <filter> from [saturate(0)\] to [none\] at (-1) should be [saturate(0)\]]
expected: FAIL
[CSS Animations: property <filter> from [url("#svgfilter")\] to [none\] at (1.5) should be [none\]]
expected: FAIL
@ -404,18 +305,9 @@
[Web Animations: property <filter> from [brightness(0)\] to [none\] at (0) should be [brightness(0)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [grayscale(1)\] at (0) should be [grayscale(0)\]]
expected: FAIL
[Web Animations: property <filter> from [none\] to [drop-shadow(20px 10px green)\] at (0) should be [drop-shadow(0px 0px 0px transparent)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [blur(10px)\] at (0) should be [blur(0px)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [blur(10px)\] at (-1) should be [blur(0px)\]]
expected: FAIL
[Web Animations: property <filter> from [url("#svgfilter")\] to [none\] at (0) should be [url("#svgfilter")\]]
expected: FAIL
@ -425,9 +317,6 @@
[Web Animations: property <filter> from [none\] to [sepia(1)\] at (0) should be [sepia(0)\]]
expected: FAIL
[CSS Transitions: property <filter> from [none\] to [blur(10px)\] at (1.5) should be [blur(15px)\]]
expected: FAIL
[Web Animations: property <filter> from [none\] to [hue-rotate(360deg)\] at (0) should be [hue-rotate(0deg)\]]
expected: FAIL
@ -446,21 +335,12 @@
[CSS Animations: property <filter> from [none\] to [drop-shadow(20px 10px green)\] at (-1) should be [drop-shadow(-20px -10px transparent)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [sepia(1)\] at (-1) should be [sepia(0)\]]
expected: FAIL
[Web Animations: property <filter> from [contrast(0)\] to [none\] at (1) should be [contrast(1)\]]
expected: FAIL
[CSS Transitions: property <filter> from [contrast(0)\] to [none\] at (0.5) should be [contrast(0.5)\]]
expected: FAIL
[Web Animations: property <filter> from [saturate(0)\] to [none\] at (1) should be [saturate(1)\]]
expected: FAIL
[CSS Animations: property <filter> from [brightness(0)\] to [none\] at (0.5) should be [brightness(0.5)\]]
expected: FAIL
[Web Animations: property <filter> from [none\] to [sepia(1)\] at (-1) should be [sepia(0)\]]
expected: FAIL
@ -482,30 +362,12 @@
[Web Animations: property <filter> from [initial\] to [sepia(1)\] at (1.5) should be [sepia(1)\]]
expected: FAIL
[CSS Animations: property <filter> from [initial\] to [sepia(1)\] at (1.5) should be [sepia(1)\]]
expected: FAIL
[CSS Animations: property <filter> from [contrast(0)\] to [none\] at (0) should be [contrast(0)\]]
expected: FAIL
[CSS Animations: property <filter> from [url("#svgfilter")\] to [none\] at (0.5) should be [none\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [grayscale(1)\] at (0.5) should be [grayscale(0.5)\]]
expected: FAIL
[CSS Animations: property <filter> from [opacity(0)\] to [none\] at (1.5) should be [opacity(1)\]]
expected: FAIL
[CSS Transitions: property <filter> from [url("#svgfilter")\] to [none\] at (1) should be [none\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [none\] to [invert(1)\] at (1.5) should be [invert(1)\]]
expected: FAIL
[CSS Transitions: property <filter> from [initial\] to [sepia(1)\] at (1.5) should be [sepia(1)\]]
expected: FAIL
[Web Animations: property <filter> from [none\] to [hue-rotate(360deg)\] at (-1) should be [hue-rotate(-360deg)\]]
expected: FAIL
@ -527,12 +389,6 @@
[Web Animations: property <filter> from [contrast(0)\] to [none\] at (0) should be [contrast(0)\]]
expected: FAIL
[CSS Animations: property <filter> from [initial\] to [sepia(1)\] at (0.5) should be [sepia(0.5)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [saturate(0)\] to [none\] at (0.5) should be [saturate(0.5)\]]
expected: FAIL
[Web Animations: property <filter> from [none\] to [drop-shadow(20px 10px green)\] at (1.5) should be [drop-shadow(30px 15px #00C000)\]]
expected: FAIL
@ -542,9 +398,6 @@
[CSS Animations: property <filter> from [url("#svgfilter")\] to [blur(5px)\] at (0) should be [url("#svgfilter")\]]
expected: FAIL
[CSS Animations: property <filter> from [opacity(0)\] to [none\] at (0.5) should be [opacity(0.5)\]]
expected: FAIL
[CSS Transitions: property <filter> from [url("#svgfilter")\] to [none\] at (0.5) should be [none\]]
expected: FAIL
@ -566,66 +419,27 @@
[Web Animations: property <filter> from [none\] to [invert(1)\] at (-1) should be [invert(0)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [hue-rotate(360deg)\] at (0.5) should be [hue-rotate(180deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [hue-rotate(360deg)\] at (1.5) should be [hue-rotate(540deg)\]]
expected: FAIL
[Web Animations: property <filter> from [brightness(0)\] to [none\] at (1) should be [brightness(1)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [none\] to [blur(10px)\] at (1.5) should be [blur(15px)\]]
expected: FAIL
[Web Animations: property <filter> from [brightness(0)\] to [none\] at (-1) should be [brightness(0)\]]
expected: FAIL
[CSS Transitions: property <filter> from [opacity(0)\] to [none\] at (1.5) should be [opacity(1)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [sepia(1)\] at (0) should be [sepia(0)\]]
expected: FAIL
[CSS Transitions: property <filter> from [initial\] to [sepia(1)\] at (0.5) should be [sepia(0.5)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [none\] to [hue-rotate(360deg)\] at (0.5) should be [hue-rotate(180deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [url("#svgfilter")\] to [none\] at (0.3) should be [none\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [invert(1)\] at (0.5) should be [invert(0.5)\]]
expected: FAIL
[CSS Transitions: property <filter> from [saturate(0)\] to [none\] at (0.5) should be [saturate(0.5)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [invert(1)\] at (1) should be [invert(1)\]]
expected: FAIL
[Web Animations: property <filter> from [url("#svgfilter")\] to [blur(5px)\] at (1) should be [blur(5px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [initial\] to [sepia(1)\] at (1.5) should be [sepia(1)\]]
expected: FAIL
[Web Animations: property <filter> from [none\] to [drop-shadow(20px 10px green)\] at (-1) should be [drop-shadow(-20px -10px transparent)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [hue-rotate(360deg)\] at (0) should be [hue-rotate(0deg)\]]
expected: FAIL
[CSS Transitions: property <filter> from [contrast(0)\] to [none\] at (1.5) should be [contrast(1.5)\]]
expected: FAIL
[CSS Animations: property <filter> from [url("#svgfilter")\] to [blur(5px)\] at (1) should be [blur(5px)\]]
expected: FAIL
[CSS Animations: property <filter> from [opacity(0)\] to [none\] at (0) should be [opacity(0)\]]
expected: FAIL
[CSS Transitions: property <filter> from [url("#svgfilter")\] to [none\] at (0) should be [none\]]
expected: FAIL
@ -635,9 +449,6 @@
[Web Animations: property <filter> from [url("#svgfilter")\] to [none\] at (0.5) should be [none\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [initial\] to [sepia(1)\] at (0.5) should be [sepia(0.5)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [url("#svgfilter")\] to [none\] at (0.5) should be [none\]]
expected: FAIL
@ -647,12 +458,6 @@
[CSS Transitions with transition: all: property <filter> from [none\] to [drop-shadow(20px 10px green)\] at (1) should be [drop-shadow(20px 10px green)\]]
expected: FAIL
[CSS Transitions: property <filter> from [none\] to [grayscale(1)\] at (1.5) should be [grayscale(1)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [none\] to [grayscale(1)\] at (1.5) should be [grayscale(1)\]]
expected: FAIL
[Web Animations: property <filter> from [none\] to [sepia(1)\] at (0.5) should be [sepia(0.5)\]]
expected: FAIL
@ -665,24 +470,9 @@
[Web Animations: property <filter> from [none\] to [grayscale(1)\] at (1) should be [grayscale(1)\]]
expected: FAIL
[CSS Animations: property <filter> from [contrast(0)\] to [none\] at (-1) should be [contrast(0)\]]
expected: FAIL
[CSS Transitions: property <filter> from [none\] to [drop-shadow(20px 10px green)\] at (0) should be [drop-shadow(0px 0px 0px transparent)\]]
expected: FAIL
[CSS Animations: property <filter> from [contrast(0)\] to [none\] at (1.5) should be [contrast(1.5)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [opacity(0)\] to [none\] at (0.5) should be [opacity(0.5)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [grayscale(1)\] at (-1) should be [grayscale(0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [contrast(0)\] to [none\] at (1.5) should be [contrast(1.5)\]]
expected: FAIL
[Web Animations: property <filter> from [url("#svgfilter")\] to [blur(5px)\] at (0.6) should be [blur(5px)\]]
expected: FAIL
@ -692,9 +482,6 @@
[Web Animations: property <filter> from [url("#svgfilter")\] to [none\] at (1) should be [none\]]
expected: FAIL
[CSS Transitions: property <filter> from [brightness(0)\] to [none\] at (1.5) should be [brightness(1.5)\]]
expected: FAIL
[Web Animations: property <filter> from [contrast(0)\] to [none\] at (0.5) should be [contrast(0.5)\]]
expected: FAIL
@ -704,45 +491,24 @@
[CSS Transitions with transition: all: property <filter> from [url("#svgfilter")\] to [blur(5px)\] at (0.5) should be [blur(5px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [opacity(0)\] to [none\] at (1.5) should be [opacity(1)\]]
expected: FAIL
[CSS Transitions: property <filter> from [url("#svgfilter")\] to [none\] at (1.5) should be [none\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [grayscale(1)\] at (1.5) should be [grayscale(1)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [url("#svgfilter")\] to [blur(5px)\] at (1) should be [blur(5px)\]]
expected: FAIL
[CSS Transitions: property <filter> from [url("#svgfilter")\] to [blur(5px)\] at (0.3) should be [blur(5px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [none\] to [sepia(1)\] at (1.5) should be [sepia(1)\]]
expected: FAIL
[CSS Transitions: property <filter> from [none\] to [drop-shadow(20px 10px green)\] at (0.5) should be [drop-shadow(10px 5px rgba(0, 128, 0, 0.5))\]]
expected: FAIL
[CSS Transitions: property <filter> from [none\] to [hue-rotate(360deg)\] at (0.5) should be [hue-rotate(180deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [invert(1)\] at (1.5) should be [invert(1)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [none\] to [blur(10px)\] at (0.5) should be [blur(5px)\]]
expected: FAIL
[Web Animations: property <filter> from [saturate(0)\] to [none\] at (1.5) should be [saturate(1.5)\]]
expected: FAIL
[CSS Animations: property <filter> from [saturate(0)\] to [none\] at (0) should be [saturate(0)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [sepia(1)\] at (0.5) should be [sepia(0.5)\]]
expected: FAIL
[Web Animations: property <filter> from [none\] to [grayscale(1)\] at (0.5) should be [grayscale(0.5)\]]
expected: FAIL
@ -752,48 +518,21 @@
[Web Animations: property <filter> from [none\] to [invert(1)\] at (0.5) should be [invert(0.5)\]]
expected: FAIL
[CSS Animations: property <filter> from [opacity(0)\] to [none\] at (-1) should be [opacity(0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [none\] to [sepia(1)\] at (0.5) should be [sepia(0.5)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [none\] to [hue-rotate(360deg)\] at (1.5) should be [hue-rotate(540deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [contrast(0)\] to [none\] at (0.5) should be [contrast(0.5)\]]
expected: FAIL
[Web Animations: property <filter> from [opacity(0)\] to [none\] at (0) should be [opacity(0)\]]
expected: FAIL
[Web Animations: property <filter> from [url("#svgfilter")\] to [none\] at (0.6) should be [none\]]
expected: FAIL
[CSS Animations: property <filter> from [initial\] to [sepia(1)\] at (1) should be [sepia(1)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [sepia(1)\] at (1) should be [sepia(1)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [none\] to [drop-shadow(20px 10px green)\] at (1.5) should be [drop-shadow(30px 15px #00C000)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [url("#svgfilter")\] to [none\] at (1) should be [none\]]
expected: FAIL
[CSS Animations: property <filter> from [saturate(0)\] to [none\] at (0.5) should be [saturate(0.5)\]]
expected: FAIL
[CSS Animations: property <filter> from [none\] to [hue-rotate(360deg)\] at (1) should be [hue-rotate(360deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [url("#svgfilter")\] to [none\] at (-0.3) should be [none\]]
expected: FAIL
[CSS Transitions: property <filter> from [none\] to [invert(1)\] at (0.5) should be [invert(0.5)\]]
expected: FAIL
[Web Animations: property <filter> from [saturate(0)\] to [none\] at (0.5) should be [saturate(0.5)\]]
expected: FAIL

View file

@ -155,24 +155,9 @@
[filter interpolation]
expected: FAIL
[CSS Transitions: property <filter> from [sepia(0)\] to [sepia()\] at (0.5) should be [sepia(0.5)\]]
expected: FAIL
[Web Animations: property <filter> from [saturate(0)\] to [saturate()\] at (0.5) should be [saturate(0.5)\]]
expected: FAIL
[CSS Animations: property <filter> from [hue-rotate()\] to [hue-rotate(360deg)\] at (-1) should be [hue-rotate(-360deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [contrast(0)\] to [contrast()\] at (0.5) should be [contrast(0.5)\]]
expected: FAIL
[CSS Animations: property <filter> from [blur()\] to [blur(10px)\] at (-1) should be [blur(0px)\]]
expected: FAIL
[CSS Animations: property <filter> from [brightness(0)\] to [brightness()\] at (1) should be [brightness()\]]
expected: FAIL
[Web Animations: property <filter> from [grayscale(0)\] to [grayscale()\] at (0) should be [grayscale(0)\]]
expected: FAIL
@ -185,54 +170,21 @@
[Web Animations: property <filter> from [blur()\] to [blur(10px)\] at (-1) should be [blur(0px)\]]
expected: FAIL
[CSS Animations: property <filter> from [brightness(0)\] to [brightness()\] at (-1) should be [brightness(0)\]]
expected: FAIL
[Web Animations: property <filter> from [sepia(0)\] to [sepia()\] at (-1) should be [sepia(0)\]]
expected: FAIL
[CSS Animations: property <filter> from [saturate(0)\] to [saturate()\] at (0) should be [saturate(0)\]]
expected: FAIL
[CSS Transitions: property <filter> from [blur()\] to [blur(10px)\] at (0.5) should be [blur(5px)\]]
expected: FAIL
[CSS Transitions: property <filter> from [opacity(0)\] to [opacity()\] at (0.5) should be [opacity(0.5)\]]
expected: FAIL
[CSS Transitions: property <filter> from [hue-rotate()\] to [hue-rotate(360deg)\] at (1.5) should be [hue-rotate(540deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [blur()\] to [blur(10px)\] at (1.5) should be [blur(15px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [contrast(0)\] to [contrast()\] at (0.5) should be [contrast(0.5)\]]
expected: FAIL
[Web Animations: property <filter> from [grayscale(0)\] to [grayscale()\] at (1.5) should be [grayscale(1)\]]
expected: FAIL
[CSS Animations: property <filter> from [contrast(0)\] to [contrast()\] at (1) should be [contrast()\]]
expected: FAIL
[Web Animations: property <filter> from [hue-rotate()\] to [hue-rotate(360deg)\] at (0) should be [hue-rotate()\]]
expected: FAIL
[CSS Animations: property <filter> from [invert(0)\] to [invert()\] at (1.5) should be [invert(1)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [hue-rotate()\] to [hue-rotate(360deg)\] at (0.5) should be [hue-rotate(180deg)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [invert(0)\] to [invert()\] at (0.5) should be [invert(0.5)\]]
expected: FAIL
[CSS Animations: property <filter> from [saturate(0)\] to [saturate()\] at (-1) should be [saturate(0)\]]
expected: FAIL
[CSS Animations: property <filter> from [grayscale(0)\] to [grayscale()\] at (0) should be [grayscale(0)\]]
expected: FAIL
[CSS Transitions: property <filter> from [drop-shadow(0px 0px)\] to [drop-shadow(20px 10px 30px green)\] at (0.5) should be [drop-shadow(10px 5px 15px rgb(0, 64, 128))\]]
expected: FAIL
@ -242,36 +194,12 @@
[Web Animations: property <filter> from [brightness(0)\] to [brightness()\] at (1) should be [brightness()\]]
expected: FAIL
[CSS Animations: property <filter> from [invert(0)\] to [invert()\] at (1) should be [invert()\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [hue-rotate()\] to [hue-rotate(360deg)\] at (1.5) should be [hue-rotate(540deg)\]]
expected: FAIL
[CSS Transitions: property <filter> from [drop-shadow(0px 0px)\] to [drop-shadow(20px 10px 30px green)\] at (1.5) should be [drop-shadow(30px 15px 45px rgb(0, 192, 0))\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [grayscale(0)\] to [grayscale()\] at (1.5) should be [grayscale(1)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [sepia(0)\] to [sepia()\] at (1.5) should be [sepia(1)\]]
expected: FAIL
[CSS Animations: property <filter> from [sepia(0)\] to [sepia()\] at (1.5) should be [sepia(1)\]]
expected: FAIL
[CSS Animations: property <filter> from [invert(0)\] to [invert()\] at (0) should be [invert(0)\]]
expected: FAIL
[CSS Animations: property <filter> from [drop-shadow(0px 0px)\] to [drop-shadow(20px 10px 30px green)\] at (0) should be [drop-shadow(0px 0px blue)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [opacity(0)\] to [opacity()\] at (1.5) should be [opacity(1)\]]
expected: FAIL
[CSS Animations: property <filter> from [grayscale(0)\] to [grayscale()\] at (-1) should be [grayscale(0)\]]
expected: FAIL
[Web Animations: property <filter> from [contrast(0)\] to [contrast()\] at (1.5) should be [contrast(1.5)\]]
expected: FAIL
@ -281,39 +209,18 @@
[Web Animations: property <filter> from [drop-shadow(0px 0px)\] to [drop-shadow(20px 10px 30px green)\] at (0.5) should be [drop-shadow(10px 5px 15px rgb(0, 64, 128))\]]
expected: FAIL
[CSS Animations: property <filter> from [sepia(0)\] to [sepia()\] at (-1) should be [sepia(0)\]]
expected: FAIL
[CSS Animations: property <filter> from [brightness(0)\] to [brightness()\] at (0) should be [brightness(0)\]]
expected: FAIL
[CSS Animations: property <filter> from [sepia(0)\] to [sepia()\] at (1) should be [sepia()\]]
expected: FAIL
[Web Animations: property <filter> from [invert(0)\] to [invert()\] at (1.5) should be [invert(1)\]]
expected: FAIL
[CSS Animations: property <filter> from [blur()\] to [blur(10px)\] at (0) should be [blur()\]]
expected: FAIL
[Web Animations: property <filter> from [brightness(0)\] to [brightness()\] at (1.5) should be [brightness(1.5)\]]
expected: FAIL
[CSS Animations: property <filter> from [opacity(0)\] to [opacity()\] at (-1) should be [opacity(0)\]]
expected: FAIL
[CSS Animations: property <filter> from [grayscale(0)\] to [grayscale()\] at (0.5) should be [grayscale(0.5)\]]
expected: FAIL
[CSS Transitions: property <filter> from [drop-shadow(0px 0px)\] to [drop-shadow(20px 10px 30px green)\] at (1) should be [drop-shadow(20px 10px 30px green)\]]
expected: FAIL
[Web Animations: property <filter> from [invert(0)\] to [invert()\] at (-1) should be [invert(0)\]]
expected: FAIL
[CSS Animations: property <filter> from [contrast(0)\] to [contrast()\] at (1.5) should be [contrast(1.5)\]]
expected: FAIL
[CSS Animations: property <filter> from [drop-shadow(0px 0px)\] to [drop-shadow(20px 10px 30px green)\] at (1) should be [drop-shadow(20px 10px 30px green)\]]
expected: FAIL
@ -323,48 +230,18 @@
[Web Animations: property <filter> from [blur()\] to [blur(10px)\] at (0) should be [blur()\]]
expected: FAIL
[CSS Transitions: property <filter> from [invert(0)\] to [invert()\] at (1.5) should be [invert(1)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [saturate(0)\] to [saturate()\] at (1.5) should be [saturate(1.5)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [opacity(0)\] to [opacity()\] at (0.5) should be [opacity(0.5)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [contrast(0)\] to [contrast()\] at (1.5) should be [contrast(1.5)\]]
expected: FAIL
[Web Animations: property <filter> from [drop-shadow(0px 0px)\] to [drop-shadow(20px 10px 30px green)\] at (1) should be [drop-shadow(20px 10px 30px green)\]]
expected: FAIL
[CSS Transitions: property <filter> from [brightness(0)\] to [brightness()\] at (0.5) should be [brightness(0.5)\]]
expected: FAIL
[CSS Transitions: property <filter> from [blur()\] to [blur(10px)\] at (1.5) should be [blur(15px)\]]
expected: FAIL
[CSS Animations: property <filter> from [opacity(0)\] to [opacity()\] at (0) should be [opacity(0)\]]
expected: FAIL
[Web Animations: property <filter> from [hue-rotate()\] to [hue-rotate(360deg)\] at (0.5) should be [hue-rotate(180deg)\]]
expected: FAIL
[Web Animations: property <filter> from [hue-rotate()\] to [hue-rotate(360deg)\] at (1.5) should be [hue-rotate(540deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [contrast(0)\] to [contrast()\] at (0) should be [contrast(0)\]]
expected: FAIL
[CSS Animations: property <filter> from [blur()\] to [blur(10px)\] at (0.5) should be [blur(5px)\]]
expected: FAIL
[Web Animations: property <filter> from [opacity(0)\] to [opacity()\] at (1) should be [opacity()\]]
expected: FAIL
[CSS Animations: property <filter> from [grayscale(0)\] to [grayscale()\] at (1) should be [grayscale()\]]
expected: FAIL
[CSS Animations: property <filter> from [drop-shadow(0px 0px)\] to [drop-shadow(20px 10px 30px green)\] at (-1) should be [drop-shadow(-20px -10px blue)\]]
expected: FAIL
@ -374,18 +251,12 @@
[Web Animations: property <filter> from [blur()\] to [blur(10px)\] at (1) should be [blur(10px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [brightness(0)\] to [brightness()\] at (1.5) should be [brightness(1.5)\]]
expected: FAIL
[Web Animations: property <filter> from [invert(0)\] to [invert()\] at (1) should be [invert()\]]
expected: FAIL
[CSS Transitions: property <filter> from [hue-rotate()\] to [hue-rotate(360deg)\] at (-1) should be [hue-rotate(-360deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [hue-rotate()\] to [hue-rotate(360deg)\] at (1.5) should be [hue-rotate(540deg)\]]
expected: FAIL
[Web Animations: property <filter> from [opacity(0)\] to [opacity()\] at (0) should be [opacity(0)\]]
expected: FAIL
@ -407,102 +278,39 @@
[Web Animations: property <filter> from [saturate(0)\] to [saturate()\] at (-1) should be [saturate(0)\]]
expected: FAIL
[CSS Animations: property <filter> from [sepia(0)\] to [sepia()\] at (0.5) should be [sepia(0.5)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [blur()\] to [blur(10px)\] at (1.5) should be [blur(15px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [drop-shadow(0px 0px)\] to [drop-shadow(20px 10px 30px green)\] at (0) should be [drop-shadow(0px 0px blue)\]]
expected: FAIL
[CSS Animations: property <filter> from [hue-rotate()\] to [hue-rotate(360deg)\] at (0) should be [hue-rotate()\]]
expected: FAIL
[CSS Transitions: property <filter> from [saturate(0)\] to [saturate()\] at (0.5) should be [saturate(0.5)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [sepia(0)\] to [sepia()\] at (0.5) should be [sepia(0.5)\]]
expected: FAIL
[CSS Animations: property <filter> from [drop-shadow(0px 0px)\] to [drop-shadow(20px 10px 30px green)\] at (1.5) should be [drop-shadow(30px 15px 45px rgb(0, 192, 0))\]]
expected: FAIL
[CSS Animations: property <filter> from [opacity(0)\] to [opacity()\] at (1.5) should be [opacity(1)\]]
expected: FAIL
[CSS Transitions: property <filter> from [drop-shadow(0px 0px)\] to [drop-shadow(20px 10px 30px green)\] at (-1) should be [drop-shadow(-20px -10px blue)\]]
expected: FAIL
[CSS Animations: property <filter> from [blur()\] to [blur(10px)\] at (1) should be [blur(10px)\]]
expected: FAIL
[CSS Animations: property <filter> from [hue-rotate()\] to [hue-rotate(360deg)\] at (1) should be [hue-rotate(360deg)\]]
expected: FAIL
[Web Animations: property <filter> from [grayscale(0)\] to [grayscale()\] at (1) should be [grayscale()\]]
expected: FAIL
[Web Animations: property <filter> from [grayscale(0)\] to [grayscale()\] at (0.5) should be [grayscale(0.5)\]]
expected: FAIL
[CSS Animations: property <filter> from [saturate(0)\] to [saturate()\] at (1.5) should be [saturate(1.5)\]]
expected: FAIL
[CSS Transitions: property <filter> from [grayscale(0)\] to [grayscale()\] at (1.5) should be [grayscale(1)\]]
expected: FAIL
[CSS Transitions: property <filter> from [contrast(0)\] to [contrast()\] at (1.5) should be [contrast(1.5)\]]
expected: FAIL
[Web Animations: property <filter> from [opacity(0)\] to [opacity()\] at (1.5) should be [opacity(1)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [saturate(0)\] to [saturate()\] at (0.5) should be [saturate(0.5)\]]
expected: FAIL
[Web Animations: property <filter> from [invert(0)\] to [invert()\] at (0.5) should be [invert(0.5)\]]
expected: FAIL
[Web Animations: property <filter> from [brightness(0)\] to [brightness()\] at (0.5) should be [brightness(0.5)\]]
expected: FAIL
[CSS Animations: property <filter> from [hue-rotate()\] to [hue-rotate(360deg)\] at (0.5) should be [hue-rotate(180deg)\]]
expected: FAIL
[Web Animations: property <filter> from [hue-rotate()\] to [hue-rotate(360deg)\] at (1) should be [hue-rotate(360deg)\]]
expected: FAIL
[CSS Animations: property <filter> from [invert(0)\] to [invert()\] at (0.5) should be [invert(0.5)\]]
expected: FAIL
[CSS Animations: property <filter> from [contrast(0)\] to [contrast()\] at (-1) should be [contrast(0)\]]
expected: FAIL
[CSS Transitions: property <filter> from [invert(0)\] to [invert()\] at (0.5) should be [invert(0.5)\]]
expected: FAIL
[Web Animations: property <filter> from [sepia(0)\] to [sepia()\] at (0) should be [sepia(0)\]]
expected: FAIL
[CSS Animations: property <filter> from [sepia(0)\] to [sepia()\] at (0) should be [sepia(0)\]]
expected: FAIL
[CSS Animations: property <filter> from [invert(0)\] to [invert()\] at (-1) should be [invert(0)\]]
expected: FAIL
[CSS Transitions: property <filter> from [grayscale(0)\] to [grayscale()\] at (0.5) should be [grayscale(0.5)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [brightness(0)\] to [brightness()\] at (0.5) should be [brightness(0.5)\]]
expected: FAIL
[Web Animations: property <filter> from [saturate(0)\] to [saturate()\] at (0) should be [saturate(0)\]]
expected: FAIL
[CSS Transitions: property <filter> from [brightness(0)\] to [brightness()\] at (1.5) should be [brightness(1.5)\]]
expected: FAIL
[Web Animations: property <filter> from [saturate(0)\] to [saturate()\] at (1) should be [saturate()\]]
expected: FAIL
@ -512,12 +320,6 @@
[Web Animations: property <filter> from [brightness(0)\] to [brightness()\] at (0) should be [brightness(0)\]]
expected: FAIL
[CSS Animations: property <filter> from [grayscale(0)\] to [grayscale()\] at (1.5) should be [grayscale(1)\]]
expected: FAIL
[CSS Transitions: property <filter> from [saturate(0)\] to [saturate()\] at (1.5) should be [saturate(1.5)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [hue-rotate()\] to [hue-rotate(360deg)\] at (-1) should be [hue-rotate(-360deg)\]]
expected: FAIL
@ -527,45 +329,21 @@
[Web Animations: property <filter> from [opacity(0)\] to [opacity()\] at (0.5) should be [opacity(0.5)\]]
expected: FAIL
[CSS Animations: property <filter> from [brightness(0)\] to [brightness()\] at (1.5) should be [brightness(1.5)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [invert(0)\] to [invert()\] at (1.5) should be [invert(1)\]]
expected: FAIL
[CSS Transitions: property <filter> from [opacity(0)\] to [opacity()\] at (1.5) should be [opacity(1)\]]
expected: FAIL
[CSS Animations: property <filter> from [drop-shadow(0px 0px)\] to [drop-shadow(20px 10px 30px green)\] at (0.5) should be [drop-shadow(10px 5px 15px rgb(0, 64, 128))\]]
expected: FAIL
[Web Animations: property <filter> from [contrast(0)\] to [contrast()\] at (0) should be [contrast(0)\]]
expected: FAIL
[CSS Transitions: property <filter> from [sepia(0)\] to [sepia()\] at (1.5) should be [sepia(1)\]]
expected: FAIL
[CSS Animations: property <filter> from [opacity(0)\] to [opacity()\] at (1) should be [opacity()\]]
expected: FAIL
[Web Animations: property <filter> from [drop-shadow(0px 0px)\] to [drop-shadow(20px 10px 30px green)\] at (0) should be [drop-shadow(0px 0px blue)\]]
expected: FAIL
[Web Animations: property <filter> from [brightness(0)\] to [brightness()\] at (-1) should be [brightness(0)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [grayscale(0)\] to [grayscale()\] at (0.5) should be [grayscale(0.5)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [blur()\] to [blur(10px)\] at (0.5) should be [blur(5px)\]]
expected: FAIL
[CSS Transitions with transition: all: property <filter> from [drop-shadow(0px 0px)\] to [drop-shadow(20px 10px 30px green)\] at (1) should be [drop-shadow(20px 10px 30px green)\]]
expected: FAIL
[CSS Transitions: property <filter> from [contrast(0)\] to [contrast()\] at (0.5) should be [contrast(0.5)\]]
expected: FAIL
[Web Animations: property <filter> from [contrast(0)\] to [contrast()\] at (-1) should be [contrast(0)\]]
expected: FAIL
@ -575,21 +353,9 @@
[CSS Transitions with transition: all: property <filter> from [drop-shadow(0px 0px)\] to [drop-shadow(20px 10px 30px green)\] at (0.5) should be [drop-shadow(10px 5px 15px rgb(0, 64, 128))\]]
expected: FAIL
[CSS Animations: property <filter> from [opacity(0)\] to [opacity()\] at (0.5) should be [opacity(0.5)\]]
expected: FAIL
[CSS Animations: property <filter> from [brightness(0)\] to [brightness()\] at (0.5) should be [brightness(0.5)\]]
expected: FAIL
[CSS Animations: property <filter> from [saturate(0)\] to [saturate()\] at (1) should be [saturate()\]]
expected: FAIL
[Web Animations: property <filter> from [blur()\] to [blur(10px)\] at (1.5) should be [blur(15px)\]]
expected: FAIL
[CSS Animations: property <filter> from [saturate(0)\] to [saturate()\] at (0.5) should be [saturate(0.5)\]]
expected: FAIL
[Web Animations: property <filter> from [contrast(0)\] to [contrast()\] at (0.5) should be [contrast(0.5)\]]
expected: FAIL