mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 13:49:16 +00:00
LibWeb: Clamp interpolated values to the range of their numeric type
This fixes a UBSAN warning that we previously hit when interpolating color values.
This commit is contained in:
parent
58ffc56c38
commit
09f4d90594
Notes:
github-actions[bot]
2025-05-19 10:32:56 +00:00
Author: https://github.com/tcl3
Commit: 09f4d90594
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4811
Reviewed-by: https://github.com/AtkinsSJ ✅
4 changed files with 584 additions and 592 deletions
|
@ -38,9 +38,13 @@ static T interpolate_raw(T from, T to, float delta)
|
|||
{
|
||||
if constexpr (AK::Detail::IsSame<T, double>) {
|
||||
return from + (to - from) * static_cast<double>(delta);
|
||||
} else {
|
||||
return static_cast<AK::Detail::RemoveCVReference<T>>(from + (to - from) * delta);
|
||||
} else if constexpr (AK::Detail::IsIntegral<T>) {
|
||||
auto from_float = static_cast<float>(from);
|
||||
auto to_float = static_cast<float>(to);
|
||||
auto unclamped_result = from_float + (to_float - from_float) * delta;
|
||||
return static_cast<AK::Detail::RemoveCVReference<T>>(clamp(unclamped_result, NumericLimits<T>::min(), NumericLimits<T>::max()));
|
||||
}
|
||||
return static_cast<AK::Detail::RemoveCVReference<T>>(from + (to - from) * delta);
|
||||
}
|
||||
|
||||
static NonnullRefPtr<CSSStyleValue const> with_keyword_values_resolved(DOM::Element& element, PropertyID property_id, CSSStyleValue const& value)
|
||||
|
|
|
@ -124,7 +124,6 @@ Text/input/wpt-import/css/css-nesting/pseudo-where-crash.html
|
|||
|
||||
; Imported animation tests are extra slow
|
||||
; https://github.com/LadybirdBrowser/ladybird/issues/2238
|
||||
Text/input/wpt-import/css/css-backgrounds/animations/background-color-interpolation.html
|
||||
Text/input/wpt-import/css/css-backgrounds/animations/background-color-transition-colormix.html
|
||||
Text/input/wpt-import/css/css-backgrounds/animations/background-image-interpolation.html
|
||||
Text/input/wpt-import/css/css-backgrounds/animations/background-size-interpolation.html
|
||||
|
@ -147,7 +146,6 @@ Text/input/wpt-import/css/css-backgrounds/animations/border-top-left-radius-comp
|
|||
Text/input/wpt-import/css/css-backgrounds/animations/border-top-right-radius-composition.html
|
||||
Text/input/wpt-import/css/css-backgrounds/animations/border-top-width-composition.html
|
||||
Text/input/wpt-import/css/css-backgrounds/animations/box-shadow-composition.html
|
||||
Text/input/wpt-import/css/css-backgrounds/animations/box-shadow-interpolation.html
|
||||
Text/input/wpt-import/css/css-backgrounds/animations/discrete-no-interpolation.html
|
||||
|
||||
; Crashes inconsistently on CI
|
||||
|
|
|
@ -1,46 +1,41 @@
|
|||
Summary
|
||||
|
||||
Harness status: OK
|
||||
|
||||
Rerun
|
||||
|
||||
Found 172 tests
|
||||
|
||||
50 Pass
|
||||
122 Fail
|
||||
Details
|
||||
Result Test Name MessageFail CSS Transitions: property <background-color> from neutral to [green] at (-0.3) should be [rgb(0, 0, 0)]
|
||||
Fail CSS Transitions: property <background-color> from neutral to [green] at (0) should be [rgb(0, 0, 0)]
|
||||
72 Pass
|
||||
100 Fail
|
||||
Pass CSS Transitions: property <background-color> from neutral to [green] at (-0.3) should be [rgb(0, 0, 0)]
|
||||
Pass CSS Transitions: property <background-color> from neutral to [green] at (0) should be [rgb(0, 0, 0)]
|
||||
Fail CSS Transitions: property <background-color> from neutral to [green] at (0.3) should be [rgb(0, 38, 0)]
|
||||
Fail CSS Transitions: property <background-color> from neutral to [green] at (0.6) should be [rgb(0, 77, 0)]
|
||||
Pass CSS Transitions: property <background-color> from neutral to [green] at (1) should be [rgb(0, 128, 0)]
|
||||
Fail CSS Transitions: property <background-color> from neutral to [green] at (1.5) should be [rgb(0, 192, 0)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from neutral to [green] at (-0.3) should be [rgb(0, 0, 0)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from neutral to [green] at (0) should be [rgb(0, 0, 0)]
|
||||
Pass CSS Transitions with transition: all: property <background-color> from neutral to [green] at (-0.3) should be [rgb(0, 0, 0)]
|
||||
Pass CSS Transitions with transition: all: property <background-color> from neutral to [green] at (0) should be [rgb(0, 0, 0)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from neutral to [green] at (0.3) should be [rgb(0, 38, 0)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from neutral to [green] at (0.6) should be [rgb(0, 77, 0)]
|
||||
Pass CSS Transitions with transition: all: property <background-color> from neutral to [green] at (1) should be [rgb(0, 128, 0)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from neutral to [green] at (1.5) should be [rgb(0, 192, 0)]
|
||||
Fail CSS Animations: property <background-color> from neutral to [green] at (-0.3) should be [rgb(0, 0, 0)]
|
||||
Pass CSS Animations: property <background-color> from neutral to [green] at (0) should be [rgb(0, 0, 0)]
|
||||
Fail CSS Animations: property <background-color> from neutral to [green] at (0) should be [rgb(0, 0, 0)]
|
||||
Fail CSS Animations: property <background-color> from neutral to [green] at (0.3) should be [rgb(0, 38, 0)]
|
||||
Fail CSS Animations: property <background-color> from neutral to [green] at (0.6) should be [rgb(0, 77, 0)]
|
||||
Pass CSS Animations: property <background-color> from neutral to [green] at (1) should be [rgb(0, 128, 0)]
|
||||
Fail CSS Animations: property <background-color> from neutral to [green] at (1.5) should be [rgb(0, 192, 0)]
|
||||
Fail Web Animations: property <background-color> from neutral to [green] at (-0.3) should be [rgb(0, 0, 0)]
|
||||
Pass Web Animations: property <background-color> from neutral to [green] at (0) should be [rgb(0, 0, 0)]
|
||||
Fail Web Animations: property <background-color> from neutral to [green] at (0) should be [rgb(0, 0, 0)]
|
||||
Fail Web Animations: property <background-color> from neutral to [green] at (0.3) should be [rgb(0, 38, 0)]
|
||||
Fail Web Animations: property <background-color> from neutral to [green] at (0.6) should be [rgb(0, 77, 0)]
|
||||
Pass Web Animations: property <background-color> from neutral to [green] at (1) should be [rgb(0, 128, 0)]
|
||||
Fail Web Animations: property <background-color> from neutral to [green] at (1.5) should be [rgb(0, 192, 0)]
|
||||
Fail CSS Transitions: property <background-color> from [initial] to [green] at (-0.3) should be [rgba(0, 0, 0, 0)]
|
||||
Fail CSS Transitions: property <background-color> from [initial] to [green] at (0) should be [rgba(0, 0, 0, 0)]
|
||||
Pass CSS Transitions: property <background-color> from [initial] to [green] at (-0.3) should be [rgba(0, 0, 0, 0)]
|
||||
Pass CSS Transitions: property <background-color> from [initial] to [green] at (0) should be [rgba(0, 0, 0, 0)]
|
||||
Fail CSS Transitions: property <background-color> from [initial] to [green] at (0.3) should be [rgba(0, 128, 0, 0.3)]
|
||||
Fail CSS Transitions: property <background-color> from [initial] to [green] at (0.6) should be [rgba(0, 128, 0, 0.6)]
|
||||
Pass CSS Transitions: property <background-color> from [initial] to [green] at (1) should be [rgb(0, 128, 0)]
|
||||
Fail CSS Transitions: property <background-color> from [initial] to [green] at (1.5) should be [rgb(0, 192, 0)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from [initial] to [green] at (-0.3) should be [rgba(0, 0, 0, 0)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from [initial] to [green] at (0) should be [rgba(0, 0, 0, 0)]
|
||||
Pass CSS Transitions with transition: all: property <background-color> from [initial] to [green] at (-0.3) should be [rgba(0, 0, 0, 0)]
|
||||
Pass CSS Transitions with transition: all: property <background-color> from [initial] to [green] at (0) should be [rgba(0, 0, 0, 0)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from [initial] to [green] at (0.3) should be [rgba(0, 128, 0, 0.3)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from [initial] to [green] at (0.6) should be [rgba(0, 128, 0, 0.6)]
|
||||
Pass CSS Transitions with transition: all: property <background-color> from [initial] to [green] at (1) should be [rgb(0, 128, 0)]
|
||||
|
@ -57,38 +52,38 @@ Fail Web Animations: property <background-color> from [initial] to [green] at (0
|
|||
Fail Web Animations: property <background-color> from [initial] to [green] at (0.6) should be [rgba(0, 128, 0, 0.6)]
|
||||
Pass Web Animations: property <background-color> from [initial] to [green] at (1) should be [rgb(0, 128, 0)]
|
||||
Fail Web Animations: property <background-color> from [initial] to [green] at (1.5) should be [rgb(0, 192, 0)]
|
||||
Fail CSS Transitions: property <background-color> from [inherit] to [green] at (-0.3) should be [rgb(255, 255, 255)]
|
||||
Fail CSS Transitions: property <background-color> from [inherit] to [green] at (0) should be [rgb(238, 238, 238)]
|
||||
Pass CSS Transitions: property <background-color> from [inherit] to [green] at (-0.3) should be [rgb(255, 255, 255)]
|
||||
Pass CSS Transitions: property <background-color> from [inherit] to [green] at (0) should be [rgb(238, 238, 238)]
|
||||
Fail CSS Transitions: property <background-color> from [inherit] to [green] at (0.3) should be [rgb(167, 205, 167)]
|
||||
Fail CSS Transitions: property <background-color> from [inherit] to [green] at (0.6) should be [rgb(95, 172, 95)]
|
||||
Pass CSS Transitions: property <background-color> from [inherit] to [green] at (1) should be [rgb(0, 128, 0)]
|
||||
Fail CSS Transitions: property <background-color> from [inherit] to [green] at (1.5) should be [rgb(0, 73, 0)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from [inherit] to [green] at (-0.3) should be [rgb(255, 255, 255)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from [inherit] to [green] at (0) should be [rgb(238, 238, 238)]
|
||||
Pass CSS Transitions with transition: all: property <background-color> from [inherit] to [green] at (-0.3) should be [rgb(255, 255, 255)]
|
||||
Pass CSS Transitions with transition: all: property <background-color> from [inherit] to [green] at (0) should be [rgb(238, 238, 238)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from [inherit] to [green] at (0.3) should be [rgb(167, 205, 167)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from [inherit] to [green] at (0.6) should be [rgb(95, 172, 95)]
|
||||
Pass CSS Transitions with transition: all: property <background-color> from [inherit] to [green] at (1) should be [rgb(0, 128, 0)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from [inherit] to [green] at (1.5) should be [rgb(0, 73, 0)]
|
||||
Fail CSS Animations: property <background-color> from [inherit] to [green] at (-0.3) should be [rgb(255, 255, 255)]
|
||||
Pass CSS Animations: property <background-color> from [inherit] to [green] at (-0.3) should be [rgb(255, 255, 255)]
|
||||
Pass CSS Animations: property <background-color> from [inherit] to [green] at (0) should be [rgb(238, 238, 238)]
|
||||
Fail CSS Animations: property <background-color> from [inherit] to [green] at (0.3) should be [rgb(167, 205, 167)]
|
||||
Fail CSS Animations: property <background-color> from [inherit] to [green] at (0.6) should be [rgb(95, 172, 95)]
|
||||
Pass CSS Animations: property <background-color> from [inherit] to [green] at (1) should be [rgb(0, 128, 0)]
|
||||
Fail CSS Animations: property <background-color> from [inherit] to [green] at (1.5) should be [rgb(0, 73, 0)]
|
||||
Fail Web Animations: property <background-color> from [inherit] to [green] at (-0.3) should be [rgb(255, 255, 255)]
|
||||
Pass Web Animations: property <background-color> from [inherit] to [green] at (-0.3) should be [rgb(255, 255, 255)]
|
||||
Pass Web Animations: property <background-color> from [inherit] to [green] at (0) should be [rgb(238, 238, 238)]
|
||||
Fail Web Animations: property <background-color> from [inherit] to [green] at (0.3) should be [rgb(167, 205, 167)]
|
||||
Fail Web Animations: property <background-color> from [inherit] to [green] at (0.6) should be [rgb(95, 172, 95)]
|
||||
Pass Web Animations: property <background-color> from [inherit] to [green] at (1) should be [rgb(0, 128, 0)]
|
||||
Fail Web Animations: property <background-color> from [inherit] to [green] at (1.5) should be [rgb(0, 73, 0)]
|
||||
Fail CSS Transitions: property <background-color> from [unset] to [green] at (-0.3) should be [rgba(0, 0, 0, 0)]
|
||||
Fail CSS Transitions: property <background-color> from [unset] to [green] at (0) should be [rgba(0, 0, 0, 0)]
|
||||
Pass CSS Transitions: property <background-color> from [unset] to [green] at (-0.3) should be [rgba(0, 0, 0, 0)]
|
||||
Pass CSS Transitions: property <background-color> from [unset] to [green] at (0) should be [rgba(0, 0, 0, 0)]
|
||||
Fail CSS Transitions: property <background-color> from [unset] to [green] at (0.3) should be [rgba(0, 128, 0, 0.3)]
|
||||
Fail CSS Transitions: property <background-color> from [unset] to [green] at (0.6) should be [rgba(0, 128, 0, 0.6)]
|
||||
Pass CSS Transitions: property <background-color> from [unset] to [green] at (1) should be [rgb(0, 128, 0)]
|
||||
Fail CSS Transitions: property <background-color> from [unset] to [green] at (1.5) should be [rgb(0, 192, 0)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from [unset] to [green] at (-0.3) should be [rgba(0, 0, 0, 0)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from [unset] to [green] at (0) should be [rgba(0, 0, 0, 0)]
|
||||
Pass CSS Transitions with transition: all: property <background-color> from [unset] to [green] at (-0.3) should be [rgba(0, 0, 0, 0)]
|
||||
Pass CSS Transitions with transition: all: property <background-color> from [unset] to [green] at (0) should be [rgba(0, 0, 0, 0)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from [unset] to [green] at (0.3) should be [rgba(0, 128, 0, 0.3)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from [unset] to [green] at (0.6) should be [rgba(0, 128, 0, 0.6)]
|
||||
Pass CSS Transitions with transition: all: property <background-color> from [unset] to [green] at (1) should be [rgb(0, 128, 0)]
|
||||
|
@ -106,37 +101,37 @@ Fail Web Animations: property <background-color> from [unset] to [green] at (0.6
|
|||
Pass Web Animations: property <background-color> from [unset] to [green] at (1) should be [rgb(0, 128, 0)]
|
||||
Fail Web Animations: property <background-color> from [unset] to [green] at (1.5) should be [rgb(0, 192, 0)]
|
||||
Fail CSS Transitions: property <background-color> from [white] to [orange] at (-0.3) should be [white]
|
||||
Fail CSS Transitions: property <background-color> from [white] to [orange] at (0) should be [white]
|
||||
Pass CSS Transitions: property <background-color> from [white] to [orange] at (0) should be [white]
|
||||
Fail CSS Transitions: property <background-color> from [white] to [orange] at (0.3) should be [rgb(255, 228, 179)]
|
||||
Fail CSS Transitions: property <background-color> from [white] to [orange] at (0.6) should be [rgb(255, 201, 102)]
|
||||
Pass CSS Transitions: property <background-color> from [white] to [orange] at (1) should be [orange]
|
||||
Fail CSS Transitions: property <background-color> from [white] to [orange] at (1.5) should be [rgb(255, 120, 0)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from [white] to [orange] at (-0.3) should be [white]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from [white] to [orange] at (0) should be [white]
|
||||
Pass CSS Transitions with transition: all: property <background-color> from [white] to [orange] at (0) should be [white]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from [white] to [orange] at (0.3) should be [rgb(255, 228, 179)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from [white] to [orange] at (0.6) should be [rgb(255, 201, 102)]
|
||||
Pass CSS Transitions with transition: all: property <background-color> from [white] to [orange] at (1) should be [orange]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from [white] to [orange] at (1.5) should be [rgb(255, 120, 0)]
|
||||
Pass CSS Animations: property <background-color> from [white] to [orange] at (-0.3) should be [white]
|
||||
Fail CSS Animations: property <background-color> from [white] to [orange] at (-0.3) should be [white]
|
||||
Pass CSS Animations: property <background-color> from [white] to [orange] at (0) should be [white]
|
||||
Fail CSS Animations: property <background-color> from [white] to [orange] at (0.3) should be [rgb(255, 228, 179)]
|
||||
Fail CSS Animations: property <background-color> from [white] to [orange] at (0.6) should be [rgb(255, 201, 102)]
|
||||
Pass CSS Animations: property <background-color> from [white] to [orange] at (1) should be [orange]
|
||||
Fail CSS Animations: property <background-color> from [white] to [orange] at (1.5) should be [rgb(255, 120, 0)]
|
||||
Pass Web Animations: property <background-color> from [white] to [orange] at (-0.3) should be [white]
|
||||
Fail Web Animations: property <background-color> from [white] to [orange] at (-0.3) should be [white]
|
||||
Pass Web Animations: property <background-color> from [white] to [orange] at (0) should be [white]
|
||||
Fail Web Animations: property <background-color> from [white] to [orange] at (0.3) should be [rgb(255, 228, 179)]
|
||||
Fail Web Animations: property <background-color> from [white] to [orange] at (0.6) should be [rgb(255, 201, 102)]
|
||||
Pass Web Animations: property <background-color> from [white] to [orange] at (1) should be [orange]
|
||||
Fail Web Animations: property <background-color> from [white] to [orange] at (1.5) should be [rgb(255, 120, 0)]
|
||||
Fail CSS Transitions: property <background-color> from [transparent] to [green] at (-0.3) should be [rgba(0, 0, 0, 0)]
|
||||
Fail CSS Transitions: property <background-color> from [transparent] to [green] at (0) should be [rgba(0, 0, 0, 0)]
|
||||
Pass CSS Transitions: property <background-color> from [transparent] to [green] at (-0.3) should be [rgba(0, 0, 0, 0)]
|
||||
Pass CSS Transitions: property <background-color> from [transparent] to [green] at (0) should be [rgba(0, 0, 0, 0)]
|
||||
Fail CSS Transitions: property <background-color> from [transparent] to [green] at (0.3) should be [rgba(0, 128, 0, 0.3)]
|
||||
Fail CSS Transitions: property <background-color> from [transparent] to [green] at (0.6) should be [rgba(0, 128, 0, 0.6)]
|
||||
Pass CSS Transitions: property <background-color> from [transparent] to [green] at (1) should be [rgb(0, 128, 0)]
|
||||
Fail CSS Transitions: property <background-color> from [transparent] to [green] at (1.5) should be [rgb(0, 192, 0)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from [transparent] to [green] at (-0.3) should be [rgba(0, 0, 0, 0)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from [transparent] to [green] at (0) should be [rgba(0, 0, 0, 0)]
|
||||
Pass CSS Transitions with transition: all: property <background-color> from [transparent] to [green] at (-0.3) should be [rgba(0, 0, 0, 0)]
|
||||
Pass CSS Transitions with transition: all: property <background-color> from [transparent] to [green] at (0) should be [rgba(0, 0, 0, 0)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from [transparent] to [green] at (0.3) should be [rgba(0, 128, 0, 0.3)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from [transparent] to [green] at (0.6) should be [rgba(0, 128, 0, 0.6)]
|
||||
Pass CSS Transitions with transition: all: property <background-color> from [transparent] to [green] at (1) should be [rgb(0, 128, 0)]
|
||||
|
@ -154,14 +149,14 @@ Fail Web Animations: property <background-color> from [transparent] to [green] a
|
|||
Pass Web Animations: property <background-color> from [transparent] to [green] at (1) should be [rgb(0, 128, 0)]
|
||||
Fail Web Animations: property <background-color> from [transparent] to [green] at (1.5) should be [rgb(0, 192, 0)]
|
||||
Fail CSS Transitions: property <background-color> from [currentcolor] to [rgba(0, 255, 0, 0.75)] at (-0.5) should be [rgba(0, 0, 255, 0.38)]
|
||||
Fail CSS Transitions: property <background-color> from [currentcolor] to [rgba(0, 255, 0, 0.75)] at (0) should be [rgba(0, 0, 255, 0.5)]
|
||||
Pass CSS Transitions: property <background-color> from [currentcolor] to [rgba(0, 255, 0, 0.75)] at (0) should be [rgba(0, 0, 255, 0.5)]
|
||||
Fail CSS Transitions: property <background-color> from [currentcolor] to [rgba(0, 255, 0, 0.75)] at (0.25) should be [rgba(0, 85, 170, 0.56)]
|
||||
Fail CSS Transitions: property <background-color> from [currentcolor] to [rgba(0, 255, 0, 0.75)] at (0.5) should be [rgba(0, 153, 102, 0.63)]
|
||||
Fail CSS Transitions: property <background-color> from [currentcolor] to [rgba(0, 255, 0, 0.75)] at (0.75) should be [rgba(0, 208, 47, 0.69)]
|
||||
Pass CSS Transitions: property <background-color> from [currentcolor] to [rgba(0, 255, 0, 0.75)] at (1) should be [rgba(0, 255, 0, 0.75)]
|
||||
Fail CSS Transitions: property <background-color> from [currentcolor] to [rgba(0, 255, 0, 0.75)] at (1.5) should be [rgba(0, 255, 0, 0.88)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from [currentcolor] to [rgba(0, 255, 0, 0.75)] at (-0.5) should be [rgba(0, 0, 255, 0.38)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from [currentcolor] to [rgba(0, 255, 0, 0.75)] at (0) should be [rgba(0, 0, 255, 0.5)]
|
||||
Pass CSS Transitions with transition: all: property <background-color> from [currentcolor] to [rgba(0, 255, 0, 0.75)] at (0) should be [rgba(0, 0, 255, 0.5)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from [currentcolor] to [rgba(0, 255, 0, 0.75)] at (0.25) should be [rgba(0, 85, 170, 0.56)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from [currentcolor] to [rgba(0, 255, 0, 0.75)] at (0.5) should be [rgba(0, 153, 102, 0.63)]
|
||||
Fail CSS Transitions with transition: all: property <background-color> from [currentcolor] to [rgba(0, 255, 0, 0.75)] at (0.75) should be [rgba(0, 208, 47, 0.69)]
|
||||
|
|
|
@ -1,118 +1,113 @@
|
|||
Summary
|
||||
|
||||
Harness status: OK
|
||||
|
||||
Rerun
|
||||
|
||||
Found 402 tests
|
||||
|
||||
114 Pass
|
||||
288 Fail
|
||||
Details
|
||||
Result Test Name MessageFail CSS Transitions: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (-0.3) should be [rgb(0, 0, 0) 7px 33px 7px 33px]
|
||||
Fail CSS Transitions: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (0) should be [rgb(0, 0, 0) 10px 30px 10px 30px]
|
||||
Fail CSS Transitions: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (0.3) should be [rgb(0, 0, 0) 13px 27px 13px 27px]
|
||||
Fail CSS Transitions: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (0.6) should be [rgb(0, 0, 0) 16px 24px 16px 24px]
|
||||
224 Pass
|
||||
178 Fail
|
||||
Pass CSS Transitions: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (-0.3) should be [rgb(0, 0, 0) 7px 33px 7px 33px]
|
||||
Pass CSS Transitions: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (0) should be [rgb(0, 0, 0) 10px 30px 10px 30px]
|
||||
Pass CSS Transitions: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (0.3) should be [rgb(0, 0, 0) 13px 27px 13px 27px]
|
||||
Pass CSS Transitions: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (0.6) should be [rgb(0, 0, 0) 16px 24px 16px 24px]
|
||||
Pass CSS Transitions: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (1) should be [rgb(0, 0, 0) 20px 20px 20px 20px]
|
||||
Fail CSS Transitions: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 25px 15px 25px 15px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (-0.3) should be [rgb(0, 0, 0) 7px 33px 7px 33px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (0) should be [rgb(0, 0, 0) 10px 30px 10px 30px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (0.3) should be [rgb(0, 0, 0) 13px 27px 13px 27px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (0.6) should be [rgb(0, 0, 0) 16px 24px 16px 24px]
|
||||
Pass CSS Transitions: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 25px 15px 25px 15px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (-0.3) should be [rgb(0, 0, 0) 7px 33px 7px 33px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (0) should be [rgb(0, 0, 0) 10px 30px 10px 30px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (0.3) should be [rgb(0, 0, 0) 13px 27px 13px 27px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (0.6) should be [rgb(0, 0, 0) 16px 24px 16px 24px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (1) should be [rgb(0, 0, 0) 20px 20px 20px 20px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 25px 15px 25px 15px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 25px 15px 25px 15px]
|
||||
Fail CSS Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (-0.3) should be [rgb(0, 0, 0) 7px 33px 7px 33px]
|
||||
Pass CSS Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (0) should be [rgb(0, 0, 0) 10px 30px 10px 30px]
|
||||
Pass CSS Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (0.3) should be [rgb(0, 0, 0) 13px 27px 13px 27px]
|
||||
Pass CSS Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (0.6) should be [rgb(0, 0, 0) 16px 24px 16px 24px]
|
||||
Fail CSS Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (0) should be [rgb(0, 0, 0) 10px 30px 10px 30px]
|
||||
Fail CSS Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (0.3) should be [rgb(0, 0, 0) 13px 27px 13px 27px]
|
||||
Fail CSS Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (0.6) should be [rgb(0, 0, 0) 16px 24px 16px 24px]
|
||||
Pass CSS Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (1) should be [rgb(0, 0, 0) 20px 20px 20px 20px]
|
||||
Fail CSS Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 25px 15px 25px 15px]
|
||||
Fail Web Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (-0.3) should be [rgb(0, 0, 0) 7px 33px 7px 33px]
|
||||
Pass Web Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (0) should be [rgb(0, 0, 0) 10px 30px 10px 30px]
|
||||
Pass Web Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (0.3) should be [rgb(0, 0, 0) 13px 27px 13px 27px]
|
||||
Pass Web Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (0.6) should be [rgb(0, 0, 0) 16px 24px 16px 24px]
|
||||
Fail Web Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (0) should be [rgb(0, 0, 0) 10px 30px 10px 30px]
|
||||
Fail Web Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (0.3) should be [rgb(0, 0, 0) 13px 27px 13px 27px]
|
||||
Fail Web Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (0.6) should be [rgb(0, 0, 0) 16px 24px 16px 24px]
|
||||
Pass Web Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (1) should be [rgb(0, 0, 0) 20px 20px 20px 20px]
|
||||
Fail Web Animations: property <box-shadow> from neutral to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 25px 15px 25px 15px]
|
||||
Fail CSS Transitions: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (-0.3) should be [rgba(0, 0, 0, 0) -6px -6px 0px -6px]
|
||||
Fail CSS Transitions: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (0) should be [rgba(0, 0, 0, 0) 0px 0px 0px 0px]
|
||||
Fail CSS Transitions: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (0.3) should be [rgba(0, 0, 0, 0.3) 6px 6px 6px 6px]
|
||||
Fail CSS Transitions: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (0.6) should be [rgba(0, 0, 0, 0.6) 12px 12px 12px 12px]
|
||||
Pass CSS Transitions: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (0) should be [rgba(0, 0, 0, 0) 0px 0px 0px 0px]
|
||||
Pass CSS Transitions: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (0.3) should be [rgba(0, 0, 0, 0.3) 6px 6px 6px 6px]
|
||||
Pass CSS Transitions: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (0.6) should be [rgba(0, 0, 0, 0.6) 12px 12px 12px 12px]
|
||||
Pass CSS Transitions: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (1) should be [rgb(0, 0, 0) 20px 20px 20px 20px]
|
||||
Fail CSS Transitions: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 30px 30px 30px 30px]
|
||||
Pass CSS Transitions: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 30px 30px 30px 30px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (-0.3) should be [rgba(0, 0, 0, 0) -6px -6px 0px -6px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (0) should be [rgba(0, 0, 0, 0) 0px 0px 0px 0px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (0.3) should be [rgba(0, 0, 0, 0.3) 6px 6px 6px 6px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (0.6) should be [rgba(0, 0, 0, 0.6) 12px 12px 12px 12px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (0) should be [rgba(0, 0, 0, 0) 0px 0px 0px 0px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (0.3) should be [rgba(0, 0, 0, 0.3) 6px 6px 6px 6px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (0.6) should be [rgba(0, 0, 0, 0.6) 12px 12px 12px 12px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (1) should be [rgb(0, 0, 0) 20px 20px 20px 20px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 30px 30px 30px 30px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 30px 30px 30px 30px]
|
||||
Fail CSS Animations: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (-0.3) should be [rgba(0, 0, 0, 0) -6px -6px 0px -6px]
|
||||
Pass CSS Animations: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (0) should be [rgba(0, 0, 0, 0) 0px 0px 0px 0px]
|
||||
Pass CSS Animations: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (0.3) should be [rgba(0, 0, 0, 0.3) 6px 6px 6px 6px]
|
||||
Pass CSS Animations: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (0.6) should be [rgba(0, 0, 0, 0.6) 12px 12px 12px 12px]
|
||||
Pass CSS Animations: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (1) should be [rgb(0, 0, 0) 20px 20px 20px 20px]
|
||||
Fail CSS Animations: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 30px 30px 30px 30px]
|
||||
Pass CSS Animations: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 30px 30px 30px 30px]
|
||||
Fail Web Animations: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (-0.3) should be [rgba(0, 0, 0, 0) -6px -6px 0px -6px]
|
||||
Pass Web Animations: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (0) should be [rgba(0, 0, 0, 0) 0px 0px 0px 0px]
|
||||
Pass Web Animations: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (0.3) should be [rgba(0, 0, 0, 0.3) 6px 6px 6px 6px]
|
||||
Pass Web Animations: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (0.6) should be [rgba(0, 0, 0, 0.6) 12px 12px 12px 12px]
|
||||
Pass Web Animations: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (1) should be [rgb(0, 0, 0) 20px 20px 20px 20px]
|
||||
Fail Web Animations: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 30px 30px 30px 30px]
|
||||
Fail CSS Transitions: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (-0.3) should be [rgb(0, 0, 0) 33px 7px 33px 7px]
|
||||
Fail CSS Transitions: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (0) should be [rgb(0, 0, 0) 30px 10px 30px 10px]
|
||||
Fail CSS Transitions: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (0.3) should be [rgb(0, 0, 0) 27px 13px 27px 13px]
|
||||
Fail CSS Transitions: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (0.6) should be [rgb(0, 0, 0) 24px 16px 24px 16px]
|
||||
Pass Web Animations: property <box-shadow> from [initial] to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 30px 30px 30px 30px]
|
||||
Pass CSS Transitions: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (-0.3) should be [rgb(0, 0, 0) 33px 7px 33px 7px]
|
||||
Pass CSS Transitions: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (0) should be [rgb(0, 0, 0) 30px 10px 30px 10px]
|
||||
Pass CSS Transitions: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (0.3) should be [rgb(0, 0, 0) 27px 13px 27px 13px]
|
||||
Pass CSS Transitions: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (0.6) should be [rgb(0, 0, 0) 24px 16px 24px 16px]
|
||||
Pass CSS Transitions: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (1) should be [rgb(0, 0, 0) 20px 20px 20px 20px]
|
||||
Fail CSS Transitions: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 15px 25px 15px 25px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (-0.3) should be [rgb(0, 0, 0) 33px 7px 33px 7px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (0) should be [rgb(0, 0, 0) 30px 10px 30px 10px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (0.3) should be [rgb(0, 0, 0) 27px 13px 27px 13px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (0.6) should be [rgb(0, 0, 0) 24px 16px 24px 16px]
|
||||
Pass CSS Transitions: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 15px 25px 15px 25px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (-0.3) should be [rgb(0, 0, 0) 33px 7px 33px 7px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (0) should be [rgb(0, 0, 0) 30px 10px 30px 10px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (0.3) should be [rgb(0, 0, 0) 27px 13px 27px 13px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (0.6) should be [rgb(0, 0, 0) 24px 16px 24px 16px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (1) should be [rgb(0, 0, 0) 20px 20px 20px 20px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 15px 25px 15px 25px]
|
||||
Fail CSS Animations: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (-0.3) should be [rgb(0, 0, 0) 33px 7px 33px 7px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 15px 25px 15px 25px]
|
||||
Pass CSS Animations: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (-0.3) should be [rgb(0, 0, 0) 33px 7px 33px 7px]
|
||||
Pass CSS Animations: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (0) should be [rgb(0, 0, 0) 30px 10px 30px 10px]
|
||||
Pass CSS Animations: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (0.3) should be [rgb(0, 0, 0) 27px 13px 27px 13px]
|
||||
Pass CSS Animations: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (0.6) should be [rgb(0, 0, 0) 24px 16px 24px 16px]
|
||||
Pass CSS Animations: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (1) should be [rgb(0, 0, 0) 20px 20px 20px 20px]
|
||||
Fail CSS Animations: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 15px 25px 15px 25px]
|
||||
Fail Web Animations: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (-0.3) should be [rgb(0, 0, 0) 33px 7px 33px 7px]
|
||||
Pass CSS Animations: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 15px 25px 15px 25px]
|
||||
Pass Web Animations: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (-0.3) should be [rgb(0, 0, 0) 33px 7px 33px 7px]
|
||||
Pass Web Animations: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (0) should be [rgb(0, 0, 0) 30px 10px 30px 10px]
|
||||
Pass Web Animations: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (0.3) should be [rgb(0, 0, 0) 27px 13px 27px 13px]
|
||||
Pass Web Animations: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (0.6) should be [rgb(0, 0, 0) 24px 16px 24px 16px]
|
||||
Pass Web Animations: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (1) should be [rgb(0, 0, 0) 20px 20px 20px 20px]
|
||||
Fail Web Animations: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 15px 25px 15px 25px]
|
||||
Pass Web Animations: property <box-shadow> from [inherit] to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 15px 25px 15px 25px]
|
||||
Fail CSS Transitions: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (-0.3) should be [rgba(0, 0, 0, 0) -6px -6px 0px -6px]
|
||||
Fail CSS Transitions: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (0) should be [rgba(0, 0, 0, 0) 0px 0px 0px 0px]
|
||||
Fail CSS Transitions: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (0.3) should be [rgba(0, 0, 0, 0.3) 6px 6px 6px 6px]
|
||||
Fail CSS Transitions: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (0.6) should be [rgba(0, 0, 0, 0.6) 12px 12px 12px 12px]
|
||||
Pass CSS Transitions: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (0) should be [rgba(0, 0, 0, 0) 0px 0px 0px 0px]
|
||||
Pass CSS Transitions: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (0.3) should be [rgba(0, 0, 0, 0.3) 6px 6px 6px 6px]
|
||||
Pass CSS Transitions: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (0.6) should be [rgba(0, 0, 0, 0.6) 12px 12px 12px 12px]
|
||||
Pass CSS Transitions: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (1) should be [rgb(0, 0, 0) 20px 20px 20px 20px]
|
||||
Fail CSS Transitions: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 30px 30px 30px 30px]
|
||||
Pass CSS Transitions: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 30px 30px 30px 30px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (-0.3) should be [rgba(0, 0, 0, 0) -6px -6px 0px -6px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (0) should be [rgba(0, 0, 0, 0) 0px 0px 0px 0px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (0.3) should be [rgba(0, 0, 0, 0.3) 6px 6px 6px 6px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (0.6) should be [rgba(0, 0, 0, 0.6) 12px 12px 12px 12px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (0) should be [rgba(0, 0, 0, 0) 0px 0px 0px 0px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (0.3) should be [rgba(0, 0, 0, 0.3) 6px 6px 6px 6px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (0.6) should be [rgba(0, 0, 0, 0.6) 12px 12px 12px 12px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (1) should be [rgb(0, 0, 0) 20px 20px 20px 20px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 30px 30px 30px 30px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 30px 30px 30px 30px]
|
||||
Fail CSS Animations: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (-0.3) should be [rgba(0, 0, 0, 0) -6px -6px 0px -6px]
|
||||
Pass CSS Animations: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (0) should be [rgba(0, 0, 0, 0) 0px 0px 0px 0px]
|
||||
Pass CSS Animations: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (0.3) should be [rgba(0, 0, 0, 0.3) 6px 6px 6px 6px]
|
||||
Pass CSS Animations: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (0.6) should be [rgba(0, 0, 0, 0.6) 12px 12px 12px 12px]
|
||||
Pass CSS Animations: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (1) should be [rgb(0, 0, 0) 20px 20px 20px 20px]
|
||||
Fail CSS Animations: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 30px 30px 30px 30px]
|
||||
Pass CSS Animations: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 30px 30px 30px 30px]
|
||||
Fail Web Animations: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (-0.3) should be [rgba(0, 0, 0, 0) -6px -6px 0px -6px]
|
||||
Pass Web Animations: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (0) should be [rgba(0, 0, 0, 0) 0px 0px 0px 0px]
|
||||
Pass Web Animations: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (0.3) should be [rgba(0, 0, 0, 0.3) 6px 6px 6px 6px]
|
||||
Pass Web Animations: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (0.6) should be [rgba(0, 0, 0, 0.6) 12px 12px 12px 12px]
|
||||
Pass Web Animations: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (1) should be [rgb(0, 0, 0) 20px 20px 20px 20px]
|
||||
Fail Web Animations: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 30px 30px 30px 30px]
|
||||
Pass Web Animations: property <box-shadow> from [unset] to [20px 20px 20px 20px black] at (1.5) should be [rgb(0, 0, 0) 30px 30px 30px 30px]
|
||||
Fail CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px orange] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px 9px]
|
||||
Fail CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px orange] at (0) should be [rgb(0, 0, 0) 15px 10px 5px 6px]
|
||||
Pass CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px orange] at (0) should be [rgb(0, 0, 0) 15px 10px 5px 6px]
|
||||
Fail CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px orange] at (0.3) should be [rgb(77, 50, 0) 6px 4px 11px 3px]
|
||||
Fail CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px orange] at (0.6) should be [rgb(153, 99, 0) -3px -2px 17px 0px]
|
||||
Pass CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px orange] at (1) should be [rgb(255, 165, 0) -15px -10px 25px -4px]
|
||||
Fail CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px orange] at (1.5) should be [rgb(255, 248, 0) -30px -20px 35px -9px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px orange] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px 9px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px orange] at (0) should be [rgb(0, 0, 0) 15px 10px 5px 6px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px orange] at (0) should be [rgb(0, 0, 0) 15px 10px 5px 6px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px orange] at (0.3) should be [rgb(77, 50, 0) 6px 4px 11px 3px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px orange] at (0.6) should be [rgb(153, 99, 0) -3px -2px 17px 0px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px orange] at (1) should be [rgb(255, 165, 0) -15px -10px 25px -4px]
|
||||
|
@ -130,37 +125,37 @@ Fail Web Animations: property <box-shadow> from [15px 10px 5px 6px black] to [-1
|
|||
Pass Web Animations: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px orange] at (1) should be [rgb(255, 165, 0) -15px -10px 25px -4px]
|
||||
Fail Web Animations: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px orange] at (1.5) should be [rgb(255, 248, 0) -30px -20px 35px -9px]
|
||||
Fail CSS Transitions: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (-0.3) should be [rgb(0, 0, 0) -0.3px -0.3px 0px -0.3px]
|
||||
Fail CSS Transitions: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (0) should be [rgb(0, 0, 0) 0px 0px 0px 0px]
|
||||
Fail CSS Transitions: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (0.3) should be [rgb(0, 0, 0) 0.3px 0.3px 0.3px 0.3px]
|
||||
Fail CSS Transitions: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (0.6) should be [rgb(0, 0, 0) 0.6px 0.6px 0.6px 0.6px]
|
||||
Pass CSS Transitions: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (0) should be [rgb(0, 0, 0) 0px 0px 0px 0px]
|
||||
Pass CSS Transitions: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (0.3) should be [rgb(0, 0, 0) 0.3px 0.3px 0.3px 0.3px]
|
||||
Pass CSS Transitions: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (0.6) should be [rgb(0, 0, 0) 0.6px 0.6px 0.6px 0.6px]
|
||||
Pass CSS Transitions: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (1) should be [rgb(0, 0, 0) 1px 1px 1px 1px]
|
||||
Fail CSS Transitions: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (1.5) should be [rgb(0, 0, 0) 1.5px 1.5px 1.5px 1.5px]
|
||||
Pass CSS Transitions: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (1.5) should be [rgb(0, 0, 0) 1.5px 1.5px 1.5px 1.5px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (-0.3) should be [rgb(0, 0, 0) -0.3px -0.3px 0px -0.3px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (0) should be [rgb(0, 0, 0) 0px 0px 0px 0px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (0.3) should be [rgb(0, 0, 0) 0.3px 0.3px 0.3px 0.3px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (0.6) should be [rgb(0, 0, 0) 0.6px 0.6px 0.6px 0.6px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (0) should be [rgb(0, 0, 0) 0px 0px 0px 0px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (0.3) should be [rgb(0, 0, 0) 0.3px 0.3px 0.3px 0.3px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (0.6) should be [rgb(0, 0, 0) 0.6px 0.6px 0.6px 0.6px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (1) should be [rgb(0, 0, 0) 1px 1px 1px 1px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (1.5) should be [rgb(0, 0, 0) 1.5px 1.5px 1.5px 1.5px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (1.5) should be [rgb(0, 0, 0) 1.5px 1.5px 1.5px 1.5px]
|
||||
Fail CSS Animations: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (-0.3) should be [rgb(0, 0, 0) -0.3px -0.3px 0px -0.3px]
|
||||
Pass CSS Animations: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (0) should be [rgb(0, 0, 0) 0px 0px 0px 0px]
|
||||
Pass CSS Animations: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (0.3) should be [rgb(0, 0, 0) 0.3px 0.3px 0.3px 0.3px]
|
||||
Pass CSS Animations: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (0.6) should be [rgb(0, 0, 0) 0.6px 0.6px 0.6px 0.6px]
|
||||
Pass CSS Animations: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (1) should be [rgb(0, 0, 0) 1px 1px 1px 1px]
|
||||
Fail CSS Animations: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (1.5) should be [rgb(0, 0, 0) 1.5px 1.5px 1.5px 1.5px]
|
||||
Pass CSS Animations: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (1.5) should be [rgb(0, 0, 0) 1.5px 1.5px 1.5px 1.5px]
|
||||
Fail Web Animations: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (-0.3) should be [rgb(0, 0, 0) -0.3px -0.3px 0px -0.3px]
|
||||
Pass Web Animations: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (0) should be [rgb(0, 0, 0) 0px 0px 0px 0px]
|
||||
Pass Web Animations: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (0.3) should be [rgb(0, 0, 0) 0.3px 0.3px 0.3px 0.3px]
|
||||
Pass Web Animations: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (0.6) should be [rgb(0, 0, 0) 0.6px 0.6px 0.6px 0.6px]
|
||||
Pass Web Animations: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (1) should be [rgb(0, 0, 0) 1px 1px 1px 1px]
|
||||
Fail Web Animations: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (1.5) should be [rgb(0, 0, 0) 1.5px 1.5px 1.5px 1.5px]
|
||||
Pass Web Animations: property <box-shadow> from [0px 0px 0px 0px black] to [1px 1px 1px 1px black] at (1.5) should be [rgb(0, 0, 0) 1.5px 1.5px 1.5px 1.5px]
|
||||
Fail CSS Transitions: property <box-shadow> from [black 15px 10px 5px 6px] to [orange -15px -10px 25px -4px] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px 9px]
|
||||
Fail CSS Transitions: property <box-shadow> from [black 15px 10px 5px 6px] to [orange -15px -10px 25px -4px] at (0) should be [rgb(0, 0, 0) 15px 10px 5px 6px]
|
||||
Pass CSS Transitions: property <box-shadow> from [black 15px 10px 5px 6px] to [orange -15px -10px 25px -4px] at (0) should be [rgb(0, 0, 0) 15px 10px 5px 6px]
|
||||
Fail CSS Transitions: property <box-shadow> from [black 15px 10px 5px 6px] to [orange -15px -10px 25px -4px] at (0.3) should be [rgb(77, 50, 0) 6px 4px 11px 3px]
|
||||
Fail CSS Transitions: property <box-shadow> from [black 15px 10px 5px 6px] to [orange -15px -10px 25px -4px] at (0.6) should be [rgb(153, 99, 0) -3px -2px 17px 0px]
|
||||
Pass CSS Transitions: property <box-shadow> from [black 15px 10px 5px 6px] to [orange -15px -10px 25px -4px] at (1) should be [rgb(255, 165, 0) -15px -10px 25px -4px]
|
||||
Fail CSS Transitions: property <box-shadow> from [black 15px 10px 5px 6px] to [orange -15px -10px 25px -4px] at (1.5) should be [rgb(255, 248, 0) -30px -20px 35px -9px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [black 15px 10px 5px 6px] to [orange -15px -10px 25px -4px] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px 9px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [black 15px 10px 5px 6px] to [orange -15px -10px 25px -4px] at (0) should be [rgb(0, 0, 0) 15px 10px 5px 6px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [black 15px 10px 5px 6px] to [orange -15px -10px 25px -4px] at (0) should be [rgb(0, 0, 0) 15px 10px 5px 6px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [black 15px 10px 5px 6px] to [orange -15px -10px 25px -4px] at (0.3) should be [rgb(77, 50, 0) 6px 4px 11px 3px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [black 15px 10px 5px 6px] to [orange -15px -10px 25px -4px] at (0.6) should be [rgb(153, 99, 0) -3px -2px 17px 0px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [black 15px 10px 5px 6px] to [orange -15px -10px 25px -4px] at (1) should be [rgb(255, 165, 0) -15px -10px 25px -4px]
|
||||
|
@ -178,13 +173,13 @@ Fail Web Animations: property <box-shadow> from [black 15px 10px 5px 6px] to [or
|
|||
Pass Web Animations: property <box-shadow> from [black 15px 10px 5px 6px] to [orange -15px -10px 25px -4px] at (1) should be [rgb(255, 165, 0) -15px -10px 25px -4px]
|
||||
Fail Web Animations: property <box-shadow> from [black 15px 10px 5px 6px] to [orange -15px -10px 25px -4px] at (1.5) should be [rgb(255, 248, 0) -30px -20px 35px -9px]
|
||||
Fail CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black inset] to [-15px -10px 25px -4px orange inset] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px 9px inset]
|
||||
Fail CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black inset] to [-15px -10px 25px -4px orange inset] at (0) should be [rgb(0, 0, 0) 15px 10px 5px 6px inset]
|
||||
Pass CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black inset] to [-15px -10px 25px -4px orange inset] at (0) should be [rgb(0, 0, 0) 15px 10px 5px 6px inset]
|
||||
Fail CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black inset] to [-15px -10px 25px -4px orange inset] at (0.3) should be [rgb(77, 50, 0) 6px 4px 11px 3px inset]
|
||||
Fail CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black inset] to [-15px -10px 25px -4px orange inset] at (0.6) should be [rgb(153, 99, 0) -3px -2px 17px 0px inset]
|
||||
Pass CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black inset] to [-15px -10px 25px -4px orange inset] at (1) should be [rgb(255, 165, 0) -15px -10px 25px -4px inset]
|
||||
Fail CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black inset] to [-15px -10px 25px -4px orange inset] at (1.5) should be [rgb(255, 248, 0) -30px -20px 35px -9px inset]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black inset] to [-15px -10px 25px -4px orange inset] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px 9px inset]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black inset] to [-15px -10px 25px -4px orange inset] at (0) should be [rgb(0, 0, 0) 15px 10px 5px 6px inset]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black inset] to [-15px -10px 25px -4px orange inset] at (0) should be [rgb(0, 0, 0) 15px 10px 5px 6px inset]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black inset] to [-15px -10px 25px -4px orange inset] at (0.3) should be [rgb(77, 50, 0) 6px 4px 11px 3px inset]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black inset] to [-15px -10px 25px -4px orange inset] at (0.6) should be [rgb(153, 99, 0) -3px -2px 17px 0px inset]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black inset] to [-15px -10px 25px -4px orange inset] at (1) should be [rgb(255, 165, 0) -15px -10px 25px -4px inset]
|
||||
|
@ -202,16 +197,16 @@ Fail Web Animations: property <box-shadow> from [15px 10px 5px 6px black inset]
|
|||
Pass Web Animations: property <box-shadow> from [15px 10px 5px 6px black inset] to [-15px -10px 25px -4px orange inset] at (1) should be [rgb(255, 165, 0) -15px -10px 25px -4px inset]
|
||||
Fail Web Animations: property <box-shadow> from [15px 10px 5px 6px black inset] to [-15px -10px 25px -4px orange inset] at (1.5) should be [rgb(255, 248, 0) -30px -20px 35px -9px inset]
|
||||
Fail CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px 9px]
|
||||
Fail CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px] at (0) should be [rgb(0, 0, 0) 15px 10px 5px 6px]
|
||||
Pass CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px] at (0) should be [rgb(0, 0, 0) 15px 10px 5px 6px]
|
||||
Fail CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px] at (0.3) should be [rgb(0, 38, 0) 6px 4px 11px 3px]
|
||||
Fail CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px] at (0.6) should be [rgb(0, 77, 0) -3px -2px 17px 0px]
|
||||
Pass CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px] at (1) should be [rgb(0, 128, 0) -15px -10px 25px -4px]
|
||||
Fail CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px] at (1) should be [rgb(0, 128, 0) -15px -10px 25px -4px]
|
||||
Fail CSS Transitions: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px] at (1.5) should be [rgb(0, 192, 0) -30px -20px 35px -9px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px 9px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px] at (0) should be [rgb(0, 0, 0) 15px 10px 5px 6px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px] at (0) should be [rgb(0, 0, 0) 15px 10px 5px 6px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px] at (0.3) should be [rgb(0, 38, 0) 6px 4px 11px 3px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px] at (0.6) should be [rgb(0, 77, 0) -3px -2px 17px 0px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px] at (1) should be [rgb(0, 128, 0) -15px -10px 25px -4px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px] at (1) should be [rgb(0, 128, 0) -15px -10px 25px -4px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px] at (1.5) should be [rgb(0, 192, 0) -30px -20px 35px -9px]
|
||||
Fail CSS Animations: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px] at (-0.3) should be [rgb(0, 0, 0) 24px 16px 0px 9px]
|
||||
Pass CSS Animations: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px] at (0) should be [rgb(0, 0, 0) 15px 10px 5px 6px]
|
||||
|
@ -225,17 +220,17 @@ Fail Web Animations: property <box-shadow> from [15px 10px 5px 6px black] to [-1
|
|||
Fail Web Animations: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px] at (0.6) should be [rgb(0, 77, 0) -3px -2px 17px 0px]
|
||||
Fail Web Animations: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px] at (1) should be [rgb(0, 128, 0) -15px -10px 25px -4px]
|
||||
Fail Web Animations: property <box-shadow> from [15px 10px 5px 6px black] to [-15px -10px 25px -4px] at (1.5) should be [rgb(0, 192, 0) -30px -20px 35px -9px]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 10px 10px 10px black] to [10px 10px 10px 10px currentColor] at (-0.3) should be [rgb(0, 0, 0) 10px 10px 10px 10px]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 10px 10px 10px black] to [10px 10px 10px 10px currentColor] at (0) should be [rgb(0, 0, 0) 10px 10px 10px 10px]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 10px 10px 10px black] to [10px 10px 10px 10px currentColor] at (-0.3) should be [rgb(0, 0, 0) 10px 10px 10px 10px]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 10px 10px 10px black] to [10px 10px 10px 10px currentColor] at (0) should be [rgb(0, 0, 0) 10px 10px 10px 10px]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 10px 10px 10px black] to [10px 10px 10px 10px currentColor] at (0.3) should be [rgb(0, 38, 0) 10px 10px 10px 10px]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 10px 10px 10px black] to [10px 10px 10px 10px currentColor] at (0.6) should be [rgb(0, 77, 0) 10px 10px 10px 10px]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 10px 10px 10px black] to [10px 10px 10px 10px currentColor] at (1) should be [rgb(0, 128, 0) 10px 10px 10px 10px]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 10px 10px 10px black] to [10px 10px 10px 10px currentColor] at (1) should be [rgb(0, 128, 0) 10px 10px 10px 10px]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 10px 10px 10px black] to [10px 10px 10px 10px currentColor] at (1.5) should be [rgb(0, 192, 0) 10px 10px 10px 10px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px black] to [10px 10px 10px 10px currentColor] at (-0.3) should be [rgb(0, 0, 0) 10px 10px 10px 10px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px black] to [10px 10px 10px 10px currentColor] at (0) should be [rgb(0, 0, 0) 10px 10px 10px 10px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px black] to [10px 10px 10px 10px currentColor] at (-0.3) should be [rgb(0, 0, 0) 10px 10px 10px 10px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px black] to [10px 10px 10px 10px currentColor] at (0) should be [rgb(0, 0, 0) 10px 10px 10px 10px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px black] to [10px 10px 10px 10px currentColor] at (0.3) should be [rgb(0, 38, 0) 10px 10px 10px 10px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px black] to [10px 10px 10px 10px currentColor] at (0.6) should be [rgb(0, 77, 0) 10px 10px 10px 10px]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px black] to [10px 10px 10px 10px currentColor] at (1) should be [rgb(0, 128, 0) 10px 10px 10px 10px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px black] to [10px 10px 10px 10px currentColor] at (1) should be [rgb(0, 128, 0) 10px 10px 10px 10px]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px black] to [10px 10px 10px 10px currentColor] at (1.5) should be [rgb(0, 192, 0) 10px 10px 10px 10px]
|
||||
Pass CSS Animations: property <box-shadow> from [10px 10px 10px 10px black] to [10px 10px 10px 10px currentColor] at (-0.3) should be [rgb(0, 0, 0) 10px 10px 10px 10px]
|
||||
Pass CSS Animations: property <box-shadow> from [10px 10px 10px 10px black] to [10px 10px 10px 10px currentColor] at (0) should be [rgb(0, 0, 0) 10px 10px 10px 10px]
|
||||
|
@ -274,13 +269,13 @@ Fail Web Animations: property <box-shadow> from [10px 20px rgba(255, 255, 0, 0.5
|
|||
Fail Web Animations: property <box-shadow> from [10px 20px rgba(255, 255, 0, 0.5), inset 5px 10em #008000] to [none] at (1) should be [rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px inset]
|
||||
Fail Web Animations: property <box-shadow> from [10px 20px rgba(255, 255, 0, 0.5), inset 5px 10em #008000] to [none] at (1.5) should be [rgba(0, 0, 0, 0) -5px -10px 0px 0px, rgba(0, 0, 0, 0) -2.5px -15px 0px 0px inset]
|
||||
Fail CSS Transitions: property <box-shadow> from [inset 0 0 0 0 black] to [inset 0 0 0 calc(max(10em, 20px) / 2) black] at (-0.3) should be [rgb(0, 0, 0) 0px 0px 0px -4.5px inset]
|
||||
Fail CSS Transitions: property <box-shadow> from [inset 0 0 0 0 black] to [inset 0 0 0 calc(max(10em, 20px) / 2) black] at (0) should be [rgb(0, 0, 0) 0px 0px 0px 0px inset]
|
||||
Pass CSS Transitions: property <box-shadow> from [inset 0 0 0 0 black] to [inset 0 0 0 calc(max(10em, 20px) / 2) black] at (0) should be [rgb(0, 0, 0) 0px 0px 0px 0px inset]
|
||||
Fail CSS Transitions: property <box-shadow> from [inset 0 0 0 0 black] to [inset 0 0 0 calc(max(10em, 20px) / 2) black] at (0.3) should be [rgb(0, 0, 0) 0px 0px 0px 4.5px inset]
|
||||
Fail CSS Transitions: property <box-shadow> from [inset 0 0 0 0 black] to [inset 0 0 0 calc(max(10em, 20px) / 2) black] at (0.6) should be [rgb(0, 0, 0) 0px 0px 0px 9px inset]
|
||||
Pass CSS Transitions: property <box-shadow> from [inset 0 0 0 0 black] to [inset 0 0 0 calc(max(10em, 20px) / 2) black] at (1) should be [rgb(0, 0, 0) 0px 0px 0px 15px inset]
|
||||
Fail CSS Transitions: property <box-shadow> from [inset 0 0 0 0 black] to [inset 0 0 0 calc(max(10em, 20px) / 2) black] at (1.5) should be [rgb(0, 0, 0) 0px 0px 0px 22.5px inset]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [inset 0 0 0 0 black] to [inset 0 0 0 calc(max(10em, 20px) / 2) black] at (-0.3) should be [rgb(0, 0, 0) 0px 0px 0px -4.5px inset]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [inset 0 0 0 0 black] to [inset 0 0 0 calc(max(10em, 20px) / 2) black] at (0) should be [rgb(0, 0, 0) 0px 0px 0px 0px inset]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [inset 0 0 0 0 black] to [inset 0 0 0 calc(max(10em, 20px) / 2) black] at (0) should be [rgb(0, 0, 0) 0px 0px 0px 0px inset]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [inset 0 0 0 0 black] to [inset 0 0 0 calc(max(10em, 20px) / 2) black] at (0.3) should be [rgb(0, 0, 0) 0px 0px 0px 4.5px inset]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [inset 0 0 0 0 black] to [inset 0 0 0 calc(max(10em, 20px) / 2) black] at (0.6) should be [rgb(0, 0, 0) 0px 0px 0px 9px inset]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [inset 0 0 0 0 black] to [inset 0 0 0 calc(max(10em, 20px) / 2) black] at (1) should be [rgb(0, 0, 0) 0px 0px 0px 15px inset]
|
||||
|
@ -298,116 +293,116 @@ Fail Web Animations: property <box-shadow> from [inset 0 0 0 0 black] to [inset
|
|||
Pass Web Animations: property <box-shadow> from [inset 0 0 0 0 black] to [inset 0 0 0 calc(max(10em, 20px) / 2) black] at (1) should be [rgb(0, 0, 0) 0px 0px 0px 15px inset]
|
||||
Fail Web Animations: property <box-shadow> from [inset 0 0 0 0 black] to [inset 0 0 0 calc(max(10em, 20px) / 2) black] at (1.5) should be [rgb(0, 0, 0) 0px 0px 0px 22.5px inset]
|
||||
Fail CSS Transitions with transition-behavior:allow-discrete: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (-0.3) should be [10px 20px yellow, 5px 10px green]
|
||||
Fail CSS Transitions with transition-behavior:allow-discrete: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0) should be [10px 20px yellow, 5px 10px green]
|
||||
Pass CSS Transitions with transition-behavior:allow-discrete: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0) should be [10px 20px yellow, 5px 10px green]
|
||||
Fail CSS Transitions with transition-behavior:allow-discrete: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.3) should be [10px 20px yellow, 5px 10px green]
|
||||
Pass CSS Transitions with transition-behavior:allow-discrete: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.5) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Pass CSS Transitions with transition-behavior:allow-discrete: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.6) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Fail CSS Transitions with transition-behavior:allow-discrete: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.5) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Fail CSS Transitions with transition-behavior:allow-discrete: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.6) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Pass CSS Transitions with transition-behavior:allow-discrete: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (1) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Pass CSS Transitions with transition-behavior:allow-discrete: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (1.5) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Fail CSS Transitions with transition-behavior:allow-discrete: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (1.5) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Fail CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (-0.3) should be [10px 20px yellow, 5px 10px green]
|
||||
Fail CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0) should be [10px 20px yellow, 5px 10px green]
|
||||
Pass CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0) should be [10px 20px yellow, 5px 10px green]
|
||||
Fail CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.3) should be [10px 20px yellow, 5px 10px green]
|
||||
Pass CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.5) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Pass CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.6) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Fail CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.5) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Fail CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.6) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Pass CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (1) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Pass CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (1.5) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (-0.3) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.3) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.5) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.6) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Fail CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (1.5) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (-0.3) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.3) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.5) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.6) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (1) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (1.5) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (-0.3) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.3) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.5) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.6) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (1.5) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (-0.3) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.3) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.5) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.6) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (1) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (1.5) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Pass CSS Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (-0.3) should be [10px 20px yellow, 5px 10px green]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (1.5) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Fail CSS Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (-0.3) should be [10px 20px yellow, 5px 10px green]
|
||||
Pass CSS Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0) should be [10px 20px yellow, 5px 10px green]
|
||||
Fail CSS Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.3) should be [10px 20px yellow, 5px 10px green]
|
||||
Fail CSS Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.5) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Fail CSS Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.6) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Pass CSS Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (1) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Pass CSS Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (1.5) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Pass Web Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (-0.3) should be [10px 20px yellow, 5px 10px green]
|
||||
Fail CSS Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (1.5) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Fail Web Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (-0.3) should be [10px 20px yellow, 5px 10px green]
|
||||
Pass Web Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0) should be [10px 20px yellow, 5px 10px green]
|
||||
Fail Web Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.3) should be [10px 20px yellow, 5px 10px green]
|
||||
Fail Web Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.5) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Fail Web Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (0.6) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Pass Web Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (1) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Pass Web Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (1.5) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.3) should be [10px 10px 10px 10px oklab(0.3 0 0)]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.6) should be [10px 10px 10px 10px oklab(0.6 0 0)]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1.5) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.3) should be [10px 10px 10px 10px oklab(0.3 0 0)]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.6) should be [10px 10px 10px 10px oklab(0.6 0 0)]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1.5) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Fail CSS Animations: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Fail CSS Animations: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Fail CSS Animations: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.3) should be [10px 10px 10px 10px oklab(0.3 0 0)]
|
||||
Fail CSS Animations: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.6) should be [10px 10px 10px 10px oklab(0.6 0 0)]
|
||||
Fail CSS Animations: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Fail CSS Animations: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1.5) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Fail Web Animations: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Fail Web Animations: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Fail Web Animations: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.3) should be [10px 10px 10px 10px oklab(0.3 0 0)]
|
||||
Fail Web Animations: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.6) should be [10px 10px 10px 10px oklab(0.6 0 0)]
|
||||
Fail Web Animations: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Fail Web Animations: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1.5) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (0) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (0.3) should be [10px 10px 10px 10px oklab(0.3 0 0)]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (0.6) should be [10px 10px 10px 10px oklab(0.6 0 0)]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (1) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (1.5) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (0) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (0.3) should be [10px 10px 10px 10px oklab(0.3 0 0)]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (0.6) should be [10px 10px 10px 10px oklab(0.6 0 0)]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (1) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (1.5) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Fail CSS Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Fail CSS Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (0) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Fail CSS Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (0.3) should be [10px 10px 10px 10px oklab(0.3 0 0)]
|
||||
Fail CSS Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (0.6) should be [10px 10px 10px 10px oklab(0.6 0 0)]
|
||||
Fail CSS Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (1) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Fail CSS Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (1.5) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Fail Web Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Fail Web Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (0) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Fail Web Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (0.3) should be [10px 10px 10px 10px oklab(0.3 0 0)]
|
||||
Fail Web Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (0.6) should be [10px 10px 10px 10px oklab(0.6 0 0)]
|
||||
Fail Web Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (1) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Fail Web Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (1.5) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.3) should be [10px 10px 10px 10px oklab(0.3 0 0)]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.6) should be [10px 10px 10px 10px oklab(0.6 0 0)]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Fail CSS Transitions: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1.5) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.3) should be [10px 10px 10px 10px oklab(0.3 0 0)]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.6) should be [10px 10px 10px 10px oklab(0.6 0 0)]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Fail CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1.5) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Fail CSS Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Fail CSS Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Fail CSS Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.3) should be [10px 10px 10px 10px oklab(0.3 0 0)]
|
||||
Fail CSS Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.6) should be [10px 10px 10px 10px oklab(0.6 0 0)]
|
||||
Fail CSS Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Fail CSS Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1.5) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Fail Web Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Fail Web Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Fail Web Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.3) should be [10px 10px 10px 10px oklab(0.3 0 0)]
|
||||
Fail Web Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.6) should be [10px 10px 10px 10px oklab(0.6 0 0)]
|
||||
Fail Web Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Fail Web Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1.5) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Fail Web Animations: property <box-shadow> from [10px 20px yellow, 5px 10px green] to [inset 5px 10px green, 15px 20px blue] at (1.5) should be [inset 5px 10px green, 15px 20px blue]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.3) should be [10px 10px 10px 10px oklab(0.3 0 0)]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.6) should be [10px 10px 10px 10px oklab(0.6 0 0)]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1.5) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.3) should be [10px 10px 10px 10px oklab(0.3 0 0)]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.6) should be [10px 10px 10px 10px oklab(0.6 0 0)]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1.5) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Pass CSS Animations: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Pass CSS Animations: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Pass CSS Animations: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.3) should be [10px 10px 10px 10px oklab(0.3 0 0)]
|
||||
Pass CSS Animations: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.6) should be [10px 10px 10px 10px oklab(0.6 0 0)]
|
||||
Pass CSS Animations: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Pass CSS Animations: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1.5) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Pass Web Animations: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Pass Web Animations: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Pass Web Animations: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.3) should be [10px 10px 10px 10px oklab(0.3 0 0)]
|
||||
Pass Web Animations: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.6) should be [10px 10px 10px 10px oklab(0.6 0 0)]
|
||||
Pass Web Animations: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Pass Web Animations: property <box-shadow> from [10px 10px 10px 10px rgb(0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1.5) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (0) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (0.3) should be [10px 10px 10px 10px oklab(0.3 0 0)]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (0.6) should be [10px 10px 10px 10px oklab(0.6 0 0)]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (1) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (1.5) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (0) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (0.3) should be [10px 10px 10px 10px oklab(0.3 0 0)]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (0.6) should be [10px 10px 10px 10px oklab(0.6 0 0)]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (1) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (1.5) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Pass CSS Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Pass CSS Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (0) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Pass CSS Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (0.3) should be [10px 10px 10px 10px oklab(0.3 0 0)]
|
||||
Pass CSS Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (0.6) should be [10px 10px 10px 10px oklab(0.6 0 0)]
|
||||
Pass CSS Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (1) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Pass CSS Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (1.5) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Pass Web Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Pass Web Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (0) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Pass Web Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (0.3) should be [10px 10px 10px 10px oklab(0.3 0 0)]
|
||||
Pass Web Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (0.6) should be [10px 10px 10px 10px oklab(0.6 0 0)]
|
||||
Pass Web Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (1) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Pass Web Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px rgb(255 255 255)] at (1.5) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.3) should be [10px 10px 10px 10px oklab(0.3 0 0)]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.6) should be [10px 10px 10px 10px oklab(0.6 0 0)]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Pass CSS Transitions: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1.5) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.3) should be [10px 10px 10px 10px oklab(0.3 0 0)]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.6) should be [10px 10px 10px 10px oklab(0.6 0 0)]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Pass CSS Transitions with transition: all: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1.5) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Pass CSS Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Pass CSS Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Pass CSS Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.3) should be [10px 10px 10px 10px oklab(0.3 0 0)]
|
||||
Pass CSS Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.6) should be [10px 10px 10px 10px oklab(0.6 0 0)]
|
||||
Pass CSS Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Pass CSS Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1.5) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Pass Web Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Pass Web Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0) should be [10px 10px 10px 10px oklab(0 0 0)]
|
||||
Pass Web Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.3) should be [10px 10px 10px 10px oklab(0.3 0 0)]
|
||||
Pass Web Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (0.6) should be [10px 10px 10px 10px oklab(0.6 0 0)]
|
||||
Pass Web Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1) should be [10px 10px 10px 10px oklab(1 0 0)]
|
||||
Pass Web Animations: property <box-shadow> from [10px 10px 10px 10px color(srgb 0 0 0)] to [10px 10px 10px 10px color(srgb 1 1 1)] at (1.5) should be [10px 10px 10px 10px oklab(1 0 0)]
|
Loading…
Add table
Add a link
Reference in a new issue