mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Stop transitioning properties with a discrete animation type (#30565)
They are not transitionable: https://drafts.csswg.org/css-transitions-1/#transitionable There are some new failures in background-image-interpolation.html, but I think the test is wrong, because it expects background-image to be transitionable, even though the spec defines it with a discrete animation type.
This commit is contained in:
parent
9af3495d8a
commit
111716d458
39 changed files with 410 additions and 1280 deletions
|
@ -1028,6 +1028,10 @@ impl ElementAnimationSet {
|
|||
old_style: &ComputedValues,
|
||||
new_style: &Arc<ComputedValues>,
|
||||
) {
|
||||
if !longhand_id.is_transitionable() {
|
||||
return;
|
||||
}
|
||||
|
||||
let style = new_style.get_ui();
|
||||
let timing_function = style.transition_timing_function_mod(index);
|
||||
let duration = style.transition_duration_mod(index);
|
||||
|
|
|
@ -981,6 +981,12 @@ impl LonghandIdSet {
|
|||
&DISCRETE_ANIMATABLE
|
||||
}
|
||||
|
||||
#[inline]
|
||||
fn transitionable() -> &'static Self {
|
||||
${static_longhand_id_set("TRANSITIONABLE", lambda p: p.transitionable)}
|
||||
&TRANSITIONABLE
|
||||
}
|
||||
|
||||
#[inline]
|
||||
fn logical() -> &'static Self {
|
||||
${static_longhand_id_set("LOGICAL", lambda p: p.logical)}
|
||||
|
@ -1360,6 +1366,12 @@ impl LonghandId {
|
|||
LonghandIdSet::discrete_animatable().contains(self)
|
||||
}
|
||||
|
||||
/// Returns whether this property is transitionable.
|
||||
#[inline]
|
||||
pub fn is_transitionable(self) -> bool {
|
||||
LonghandIdSet::transitionable().contains(self)
|
||||
}
|
||||
|
||||
/// Converts from a LonghandId to an adequate nsCSSPropertyID.
|
||||
#[cfg(feature = "gecko")]
|
||||
#[inline]
|
||||
|
|
|
@ -1,13 +1,4 @@
|
|||
[discrete-no-interpolation.html]
|
||||
[CSS Transitions with transition: all: property <border-left-style> from [initial\] to [dotted\] at (-0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-left-style> from [initial\] to [dotted\] at (0) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-left-style> from [initial\] to [dotted\] at (0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-left-style> from [initial\] to [dotted\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -29,15 +20,6 @@
|
|||
[Web Animations: property <border-left-style> from [initial\] to [dotted\] at (1.5) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-right-style> from [initial\] to [dotted\] at (-0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-right-style> from [initial\] to [dotted\] at (0) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-right-style> from [initial\] to [dotted\] at (0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-right-style> from [initial\] to [dotted\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -59,15 +41,6 @@
|
|||
[Web Animations: property <border-right-style> from [initial\] to [dotted\] at (1.5) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-top-style> from [initial\] to [dotted\] at (-0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-top-style> from [initial\] to [dotted\] at (0) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-top-style> from [initial\] to [dotted\] at (0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-top-style> from [initial\] to [dotted\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -89,15 +62,6 @@
|
|||
[Web Animations: property <border-top-style> from [initial\] to [dotted\] at (1.5) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-bottom-style> from [initial\] to [dotted\] at (-0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-bottom-style> from [initial\] to [dotted\] at (0) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-bottom-style> from [initial\] to [dotted\] at (0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-bottom-style> from [initial\] to [dotted\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -118,39 +82,3 @@
|
|||
|
||||
[Web Animations: property <border-bottom-style> from [initial\] to [dotted\] at (1.5) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-left-style> from [initial\] to [dotted\] at (-0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-left-style> from [initial\] to [dotted\] at (0) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-left-style> from [initial\] to [dotted\] at (0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-right-style> from [initial\] to [dotted\] at (-0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-right-style> from [initial\] to [dotted\] at (0) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-right-style> from [initial\] to [dotted\] at (0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-top-style> from [initial\] to [dotted\] at (-0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-top-style> from [initial\] to [dotted\] at (0) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-top-style> from [initial\] to [dotted\] at (0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-bottom-style> from [initial\] to [dotted\] at (-0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-bottom-style> from [initial\] to [dotted\] at (0) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-bottom-style> from [initial\] to [dotted\] at (0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,13 +1,4 @@
|
|||
[clear-no-interpolation.html]
|
||||
[CSS Transitions with transition: all: property <clear> from [initial\] to [both\] at (-0.3) should be [both\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <clear> from [initial\] to [both\] at (0) should be [both\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <clear> from [initial\] to [both\] at (0.3) should be [both\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <clear> from [initial\] to [both\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -28,12 +19,3 @@
|
|||
|
||||
[Web Animations: property <clear> from [initial\] to [both\] at (1.5) should be [both\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <clear> from [initial\] to [both\] at (-0.3) should be [both\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <clear> from [initial\] to [both\] at (0) should be [both\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <clear> from [initial\] to [both\] at (0.3) should be [both\]]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,13 +1,4 @@
|
|||
[float-no-interpolation.html]
|
||||
[CSS Transitions with transition: all: property <float> from [initial\] to [right\] at (-0.3) should be [right\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <float> from [initial\] to [right\] at (0) should be [right\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <float> from [initial\] to [right\] at (0.3) should be [right\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <float> from [initial\] to [right\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -28,12 +19,3 @@
|
|||
|
||||
[Web Animations: property <float> from [initial\] to [right\] at (1.5) should be [right\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <float> from [initial\] to [right\] at (-0.3) should be [right\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <float> from [initial\] to [right\] at (0) should be [right\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <float> from [initial\] to [right\] at (0.3) should be [right\]]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,13 +1,4 @@
|
|||
[border-collapse-no-interpolation.html]
|
||||
[CSS Transitions with transition: all: property <border-collapse> from [initial\] to [collapse\] at (-0.3) should be [collapse\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-collapse> from [initial\] to [collapse\] at (0) should be [collapse\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-collapse> from [initial\] to [collapse\] at (0.3) should be [collapse\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-collapse> from [initial\] to [collapse\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -28,12 +19,3 @@
|
|||
|
||||
[Web Animations: property <border-collapse> from [initial\] to [collapse\] at (1.5) should be [collapse\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-collapse> from [initial\] to [collapse\] at (-0.3) should be [collapse\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-collapse> from [initial\] to [collapse\] at (0) should be [collapse\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-collapse> from [initial\] to [collapse\] at (0.3) should be [collapse\]]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,13 +1,4 @@
|
|||
[empty-cells-no-interpolation.html]
|
||||
[CSS Transitions with transition: all: property <empty-cells> from [initial\] to [hide\] at (-0.3) should be [hide\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <empty-cells> from [initial\] to [hide\] at (0) should be [hide\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <empty-cells> from [initial\] to [hide\] at (0.3) should be [hide\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <empty-cells> from [initial\] to [hide\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -28,12 +19,3 @@
|
|||
|
||||
[Web Animations: property <empty-cells> from [initial\] to [hide\] at (1.5) should be [hide\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <empty-cells> from [initial\] to [hide\] at (-0.3) should be [hide\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <empty-cells> from [initial\] to [hide\] at (0) should be [hide\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <empty-cells> from [initial\] to [hide\] at (0.3) should be [hide\]]
|
||||
expected: FAIL
|
||||
|
|
|
@ -83,15 +83,6 @@
|
|||
[Web Animations: property <align-content> from [initial\] to [baseline\] at (1.5) should be [baseline\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <align-items> from [initial\] to [baseline\] at (-0.3) should be [baseline\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <align-items> from [initial\] to [baseline\] at (0) should be [baseline\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <align-items> from [initial\] to [baseline\] at (0.3) should be [baseline\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <align-items> from [initial\] to [baseline\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -113,15 +104,6 @@
|
|||
[Web Animations: property <align-items> from [initial\] to [baseline\] at (1.5) should be [baseline\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <align-self> from [initial\] to [baseline\] at (-0.3) should be [baseline\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <align-self> from [initial\] to [baseline\] at (0) should be [baseline\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <align-self> from [initial\] to [baseline\] at (0.3) should be [baseline\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <align-self> from [initial\] to [baseline\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -151,21 +133,3 @@
|
|||
|
||||
[CSS Transitions: property <align-content> from [initial\] to [baseline\] at (0.3) should be [baseline\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <align-items> from [initial\] to [baseline\] at (-0.3) should be [baseline\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <align-items> from [initial\] to [baseline\] at (0) should be [baseline\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <align-items> from [initial\] to [baseline\] at (0.3) should be [baseline\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <align-self> from [initial\] to [baseline\] at (-0.3) should be [baseline\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <align-self> from [initial\] to [baseline\] at (0) should be [baseline\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <align-self> from [initial\] to [baseline\] at (0.3) should be [baseline\]]
|
||||
expected: FAIL
|
||||
|
|
|
@ -59,15 +59,6 @@
|
|||
[Web Animations: property <display> from [none\] to [block\] at (1.5) should be [block\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <display> from [inline\] to [block\] at (-0.3) should be [block\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <display> from [inline\] to [block\] at (0) should be [block\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <display> from [inline\] to [block\] at (0.3) should be [block\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <display> from [inline\] to [block\] at (-0.3) should be [inline\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -152,15 +143,6 @@
|
|||
[Web Animations: property <display> from [none\] to [none\] at (1.5) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <display> from [inline\] to [block\] at (-0.3) should be [block\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <display> from [inline\] to [block\] at (0) should be [block\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <display> from [inline\] to [block\] at (0.3) should be [block\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <display> from [block\] to [none\] at (-1) should be [block\]]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -269,3 +269,200 @@
|
|||
[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 neutral to [url(../resources/green-100.png)\] at (-0.3) should be [url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-image> from neutral to [url(../resources/green-100.png)\] at (0) should be [url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: 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 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 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 neutral to [url(../resources/green-100.png)\] at (0.3) should be [url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-image> from [initial\] to [url(../resources/green-100.png)\] at (-0.3) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-image> from [initial\] to [url(../resources/green-100.png)\] at (0) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: 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 [initial\] to [url(../resources/green-100.png)\] at (-0.3) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-image> from [initial\] 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 (0.3) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-image> from [inherit\] to [url(../resources/green-100.png)\] at (-0.3) should be [url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-image> from [inherit\] to [url(../resources/green-100.png)\] at (0) should be [url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-image> from [inherit\] to [url(../resources/green-100.png)\] at (0.3) should be [url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-image> from [inherit\] to [url(../resources/green-100.png)\] at (-0.3) should be [url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-image> from [inherit\] to [url(../resources/green-100.png)\] at (0) should be [url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-image> from [inherit\] to [url(../resources/green-100.png)\] at (0.3) should be [url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: 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 [unset\] to [url(../resources/green-100.png)\] at (0) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: 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 [unset\] 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) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: 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 [url(../resources/blue-100.png)\] to [url(../resources/green-100.png)\] at (-0.3) should be [url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: 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 Transitions: 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 Transitions with transition: all: 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 Transitions with transition: all: 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 Transitions with transition: all: 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 Transitions: 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)\] to [linear-gradient(45deg, blue, orange)\] at (0) should be [url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: 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 with transition: all: 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 with transition: all: 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 Transitions with transition: all: 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 [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (-0.3) should be [linear-gradient(-45deg, red, yellow)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <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 [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 <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 Transitions with transition: all: 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 [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0.3) should be [linear-gradient(-45deg, red, yellow)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-image> from [none\] 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) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-image> from [none\] to [url(../resources/green-100.png)\] at (0.3) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-image> from [none\] to [url(../resources/green-100.png)\] at (-0.3) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: 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 [none\] to [url(../resources/green-100.png)\] at (0.3) should be [none\]]
|
||||
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.3) should be [url(../resources/stripes-100.png), url(../resources/blue-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 (0) should be [url(../resources/stripes-100.png), url(../resources/blue-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 (0.3) 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/stripes-100.png), url(../resources/blue-100.png)\] to [url(../resources/blue-100.png), url(../resources/stripes-100.png)\] at (-0.3) should be [url(../resources/stripes-100.png), url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <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/stripes-100.png), url(../resources/blue-100.png)\] to [url(../resources/blue-100.png), url(../resources/stripes-100.png)\] at (0.3) should be [url(../resources/stripes-100.png), url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <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
|
||||
|
||||
[CSS Transitions: property <background-image> from [url(../resources/blue-100.png)\] to [url(../resources/stripes-100.png), url(../resources/green-100.png)\] at (0) should be [url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: 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
|
||||
|
||||
[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.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/stripes-100.png), 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 [url(../resources/stripes-100.png), url(../resources/green-100.png)\] at (0.3) should be [url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <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 Transitions: 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 Transitions: 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 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.3) should be [url(../resources/blue-100.png), none\]]
|
||||
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) should be [url(../resources/blue-100.png), none\]]
|
||||
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.3) should be [url(../resources/blue-100.png), none\]]
|
||||
expected: FAIL
|
||||
|
|
|
@ -5,18 +5,9 @@
|
|||
[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: 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 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 [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
|
||||
|
||||
|
@ -26,51 +17,21 @@
|
|||
[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 [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 [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 [url(../support/aqua_color.png)\] to [url(../support/orange_color.png)\] at (0.3) should be [url(../support/orange_color.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <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
|
||||
|
||||
[Web Animations: property <border-image-source> from [inherit\] to [url(../support/orange_color.png)\] at (-0.3) should be [inherit\]]
|
||||
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 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
|
||||
|
||||
[Web 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
|
||||
|
||||
[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 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 [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 [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 [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 [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 [url(../support/aqua_color.png)\] to [linear-gradient(45deg, blue, orange)\] at (1.5) should be [linear-gradient(45deg, blue, orange)\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -83,39 +44,18 @@
|
|||
[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 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
|
||||
|
||||
[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
|
||||
|
||||
[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
|
||||
|
||||
[Web 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 [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.3) should be [none\]]
|
||||
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 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 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
|
||||
|
||||
|
@ -125,15 +65,9 @@
|
|||
[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 [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 [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 [initial\] to [url(../support/orange_color.png)\] at (0) 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
|
||||
|
||||
|
@ -152,78 +86,33 @@
|
|||
[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 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
|
||||
|
||||
[Web Animations: property <border-image-source> from [inherit\] to [url(../support/orange_color.png)\] at (0.3) should be [inherit\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web 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 [url(../support/aqua_color.png)\] to [url(../support/orange_color.png)\] at (0) should be [url(../support/orange_color.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-image-source> from [url(../support/aqua_color.png)\] to [url(../support/orange_color.png)\] at (0) should be [url(../support/orange_color.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-image-source> from [initial\] 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.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) 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: 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
|
||||
|
||||
[Web 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
|
||||
|
||||
[Web 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
|
||||
|
||||
[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
|
||||
|
||||
[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 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
|
||||
|
||||
[Web Animations: property <border-image-source> from [initial\] to [url(../support/orange_color.png)\] at (0.3) should be [initial\]]
|
||||
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 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 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 [url(../support/aqua_color.png)\] to [linear-gradient(45deg, blue, orange)\] at (0.3) should be [linear-gradient(45deg, blue, orange)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <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 [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
|
||||
|
||||
|
@ -236,36 +125,21 @@
|
|||
[Web 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 [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 [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
|
||||
|
||||
[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 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 (-0.3) 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.3) should be [unset\]]
|
||||
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
|
||||
|
||||
[CSS Transitions: property <border-image-source> from [none\] to [url(../support/orange_color.png)\] at (0) 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) should be [unset\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -274,4 +148,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
|
||||
|
||||
|
|
|
@ -1,13 +1,4 @@
|
|||
[discrete-no-interpolation.html]
|
||||
[CSS Transitions with transition: all: property <background-attachment> from [initial\] to [fixed\] at (-0.3) should be [fixed\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-attachment> from [initial\] to [fixed\] at (0) should be [fixed\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-attachment> from [initial\] to [fixed\] at (0.3) should be [fixed\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <background-attachment> from [initial\] to [fixed\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -113,15 +104,6 @@
|
|||
[Web Animations: property <background-blend-mode> from [initial\] to [overlay\] at (1.5) should be [overlay\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-clip> from [initial\] to [content-box\] at (-0.3) should be [content-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-clip> from [initial\] to [content-box\] at (0) should be [content-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-clip> from [initial\] to [content-box\] at (0.3) should be [content-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <background-clip> from [initial\] to [content-box\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -143,15 +125,6 @@
|
|||
[Web Animations: property <background-clip> from [initial\] to [content-box\] at (1.5) should be [content-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-origin> from [initial\] to [border-box\] at (-0.3) should be [border-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-origin> from [initial\] to [border-box\] at (0) should be [border-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-origin> from [initial\] to [border-box\] at (0.3) should be [border-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <background-origin> from [initial\] to [border-box\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -173,15 +146,6 @@
|
|||
[Web Animations: property <background-origin> from [initial\] to [border-box\] at (1.5) should be [border-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-repeat> from [initial\] to [round\] at (-0.3) should be [round\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-repeat> from [initial\] to [round\] at (0) should be [round\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-repeat> from [initial\] to [round\] at (0.3) should be [round\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <background-repeat> from [initial\] to [round\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -203,15 +167,6 @@
|
|||
[Web Animations: property <background-repeat> from [initial\] to [round\] at (1.5) should be [round\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-image-repeat> from [initial\] to [round\] at (-0.3) should be [round\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-image-repeat> from [initial\] to [round\] at (0) should be [round\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-image-repeat> from [initial\] to [round\] at (0.3) should be [round\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-image-repeat> from [initial\] to [round\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -233,15 +188,6 @@
|
|||
[Web Animations: property <border-image-repeat> from [initial\] to [round\] at (1.5) should be [round\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-attachment> from [initial\] to [fixed\] at (-0.3) should be [fixed\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-attachment> from [initial\] to [fixed\] at (0) should be [fixed\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-attachment> from [initial\] to [fixed\] at (0.3) should be [fixed\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-blend-mode> from [initial\] to [overlay\] at (-0.3) should be [overlay\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -250,39 +196,3 @@
|
|||
|
||||
[CSS Transitions: property <background-blend-mode> from [initial\] to [overlay\] at (0.3) should be [overlay\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-clip> from [initial\] to [content-box\] at (-0.3) should be [content-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-clip> from [initial\] to [content-box\] at (0) should be [content-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-clip> from [initial\] to [content-box\] at (0.3) should be [content-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-origin> from [initial\] to [border-box\] at (-0.3) should be [border-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-origin> from [initial\] to [border-box\] at (0) should be [border-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-origin> from [initial\] to [border-box\] at (0.3) should be [border-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-repeat> from [initial\] to [round\] at (-0.3) should be [round\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-repeat> from [initial\] to [round\] at (0) should be [round\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-repeat> from [initial\] to [round\] at (0.3) should be [round\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-image-repeat> from [initial\] to [round\] at (-0.3) should be [round\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-image-repeat> from [initial\] to [round\] at (0) should be [round\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-image-repeat> from [initial\] to [round\] at (0.3) should be [round\]]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,22 +1,4 @@
|
|||
[content-no-interpolation.html]
|
||||
[CSS Transitions: property <content> from [initial\] to ["b"\] at (-0.3) should be ["b"\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <content> from [initial\] to ["b"\] at (0) should be ["b"\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <content> from [initial\] to ["b"\] at (0.3) should be ["b"\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <content> from [initial\] to ["b"\] at (-0.3) should be ["b"\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <content> from [initial\] to ["b"\] at (0) should be ["b"\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <content> from [initial\] to ["b"\] at (0.3) should be ["b"\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <content> from [initial\] to ["b"\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,13 +1,4 @@
|
|||
[discrete-no-interpolation.html]
|
||||
[CSS Transitions with transition: all: property <flex-direction> from [initial\] to [column\] at (-0.3) should be [column\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <flex-direction> from [initial\] to [column\] at (0) should be [column\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <flex-direction> from [initial\] to [column\] at (0.3) should be [column\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <flex-direction> from [initial\] to [column\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -29,15 +20,6 @@
|
|||
[Web Animations: property <flex-direction> from [initial\] to [column\] at (1.5) should be [column\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <flex-wrap> from [initial\] to [wrap\] at (-0.3) should be [wrap\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <flex-wrap> from [initial\] to [wrap\] at (0) should be [wrap\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <flex-wrap> from [initial\] to [wrap\] at (0.3) should be [wrap\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <flex-wrap> from [initial\] to [wrap\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -58,21 +40,3 @@
|
|||
|
||||
[Web Animations: property <flex-wrap> from [initial\] to [wrap\] at (1.5) should be [wrap\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <flex-direction> from [initial\] to [column\] at (-0.3) should be [column\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <flex-direction> from [initial\] to [column\] at (0) should be [column\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <flex-direction> from [initial\] to [column\] at (0.3) should be [column\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <flex-wrap> from [initial\] to [wrap\] at (-0.3) should be [wrap\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <flex-wrap> from [initial\] to [wrap\] at (0) should be [wrap\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <flex-wrap> from [initial\] to [wrap\] at (0.3) should be [wrap\]]
|
||||
expected: FAIL
|
||||
|
|
|
@ -701,15 +701,6 @@
|
|||
[Web Animations: property <font-variant-alternates> from [initial\] to [historical-forms\] at (1.5) should be [historical-forms\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <font-variant-caps> from [initial\] to [small-caps\] at (-0.3) should be [small-caps\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <font-variant-caps> from [initial\] to [small-caps\] at (0) should be [small-caps\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <font-variant-caps> from [initial\] to [small-caps\] at (0.3) should be [small-caps\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <font-variant-caps> from [initial\] to [small-caps\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -1067,24 +1058,6 @@
|
|||
[Web Animations: property <font-variant-position> from [initial\] to [super\] at (1.5) should be [super\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <font-family> from [serif\] to [monospace\] at (-0.3) should be [monospace\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <font-family> from [serif\] to [monospace\] at (0) should be [monospace\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <font-family> from [serif\] to [monospace\] at (0.3) should be [monospace\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <font-family> from [serif\] to [monospace\] at (-0.3) should be [monospace\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <font-family> from [serif\] to [monospace\] at (0) should be [monospace\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <font-family> from [serif\] to [monospace\] at (0.3) should be [monospace\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <font-family> from [serif\] to [monospace\] at (-0.3) should be [serif\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -1178,15 +1151,6 @@
|
|||
[CSS Transitions: property <font-variant-alternates> from [initial\] to [historical-forms\] at (0.3) should be [historical-forms\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <font-variant-caps> from [initial\] to [small-caps\] at (-0.3) should be [small-caps\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <font-variant-caps> from [initial\] to [small-caps\] at (0) should be [small-caps\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <font-variant-caps> from [initial\] to [small-caps\] at (0.3) should be [small-caps\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <font-variant-east-asian> from [initial\] to [full-width\] at (-0.3) should be [full-width\]]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -83,15 +83,6 @@
|
|||
[Web Animations: property <image-orientation> from [initial\] to [none\] at (1.5) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <image-rendering> from [initial\] to [pixelated\] at (-0.3) should be [pixelated\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <image-rendering> from [initial\] to [pixelated\] at (0) should be [pixelated\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <image-rendering> from [initial\] to [pixelated\] at (0.3) should be [pixelated\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <image-rendering> from [initial\] to [pixelated\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -121,12 +112,3 @@
|
|||
|
||||
[CSS Transitions: property <image-orientation> from [initial\] to [none\] at (0.3) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <image-rendering> from [initial\] to [pixelated\] at (-0.3) should be [pixelated\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <image-rendering> from [initial\] to [pixelated\] at (0) should be [pixelated\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <image-rendering> from [initial\] to [pixelated\] at (0.3) should be [pixelated\]]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,22 +1,4 @@
|
|||
[caption-side-no-interpolation.html]
|
||||
[CSS Transitions: property <caption-side> from [initial\] to [bottom\] at (-0.3) should be [bottom\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <caption-side> from [initial\] to [bottom\] at (0) should be [bottom\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <caption-side> from [initial\] to [bottom\] at (0.3) should be [bottom\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <caption-side> from [initial\] to [bottom\] at (-0.3) should be [bottom\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <caption-side> from [initial\] to [bottom\] at (0) should be [bottom\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <caption-side> from [initial\] to [bottom\] at (0.3) should be [bottom\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <caption-side> from [initial\] to [bottom\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,22 +1,4 @@
|
|||
[float-interpolation.html]
|
||||
[CSS Transitions: property <float> from [left\] to [right\] at (-0.3) should be [right\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <float> from [left\] to [right\] at (0) should be [right\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <float> from [left\] to [right\] at (0.3) should be [right\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <float> from [left\] to [right\] at (-0.3) should be [right\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <float> from [left\] to [right\] at (0) should be [right\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <float> from [left\] to [right\] at (0.3) should be [right\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <float> from [left\] to [right\] at (-0.3) should be [left\]]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,13 +1,4 @@
|
|||
[position-interpolation.html]
|
||||
[CSS Transitions with transition: all: property <position> from [absolute\] to [static\] at (-0.3) should be [static\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <position> from [absolute\] to [static\] at (0) should be [static\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <position> from [absolute\] to [static\] at (0.3) should be [static\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <position> from [absolute\] to [static\] at (-0.3) should be [absolute\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -28,12 +19,3 @@
|
|||
|
||||
[Web Animations: property <position> from [absolute\] to [static\] at (1.5) should be [static\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <position> from [absolute\] to [static\] at (-0.3) should be [static\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <position> from [absolute\] to [static\] at (0) should be [static\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <position> from [absolute\] to [static\] at (0.3) should be [static\]]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,13 +1,4 @@
|
|||
[discrete-no-interpolation.html]
|
||||
[CSS Transitions with transition: all: property <text-decoration-line> from [initial\] to [underline\] at (-0.3) should be [underline\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <text-decoration-line> from [initial\] to [underline\] at (0) should be [underline\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <text-decoration-line> from [initial\] to [underline\] at (0.3) should be [underline\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <text-decoration-line> from [initial\] to [underline\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -38,15 +29,6 @@
|
|||
[CSS Transitions: property <text-decoration-style> from [initial\] to [dashed\] at (0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <text-decoration-style> from [initial\] to [dashed\] at (-0.3) should be [dashed\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <text-decoration-style> from [initial\] to [dashed\] at (0) should be [dashed\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <text-decoration-style> from [initial\] to [dashed\] at (0.3) should be [dashed\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <text-decoration-style> from [initial\] to [dashed\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -404,24 +386,6 @@
|
|||
[Web Animations: property <text-underline-position> from [initial\] to [under\] at (1.5) should be [under\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <text-decoration-line> from [initial\] to [underline\] at (-0.3) should be [underline\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <text-decoration-line> from [initial\] to [underline\] at (0) should be [underline\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <text-decoration-line> from [initial\] to [underline\] at (0.3) should be [underline\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <text-decoration-style> from [initial\] to [dashed\] at (-0.3) should be [dashed\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <text-decoration-style> from [initial\] to [dashed\] at (0) should be [dashed\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <text-decoration-style> from [initial\] to [dashed\] at (0.3) should be [dashed\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <text-decoration-thickness> from [initial\] to [123px\] at (-0.3) should be [123px\]]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,22 +1,4 @@
|
|||
[text-justify-interpolation.html]
|
||||
[CSS Transitions: property <text-justify> from [auto\] to [inter-word\] at (-0.3) should be [inter-word\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <text-justify> from [auto\] to [inter-word\] at (0) should be [inter-word\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <text-justify> from [auto\] to [inter-word\] at (0.3) should be [inter-word\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <text-justify> from [auto\] to [inter-word\] at (-0.3) should be [inter-word\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <text-justify> from [auto\] to [inter-word\] at (0) should be [inter-word\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <text-justify> from [auto\] to [inter-word\] at (0.3) should be [inter-word\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <text-justify> from [auto\] to [inter-word\] at (-0.3) should be [auto\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -38,24 +20,6 @@
|
|||
[Web Animations: property <text-justify> from [auto\] to [inter-word\] at (1.5) should be [inter-word\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <text-justify> from [auto\] to [inter-character\] at (-0.3) should be [inter-character\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <text-justify> from [auto\] to [inter-character\] at (0) should be [inter-character\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <text-justify> from [auto\] to [inter-character\] at (0.3) should be [inter-character\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <text-justify> from [auto\] to [inter-character\] at (-0.3) should be [inter-character\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <text-justify> from [auto\] to [inter-character\] at (0) should be [inter-character\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <text-justify> from [auto\] to [inter-character\] at (0.3) should be [inter-character\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <text-justify> from [auto\] to [inter-character\] at (-0.3) should be [auto\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -98,24 +62,6 @@
|
|||
[Web Animations: property <text-justify> from [inter-character\] to [distribute\] at (1.5) should be [distribute\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <text-justify> from [inter-word\] to [distribute\] at (-0.3) should be [distribute\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <text-justify> from [inter-word\] to [distribute\] at (0) should be [distribute\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <text-justify> from [inter-word\] to [distribute\] at (0.3) should be [distribute\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <text-justify> from [inter-word\] to [distribute\] at (-0.3) should be [distribute\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <text-justify> from [inter-word\] to [distribute\] at (0) should be [distribute\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <text-justify> from [inter-word\] to [distribute\] at (0.3) should be [distribute\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <text-justify> from [inter-word\] to [distribute\] at (-0.3) should be [inter-word\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -137,24 +83,6 @@
|
|||
[Web Animations: property <text-justify> from [inter-word\] to [distribute\] at (1.5) should be [distribute\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <text-justify> from [distribute\] to [none\] at (-0.3) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <text-justify> from [distribute\] to [none\] at (0) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <text-justify> from [distribute\] to [none\] at (0.3) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <text-justify> from [distribute\] to [none\] at (-0.3) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <text-justify> from [distribute\] to [none\] at (0) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <text-justify> from [distribute\] to [none\] at (0.3) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <text-justify> from [distribute\] to [none\] at (-0.3) should be [distribute\]]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,13 +1,4 @@
|
|||
[backface-visibility-no-interpolation.html]
|
||||
[CSS Transitions with transition: all: property <backface-visibility> from [initial\] to [hidden\] at (-0.3) should be [hidden\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <backface-visibility> from [initial\] to [hidden\] at (0) should be [hidden\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <backface-visibility> from [initial\] to [hidden\] at (0.3) should be [hidden\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <backface-visibility> from [initial\] to [hidden\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -28,12 +19,3 @@
|
|||
|
||||
[Web Animations: property <backface-visibility> from [initial\] to [hidden\] at (1.5) should be [hidden\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <backface-visibility> from [initial\] to [hidden\] at (-0.3) should be [hidden\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <backface-visibility> from [initial\] to [hidden\] at (0) should be [hidden\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <backface-visibility> from [initial\] to [hidden\] at (0.3) should be [hidden\]]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,13 +1,4 @@
|
|||
[cursor-no-interpolation.html]
|
||||
[CSS Transitions with transition: all: property <cursor> from [initial\] to [none\] at (-0.3) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <cursor> from [initial\] to [none\] at (0) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <cursor> from [initial\] to [none\] at (0.3) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <cursor> from [initial\] to [none\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -28,12 +19,3 @@
|
|||
|
||||
[Web Animations: property <cursor> from [initial\] to [none\] at (1.5) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <cursor> from [initial\] to [none\] at (-0.3) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <cursor> from [initial\] to [none\] at (0) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <cursor> from [initial\] to [none\] at (0.3) should be [none\]]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,13 +1,4 @@
|
|||
[discrete-no-interpolation.html]
|
||||
[CSS Transitions with transition: all: property <border-left-style> from [initial\] to [dotted\] at (-0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-left-style> from [initial\] to [dotted\] at (0) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-left-style> from [initial\] to [dotted\] at (0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-left-style> from [initial\] to [dotted\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -29,15 +20,6 @@
|
|||
[Web Animations: property <border-left-style> from [initial\] to [dotted\] at (1.5) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-right-style> from [initial\] to [dotted\] at (-0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-right-style> from [initial\] to [dotted\] at (0) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-right-style> from [initial\] to [dotted\] at (0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-right-style> from [initial\] to [dotted\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -59,15 +41,6 @@
|
|||
[Web Animations: property <border-right-style> from [initial\] to [dotted\] at (1.5) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-top-style> from [initial\] to [dotted\] at (-0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-top-style> from [initial\] to [dotted\] at (0) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-top-style> from [initial\] to [dotted\] at (0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-top-style> from [initial\] to [dotted\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -89,15 +62,6 @@
|
|||
[Web Animations: property <border-top-style> from [initial\] to [dotted\] at (1.5) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-bottom-style> from [initial\] to [dotted\] at (-0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-bottom-style> from [initial\] to [dotted\] at (0) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-bottom-style> from [initial\] to [dotted\] at (0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-bottom-style> from [initial\] to [dotted\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -118,39 +82,3 @@
|
|||
|
||||
[Web Animations: property <border-bottom-style> from [initial\] to [dotted\] at (1.5) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-left-style> from [initial\] to [dotted\] at (-0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-left-style> from [initial\] to [dotted\] at (0) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-left-style> from [initial\] to [dotted\] at (0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-right-style> from [initial\] to [dotted\] at (-0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-right-style> from [initial\] to [dotted\] at (0) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-right-style> from [initial\] to [dotted\] at (0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-top-style> from [initial\] to [dotted\] at (-0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-top-style> from [initial\] to [dotted\] at (0) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-top-style> from [initial\] to [dotted\] at (0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-bottom-style> from [initial\] to [dotted\] at (-0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-bottom-style> from [initial\] to [dotted\] at (0) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-bottom-style> from [initial\] to [dotted\] at (0.3) should be [dotted\]]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,13 +1,4 @@
|
|||
[clear-no-interpolation.html]
|
||||
[CSS Transitions with transition: all: property <clear> from [initial\] to [both\] at (-0.3) should be [both\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <clear> from [initial\] to [both\] at (0) should be [both\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <clear> from [initial\] to [both\] at (0.3) should be [both\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <clear> from [initial\] to [both\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -28,12 +19,3 @@
|
|||
|
||||
[Web Animations: property <clear> from [initial\] to [both\] at (1.5) should be [both\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <clear> from [initial\] to [both\] at (-0.3) should be [both\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <clear> from [initial\] to [both\] at (0) should be [both\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <clear> from [initial\] to [both\] at (0.3) should be [both\]]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,13 +1,4 @@
|
|||
[float-no-interpolation.html]
|
||||
[CSS Transitions with transition: all: property <float> from [initial\] to [right\] at (-0.3) should be [right\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <float> from [initial\] to [right\] at (0) should be [right\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <float> from [initial\] to [right\] at (0.3) should be [right\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <float> from [initial\] to [right\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -28,12 +19,3 @@
|
|||
|
||||
[Web Animations: property <float> from [initial\] to [right\] at (1.5) should be [right\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <float> from [initial\] to [right\] at (-0.3) should be [right\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <float> from [initial\] to [right\] at (0) should be [right\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <float> from [initial\] to [right\] at (0.3) should be [right\]]
|
||||
expected: FAIL
|
||||
|
|
|
@ -59,15 +59,6 @@
|
|||
[Web Animations: property <display> from [none\] to [block\] at (1.5) should be [block\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <display> from [inline\] to [block\] at (-0.3) should be [block\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <display> from [inline\] to [block\] at (0) should be [block\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <display> from [inline\] to [block\] at (0.3) should be [block\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <display> from [inline\] to [block\] at (-0.3) should be [inline\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -152,15 +143,6 @@
|
|||
[Web Animations: property <display> from [none\] to [none\] at (1.5) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <display> from [inline\] to [block\] at (-0.3) should be [block\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <display> from [inline\] to [block\] at (0) should be [block\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <display> from [inline\] to [block\] at (0.3) should be [block\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <display> from [block\] to [none\] at (-1) should be [block\]]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -269,3 +269,200 @@
|
|||
[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 neutral to [url(../resources/green-100.png)\] at (-0.3) should be [url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-image> from neutral to [url(../resources/green-100.png)\] at (0) should be [url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: 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 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 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 neutral to [url(../resources/green-100.png)\] at (0.3) should be [url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-image> from [initial\] to [url(../resources/green-100.png)\] at (-0.3) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-image> from [initial\] to [url(../resources/green-100.png)\] at (0) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: 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 [initial\] to [url(../resources/green-100.png)\] at (-0.3) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-image> from [initial\] 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 (0.3) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-image> from [inherit\] to [url(../resources/green-100.png)\] at (-0.3) should be [url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-image> from [inherit\] to [url(../resources/green-100.png)\] at (0) should be [url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-image> from [inherit\] to [url(../resources/green-100.png)\] at (0.3) should be [url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-image> from [inherit\] to [url(../resources/green-100.png)\] at (-0.3) should be [url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-image> from [inherit\] to [url(../resources/green-100.png)\] at (0) should be [url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-image> from [inherit\] to [url(../resources/green-100.png)\] at (0.3) should be [url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: 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 [unset\] to [url(../resources/green-100.png)\] at (0) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: 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 [unset\] 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) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: 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 [url(../resources/blue-100.png)\] to [url(../resources/green-100.png)\] at (-0.3) should be [url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: 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 Transitions: 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 Transitions with transition: all: 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 Transitions with transition: all: 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 Transitions with transition: all: 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 Transitions: 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)\] to [linear-gradient(45deg, blue, orange)\] at (0) should be [url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: 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 with transition: all: 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 with transition: all: 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 Transitions with transition: all: 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 [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (-0.3) should be [linear-gradient(-45deg, red, yellow)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <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 [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 <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 Transitions with transition: all: 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 [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0.3) should be [linear-gradient(-45deg, red, yellow)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-image> from [none\] 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) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-image> from [none\] to [url(../resources/green-100.png)\] at (0.3) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-image> from [none\] to [url(../resources/green-100.png)\] at (-0.3) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: 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 [none\] to [url(../resources/green-100.png)\] at (0.3) should be [none\]]
|
||||
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.3) should be [url(../resources/stripes-100.png), url(../resources/blue-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 (0) should be [url(../resources/stripes-100.png), url(../resources/blue-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 (0.3) 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/stripes-100.png), url(../resources/blue-100.png)\] to [url(../resources/blue-100.png), url(../resources/stripes-100.png)\] at (-0.3) should be [url(../resources/stripes-100.png), url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <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/stripes-100.png), url(../resources/blue-100.png)\] to [url(../resources/blue-100.png), url(../resources/stripes-100.png)\] at (0.3) should be [url(../resources/stripes-100.png), url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <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
|
||||
|
||||
[CSS Transitions: property <background-image> from [url(../resources/blue-100.png)\] to [url(../resources/stripes-100.png), url(../resources/green-100.png)\] at (0) should be [url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: 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
|
||||
|
||||
[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.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/stripes-100.png), 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 [url(../resources/stripes-100.png), url(../resources/green-100.png)\] at (0.3) should be [url(../resources/blue-100.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <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 Transitions: 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 Transitions: 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 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.3) should be [url(../resources/blue-100.png), none\]]
|
||||
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) should be [url(../resources/blue-100.png), none\]]
|
||||
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.3) should be [url(../resources/blue-100.png), none\]]
|
||||
expected: FAIL
|
||||
|
|
|
@ -145,130 +145,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 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.3) 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.3) 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 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
|
||||
|
||||
[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
|
||||
|
||||
[CSS Transitions with transition: all: 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
|
||||
|
||||
[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 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 [unset\] to [url(../support/orange_color.png)\] at (-0.3) should be [url(../support/orange_color.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <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 [none\] 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 [initial\] 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) 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.3) 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 (-0.3) 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.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.3) 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
|
||||
|
||||
[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 [initial\] 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.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: property <border-image-source> from [url(../support/aqua_color.png)\] to [url(../support/orange_color.png)\] at (0) should be [url(../support/orange_color.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-image-source> from [url(../support/aqua_color.png)\] to [url(../support/orange_color.png)\] at (0) should be [url(../support/orange_color.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <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 [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 [url(../support/aqua_color.png)\] to [linear-gradient(45deg, blue, orange)\] at (0.3) should be [linear-gradient(45deg, blue, orange)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <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
|
||||
|
||||
[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 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 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 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 [url(../support/aqua_color.png)\] to [linear-gradient(45deg, blue, orange)\] at (0.3) should be [linear-gradient(45deg, blue, orange)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <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 [none\] 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.3) 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 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 (-0.3) 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) should be [url(../support/orange_color.png)\]]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -8,15 +8,6 @@
|
|||
[CSS Transitions: property <background-attachment> from [initial\] to [fixed\] at (0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-attachment> from [initial\] to [fixed\] at (-0.3) should be [fixed\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-attachment> from [initial\] to [fixed\] at (0) should be [fixed\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-attachment> from [initial\] to [fixed\] at (0.3) should be [fixed\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <background-attachment> from [initial\] to [fixed\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -122,15 +113,6 @@
|
|||
[Web Animations: property <background-blend-mode> from [initial\] to [overlay\] at (1.5) should be [overlay\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-clip> from [initial\] to [content-box\] at (-0.3) should be [content-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-clip> from [initial\] to [content-box\] at (0) should be [content-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-clip> from [initial\] to [content-box\] at (0.3) should be [content-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <background-clip> from [initial\] to [content-box\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -152,15 +134,6 @@
|
|||
[Web Animations: property <background-clip> from [initial\] to [content-box\] at (1.5) should be [content-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-origin> from [initial\] to [border-box\] at (-0.3) should be [border-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-origin> from [initial\] to [border-box\] at (0) should be [border-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-origin> from [initial\] to [border-box\] at (0.3) should be [border-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <background-origin> from [initial\] to [border-box\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -182,15 +155,6 @@
|
|||
[Web Animations: property <background-origin> from [initial\] to [border-box\] at (1.5) should be [border-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-repeat> from [initial\] to [round\] at (-0.3) should be [round\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-repeat> from [initial\] to [round\] at (0) should be [round\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-repeat> from [initial\] to [round\] at (0.3) should be [round\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <background-repeat> from [initial\] to [round\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -212,15 +176,6 @@
|
|||
[Web Animations: property <background-repeat> from [initial\] to [round\] at (1.5) should be [round\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-image-repeat> from [initial\] to [round\] at (-0.3) should be [round\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-image-repeat> from [initial\] to [round\] at (0) should be [round\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-image-repeat> from [initial\] to [round\] at (0.3) should be [round\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-image-repeat> from [initial\] to [round\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -242,15 +197,6 @@
|
|||
[Web Animations: property <border-image-repeat> from [initial\] to [round\] at (1.5) should be [round\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-attachment> from [initial\] to [fixed\] at (-0.3) should be [fixed\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-attachment> from [initial\] to [fixed\] at (0) should be [fixed\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-attachment> from [initial\] to [fixed\] at (0.3) should be [fixed\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-blend-mode> from [initial\] to [overlay\] at (-0.3) should be [overlay\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -259,39 +205,3 @@
|
|||
|
||||
[CSS Transitions: property <background-blend-mode> from [initial\] to [overlay\] at (0.3) should be [overlay\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-clip> from [initial\] to [content-box\] at (-0.3) should be [content-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-clip> from [initial\] to [content-box\] at (0) should be [content-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-clip> from [initial\] to [content-box\] at (0.3) should be [content-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-origin> from [initial\] to [border-box\] at (-0.3) should be [border-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-origin> from [initial\] to [border-box\] at (0) should be [border-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-origin> from [initial\] to [border-box\] at (0.3) should be [border-box\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-repeat> from [initial\] to [round\] at (-0.3) should be [round\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-repeat> from [initial\] to [round\] at (0) should be [round\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-repeat> from [initial\] to [round\] at (0.3) should be [round\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-image-repeat> from [initial\] to [round\] at (-0.3) should be [round\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-image-repeat> from [initial\] to [round\] at (0) should be [round\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-image-repeat> from [initial\] to [round\] at (0.3) should be [round\]]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,13 +1,4 @@
|
|||
[content-no-interpolation.html]
|
||||
[CSS Transitions with transition: all: property <content> from [initial\] to ["b"\] at (-0.3) should be ["b"\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <content> from [initial\] to ["b"\] at (0) should be ["b"\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <content> from [initial\] to ["b"\] at (0.3) should be ["b"\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <content> from [initial\] to ["b"\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -28,12 +19,3 @@
|
|||
|
||||
[Web Animations: property <content> from [initial\] to ["b"\] at (1.5) should be ["b"\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <content> from [initial\] to ["b"\] at (-0.3) should be ["b"\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <content> from [initial\] to ["b"\] at (0) should be ["b"\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <content> from [initial\] to ["b"\] at (0.3) should be ["b"\]]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,13 +1,4 @@
|
|||
[discrete-no-interpolation.html]
|
||||
[CSS Transitions with transition: all: property <flex-direction> from [initial\] to [column\] at (-0.3) should be [column\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <flex-direction> from [initial\] to [column\] at (0) should be [column\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <flex-direction> from [initial\] to [column\] at (0.3) should be [column\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <flex-direction> from [initial\] to [column\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -29,15 +20,6 @@
|
|||
[Web Animations: property <flex-direction> from [initial\] to [column\] at (1.5) should be [column\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <flex-wrap> from [initial\] to [wrap\] at (-0.3) should be [wrap\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <flex-wrap> from [initial\] to [wrap\] at (0) should be [wrap\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <flex-wrap> from [initial\] to [wrap\] at (0.3) should be [wrap\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <flex-wrap> from [initial\] to [wrap\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -58,21 +40,3 @@
|
|||
|
||||
[Web Animations: property <flex-wrap> from [initial\] to [wrap\] at (1.5) should be [wrap\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <flex-direction> from [initial\] to [column\] at (-0.3) should be [column\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <flex-direction> from [initial\] to [column\] at (0) should be [column\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <flex-direction> from [initial\] to [column\] at (0.3) should be [column\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <flex-wrap> from [initial\] to [wrap\] at (-0.3) should be [wrap\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <flex-wrap> from [initial\] to [wrap\] at (0) should be [wrap\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <flex-wrap> from [initial\] to [wrap\] at (0.3) should be [wrap\]]
|
||||
expected: FAIL
|
||||
|
|
|
@ -701,15 +701,6 @@
|
|||
[Web Animations: property <font-variant-alternates> from [initial\] to [historical-forms\] at (1.5) should be [historical-forms\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <font-variant-caps> from [initial\] to [small-caps\] at (-0.3) should be [small-caps\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <font-variant-caps> from [initial\] to [small-caps\] at (0) should be [small-caps\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <font-variant-caps> from [initial\] to [small-caps\] at (0.3) should be [small-caps\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <font-variant-caps> from [initial\] to [small-caps\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -1067,24 +1058,6 @@
|
|||
[Web Animations: property <font-variant-position> from [initial\] to [super\] at (1.5) should be [super\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <font-family> from [serif\] to [monospace\] at (-0.3) should be [monospace\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <font-family> from [serif\] to [monospace\] at (0) should be [monospace\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <font-family> from [serif\] to [monospace\] at (0.3) should be [monospace\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <font-family> from [serif\] to [monospace\] at (-0.3) should be [monospace\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <font-family> from [serif\] to [monospace\] at (0) should be [monospace\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <font-family> from [serif\] to [monospace\] at (0.3) should be [monospace\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <font-family> from [serif\] to [monospace\] at (-0.3) should be [serif\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -1178,15 +1151,6 @@
|
|||
[CSS Transitions: property <font-variant-alternates> from [initial\] to [historical-forms\] at (0.3) should be [historical-forms\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <font-variant-caps> from [initial\] to [small-caps\] at (-0.3) should be [small-caps\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <font-variant-caps> from [initial\] to [small-caps\] at (0) should be [small-caps\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <font-variant-caps> from [initial\] to [small-caps\] at (0.3) should be [small-caps\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <font-variant-east-asian> from [initial\] to [full-width\] at (-0.3) should be [full-width\]]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -83,15 +83,6 @@
|
|||
[Web Animations: property <image-orientation> from [initial\] to [none\] at (1.5) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <image-rendering> from [initial\] to [pixelated\] at (-0.3) should be [pixelated\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <image-rendering> from [initial\] to [pixelated\] at (0) should be [pixelated\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <image-rendering> from [initial\] to [pixelated\] at (0.3) should be [pixelated\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <image-rendering> from [initial\] to [pixelated\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -121,12 +112,3 @@
|
|||
|
||||
[CSS Transitions: property <image-orientation> from [initial\] to [none\] at (0.3) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <image-rendering> from [initial\] to [pixelated\] at (-0.3) should be [pixelated\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <image-rendering> from [initial\] to [pixelated\] at (0) should be [pixelated\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <image-rendering> from [initial\] to [pixelated\] at (0.3) should be [pixelated\]]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,13 +1,4 @@
|
|||
[float-interpolation.html]
|
||||
[CSS Transitions with transition: all: property <float> from [left\] to [right\] at (-0.3) should be [right\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <float> from [left\] to [right\] at (0) should be [right\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <float> from [left\] to [right\] at (0.3) should be [right\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <float> from [left\] to [right\] at (-0.3) should be [left\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -28,12 +19,3 @@
|
|||
|
||||
[Web Animations: property <float> from [left\] to [right\] at (1.5) should be [right\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <float> from [left\] to [right\] at (-0.3) should be [right\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <float> from [left\] to [right\] at (0) should be [right\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <float> from [left\] to [right\] at (0.3) should be [right\]]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,13 +1,4 @@
|
|||
[position-interpolation.html]
|
||||
[CSS Transitions with transition: all: property <position> from [absolute\] to [static\] at (-0.3) should be [static\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <position> from [absolute\] to [static\] at (0) should be [static\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <position> from [absolute\] to [static\] at (0.3) should be [static\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <position> from [absolute\] to [static\] at (-0.3) should be [absolute\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -28,12 +19,3 @@
|
|||
|
||||
[Web Animations: property <position> from [absolute\] to [static\] at (1.5) should be [static\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <position> from [absolute\] to [static\] at (-0.3) should be [static\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <position> from [absolute\] to [static\] at (0) should be [static\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <position> from [absolute\] to [static\] at (0.3) should be [static\]]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,13 +1,4 @@
|
|||
[discrete-no-interpolation.html]
|
||||
[CSS Transitions with transition: all: property <text-decoration-line> from [initial\] to [underline\] at (-0.3) should be [underline\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <text-decoration-line> from [initial\] to [underline\] at (0) should be [underline\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <text-decoration-line> from [initial\] to [underline\] at (0.3) should be [underline\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <text-decoration-line> from [initial\] to [underline\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -29,15 +20,6 @@
|
|||
[Web Animations: property <text-decoration-line> from [initial\] to [underline\] at (1.5) should be [underline\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <text-decoration-style> from [initial\] to [dashed\] at (-0.3) should be [dashed\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <text-decoration-style> from [initial\] to [dashed\] at (0) should be [dashed\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <text-decoration-style> from [initial\] to [dashed\] at (0.3) should be [dashed\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <text-decoration-style> from [initial\] to [dashed\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -395,24 +377,6 @@
|
|||
[Web Animations: property <text-underline-position> from [initial\] to [under\] at (1.5) should be [under\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <text-decoration-line> from [initial\] to [underline\] at (-0.3) should be [underline\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <text-decoration-line> from [initial\] to [underline\] at (0) should be [underline\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <text-decoration-line> from [initial\] to [underline\] at (0.3) should be [underline\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <text-decoration-style> from [initial\] to [dashed\] at (-0.3) should be [dashed\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <text-decoration-style> from [initial\] to [dashed\] at (0) should be [dashed\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <text-decoration-style> from [initial\] to [dashed\] at (0.3) should be [dashed\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <text-decoration-thickness> from [initial\] to [123px\] at (-0.3) should be [123px\]]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,13 +1,4 @@
|
|||
[backface-visibility-no-interpolation.html]
|
||||
[CSS Transitions with transition: all: property <backface-visibility> from [initial\] to [hidden\] at (-0.3) should be [hidden\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <backface-visibility> from [initial\] to [hidden\] at (0) should be [hidden\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <backface-visibility> from [initial\] to [hidden\] at (0.3) should be [hidden\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <backface-visibility> from [initial\] to [hidden\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -28,12 +19,3 @@
|
|||
|
||||
[Web Animations: property <backface-visibility> from [initial\] to [hidden\] at (1.5) should be [hidden\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <backface-visibility> from [initial\] to [hidden\] at (-0.3) should be [hidden\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <backface-visibility> from [initial\] to [hidden\] at (0) should be [hidden\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <backface-visibility> from [initial\] to [hidden\] at (0.3) should be [hidden\]]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,13 +1,4 @@
|
|||
[cursor-no-interpolation.html]
|
||||
[CSS Transitions with transition: all: property <cursor> from [initial\] to [none\] at (-0.3) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <cursor> from [initial\] to [none\] at (0) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <cursor> from [initial\] to [none\] at (0.3) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <cursor> from [initial\] to [none\] at (-0.3) should be [initial\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -28,12 +19,3 @@
|
|||
|
||||
[Web Animations: property <cursor> from [initial\] to [none\] at (1.5) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <cursor> from [initial\] to [none\] at (-0.3) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <cursor> from [initial\] to [none\] at (0) should be [none\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <cursor> from [initial\] to [none\] at (0.3) should be [none\]]
|
||||
expected: FAIL
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue