Source/WTF/ChangeLog

 12021-10-13 Kiet Ho <tho22@apple.com>
 2
 3 Implement parsing and animation support for offset-distance, offset-position, offset-anchor
 4 https://bugs.webkit.org/show_bug.cgi?id=231491
 5
 6 Reviewed by NOBODY (OOPS!).
 7
 8 * Scripts/Preferences/WebPreferencesExperimental.yaml: Add new preference for CSS Motion Path support.
 9
1102021-10-13 Alex Christensen <achristensen@webkit.org>
211
312 Remove WTF::Variant and WTF::get

Source/WebCore/ChangeLog

 12021-10-13 Kiet Ho <tho22@apple.com>
 2
 3 Implement parsing and animation support for offset-distance, offset-position, offset-anchor
 4 https://bugs.webkit.org/show_bug.cgi?id=231491
 5
 6 Reviewed by NOBODY (OOPS!).
 7
 8 Tests: imported/w3c/web-platform-tests/css/motion/animation/offset-anchor-composition.html
 9 imported/w3c/web-platform-tests/css/motion/animation/offset-anchor-interpolation.html
 10 imported/w3c/web-platform-tests/css/motion/animation/offset-distance-composition.html
 11 imported/w3c/web-platform-tests/css/motion/animation/offset-distance-interpolation.html
 12 imported/w3c/web-platform-tests/css/motion/animation/offset-position-composition.html
 13 imported/w3c/web-platform-tests/css/motion/animation/offset-position-interpolation.html
 14 imported/w3c/web-platform-tests/css/motion/inheritance.html
 15 imported/w3c/web-platform-tests/css/motion/offset-supports-calc.html
 16 imported/w3c/web-platform-tests/css/motion/parsing/offset-anchor-computed.html
 17 imported/w3c/web-platform-tests/css/motion/parsing/offset-anchor-parsing-valid.html
 18 imported/w3c/web-platform-tests/css/motion/parsing/offset-distance-computed.html
 19 imported/w3c/web-platform-tests/css/motion/parsing/offset-distance-parsing-valid.html
 20 imported/w3c/web-platform-tests/css/motion/parsing/offset-position-computed.html
 21 imported/w3c/web-platform-tests/css/motion/parsing/offset-position-parsing-valid.html
 22
 23 * animation/CSSPropertyAnimation.cpp:
 24 (WebCore::CSSPropertyAnimationWrapperMap::CSSPropertyAnimationWrapperMap):
 25 * css/CSSComputedStyleDeclaration.cpp:
 26 (WebCore::valueForPosition):
 27 (WebCore::valueForPositionOrAuto):
 28 (WebCore::ComputedStyleExtractor::valueForPropertyInStyle):
 29 * css/CSSProperties.json:
 30 * css/parser/CSSPropertyParser.cpp:
 31 (WebCore::consumePositionOrAuto):
 32 (WebCore::CSSPropertyParser::parseSingleValue):
 33 * rendering/style/RenderStyle.h:
 34 (WebCore::RenderStyle::offsetDistance const):
 35 (WebCore::RenderStyle::setOffsetDistance):
 36 (WebCore::RenderStyle::initialOffsetDistance):
 37 (WebCore::RenderStyle::offsetPosition const):
 38 (WebCore::RenderStyle::setOffsetPosition):
 39 (WebCore::RenderStyle::initialOffsetPosition):
 40 (WebCore::RenderStyle::offsetAnchor const):
 41 (WebCore::RenderStyle::setOffsetAnchor):
 42 (WebCore::RenderStyle::initialOffsetAnchor):
 43 * rendering/style/StyleRareNonInheritedData.cpp:
 44 (WebCore::StyleRareNonInheritedData::StyleRareNonInheritedData):
 45 (WebCore::StyleRareNonInheritedData::operator== const):
 46 * rendering/style/StyleRareNonInheritedData.h:
 47 * style/StyleBuilderConverter.h:
 48 (WebCore::Style::BuilderConverter::convertPosition):
 49 (WebCore::Style::BuilderConverter::convertPositionOrAuto):
 50
1512021-10-13 Gabriel Nava Marino <gnavamarino@apple.com>
252
353 Skip fallbackFontsForRunWithIterator for empty runs

Source/WTF/Scripts/Preferences/WebPreferencesExperimental.yaml

@@CSSIndividualTransformPropertiesEnabled:
256256 WebCore:
257257 default: true
258258
 259CSSMotionPathEnabled:
 260 type: bool
 261 humanReadableName: "CSS Motion Path"
 262 humanReadableDescription: "Enable CSS Motion Path support"
 263 defaultValue:
 264 WebKitLegacy:
 265 default: false
 266 WebKit:
 267 default: false
 268 WebCore:
 269 default: false
 270
259271CSSOMViewSmoothScrollingEnabled:
260272 type: bool
261273 humanReadableName: "CSSOM View Smooth Scrolling"

Source/WebCore/animation/CSSPropertyAnimation.cpp

@@static bool canInterpolateLengthVariants(const GapLength& from, const GapLength&
885885 return canInterpolateLengths(from.length(), to.length(), isLengthPercentage);
886886}
887887
888 class LengthPointPropertyWrapper final : public PropertyWrapperGetter<LengthPoint> {
 888class LengthPointPropertyWrapper : public PropertyWrapperGetter<LengthPoint> {
889889 WTF_MAKE_FAST_ALLOCATED;
890890public:
891891 LengthPointPropertyWrapper(CSSPropertyID property, LengthPoint (RenderStyle::*getter)() const, void (RenderStyle::*setter)(LengthPoint&&))

@@private:
903903 void (RenderStyle::*m_setter)(LengthPoint&&);
904904};
905905
 906// This class extends LengthPointPropertyWrapper to accommodate `auto` value expressed as
 907// LengthPoint(Length(LengthType::Auto), Length(LengthType::Auto)). This is used for
 908// offset-anchor and offset-position, which allows `auto`, and is expressed like so.
 909class LengthPointOrAutoPropertyWrapper final : public LengthPointPropertyWrapper {
 910public:
 911 LengthPointOrAutoPropertyWrapper(CSSPropertyID property, LengthPoint (RenderStyle::*getter)() const, void (RenderStyle::*setter)(LengthPoint&&))
 912 : LengthPointPropertyWrapper(property, getter, setter)
 913 {
 914 }
 915
 916private:
 917 // Check if it's possible to interpolate between the from and to values. In particular,
 918 // it's only possible if they're both not auto.
 919 bool canInterpolate(const RenderStyle& from, const RenderStyle& to) const override
 920 {
 921 bool fromIsAuto = value(from).x().isAuto() && value(from).y().isAuto();
 922 bool toIsAuto = value(to).x().isAuto() && value(to).y().isAuto();
 923
 924 return (!fromIsAuto && !toIsAuto);
 925 }
 926};
 927
906928template <typename T>
907929class LengthVariantPropertyWrapper final : public PropertyWrapperGetter<const T&> {
908930 WTF_MAKE_FAST_ALLOCATED;

@@CSSPropertyAnimationWrapperMap::CSSPropertyAnimationWrapperMap()
25782600#endif
25792601 new PropertyWrapperAspectRatio,
25802602 new DiscretePropertyWrapper<FontPalette>(CSSPropertyFontPalette, &RenderStyle::fontPalette, &RenderStyle::setFontPalette),
 2603
 2604 new LengthPropertyWrapper(CSSPropertyOffsetDistance, &RenderStyle::offsetDistance, &RenderStyle::setOffsetDistance, LengthPropertyWrapper::Flags::IsLengthPercentage),
 2605 new LengthPointOrAutoPropertyWrapper(CSSPropertyOffsetPosition, &RenderStyle::offsetPosition, &RenderStyle::setOffsetPosition),
 2606 new LengthPointOrAutoPropertyWrapper(CSSPropertyOffsetAnchor, &RenderStyle::offsetAnchor, &RenderStyle::setOffsetAnchor)
25812607 };
25822608 const unsigned animatableLonghandPropertiesCount = WTF_ARRAY_LENGTH(animatableLonghandPropertyWrappers);
25832609

Source/WebCore/css/CSSComputedStyleDeclaration.cpp

@@static Element* styleElementForNode(Node* node)
14401440 return composedTreeAncestors(*node).first();
14411441}
14421442
 1443static Ref<CSSValue> valueForPosition(const RenderStyle& style, const LengthPoint& position)
 1444{
 1445 auto list = CSSValueList::createSpaceSeparated();
 1446 list->append(zoomAdjustedPixelValueForLength(position.x(), style));
 1447 list->append(zoomAdjustedPixelValueForLength(position.y(), style));
 1448 return list;
 1449}
 1450
 1451static Ref<CSSValue> valueForPositionOrAuto(const RenderStyle& style, const LengthPoint& position)
 1452{
 1453 if (position.x().isAuto() && position.y().isAuto())
 1454 return CSSValuePool::singleton().createIdentifierValue(CSSValueAuto);
 1455
 1456 return valueForPosition(style, position);
 1457}
 1458
14431459ComputedStyleExtractor::ComputedStyleExtractor(Node* node, bool allowVisitedStyle, PseudoId pseudoElementSpecifier)
14441460 : m_element(styleElementForNode(node))
14451461 , m_pseudoElementSpecifier(pseudoElementSpecifier)

@@RefPtr<CSSValue> ComputedStyleExtractor::valueForPropertyInStyle(const RenderSty
31613177 return zoomAdjustedPixelValueForLength(style.minWidth(), style);
31623178 case CSSPropertyObjectFit:
31633179 return cssValuePool.createValue(style.objectFit());
3164  case CSSPropertyObjectPosition: {
3165  auto list = CSSValueList::createSpaceSeparated();
3166  list->append(zoomAdjustedPixelValueForLength(style.objectPosition().x(), style));
3167  list->append(zoomAdjustedPixelValueForLength(style.objectPosition().y(), style));
3168  return list;
3169  }
 3180 case CSSPropertyObjectPosition:
 3181 return valueForPosition(style, style.objectPosition());
 3182 case CSSPropertyOffsetDistance:
 3183 return cssValuePool.createValue(style.offsetDistance(), style);
 3184 case CSSPropertyOffsetPosition:
 3185 return valueForPositionOrAuto(style, style.offsetPosition());
 3186 case CSSPropertyOffsetAnchor:
 3187 return valueForPositionOrAuto(style, style.offsetAnchor());
31703188 case CSSPropertyOpacity:
31713189 return cssValuePool.createValue(style.opacity(), CSSUnitType::CSS_NUMBER);
31723190 case CSSPropertyOrphans:

Source/WebCore/css/CSSProperties.json

35523552 },
35533553 "object-position": {
35543554 "codegen-properties": {
3555  "converter": "ObjectPosition"
 3555 "converter": "Position"
35563556 },
35573557 "specification": {
35583558 "category": "css-images",
35593559 "url": "https://www.w3.org/TR/css3-images/#object-position"
35603560 }
35613561 },
 3562 "offset-distance": {
 3563 "codegen-properties": {
 3564 "converter": "Length",
 3565 "settings-flag": "cssMotionPathEnabled"
 3566 },
 3567 "specification": {
 3568 "category": "css-motion-path",
 3569 "url": "https://drafts.fxtf.org/motion-1/#offset-distance-property"
 3570 }
 3571 },
 3572 "offset-position": {
 3573 "codegen-properties": {
 3574 "converter": "PositionOrAuto",
 3575 "settings-flag": "cssMotionPathEnabled"
 3576 },
 3577 "specification": {
 3578 "category": "css-motion-path",
 3579 "url": "https://drafts.fxtf.org/motion-1/#offset-position-property"
 3580 }
 3581 },
 3582 "offset-anchor": {
 3583 "codegen-properties": {
 3584 "converter": "PositionOrAuto",
 3585 "settings-flag": "cssMotionPathEnabled"
 3586 },
 3587 "specification": {
 3588 "category": "css-motion-path",
 3589 "url": "https://drafts.fxtf.org/motion-1/#offset-anchor-property"
 3590 }
 3591 },
35623592 "opacity": {
35633593 "codegen-properties": {
35643594 "converter": "Opacity",

78127842 "longname": "CSS Masking Module",
78137843 "url": "https://www.w3.org/TR/css-masking-1/"
78147844 },
 7845 "css-motion-path": {
 7846 "shortname": "CSS Motion Path",
 7847 "longname": "CSS Motion Path Module",
 7848 "url": "https://drafts.fxtf.org/motion-1/",
 7849 "status": "experimental"
 7850 },
78157851 "css-multicol": {
78167852 "shortname": "CSS Multi-column Layout",
78177853 "longname": "CSS Multi-column Layout Module",

Source/WebCore/css/parser/CSSPropertyParser.cpp

@@static RefPtr<CSSValue> consumeColorScheme(CSSParserTokenRange& range)
39913991
39923992#endif
39933993
 3994static RefPtr<CSSPrimitiveValue> consumePositionOrAuto(CSSParserTokenRange& range, CSSParserMode parserMode, UnitlessQuirk unitless, PositionSyntax positionSyntax)
 3995{
 3996 if (range.peek().id() == CSSValueAuto)
 3997 return consumeIdent(range);
 3998
 3999 return consumePosition(range, parserMode, unitless, positionSyntax);
 4000}
 4001
39944002RefPtr<CSSValue> CSSPropertyParser::parseSingleValue(CSSPropertyID property, CSSPropertyID currentShorthand)
39954003{
39964004 if (CSSParserFastPaths::isKeywordPropertyID(property)) {

@@RefPtr<CSSValue> CSSPropertyParser::parseSingleValue(CSSPropertyID property, CSS
43314339 if (auto parsedValue = consumeNumber(m_range, ValueRange::All))
43324340 return parsedValue;
43334341 return consumePercent(m_range, ValueRange::All);
 4342 case CSSPropertyOffsetDistance:
 4343 return consumeLengthOrPercent(m_range, m_context.mode, ValueRange::All, UnitlessQuirk::Forbid);
 4344 case CSSPropertyOffsetPosition:
 4345 case CSSPropertyOffsetAnchor:
 4346 return consumePositionOrAuto(m_range, m_context.mode, UnitlessQuirk::Forbid, PositionSyntax::Position);
43344347 case CSSPropertyWebkitBoxFlex:
43354348 return consumeNumber(m_range, ValueRange::All);
43364349 case CSSPropertyBaselineShift:

Source/WebCore/rendering/style/RenderStyle.h

@@public:
18831883 const Color& accentColor() const { return m_rareInheritedData->accentColor; }
18841884 bool hasAutoAccentColor() const { return m_rareInheritedData->hasAutoAccentColor; }
18851885
 1886 const Length& offsetDistance() const { return m_rareNonInheritedData->offsetDistance; }
 1887 void setOffsetDistance(Length&& distance) { SET_VAR(m_rareNonInheritedData, offsetDistance, WTFMove(distance)); }
 1888 static Length initialOffsetDistance() { return Length(0, LengthType::Fixed); }
 1889
 1890 LengthPoint offsetPosition() const { return m_rareNonInheritedData->offsetPosition; }
 1891 void setOffsetPosition(LengthPoint&& position) { SET_VAR(m_rareNonInheritedData, offsetPosition, WTFMove(position)); }
 1892 static LengthPoint initialOffsetPosition() { return LengthPoint(Length(LengthType::Auto), Length(LengthType::Auto)); }
 1893
 1894 LengthPoint offsetAnchor() const { return m_rareNonInheritedData->offsetAnchor; }
 1895 void setOffsetAnchor(LengthPoint&& position) { SET_VAR(m_rareNonInheritedData, offsetAnchor, WTFMove(position)); }
 1896 static LengthPoint initialOffsetAnchor() { return LengthPoint(Length(LengthType::Auto), Length(LengthType::Auto)); }
 1897
18861898private:
18871899 struct NonInheritedFlags {
18881900 bool operator==(const NonInheritedFlags&) const;

Source/WebCore/rendering/style/StyleRareNonInheritedData.cpp

@@StyleRareNonInheritedData::StyleRareNonInheritedData()
115115 , isNotFinal(false)
116116 , columnGap(RenderStyle::initialColumnGap())
117117 , rowGap(RenderStyle::initialRowGap())
 118 , offsetDistance(RenderStyle::initialOffsetDistance())
 119 , offsetPosition(RenderStyle::initialOffsetPosition())
 120 , offsetAnchor(RenderStyle::initialOffsetAnchor())
118121{
119122}
120123

@@inline StyleRareNonInheritedData::StyleRareNonInheritedData(const StyleRareNonIn
216219 , isNotFinal(o.isNotFinal)
217220 , columnGap(o.columnGap)
218221 , rowGap(o.rowGap)
 222 , offsetDistance(o.offsetDistance)
 223 , offsetPosition(o.offsetPosition)
 224 , offsetAnchor(o.offsetAnchor)
219225{
220226}
221227

@@bool StyleRareNonInheritedData::operator==(const StyleRareNonInheritedData& o) c
324330 && hasAttrContent == o.hasAttrContent
325331 && isNotFinal == o.isNotFinal
326332 && columnGap == o.columnGap
327  && rowGap == o.rowGap;
 333 && rowGap == o.rowGap
 334 && offsetDistance == o.offsetDistance
 335 && offsetPosition == o.offsetPosition
 336 && offsetAnchor == o.offsetAnchor;
328337}
329338
330339bool StyleRareNonInheritedData::contentDataEquivalent(const StyleRareNonInheritedData& other) const

Source/WebCore/rendering/style/StyleRareNonInheritedData.h

@@public:
235235 GapLength columnGap;
236236 GapLength rowGap;
237237
 238 Length offsetDistance;
 239 LengthPoint offsetPosition;
 240 LengthPoint offsetAnchor;
 241
238242private:
239243 StyleRareNonInheritedData();
240244 StyleRareNonInheritedData(const StyleRareNonInheritedData&);

Source/WebCore/style/StyleBuilderConverter.h

@@public:
7575 template<typename T> static T convertLineWidth(BuilderState&, const CSSValue&);
7676 static float convertSpacing(BuilderState&, const CSSValue&);
7777 static LengthSize convertRadius(BuilderState&, const CSSValue&);
78  static LengthPoint convertObjectPosition(BuilderState&, const CSSValue&);
 78 static LengthPoint convertPosition(BuilderState&, const CSSValue&);
 79 static LengthPoint convertPositionOrAuto(BuilderState&, const CSSValue&);
7980 static OptionSet<TextDecoration> convertTextDecoration(BuilderState&, const CSSValue&);
8081 template<typename T> static T convertNumber(BuilderState&, const CSSValue&);
8182 template<typename T> static T convertNumberOrAuto(BuilderState&, const CSSValue&);

@@inline Length BuilderConverter::convertPositionComponent(BuilderState& builderSt
400401 return length;
401402}
402403
403 inline LengthPoint BuilderConverter::convertObjectPosition(BuilderState& builderState, const CSSValue& value)
 404inline LengthPoint BuilderConverter::convertPosition(BuilderState& builderState, const CSSValue& value)
404405{
405406 auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
406407 Pair* pair = primitiveValue.pairValue();

@@inline LengthPoint BuilderConverter::convertObjectPosition(BuilderState& builder
413414 return LengthPoint(lengthX, lengthY);
414415}
415416
 417inline LengthPoint BuilderConverter::convertPositionOrAuto(BuilderState& builderState, const CSSValue& value)
 418{
 419 auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
 420
 421 if (primitiveValue.isPair())
 422 return convertPosition(builderState, value);
 423
 424 return LengthPoint(Length(LengthType::Auto), Length(LengthType::Auto));
 425}
 426
416427inline OptionSet<TextDecoration> BuilderConverter::convertTextDecoration(BuilderState&, const CSSValue& value)
417428{
418429 auto result = RenderStyle::initialTextDecoration();

LayoutTests/imported/w3c/ChangeLog

 12021-10-13 Kiet Ho <tho22@apple.com>
 2
 3 Implement parsing and animation support for offset-distance, offset-position, offset-anchor
 4 https://bugs.webkit.org/show_bug.cgi?id=231491
 5
 6 Reviewed by NOBODY (OOPS!).
 7
 8 Updated relevant test expectations.
 9
 10 * web-platform-tests/css/css-cascade/all-prop-initial-xml-expected.txt:
 11 * web-platform-tests/css/cssom/cssstyledeclaration-csstext-expected.txt:
 12 * web-platform-tests/css/cssom/getComputedStyle-detached-subtree-expected.txt:
 13 * web-platform-tests/css/motion/animation/offset-anchor-composition-expected.txt:
 14 * web-platform-tests/css/motion/animation/offset-anchor-interpolation-expected.txt:
 15 * web-platform-tests/css/motion/animation/offset-distance-composition-expected.txt:
 16 * web-platform-tests/css/motion/animation/offset-distance-interpolation-expected.txt:
 17 * web-platform-tests/css/motion/animation/offset-position-composition-expected.txt:
 18 * web-platform-tests/css/motion/animation/offset-position-interpolation-expected.txt:
 19 * web-platform-tests/css/motion/animation/offset-position-interpolation.html:
 20 Fixed test to accept other length expressions as equivalent.
 21 * web-platform-tests/css/motion/inheritance-expected.txt:
 22 * web-platform-tests/css/motion/offset-supports-calc-expected.txt:
 23 * web-platform-tests/css/motion/parsing/offset-anchor-computed-expected.txt:
 24 * web-platform-tests/css/motion/parsing/offset-anchor-parsing-valid-expected.txt:
 25 * web-platform-tests/css/motion/parsing/offset-anchor-parsing-valid.html:
 26 Fixed test to accept "center" as an alternative to "center center",
 27 "calc(20% + 10px) center" as an alternative to "calc(10px + 20%) center".
 28 * web-platform-tests/css/motion/parsing/offset-distance-computed-expected.txt:
 29 * web-platform-tests/css/motion/parsing/offset-distance-parsing-valid-expected.txt:
 30 * web-platform-tests/css/motion/parsing/offset-position-computed-expected.txt:
 31 * web-platform-tests/css/motion/parsing/offset-position-parsing-valid-expected.txt:
 32 * web-platform-tests/css/motion/parsing/offset-position-parsing-valid.html:
 33 Fixed test to accept "center" as an alternative to "center center",
 34 "calc(20% + 10px) center" as an alternative to "calc(10px + 20%) center".
 35 * web-platform-tests/css/motion/parsing/offset-shorthand-expected.txt:
 36 * web-platform-tests/web-animations/animation-model/animation-types/accumulation-per-property-002-expected.txt:
 37 * web-platform-tests/web-animations/animation-model/animation-types/addition-per-property-002-expected.txt:
 38 * web-platform-tests/web-animations/animation-model/animation-types/interpolation-per-property-002-expected.txt:
 39
1402021-10-13 Tim Nguyen <ntim@apple.com>
241
342 Implement <dialog> focusing steps

LayoutTests/imported/w3c/web-platform-tests/css/css-cascade/all-prop-initial-xml-expected.txt

@@PASS min-width
195195PASS mix-blend-mode
196196PASS object-fit
197197PASS object-position
 198PASS offset-anchor
 199PASS offset-distance
 200PASS offset-position
198201PASS opacity
199202PASS order
200203PASS orphans

LayoutTests/imported/w3c/web-platform-tests/css/cssom/cssstyledeclaration-csstext-expected.txt

@@PASS whitespaces in value
99PASS invalid property does not appear
1010FAIL Shorthands aren't serialized if there are other properties with different logical groups in between assert_equals: expected "margin-top: 10px; margin-right: 10px; margin-left: 10px; margin-inline-start: 10px; margin-block: 10px; margin-inline-end: 10px; margin-bottom: 10px;" but got "margin: 10px; margin-inline: 10px; margin-block: 10px;"
1111PASS Shorthands _are_ serialized if there are no other properties with different logical groups in between
12 FAIL cssText on computed style declaration returns the empty string assert_equals: cssText is empty expected "" but got "accent-color: auto; align-content: normal; align-items: normal; align-self: auto; alignment-baseline: auto; all: ; alt: \"\"; animation-delay: 0s; animation-direction: normal; animation-duration: 0s; animation-fill-mode: none; animation-iteration-count: 1; animation-name: none; animation-play-state: running; animation-timing-function: ease; appearance: none; aspect-ratio: auto; backface-visibility: visible; background-attachment: scroll; background-blend-mode: normal; background-clip: border-box; background-color: rgba(0, 0, 0, 0); background-image: none; background-origin: padding-box; background-position-x: 0%; background-position-y: 0%; background-repeat: repeat; background-size: auto; baseline-shift: baseline; block-size: 0px; border-block-end-color: rgb(255, 0, 0); border-block-end-style: none; border-block-end-width: 0px; border-block-start-color: rgb(255, 0, 0); border-block-start-style: none; border-block-start-width: 0px; border-bottom-color: rgb(255, 0, 0); border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-bottom-style: none; border-bottom-width: 0px; border-collapse: separate; border-end-end-radius: 0px; border-end-start-radius: 0px; border-image-outset: 0; border-image-repeat: stretch; border-image-slice: 100%; border-image-source: none; border-image-width: 1; border-inline-end-color: rgb(255, 0, 0); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(255, 0, 0); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(255, 0, 0); border-left-style: none; border-left-width: 0px; border-right-color: rgb(255, 0, 0); border-right-style: none; border-right-width: 0px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-color: rgb(255, 0, 0); border-top-left-radius: 0px; border-top-right-radius: 0px; border-top-style: none; border-top-width: 0px; bottom: auto; box-shadow: none; box-sizing: content-box; break-after: auto; break-before: auto; break-inside: auto; buffered-rendering: auto; caption-side: top; caret-color: rgb(255, 0, 0); clear: none; clip: auto; clip-path: none; clip-rule: nonzero; color: rgb(255, 0, 0); color-interpolation: sRGB; color-interpolation-filters: linearRGB; color-rendering: auto; color-scheme: auto; column-count: auto; column-fill: balance; column-gap: normal; column-rule-color: rgb(255, 0, 0); column-rule-style: none; column-rule-width: 0px; column-span: none; column-width: auto; contain: none; content: ; counter-increment: none; counter-reset: none; cursor: auto; cx: 0px; cy: 0px; direction: ltr; display: block; dominant-baseline: auto; empty-cells: show; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; filter: none; flex-basis: auto; flex-direction: row; flex-grow: 0; flex-shrink: 1; flex-wrap: nowrap; float: none; flood-color: rgb(0, 0, 0); flood-opacity: 1; font-family: -webkit-standard; font-feature-settings: normal; font-optical-sizing: auto; font-palette: normal; font-size: 13.333333015441895px; font-stretch: normal; font-style: normal; font-synthesis: style weight small-caps; font-variant-alternates: normal; font-variant-caps: normal; font-variant-east-asian: normal; font-variant-ligatures: normal; font-variant-numeric: normal; font-variant-position: normal; font-variation-settings: normal; font-weight: 400; glyph-orientation-horizontal: 0deg; glyph-orientation-vertical: auto; grid-auto-columns: auto; grid-auto-flow: row; grid-auto-rows: auto; grid-column-end: auto; grid-column-start: auto; grid-row-end: auto; grid-row-start: auto; grid-template-areas: none; grid-template-columns: none; grid-template-rows: none; hanging-punctuation: none; height: 0px; image-orientation: from-image; image-rendering: auto; inline-size: 784px; input-security: auto; inset-block-end: auto; inset-block-start: auto; inset-inline-end: auto; inset-inline-start: auto; isolation: auto; justify-content: normal; justify-items: normal; justify-self: auto; kerning: 0; left: auto; letter-spacing: normal; lighting-color: rgb(255, 255, 255); line-break: auto; line-height: normal; list-style-image: none; list-style-position: outside; list-style-type: disc; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; marker-end: none; marker-mid: none; marker-start: none; mask: none; mask-type: luminance; math-style: normal; max-block-size: none; max-height: none; max-inline-size: none; max-width: none; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; mix-blend-mode: normal; object-fit: fill; object-position: 50% 50%; opacity: 1; order: 0; orphans: auto; outline-color: rgb(255, 0, 0); outline-offset: 0px; outline-style: none; outline-width: 0px; overflow-wrap: normal; overflow-x: visible; overflow-y: visible; overscroll-behavior-x: auto; overscroll-behavior-y: auto; padding-block-end: 0px; padding-block-start: 0px; padding-bottom: 0px; padding-inline-end: 0px; padding-inline-start: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; page-break-after: auto; page-break-before: auto; page-break-inside: auto; paint-order: normal; perspective: none; perspective-origin-x: ; perspective-origin-y: ; pointer-events: auto; position: static; quotes: auto; r: 0px; resize: none; right: auto; rotate: none; row-gap: normal; rx: auto; ry: auto; scale: none; scroll-behavior: auto; scroll-margin-block: 0px; scroll-margin-bottom: 0px; scroll-margin-inline: 0px; scroll-margin-left: 0px; scroll-margin-right: 0px; scroll-margin-top: 0px; scroll-padding-block: auto; scroll-padding-bottom: auto; scroll-padding-inline: auto; scroll-padding-left: auto; scroll-padding-right: auto; scroll-padding-top: auto; scroll-snap-align: none; scroll-snap-stop: normal; scroll-snap-type: none; shape-image-threshold: 0; shape-margin: 0px; shape-outside: none; shape-rendering: auto; size: ; speak-as: normal; stop-color: rgb(0, 0, 0); stop-opacity: 1; stroke: none; stroke-color: rgba(0, 0, 0, 0); stroke-dasharray: none; stroke-dashoffset: 0px; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 4; stroke-opacity: 1; stroke-width: 1px; tab-size: 8; table-layout: auto; text-align: start; text-anchor: start; text-decoration: none; text-decoration-color: rgb(255, 0, 0); text-decoration-line: none; text-decoration-skip: auto; text-decoration-skip-ink: auto; text-decoration-style: solid; text-decoration-thickness: auto; text-indent: 0px; text-orientation: mixed; text-overflow: clip; text-rendering: auto; text-shadow: none; text-transform: none; text-underline-offset: auto; text-underline-position: auto; top: auto; touch-action: auto; transform: none; transform-box: view-box; transform-origin-x: ; transform-origin-y: ; transform-origin-z: ; transform-style: flat; transition-delay: 0s; transition-duration: 0s; transition-property: all; transition-timing-function: ease; translate: none; unicode-bidi: normal; vector-effect: none; vertical-align: baseline; visibility: visible; white-space: normal; widows: auto; width: 784px; will-change: auto; word-break: normal; word-spacing: 0px; word-wrap: normal; writing-mode: horizontal-tb; x: 0px; y: 0px; z-index: auto; zoom: 1; -apple-color-filter: none; -apple-pay-button-style: black; -apple-pay-button-type: plain; -apple-trailing-word: auto; -webkit-backdrop-filter: none; -webkit-background-clip: border-box; -webkit-background-composite: source-over; -webkit-background-origin: padding-box; -webkit-background-size: auto; -webkit-border-fit: border; -webkit-border-horizontal-spacing: 0px; -webkit-border-image: none; -webkit-border-vertical-spacing: 0px; -webkit-box-align: stretch; -webkit-box-decoration-break: slice; -webkit-box-direction: normal; -webkit-box-flex: 0; -webkit-box-flex-group: 1; -webkit-box-lines: single; -webkit-box-ordinal-group: 1; -webkit-box-orient: horizontal; -webkit-box-pack: start; -webkit-box-reflect: none; -webkit-box-shadow: none; -webkit-column-axis: auto; -webkit-column-break-after: auto; -webkit-column-break-before: auto; -webkit-column-break-inside: auto; -webkit-column-progression: normal; -webkit-cursor-visibility: auto; -webkit-font-kerning: auto; -webkit-font-smoothing: auto; -webkit-hyphenate-character: auto; -webkit-hyphenate-limit-after: auto; -webkit-hyphenate-limit-before: auto; -webkit-hyphenate-limit-lines: no-limit; -webkit-hyphens: manual; -webkit-initial-letter: normal; -webkit-line-align: none; -webkit-line-box-contain: block inline replaced; -webkit-line-clamp: none; -webkit-line-grid: none; -webkit-line-snap: none; -webkit-locale: auto; -webkit-margin-after-collapse: collapse; -webkit-margin-before-collapse: collapse; -webkit-margin-bottom-collapse: collapse; -webkit-margin-top-collapse: collapse; -webkit-mask-box-image: none; -webkit-mask-box-image-outset: 0; -webkit-mask-box-image-repeat: stretch; -webkit-mask-box-image-slice: 0 fill; -webkit-mask-box-image-source: none; -webkit-mask-box-image-width: auto; -webkit-mask-clip: border-box; -webkit-mask-composite: source-over; -webkit-mask-image: none; -webkit-mask-mode: match-source; -webkit-mask-origin: border-box; -webkit-mask-position-x: 0%; -webkit-mask-position-y: 0%; -webkit-mask-repeat: repeat; -webkit-mask-size: auto; -webkit-mask-source-type: alpha; -webkit-nbsp-mode: normal; -webkit-print-color-adjust: economy; -webkit-rtl-ordering: logical; -webkit-ruby-position: before; -webkit-text-combine: none; -webkit-text-emphasis-color: rgb(255, 0, 0); -webkit-text-emphasis-position: over right; -webkit-text-emphasis-style: none; -webkit-text-fill-color: rgb(255, 0, 0); -webkit-text-orientation: mixed; -webkit-text-security: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-color: rgb(255, 0, 0); -webkit-text-stroke-width: 0px; -webkit-text-zoom: normal; -webkit-transform-style: flat; -webkit-user-drag: auto; -webkit-user-modify: read-only; -webkit-user-select: text;"
 12FAIL cssText on computed style declaration returns the empty string assert_equals: cssText is empty expected "" but got "accent-color: auto; align-content: normal; align-items: normal; align-self: auto; alignment-baseline: auto; all: ; alt: \"\"; animation-delay: 0s; animation-direction: normal; animation-duration: 0s; animation-fill-mode: none; animation-iteration-count: 1; animation-name: none; animation-play-state: running; animation-timing-function: ease; appearance: none; aspect-ratio: auto; backface-visibility: visible; background-attachment: scroll; background-blend-mode: normal; background-clip: border-box; background-color: rgba(0, 0, 0, 0); background-image: none; background-origin: padding-box; background-position-x: 0%; background-position-y: 0%; background-repeat: repeat; background-size: auto; baseline-shift: baseline; block-size: 0px; border-block-end-color: rgb(255, 0, 0); border-block-end-style: none; border-block-end-width: 0px; border-block-start-color: rgb(255, 0, 0); border-block-start-style: none; border-block-start-width: 0px; border-bottom-color: rgb(255, 0, 0); border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-bottom-style: none; border-bottom-width: 0px; border-collapse: separate; border-end-end-radius: 0px; border-end-start-radius: 0px; border-image-outset: 0; border-image-repeat: stretch; border-image-slice: 100%; border-image-source: none; border-image-width: 1; border-inline-end-color: rgb(255, 0, 0); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(255, 0, 0); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(255, 0, 0); border-left-style: none; border-left-width: 0px; border-right-color: rgb(255, 0, 0); border-right-style: none; border-right-width: 0px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-color: rgb(255, 0, 0); border-top-left-radius: 0px; border-top-right-radius: 0px; border-top-style: none; border-top-width: 0px; bottom: auto; box-shadow: none; box-sizing: content-box; break-after: auto; break-before: auto; break-inside: auto; buffered-rendering: auto; caption-side: top; caret-color: rgb(255, 0, 0); clear: none; clip: auto; clip-path: none; clip-rule: nonzero; color: rgb(255, 0, 0); color-interpolation: sRGB; color-interpolation-filters: linearRGB; color-rendering: auto; color-scheme: auto; column-count: auto; column-fill: balance; column-gap: normal; column-rule-color: rgb(255, 0, 0); column-rule-style: none; column-rule-width: 0px; column-span: none; column-width: auto; contain: none; content: ; counter-increment: none; counter-reset: none; cursor: auto; cx: 0px; cy: 0px; direction: ltr; display: block; dominant-baseline: auto; empty-cells: show; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; filter: none; flex-basis: auto; flex-direction: row; flex-grow: 0; flex-shrink: 1; flex-wrap: nowrap; float: none; flood-color: rgb(0, 0, 0); flood-opacity: 1; font-family: -webkit-standard; font-feature-settings: normal; font-optical-sizing: auto; font-palette: normal; font-size: 13.333333015441895px; font-stretch: normal; font-style: normal; font-synthesis: style weight small-caps; font-variant-alternates: normal; font-variant-caps: normal; font-variant-east-asian: normal; font-variant-ligatures: normal; font-variant-numeric: normal; font-variant-position: normal; font-variation-settings: normal; font-weight: 400; glyph-orientation-horizontal: 0deg; glyph-orientation-vertical: auto; grid-auto-columns: auto; grid-auto-flow: row; grid-auto-rows: auto; grid-column-end: auto; grid-column-start: auto; grid-row-end: auto; grid-row-start: auto; grid-template-areas: none; grid-template-columns: none; grid-template-rows: none; hanging-punctuation: none; height: 0px; image-orientation: from-image; image-rendering: auto; inline-size: 784px; input-security: auto; inset-block-end: auto; inset-block-start: auto; inset-inline-end: auto; inset-inline-start: auto; isolation: auto; justify-content: normal; justify-items: normal; justify-self: auto; kerning: 0; left: auto; letter-spacing: normal; lighting-color: rgb(255, 255, 255); line-break: auto; line-height: normal; list-style-image: none; list-style-position: outside; list-style-type: disc; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; marker-end: none; marker-mid: none; marker-start: none; mask: none; mask-type: luminance; math-style: normal; max-block-size: none; max-height: none; max-inline-size: none; max-width: none; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; mix-blend-mode: normal; object-fit: fill; object-position: 50% 50%; offset-anchor: auto; offset-distance: 0px; offset-position: auto; opacity: 1; order: 0; orphans: auto; outline-color: rgb(255, 0, 0); outline-offset: 0px; outline-style: none; outline-width: 0px; overflow-wrap: normal; overflow-x: visible; overflow-y: visible; overscroll-behavior-x: auto; overscroll-behavior-y: auto; padding-block-end: 0px; padding-block-start: 0px; padding-bottom: 0px; padding-inline-end: 0px; padding-inline-start: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; page-break-after: auto; page-break-before: auto; page-break-inside: auto; paint-order: normal; perspective: none; perspective-origin-x: ; perspective-origin-y: ; pointer-events: auto; position: static; quotes: auto; r: 0px; resize: none; right: auto; rotate: none; row-gap: normal; rx: auto; ry: auto; scale: none; scroll-behavior: auto; scroll-margin-block: 0px; scroll-margin-bottom: 0px; scroll-margin-inline: 0px; scroll-margin-left: 0px; scroll-margin-right: 0px; scroll-margin-top: 0px; scroll-padding-block: auto; scroll-padding-bottom: auto; scroll-padding-inline: auto; scroll-padding-left: auto; scroll-padding-right: auto; scroll-padding-top: auto; scroll-snap-align: none; scroll-snap-stop: normal; scroll-snap-type: none; shape-image-threshold: 0; shape-margin: 0px; shape-outside: none; shape-rendering: auto; size: ; speak-as: normal; stop-color: rgb(0, 0, 0); stop-opacity: 1; stroke: none; stroke-color: rgba(0, 0, 0, 0); stroke-dasharray: none; stroke-dashoffset: 0px; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 4; stroke-opacity: 1; stroke-width: 1px; tab-size: 8; table-layout: auto; text-align: start; text-anchor: start; text-decoration: none; text-decoration-color: rgb(255, 0, 0); text-decoration-line: none; text-decoration-skip: auto; text-decoration-skip-ink: auto; text-decoration-style: solid; text-decoration-thickness: auto; text-indent: 0px; text-orientation: mixed; text-overflow: clip; text-rendering: auto; text-shadow: none; text-transform: none; text-underline-offset: auto; text-underline-position: auto; top: auto; touch-action: auto; transform: none; transform-box: view-box; transform-origin-x: ; transform-origin-y: ; transform-origin-z: ; transform-style: flat; transition-delay: 0s; transition-duration: 0s; transition-property: all; transition-timing-function: ease; translate: none; unicode-bidi: normal; vector-effect: none; vertical-align: baseline; visibility: visible; white-space: normal; widows: auto; width: 784px; will-change: auto; word-break: normal; word-spacing: 0px; word-wrap: normal; writing-mode: horizontal-tb; x: 0px; y: 0px; z-index: auto; zoom: 1; -apple-color-filter: none; -apple-pay-button-style: black; -apple-pay-button-type: plain; -apple-trailing-word: auto; -webkit-backdrop-filter: none; -webkit-background-clip: border-box; -webkit-background-composite: source-over; -webkit-background-origin: padding-box; -webkit-background-size: auto; -webkit-border-fit: border; -webkit-border-horizontal-spacing: 0px; -webkit-border-image: none; -webkit-border-vertical-spacing: 0px; -webkit-box-align: stretch; -webkit-box-decoration-break: slice; -webkit-box-direction: normal; -webkit-box-flex: 0; -webkit-box-flex-group: 1; -webkit-box-lines: single; -webkit-box-ordinal-group: 1; -webkit-box-orient: horizontal; -webkit-box-pack: start; -webkit-box-reflect: none; -webkit-box-shadow: none; -webkit-column-axis: auto; -webkit-column-break-after: auto; -webkit-column-break-before: auto; -webkit-column-break-inside: auto; -webkit-column-progression: normal; -webkit-cursor-visibility: auto; -webkit-font-kerning: auto; -webkit-font-smoothing: auto; -webkit-hyphenate-character: auto; -webkit-hyphenate-limit-after: auto; -webkit-hyphenate-limit-before: auto; -webkit-hyphenate-limit-lines: no-limit; -webkit-hyphens: manual; -webkit-initial-letter: normal; -webkit-line-align: none; -webkit-line-box-contain: block inline replaced; -webkit-line-clamp: none; -webkit-line-grid: none; -webkit-line-snap: none; -webkit-locale: auto; -webkit-margin-after-collapse: collapse; -webkit-margin-before-collapse: collapse; -webkit-margin-bottom-collapse: collapse; -webkit-margin-top-collapse: collapse; -webkit-mask-box-image: none; -webkit-mask-box-image-outset: 0; -webkit-mask-box-image-repeat: stretch; -webkit-mask-box-image-slice: 0 fill; -webkit-mask-box-image-source: none; -webkit-mask-box-image-width: auto; -webkit-mask-clip: border-box; -webkit-mask-composite: source-over; -webkit-mask-image: none; -webkit-mask-mode: match-source; -webkit-mask-origin: border-box; -webkit-mask-position-x: 0%; -webkit-mask-position-y: 0%; -webkit-mask-repeat: repeat; -webkit-mask-size: auto; -webkit-mask-source-type: alpha; -webkit-nbsp-mode: normal; -webkit-print-color-adjust: economy; -webkit-rtl-ordering: logical; -webkit-ruby-position: before; -webkit-text-combine: none; -webkit-text-emphasis-color: rgb(255, 0, 0); -webkit-text-emphasis-position: over right; -webkit-text-emphasis-style: none; -webkit-text-fill-color: rgb(255, 0, 0); -webkit-text-orientation: mixed; -webkit-text-security: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-color: rgb(255, 0, 0); -webkit-text-stroke-width: 0px; -webkit-text-zoom: normal; -webkit-transform-style: flat; -webkit-user-drag: auto; -webkit-user-modify: read-only; -webkit-user-select: text;"
1313

LayoutTests/imported/w3c/web-platform-tests/css/cssom/getComputedStyle-detached-subtree-expected.txt

11
22PASS getComputedStyle returns no style for detached element
3 FAIL getComputedStyle returns no style for element in non-rendered iframe (display: none) assert_equals: expected 0 but got 395
4 FAIL getComputedStyle returns no style for element in non-rendered iframe (display: none) from iframe's window assert_equals: expected 0 but got 395
5 FAIL getComputedStyle returns no style for element outside the flat tree assert_equals: expected 0 but got 395
6 FAIL getComputedStyle returns no style for descendant outside the flat tree assert_equals: expected 0 but got 395
 3FAIL getComputedStyle returns no style for element in non-rendered iframe (display: none) assert_equals: expected 0 but got 398
 4FAIL getComputedStyle returns no style for element in non-rendered iframe (display: none) from iframe's window assert_equals: expected 0 but got 398
 5FAIL getComputedStyle returns no style for element outside the flat tree assert_equals: expected 0 but got 398
 6FAIL getComputedStyle returns no style for descendant outside the flat tree assert_equals: expected 0 but got 398
77PASS getComputedStyle returns no style for shadow tree outside of flattened tree
88

LayoutTests/imported/w3c/web-platform-tests/css/motion/animation/offset-anchor-composition-expected.txt

11
2 FAIL Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (-0.25) should be [75px 75px] assert_true: 'from' value should be supported expected true got false
3 FAIL Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (0) should be [100px 100px] assert_true: 'from' value should be supported expected true got false
4 FAIL Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (0.25) should be [125px 125px] assert_true: 'from' value should be supported expected true got false
5 FAIL Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (0.5) should be [150px 150px] assert_true: 'from' value should be supported expected true got false
6 FAIL Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (0.75) should be [175px 175px] assert_true: 'from' value should be supported expected true got false
7 FAIL Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (1) should be [200px 200px] assert_true: 'from' value should be supported expected true got false
8 FAIL Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (1.25) should be [225px 225px] assert_true: 'from' value should be supported expected true got false
9 FAIL Compositing: property <offset-anchor> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (-0.25) should be [110% 105%] assert_true: 'from' value should be supported expected true got false
10 FAIL Compositing: property <offset-anchor> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (0) should be [100% 100%] assert_true: 'from' value should be supported expected true got false
11 FAIL Compositing: property <offset-anchor> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (0.25) should be [90% 95%] assert_true: 'from' value should be supported expected true got false
12 FAIL Compositing: property <offset-anchor> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (0.5) should be [80% 90%] assert_true: 'from' value should be supported expected true got false
13 FAIL Compositing: property <offset-anchor> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (0.75) should be [70% 85%] assert_true: 'from' value should be supported expected true got false
14 FAIL Compositing: property <offset-anchor> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (1) should be [60% 80%] assert_true: 'from' value should be supported expected true got false
15 FAIL Compositing: property <offset-anchor> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (1.25) should be [50% 75%] assert_true: 'from' value should be supported expected true got false
16 FAIL Compositing: property <offset-anchor> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (-0.25) should be [75px 225px] assert_true: 'from' value should be supported expected true got false
17 FAIL Compositing: property <offset-anchor> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (0) should be [100px 200px] assert_true: 'from' value should be supported expected true got false
18 FAIL Compositing: property <offset-anchor> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (0.25) should be [125px 175px] assert_true: 'from' value should be supported expected true got false
19 FAIL Compositing: property <offset-anchor> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (0.5) should be [150px 150px] assert_true: 'from' value should be supported expected true got false
20 FAIL Compositing: property <offset-anchor> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (0.75) should be [175px 125px] assert_true: 'from' value should be supported expected true got false
21 FAIL Compositing: property <offset-anchor> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (1) should be [200px 100px] assert_true: 'from' value should be supported expected true got false
22 FAIL Compositing: property <offset-anchor> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (1.25) should be [225px 75px] assert_true: 'from' value should be supported expected true got false
23 FAIL Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (-0.25) should be [75px 225px] assert_true: 'from' value should be supported expected true got false
24 FAIL Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (0) should be [100px 200px] assert_true: 'from' value should be supported expected true got false
25 FAIL Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (0.25) should be [125px 175px] assert_true: 'from' value should be supported expected true got false
26 FAIL Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (0.5) should be [150px 150px] assert_true: 'from' value should be supported expected true got false
27 FAIL Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (0.75) should be [175px 125px] assert_true: 'from' value should be supported expected true got false
28 FAIL Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (1) should be [200px 100px] assert_true: 'from' value should be supported expected true got false
29 FAIL Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (1.25) should be [225px 75px] assert_true: 'from' value should be supported expected true got false
 2FAIL Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (-0.25) should be [75px 75px] assert_equals: expected "75px 75px " but got "35px 15px "
 3FAIL Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (0) should be [100px 100px] assert_equals: expected "100px 100px " but got "60px 40px "
 4FAIL Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (0.25) should be [125px 125px] assert_equals: expected "125px 125px " but got "85px 65px "
 5FAIL Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (0.5) should be [150px 150px] assert_equals: expected "150px 150px " but got "110px 90px "
 6FAIL Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (0.75) should be [175px 175px] assert_equals: expected "175px 175px " but got "135px 115px "
 7FAIL Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (1) should be [200px 200px] assert_equals: expected "200px 200px " but got "160px 140px "
 8FAIL Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (1.25) should be [225px 225px] assert_equals: expected "225px 225px " but got "185px 165px "
 9FAIL Compositing: property <offset-anchor> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (-0.25) should be [110% 105%] assert_equals: expected "110 % 105 % " but got "70 % 85 % "
 10FAIL Compositing: property <offset-anchor> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (0) should be [100% 100%] assert_equals: expected "100 % 100 % " but got "60 % 80 % "
 11FAIL Compositing: property <offset-anchor> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (0.25) should be [90% 95%] assert_equals: expected "90 % 95 % " but got "50 % 75 % "
 12FAIL Compositing: property <offset-anchor> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (0.5) should be [80% 90%] assert_equals: expected "80 % 90 % " but got "40 % 70 % "
 13FAIL Compositing: property <offset-anchor> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (0.75) should be [70% 85%] assert_equals: expected "70 % 85 % " but got "30 % 65 % "
 14FAIL Compositing: property <offset-anchor> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (1) should be [60% 80%] assert_equals: expected "60 % 80 % " but got "20 % 60 % "
 15FAIL Compositing: property <offset-anchor> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (1.25) should be [50% 75%] assert_equals: expected "50 % 75 % " but got "10 % 55 % "
 16FAIL Compositing: property <offset-anchor> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (-0.25) should be [75px 225px] assert_equals: expected "75px 225px " but got "85px 240px "
 17PASS Compositing: property <offset-anchor> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (0) should be [100px 200px]
 18FAIL Compositing: property <offset-anchor> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (0.25) should be [125px 175px] assert_equals: expected "125px 175px " but got "115px 160px "
 19FAIL Compositing: property <offset-anchor> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (0.5) should be [150px 150px] assert_equals: expected "150px 150px " but got "130px 120px "
 20FAIL Compositing: property <offset-anchor> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (0.75) should be [175px 125px] assert_equals: expected "175px 125px " but got "145px 80px "
 21FAIL Compositing: property <offset-anchor> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (1) should be [200px 100px] assert_equals: expected "200px 100px " but got "160px 40px "
 22FAIL Compositing: property <offset-anchor> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (1.25) should be [225px 75px] assert_equals: expected "225px 75px " but got "175px 0px "
 23FAIL Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (-0.25) should be [75px 225px] assert_equals: expected "75px 225px " but got "25px 150px "
 24FAIL Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (0) should be [100px 200px] assert_equals: expected "100px 200px " but got "60px 140px "
 25FAIL Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (0.25) should be [125px 175px] assert_equals: expected "125px 175px " but got "95px 130px "
 26FAIL Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (0.5) should be [150px 150px] assert_equals: expected "150px 150px " but got "130px 120px "
 27FAIL Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (0.75) should be [175px 125px] assert_equals: expected "175px 125px " but got "165px 110px "
 28PASS Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (1) should be [200px 100px]
 29FAIL Compositing: property <offset-anchor> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (1.25) should be [225px 75px] assert_equals: expected "225px 75px " but got "235px 90px "
3030

LayoutTests/imported/w3c/web-platform-tests/css/motion/animation/offset-anchor-interpolation-expected.txt

11
2 FAIL CSS Transitions: property <offset-anchor> from [220px 240px] to [300px 400px] at (-1) should be [140px 80px] assert_true: 'from' value should be supported expected true got false
3 FAIL CSS Transitions: property <offset-anchor> from [220px 240px] to [300px 400px] at (0) should be [220px 240px] assert_true: 'from' value should be supported expected true got false
4 FAIL CSS Transitions: property <offset-anchor> from [220px 240px] to [300px 400px] at (0.125) should be [230px 260px] assert_true: 'from' value should be supported expected true got false
5 FAIL CSS Transitions: property <offset-anchor> from [220px 240px] to [300px 400px] at (0.875) should be [290px 380px] assert_true: 'from' value should be supported expected true got false
6 FAIL CSS Transitions: property <offset-anchor> from [220px 240px] to [300px 400px] at (1) should be [300px 400px] assert_true: 'from' value should be supported expected true got false
7 FAIL CSS Transitions: property <offset-anchor> from [220px 240px] to [300px 400px] at (2) should be [380px 560px] assert_true: 'from' value should be supported expected true got false
8 FAIL CSS Transitions with transition: all: property <offset-anchor> from [220px 240px] to [300px 400px] at (-1) should be [140px 80px] assert_true: 'from' value should be supported expected true got false
9 FAIL CSS Transitions with transition: all: property <offset-anchor> from [220px 240px] to [300px 400px] at (0) should be [220px 240px] assert_true: 'from' value should be supported expected true got false
10 FAIL CSS Transitions with transition: all: property <offset-anchor> from [220px 240px] to [300px 400px] at (0.125) should be [230px 260px] assert_true: 'from' value should be supported expected true got false
11 FAIL CSS Transitions with transition: all: property <offset-anchor> from [220px 240px] to [300px 400px] at (0.875) should be [290px 380px] assert_true: 'from' value should be supported expected true got false
12 FAIL CSS Transitions with transition: all: property <offset-anchor> from [220px 240px] to [300px 400px] at (1) should be [300px 400px] assert_true: 'from' value should be supported expected true got false
13 FAIL CSS Transitions with transition: all: property <offset-anchor> from [220px 240px] to [300px 400px] at (2) should be [380px 560px] assert_true: 'from' value should be supported expected true got false
14 FAIL CSS Animations: property <offset-anchor> from [220px 240px] to [300px 400px] at (-1) should be [140px 80px] assert_true: 'from' value should be supported expected true got false
15 FAIL CSS Animations: property <offset-anchor> from [220px 240px] to [300px 400px] at (0) should be [220px 240px] assert_true: 'from' value should be supported expected true got false
16 FAIL CSS Animations: property <offset-anchor> from [220px 240px] to [300px 400px] at (0.125) should be [230px 260px] assert_true: 'from' value should be supported expected true got false
17 FAIL CSS Animations: property <offset-anchor> from [220px 240px] to [300px 400px] at (0.875) should be [290px 380px] assert_true: 'from' value should be supported expected true got false
18 FAIL CSS Animations: property <offset-anchor> from [220px 240px] to [300px 400px] at (1) should be [300px 400px] assert_true: 'from' value should be supported expected true got false
19 FAIL CSS Animations: property <offset-anchor> from [220px 240px] to [300px 400px] at (2) should be [380px 560px] assert_true: 'from' value should be supported expected true got false
20 FAIL Web Animations: property <offset-anchor> from [220px 240px] to [300px 400px] at (-1) should be [140px 80px] assert_true: 'from' value should be supported expected true got false
21 FAIL Web Animations: property <offset-anchor> from [220px 240px] to [300px 400px] at (0) should be [220px 240px] assert_true: 'from' value should be supported expected true got false
22 FAIL Web Animations: property <offset-anchor> from [220px 240px] to [300px 400px] at (0.125) should be [230px 260px] assert_true: 'from' value should be supported expected true got false
23 FAIL Web Animations: property <offset-anchor> from [220px 240px] to [300px 400px] at (0.875) should be [290px 380px] assert_true: 'from' value should be supported expected true got false
24 FAIL Web Animations: property <offset-anchor> from [220px 240px] to [300px 400px] at (1) should be [300px 400px] assert_true: 'from' value should be supported expected true got false
25 FAIL Web Animations: property <offset-anchor> from [220px 240px] to [300px 400px] at (2) should be [380px 560px] assert_true: 'from' value should be supported expected true got false
26 FAIL CSS Transitions: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (-1) should be [calc(960px - 240%) calc(800px - 160%)] assert_true: 'from' value should be supported expected true got false
27 FAIL CSS Transitions: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (0) should be [left calc(0% + 480px) top calc(0% + 400px)] assert_true: 'from' value should be supported expected true got false
28 FAIL CSS Transitions: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (0.125) should be [calc(420px + 30%) calc(350px + 20%)] assert_true: 'from' value should be supported expected true got false
29 FAIL CSS Transitions: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (0.875) should be [calc(210% + 60px) calc(140% + 50px)] assert_true: 'from' value should be supported expected true got false
30 FAIL CSS Transitions: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (1) should be [right -140% bottom -60%] assert_true: 'from' value should be supported expected true got false
31 FAIL CSS Transitions: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (2) should be [calc(480% - 480px) calc(320% - 400px)] assert_true: 'from' value should be supported expected true got false
32 FAIL CSS Transitions with transition: all: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (-1) should be [calc(960px - 240%) calc(800px - 160%)] assert_true: 'from' value should be supported expected true got false
33 FAIL CSS Transitions with transition: all: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (0) should be [left calc(0% + 480px) top calc(0% + 400px)] assert_true: 'from' value should be supported expected true got false
34 FAIL CSS Transitions with transition: all: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (0.125) should be [calc(420px + 30%) calc(350px + 20%)] assert_true: 'from' value should be supported expected true got false
35 FAIL CSS Transitions with transition: all: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (0.875) should be [calc(210% + 60px) calc(140% + 50px)] assert_true: 'from' value should be supported expected true got false
36 FAIL CSS Transitions with transition: all: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (1) should be [right -140% bottom -60%] assert_true: 'from' value should be supported expected true got false
37 FAIL CSS Transitions with transition: all: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (2) should be [calc(480% - 480px) calc(320% - 400px)] assert_true: 'from' value should be supported expected true got false
38 FAIL CSS Animations: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (-1) should be [calc(960px - 240%) calc(800px - 160%)] assert_true: 'from' value should be supported expected true got false
39 FAIL CSS Animations: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (0) should be [left calc(0% + 480px) top calc(0% + 400px)] assert_true: 'from' value should be supported expected true got false
40 FAIL CSS Animations: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (0.125) should be [calc(420px + 30%) calc(350px + 20%)] assert_true: 'from' value should be supported expected true got false
41 FAIL CSS Animations: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (0.875) should be [calc(210% + 60px) calc(140% + 50px)] assert_true: 'from' value should be supported expected true got false
42 FAIL CSS Animations: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (1) should be [right -140% bottom -60%] assert_true: 'from' value should be supported expected true got false
43 FAIL CSS Animations: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (2) should be [calc(480% - 480px) calc(320% - 400px)] assert_true: 'from' value should be supported expected true got false
44 FAIL Web Animations: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (-1) should be [calc(960px - 240%) calc(800px - 160%)] assert_true: 'from' value should be supported expected true got false
45 FAIL Web Animations: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (0) should be [left calc(0% + 480px) top calc(0% + 400px)] assert_true: 'from' value should be supported expected true got false
46 FAIL Web Animations: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (0.125) should be [calc(420px + 30%) calc(350px + 20%)] assert_true: 'from' value should be supported expected true got false
47 FAIL Web Animations: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (0.875) should be [calc(210% + 60px) calc(140% + 50px)] assert_true: 'from' value should be supported expected true got false
48 FAIL Web Animations: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (1) should be [right -140% bottom -60%] assert_true: 'from' value should be supported expected true got false
49 FAIL Web Animations: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (2) should be [calc(480% - 480px) calc(320% - 400px)] assert_true: 'from' value should be supported expected true got false
50 FAIL CSS Transitions: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (-1) should be [calc(0% - 8px) -80%] assert_true: 'from' value should be supported expected true got false
51 FAIL CSS Transitions: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (0) should be [left top] assert_true: 'from' value should be supported expected true got false
52 FAIL CSS Transitions: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (0.125) should be [calc(0% + 1px) 10%] assert_true: 'from' value should be supported expected true got false
53 FAIL CSS Transitions: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (0.875) should be [calc(0% + 7px) 70%] assert_true: 'from' value should be supported expected true got false
54 FAIL CSS Transitions: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (1) should be [left calc(0% + 8px) bottom 20%] assert_true: 'from' value should be supported expected true got false
55 FAIL CSS Transitions: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (2) should be [calc(0% + 16px) 160%] assert_true: 'from' value should be supported expected true got false
56 FAIL CSS Transitions with transition: all: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (-1) should be [calc(0% - 8px) -80%] assert_true: 'from' value should be supported expected true got false
57 FAIL CSS Transitions with transition: all: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (0) should be [left top] assert_true: 'from' value should be supported expected true got false
58 FAIL CSS Transitions with transition: all: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (0.125) should be [calc(0% + 1px) 10%] assert_true: 'from' value should be supported expected true got false
59 FAIL CSS Transitions with transition: all: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (0.875) should be [calc(0% + 7px) 70%] assert_true: 'from' value should be supported expected true got false
60 FAIL CSS Transitions with transition: all: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (1) should be [left calc(0% + 8px) bottom 20%] assert_true: 'from' value should be supported expected true got false
61 FAIL CSS Transitions with transition: all: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (2) should be [calc(0% + 16px) 160%] assert_true: 'from' value should be supported expected true got false
62 FAIL CSS Animations: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (-1) should be [calc(0% - 8px) -80%] assert_true: 'from' value should be supported expected true got false
63 FAIL CSS Animations: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (0) should be [left top] assert_true: 'from' value should be supported expected true got false
64 FAIL CSS Animations: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (0.125) should be [calc(0% + 1px) 10%] assert_true: 'from' value should be supported expected true got false
65 FAIL CSS Animations: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (0.875) should be [calc(0% + 7px) 70%] assert_true: 'from' value should be supported expected true got false
66 FAIL CSS Animations: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (1) should be [left calc(0% + 8px) bottom 20%] assert_true: 'from' value should be supported expected true got false
67 FAIL CSS Animations: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (2) should be [calc(0% + 16px) 160%] assert_true: 'from' value should be supported expected true got false
68 FAIL Web Animations: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (-1) should be [calc(0% - 8px) -80%] assert_true: 'from' value should be supported expected true got false
69 FAIL Web Animations: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (0) should be [left top] assert_true: 'from' value should be supported expected true got false
70 FAIL Web Animations: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (0.125) should be [calc(0% + 1px) 10%] assert_true: 'from' value should be supported expected true got false
71 FAIL Web Animations: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (0.875) should be [calc(0% + 7px) 70%] assert_true: 'from' value should be supported expected true got false
72 FAIL Web Animations: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (1) should be [left calc(0% + 8px) bottom 20%] assert_true: 'from' value should be supported expected true got false
73 FAIL Web Animations: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (2) should be [calc(0% + 16px) 160%] assert_true: 'from' value should be supported expected true got false
74 FAIL CSS Transitions: property <offset-anchor> from [right 10px top 20%] to [auto] at (-0.3) should be [auto] assert_true: 'from' value should be supported expected true got false
75 FAIL CSS Transitions: property <offset-anchor> from [right 10px top 20%] to [auto] at (0) should be [auto] assert_true: 'from' value should be supported expected true got false
76 FAIL CSS Transitions: property <offset-anchor> from [right 10px top 20%] to [auto] at (0.3) should be [auto] assert_true: 'from' value should be supported expected true got false
77 FAIL CSS Transitions: property <offset-anchor> from [right 10px top 20%] to [auto] at (0.5) should be [auto] assert_true: 'from' value should be supported expected true got false
78 FAIL CSS Transitions: property <offset-anchor> from [right 10px top 20%] to [auto] at (0.6) should be [auto] assert_true: 'from' value should be supported expected true got false
79 FAIL CSS Transitions: property <offset-anchor> from [right 10px top 20%] to [auto] at (1) should be [auto] assert_true: 'from' value should be supported expected true got false
80 FAIL CSS Transitions: property <offset-anchor> from [right 10px top 20%] to [auto] at (1.5) should be [auto] assert_true: 'from' value should be supported expected true got false
81 FAIL CSS Transitions with transition: all: property <offset-anchor> from [right 10px top 20%] to [auto] at (-0.3) should be [auto] assert_true: 'from' value should be supported expected true got false
82 FAIL CSS Transitions with transition: all: property <offset-anchor> from [right 10px top 20%] to [auto] at (0) should be [auto] assert_true: 'from' value should be supported expected true got false
83 FAIL CSS Transitions with transition: all: property <offset-anchor> from [right 10px top 20%] to [auto] at (0.3) should be [auto] assert_true: 'from' value should be supported expected true got false
84 FAIL CSS Transitions with transition: all: property <offset-anchor> from [right 10px top 20%] to [auto] at (0.5) should be [auto] assert_true: 'from' value should be supported expected true got false
85 FAIL CSS Transitions with transition: all: property <offset-anchor> from [right 10px top 20%] to [auto] at (0.6) should be [auto] assert_true: 'from' value should be supported expected true got false
86 FAIL CSS Transitions with transition: all: property <offset-anchor> from [right 10px top 20%] to [auto] at (1) should be [auto] assert_true: 'from' value should be supported expected true got false
87 FAIL CSS Transitions with transition: all: property <offset-anchor> from [right 10px top 20%] to [auto] at (1.5) should be [auto] assert_true: 'from' value should be supported expected true got false
88 FAIL CSS Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (-0.3) should be [right 10px top 20%] assert_true: 'from' value should be supported expected true got false
89 FAIL CSS Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (0) should be [right 10px top 20%] assert_true: 'from' value should be supported expected true got false
90 FAIL CSS Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (0.3) should be [right 10px top 20%] assert_true: 'from' value should be supported expected true got false
91 FAIL CSS Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (0.5) should be [auto] assert_true: 'from' value should be supported expected true got false
92 FAIL CSS Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (0.6) should be [auto] assert_true: 'from' value should be supported expected true got false
93 FAIL CSS Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (1) should be [auto] assert_true: 'from' value should be supported expected true got false
94 FAIL CSS Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (1.5) should be [auto] assert_true: 'from' value should be supported expected true got false
95 FAIL Web Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (-0.3) should be [right 10px top 20%] assert_true: 'from' value should be supported expected true got false
96 FAIL Web Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (0) should be [right 10px top 20%] assert_true: 'from' value should be supported expected true got false
97 FAIL Web Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (0.3) should be [right 10px top 20%] assert_true: 'from' value should be supported expected true got false
98 FAIL Web Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (0.5) should be [auto] assert_true: 'from' value should be supported expected true got false
99 FAIL Web Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (0.6) should be [auto] assert_true: 'from' value should be supported expected true got false
100 FAIL Web Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (1) should be [auto] assert_true: 'from' value should be supported expected true got false
101 FAIL Web Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (1.5) should be [auto] assert_true: 'from' value should be supported expected true got false
102 FAIL CSS Transitions: property <offset-anchor> from neutral to [20px 20px] at (-0.3) should be [7px 33px] assert_true: 'to' value should be supported expected true got false
103 FAIL CSS Transitions: property <offset-anchor> from neutral to [20px 20px] at (0) should be [10px 30px] assert_true: 'to' value should be supported expected true got false
104 FAIL CSS Transitions: property <offset-anchor> from neutral to [20px 20px] at (0.3) should be [13px 27px] assert_true: 'to' value should be supported expected true got false
105 FAIL CSS Transitions: property <offset-anchor> from neutral to [20px 20px] at (0.6) should be [16px 24px] assert_true: 'to' value should be supported expected true got false
106 FAIL CSS Transitions: property <offset-anchor> from neutral to [20px 20px] at (1) should be [20px 20px] assert_true: 'to' value should be supported expected true got false
107 FAIL CSS Transitions: property <offset-anchor> from neutral to [20px 20px] at (1.5) should be [25px 15px] assert_true: 'to' value should be supported expected true got false
108 FAIL CSS Transitions with transition: all: property <offset-anchor> from neutral to [20px 20px] at (-0.3) should be [7px 33px] assert_true: 'to' value should be supported expected true got false
109 FAIL CSS Transitions with transition: all: property <offset-anchor> from neutral to [20px 20px] at (0) should be [10px 30px] assert_true: 'to' value should be supported expected true got false
110 FAIL CSS Transitions with transition: all: property <offset-anchor> from neutral to [20px 20px] at (0.3) should be [13px 27px] assert_true: 'to' value should be supported expected true got false
111 FAIL CSS Transitions with transition: all: property <offset-anchor> from neutral to [20px 20px] at (0.6) should be [16px 24px] assert_true: 'to' value should be supported expected true got false
112 FAIL CSS Transitions with transition: all: property <offset-anchor> from neutral to [20px 20px] at (1) should be [20px 20px] assert_true: 'to' value should be supported expected true got false
113 FAIL CSS Transitions with transition: all: property <offset-anchor> from neutral to [20px 20px] at (1.5) should be [25px 15px] assert_true: 'to' value should be supported expected true got false
114 FAIL CSS Animations: property <offset-anchor> from neutral to [20px 20px] at (-0.3) should be [7px 33px] assert_true: 'to' value should be supported expected true got false
115 FAIL CSS Animations: property <offset-anchor> from neutral to [20px 20px] at (0) should be [10px 30px] assert_true: 'to' value should be supported expected true got false
116 FAIL CSS Animations: property <offset-anchor> from neutral to [20px 20px] at (0.3) should be [13px 27px] assert_true: 'to' value should be supported expected true got false
117 FAIL CSS Animations: property <offset-anchor> from neutral to [20px 20px] at (0.6) should be [16px 24px] assert_true: 'to' value should be supported expected true got false
118 FAIL CSS Animations: property <offset-anchor> from neutral to [20px 20px] at (1) should be [20px 20px] assert_true: 'to' value should be supported expected true got false
119 FAIL CSS Animations: property <offset-anchor> from neutral to [20px 20px] at (1.5) should be [25px 15px] assert_true: 'to' value should be supported expected true got false
120 FAIL Web Animations: property <offset-anchor> from neutral to [20px 20px] at (-0.3) should be [7px 33px] assert_true: 'to' value should be supported expected true got false
121 FAIL Web Animations: property <offset-anchor> from neutral to [20px 20px] at (0) should be [10px 30px] assert_true: 'to' value should be supported expected true got false
122 FAIL Web Animations: property <offset-anchor> from neutral to [20px 20px] at (0.3) should be [13px 27px] assert_true: 'to' value should be supported expected true got false
123 FAIL Web Animations: property <offset-anchor> from neutral to [20px 20px] at (0.6) should be [16px 24px] assert_true: 'to' value should be supported expected true got false
124 FAIL Web Animations: property <offset-anchor> from neutral to [20px 20px] at (1) should be [20px 20px] assert_true: 'to' value should be supported expected true got false
125 FAIL Web Animations: property <offset-anchor> from neutral to [20px 20px] at (1.5) should be [25px 15px] assert_true: 'to' value should be supported expected true got false
126 FAIL CSS Transitions: property <offset-anchor> from [initial] to [60% 40%] at (-0.3) should be [60% 40%] assert_true: 'from' value should be supported expected true got false
127 FAIL CSS Transitions: property <offset-anchor> from [initial] to [60% 40%] at (0) should be [60% 40%] assert_true: 'from' value should be supported expected true got false
128 FAIL CSS Transitions: property <offset-anchor> from [initial] to [60% 40%] at (0.3) should be [60% 40%] assert_true: 'from' value should be supported expected true got false
129 FAIL CSS Transitions: property <offset-anchor> from [initial] to [60% 40%] at (0.5) should be [60% 40%] assert_true: 'from' value should be supported expected true got false
130 FAIL CSS Transitions: property <offset-anchor> from [initial] to [60% 40%] at (0.6) should be [60% 40%] assert_true: 'from' value should be supported expected true got false
131 FAIL CSS Transitions: property <offset-anchor> from [initial] to [60% 40%] at (1) should be [60% 40%] assert_true: 'from' value should be supported expected true got false
132 FAIL CSS Transitions: property <offset-anchor> from [initial] to [60% 40%] at (1.5) should be [60% 40%] assert_true: 'from' value should be supported expected true got false
133 FAIL CSS Transitions with transition: all: property <offset-anchor> from [initial] to [60% 40%] at (-0.3) should be [60% 40%] assert_true: 'from' value should be supported expected true got false
134 FAIL CSS Transitions with transition: all: property <offset-anchor> from [initial] to [60% 40%] at (0) should be [60% 40%] assert_true: 'from' value should be supported expected true got false
135 FAIL CSS Transitions with transition: all: property <offset-anchor> from [initial] to [60% 40%] at (0.3) should be [60% 40%] assert_true: 'from' value should be supported expected true got false
136 FAIL CSS Transitions with transition: all: property <offset-anchor> from [initial] to [60% 40%] at (0.5) should be [60% 40%] assert_true: 'from' value should be supported expected true got false
137 FAIL CSS Transitions with transition: all: property <offset-anchor> from [initial] to [60% 40%] at (0.6) should be [60% 40%] assert_true: 'from' value should be supported expected true got false
138 FAIL CSS Transitions with transition: all: property <offset-anchor> from [initial] to [60% 40%] at (1) should be [60% 40%] assert_true: 'from' value should be supported expected true got false
139 FAIL CSS Transitions with transition: all: property <offset-anchor> from [initial] to [60% 40%] at (1.5) should be [60% 40%] assert_true: 'from' value should be supported expected true got false
140 FAIL CSS Animations: property <offset-anchor> from [initial] to [60% 40%] at (-0.3) should be [initial] assert_true: 'from' value should be supported expected true got false
141 FAIL CSS Animations: property <offset-anchor> from [initial] to [60% 40%] at (0) should be [initial] assert_true: 'from' value should be supported expected true got false
142 FAIL CSS Animations: property <offset-anchor> from [initial] to [60% 40%] at (0.3) should be [initial] assert_true: 'from' value should be supported expected true got false
143 FAIL CSS Animations: property <offset-anchor> from [initial] to [60% 40%] at (0.5) should be [60% 40%] assert_true: 'from' value should be supported expected true got false
144 FAIL CSS Animations: property <offset-anchor> from [initial] to [60% 40%] at (0.6) should be [60% 40%] assert_true: 'from' value should be supported expected true got false
145 FAIL CSS Animations: property <offset-anchor> from [initial] to [60% 40%] at (1) should be [60% 40%] assert_true: 'from' value should be supported expected true got false
146 FAIL CSS Animations: property <offset-anchor> from [initial] to [60% 40%] at (1.5) should be [60% 40%] assert_true: 'from' value should be supported expected true got false
147 FAIL Web Animations: property <offset-anchor> from [initial] to [60% 40%] at (-0.3) should be [initial] assert_true: 'from' value should be supported expected true got false
148 FAIL Web Animations: property <offset-anchor> from [initial] to [60% 40%] at (0) should be [initial] assert_true: 'from' value should be supported expected true got false
149 FAIL Web Animations: property <offset-anchor> from [initial] to [60% 40%] at (0.3) should be [initial] assert_true: 'from' value should be supported expected true got false
150 FAIL Web Animations: property <offset-anchor> from [initial] to [60% 40%] at (0.5) should be [60% 40%] assert_true: 'from' value should be supported expected true got false
151 FAIL Web Animations: property <offset-anchor> from [initial] to [60% 40%] at (0.6) should be [60% 40%] assert_true: 'from' value should be supported expected true got false
152 FAIL Web Animations: property <offset-anchor> from [initial] to [60% 40%] at (1) should be [60% 40%] assert_true: 'from' value should be supported expected true got false
153 FAIL Web Animations: property <offset-anchor> from [initial] to [60% 40%] at (1.5) should be [60% 40%] assert_true: 'from' value should be supported expected true got false
154 FAIL CSS Transitions: property <offset-anchor> from [inherit] to [20px 20px] at (-0.3) should be [33px 7px] assert_true: 'from' value should be supported expected true got false
155 FAIL CSS Transitions: property <offset-anchor> from [inherit] to [20px 20px] at (0) should be [30px 10px] assert_true: 'from' value should be supported expected true got false
156 FAIL CSS Transitions: property <offset-anchor> from [inherit] to [20px 20px] at (0.3) should be [27px 13px] assert_true: 'from' value should be supported expected true got false
157 FAIL CSS Transitions: property <offset-anchor> from [inherit] to [20px 20px] at (0.6) should be [24px 16px] assert_true: 'from' value should be supported expected true got false
158 FAIL CSS Transitions: property <offset-anchor> from [inherit] to [20px 20px] at (1) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
159 FAIL CSS Transitions: property <offset-anchor> from [inherit] to [20px 20px] at (1.5) should be [15px 25px] assert_true: 'from' value should be supported expected true got false
160 FAIL CSS Transitions with transition: all: property <offset-anchor> from [inherit] to [20px 20px] at (-0.3) should be [33px 7px] assert_true: 'from' value should be supported expected true got false
161 FAIL CSS Transitions with transition: all: property <offset-anchor> from [inherit] to [20px 20px] at (0) should be [30px 10px] assert_true: 'from' value should be supported expected true got false
162 FAIL CSS Transitions with transition: all: property <offset-anchor> from [inherit] to [20px 20px] at (0.3) should be [27px 13px] assert_true: 'from' value should be supported expected true got false
163 FAIL CSS Transitions with transition: all: property <offset-anchor> from [inherit] to [20px 20px] at (0.6) should be [24px 16px] assert_true: 'from' value should be supported expected true got false
164 FAIL CSS Transitions with transition: all: property <offset-anchor> from [inherit] to [20px 20px] at (1) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
165 FAIL CSS Transitions with transition: all: property <offset-anchor> from [inherit] to [20px 20px] at (1.5) should be [15px 25px] assert_true: 'from' value should be supported expected true got false
166 FAIL CSS Animations: property <offset-anchor> from [inherit] to [20px 20px] at (-0.3) should be [33px 7px] assert_true: 'from' value should be supported expected true got false
167 FAIL CSS Animations: property <offset-anchor> from [inherit] to [20px 20px] at (0) should be [30px 10px] assert_true: 'from' value should be supported expected true got false
168 FAIL CSS Animations: property <offset-anchor> from [inherit] to [20px 20px] at (0.3) should be [27px 13px] assert_true: 'from' value should be supported expected true got false
169 FAIL CSS Animations: property <offset-anchor> from [inherit] to [20px 20px] at (0.6) should be [24px 16px] assert_true: 'from' value should be supported expected true got false
170 FAIL CSS Animations: property <offset-anchor> from [inherit] to [20px 20px] at (1) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
171 FAIL CSS Animations: property <offset-anchor> from [inherit] to [20px 20px] at (1.5) should be [15px 25px] assert_true: 'from' value should be supported expected true got false
172 FAIL Web Animations: property <offset-anchor> from [inherit] to [20px 20px] at (-0.3) should be [33px 7px] assert_true: 'from' value should be supported expected true got false
173 FAIL Web Animations: property <offset-anchor> from [inherit] to [20px 20px] at (0) should be [30px 10px] assert_true: 'from' value should be supported expected true got false
174 FAIL Web Animations: property <offset-anchor> from [inherit] to [20px 20px] at (0.3) should be [27px 13px] assert_true: 'from' value should be supported expected true got false
175 FAIL Web Animations: property <offset-anchor> from [inherit] to [20px 20px] at (0.6) should be [24px 16px] assert_true: 'from' value should be supported expected true got false
176 FAIL Web Animations: property <offset-anchor> from [inherit] to [20px 20px] at (1) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
177 FAIL Web Animations: property <offset-anchor> from [inherit] to [20px 20px] at (1.5) should be [15px 25px] assert_true: 'from' value should be supported expected true got false
178 FAIL CSS Transitions: property <offset-anchor> from [unset] to [50% 10px] at (-0.3) should be [50% 10px] assert_true: 'from' value should be supported expected true got false
179 FAIL CSS Transitions: property <offset-anchor> from [unset] to [50% 10px] at (0) should be [50% 10px] assert_true: 'from' value should be supported expected true got false
180 FAIL CSS Transitions: property <offset-anchor> from [unset] to [50% 10px] at (0.3) should be [50% 10px] assert_true: 'from' value should be supported expected true got false
181 FAIL CSS Transitions: property <offset-anchor> from [unset] to [50% 10px] at (0.5) should be [50% 10px] assert_true: 'from' value should be supported expected true got false
182 FAIL CSS Transitions: property <offset-anchor> from [unset] to [50% 10px] at (0.6) should be [50% 10px] assert_true: 'from' value should be supported expected true got false
183 FAIL CSS Transitions: property <offset-anchor> from [unset] to [50% 10px] at (1) should be [50% 10px] assert_true: 'from' value should be supported expected true got false
184 FAIL CSS Transitions: property <offset-anchor> from [unset] to [50% 10px] at (1.5) should be [50% 10px] assert_true: 'from' value should be supported expected true got false
185 FAIL CSS Transitions with transition: all: property <offset-anchor> from [unset] to [50% 10px] at (-0.3) should be [50% 10px] assert_true: 'from' value should be supported expected true got false
186 FAIL CSS Transitions with transition: all: property <offset-anchor> from [unset] to [50% 10px] at (0) should be [50% 10px] assert_true: 'from' value should be supported expected true got false
187 FAIL CSS Transitions with transition: all: property <offset-anchor> from [unset] to [50% 10px] at (0.3) should be [50% 10px] assert_true: 'from' value should be supported expected true got false
188 FAIL CSS Transitions with transition: all: property <offset-anchor> from [unset] to [50% 10px] at (0.5) should be [50% 10px] assert_true: 'from' value should be supported expected true got false
189 FAIL CSS Transitions with transition: all: property <offset-anchor> from [unset] to [50% 10px] at (0.6) should be [50% 10px] assert_true: 'from' value should be supported expected true got false
190 FAIL CSS Transitions with transition: all: property <offset-anchor> from [unset] to [50% 10px] at (1) should be [50% 10px] assert_true: 'from' value should be supported expected true got false
191 FAIL CSS Transitions with transition: all: property <offset-anchor> from [unset] to [50% 10px] at (1.5) should be [50% 10px] assert_true: 'from' value should be supported expected true got false
192 FAIL CSS Animations: property <offset-anchor> from [unset] to [50% 10px] at (-0.3) should be [unset] assert_true: 'from' value should be supported expected true got false
193 FAIL CSS Animations: property <offset-anchor> from [unset] to [50% 10px] at (0) should be [unset] assert_true: 'from' value should be supported expected true got false
194 FAIL CSS Animations: property <offset-anchor> from [unset] to [50% 10px] at (0.3) should be [unset] assert_true: 'from' value should be supported expected true got false
195 FAIL CSS Animations: property <offset-anchor> from [unset] to [50% 10px] at (0.5) should be [50% 10px] assert_true: 'from' value should be supported expected true got false
196 FAIL CSS Animations: property <offset-anchor> from [unset] to [50% 10px] at (0.6) should be [50% 10px] assert_true: 'from' value should be supported expected true got false
197 FAIL CSS Animations: property <offset-anchor> from [unset] to [50% 10px] at (1) should be [50% 10px] assert_true: 'from' value should be supported expected true got false
198 FAIL CSS Animations: property <offset-anchor> from [unset] to [50% 10px] at (1.5) should be [50% 10px] assert_true: 'from' value should be supported expected true got false
199 FAIL Web Animations: property <offset-anchor> from [unset] to [50% 10px] at (-0.3) should be [unset] assert_true: 'from' value should be supported expected true got false
200 FAIL Web Animations: property <offset-anchor> from [unset] to [50% 10px] at (0) should be [unset] assert_true: 'from' value should be supported expected true got false
201 FAIL Web Animations: property <offset-anchor> from [unset] to [50% 10px] at (0.3) should be [unset] assert_true: 'from' value should be supported expected true got false
202 FAIL Web Animations: property <offset-anchor> from [unset] to [50% 10px] at (0.5) should be [50% 10px] assert_true: 'from' value should be supported expected true got false
203 FAIL Web Animations: property <offset-anchor> from [unset] to [50% 10px] at (0.6) should be [50% 10px] assert_true: 'from' value should be supported expected true got false
204 FAIL Web Animations: property <offset-anchor> from [unset] to [50% 10px] at (1) should be [50% 10px] assert_true: 'from' value should be supported expected true got false
205 FAIL Web Animations: property <offset-anchor> from [unset] to [50% 10px] at (1.5) should be [50% 10px] assert_true: 'from' value should be supported expected true got false
206 FAIL CSS Transitions: property <offset-anchor> from [0% 50%] to [100% 150%] at (-0.3) should be [-30% 20%] assert_true: 'from' value should be supported expected true got false
207 FAIL CSS Transitions: property <offset-anchor> from [0% 50%] to [100% 150%] at (0) should be [0% 50%] assert_true: 'from' value should be supported expected true got false
208 FAIL CSS Transitions: property <offset-anchor> from [0% 50%] to [100% 150%] at (0.3) should be [30% 80%] assert_true: 'from' value should be supported expected true got false
209 FAIL CSS Transitions: property <offset-anchor> from [0% 50%] to [100% 150%] at (0.6) should be [60% 110%] assert_true: 'from' value should be supported expected true got false
210 FAIL CSS Transitions: property <offset-anchor> from [0% 50%] to [100% 150%] at (1) should be [100% 150%] assert_true: 'from' value should be supported expected true got false
211 FAIL CSS Transitions: property <offset-anchor> from [0% 50%] to [100% 150%] at (1.5) should be [150% 200%] assert_true: 'from' value should be supported expected true got false
212 FAIL CSS Transitions with transition: all: property <offset-anchor> from [0% 50%] to [100% 150%] at (-0.3) should be [-30% 20%] assert_true: 'from' value should be supported expected true got false
213 FAIL CSS Transitions with transition: all: property <offset-anchor> from [0% 50%] to [100% 150%] at (0) should be [0% 50%] assert_true: 'from' value should be supported expected true got false
214 FAIL CSS Transitions with transition: all: property <offset-anchor> from [0% 50%] to [100% 150%] at (0.3) should be [30% 80%] assert_true: 'from' value should be supported expected true got false
215 FAIL CSS Transitions with transition: all: property <offset-anchor> from [0% 50%] to [100% 150%] at (0.6) should be [60% 110%] assert_true: 'from' value should be supported expected true got false
216 FAIL CSS Transitions with transition: all: property <offset-anchor> from [0% 50%] to [100% 150%] at (1) should be [100% 150%] assert_true: 'from' value should be supported expected true got false
217 FAIL CSS Transitions with transition: all: property <offset-anchor> from [0% 50%] to [100% 150%] at (1.5) should be [150% 200%] assert_true: 'from' value should be supported expected true got false
218 FAIL CSS Animations: property <offset-anchor> from [0% 50%] to [100% 150%] at (-0.3) should be [-30% 20%] assert_true: 'from' value should be supported expected true got false
219 FAIL CSS Animations: property <offset-anchor> from [0% 50%] to [100% 150%] at (0) should be [0% 50%] assert_true: 'from' value should be supported expected true got false
220 FAIL CSS Animations: property <offset-anchor> from [0% 50%] to [100% 150%] at (0.3) should be [30% 80%] assert_true: 'from' value should be supported expected true got false
221 FAIL CSS Animations: property <offset-anchor> from [0% 50%] to [100% 150%] at (0.6) should be [60% 110%] assert_true: 'from' value should be supported expected true got false
222 FAIL CSS Animations: property <offset-anchor> from [0% 50%] to [100% 150%] at (1) should be [100% 150%] assert_true: 'from' value should be supported expected true got false
223 FAIL CSS Animations: property <offset-anchor> from [0% 50%] to [100% 150%] at (1.5) should be [150% 200%] assert_true: 'from' value should be supported expected true got false
224 FAIL Web Animations: property <offset-anchor> from [0% 50%] to [100% 150%] at (-0.3) should be [-30% 20%] assert_true: 'from' value should be supported expected true got false
225 FAIL Web Animations: property <offset-anchor> from [0% 50%] to [100% 150%] at (0) should be [0% 50%] assert_true: 'from' value should be supported expected true got false
226 FAIL Web Animations: property <offset-anchor> from [0% 50%] to [100% 150%] at (0.3) should be [30% 80%] assert_true: 'from' value should be supported expected true got false
227 FAIL Web Animations: property <offset-anchor> from [0% 50%] to [100% 150%] at (0.6) should be [60% 110%] assert_true: 'from' value should be supported expected true got false
228 FAIL Web Animations: property <offset-anchor> from [0% 50%] to [100% 150%] at (1) should be [100% 150%] assert_true: 'from' value should be supported expected true got false
229 FAIL Web Animations: property <offset-anchor> from [0% 50%] to [100% 150%] at (1.5) should be [150% 200%] assert_true: 'from' value should be supported expected true got false
230 FAIL CSS Transitions: property <offset-anchor> from [auto] to [20px 20px] at (-0.3) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
231 FAIL CSS Transitions: property <offset-anchor> from [auto] to [20px 20px] at (0) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
232 FAIL CSS Transitions: property <offset-anchor> from [auto] to [20px 20px] at (0.3) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
233 FAIL CSS Transitions: property <offset-anchor> from [auto] to [20px 20px] at (0.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
234 FAIL CSS Transitions: property <offset-anchor> from [auto] to [20px 20px] at (0.6) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
235 FAIL CSS Transitions: property <offset-anchor> from [auto] to [20px 20px] at (1) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
236 FAIL CSS Transitions: property <offset-anchor> from [auto] to [20px 20px] at (1.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
237 FAIL CSS Transitions with transition: all: property <offset-anchor> from [auto] to [20px 20px] at (-0.3) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
238 FAIL CSS Transitions with transition: all: property <offset-anchor> from [auto] to [20px 20px] at (0) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
239 FAIL CSS Transitions with transition: all: property <offset-anchor> from [auto] to [20px 20px] at (0.3) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
240 FAIL CSS Transitions with transition: all: property <offset-anchor> from [auto] to [20px 20px] at (0.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
241 FAIL CSS Transitions with transition: all: property <offset-anchor> from [auto] to [20px 20px] at (0.6) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
242 FAIL CSS Transitions with transition: all: property <offset-anchor> from [auto] to [20px 20px] at (1) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
243 FAIL CSS Transitions with transition: all: property <offset-anchor> from [auto] to [20px 20px] at (1.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
244 FAIL CSS Animations: property <offset-anchor> from [auto] to [20px 20px] at (-0.3) should be [auto] assert_true: 'from' value should be supported expected true got false
245 FAIL CSS Animations: property <offset-anchor> from [auto] to [20px 20px] at (0) should be [auto] assert_true: 'from' value should be supported expected true got false
246 FAIL CSS Animations: property <offset-anchor> from [auto] to [20px 20px] at (0.3) should be [auto] assert_true: 'from' value should be supported expected true got false
247 FAIL CSS Animations: property <offset-anchor> from [auto] to [20px 20px] at (0.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
248 FAIL CSS Animations: property <offset-anchor> from [auto] to [20px 20px] at (0.6) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
249 FAIL CSS Animations: property <offset-anchor> from [auto] to [20px 20px] at (1) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
250 FAIL CSS Animations: property <offset-anchor> from [auto] to [20px 20px] at (1.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
251 FAIL Web Animations: property <offset-anchor> from [auto] to [20px 20px] at (-0.3) should be [auto] assert_true: 'from' value should be supported expected true got false
252 FAIL Web Animations: property <offset-anchor> from [auto] to [20px 20px] at (0) should be [auto] assert_true: 'from' value should be supported expected true got false
253 FAIL Web Animations: property <offset-anchor> from [auto] to [20px 20px] at (0.3) should be [auto] assert_true: 'from' value should be supported expected true got false
254 FAIL Web Animations: property <offset-anchor> from [auto] to [20px 20px] at (0.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
255 FAIL Web Animations: property <offset-anchor> from [auto] to [20px 20px] at (0.6) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
256 FAIL Web Animations: property <offset-anchor> from [auto] to [20px 20px] at (1) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
257 FAIL Web Animations: property <offset-anchor> from [auto] to [20px 20px] at (1.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
 2PASS CSS Transitions: property <offset-anchor> from [220px 240px] to [300px 400px] at (-1) should be [140px 80px]
 3PASS CSS Transitions: property <offset-anchor> from [220px 240px] to [300px 400px] at (0) should be [220px 240px]
 4PASS CSS Transitions: property <offset-anchor> from [220px 240px] to [300px 400px] at (0.125) should be [230px 260px]
 5PASS CSS Transitions: property <offset-anchor> from [220px 240px] to [300px 400px] at (0.875) should be [290px 380px]
 6PASS CSS Transitions: property <offset-anchor> from [220px 240px] to [300px 400px] at (1) should be [300px 400px]
 7PASS CSS Transitions: property <offset-anchor> from [220px 240px] to [300px 400px] at (2) should be [380px 560px]
 8PASS CSS Transitions with transition: all: property <offset-anchor> from [220px 240px] to [300px 400px] at (-1) should be [140px 80px]
 9PASS CSS Transitions with transition: all: property <offset-anchor> from [220px 240px] to [300px 400px] at (0) should be [220px 240px]
 10PASS CSS Transitions with transition: all: property <offset-anchor> from [220px 240px] to [300px 400px] at (0.125) should be [230px 260px]
 11PASS CSS Transitions with transition: all: property <offset-anchor> from [220px 240px] to [300px 400px] at (0.875) should be [290px 380px]
 12PASS CSS Transitions with transition: all: property <offset-anchor> from [220px 240px] to [300px 400px] at (1) should be [300px 400px]
 13PASS CSS Transitions with transition: all: property <offset-anchor> from [220px 240px] to [300px 400px] at (2) should be [380px 560px]
 14PASS CSS Animations: property <offset-anchor> from [220px 240px] to [300px 400px] at (-1) should be [140px 80px]
 15PASS CSS Animations: property <offset-anchor> from [220px 240px] to [300px 400px] at (0) should be [220px 240px]
 16PASS CSS Animations: property <offset-anchor> from [220px 240px] to [300px 400px] at (0.125) should be [230px 260px]
 17PASS CSS Animations: property <offset-anchor> from [220px 240px] to [300px 400px] at (0.875) should be [290px 380px]
 18PASS CSS Animations: property <offset-anchor> from [220px 240px] to [300px 400px] at (1) should be [300px 400px]
 19PASS CSS Animations: property <offset-anchor> from [220px 240px] to [300px 400px] at (2) should be [380px 560px]
 20PASS Web Animations: property <offset-anchor> from [220px 240px] to [300px 400px] at (-1) should be [140px 80px]
 21PASS Web Animations: property <offset-anchor> from [220px 240px] to [300px 400px] at (0) should be [220px 240px]
 22PASS Web Animations: property <offset-anchor> from [220px 240px] to [300px 400px] at (0.125) should be [230px 260px]
 23PASS Web Animations: property <offset-anchor> from [220px 240px] to [300px 400px] at (0.875) should be [290px 380px]
 24PASS Web Animations: property <offset-anchor> from [220px 240px] to [300px 400px] at (1) should be [300px 400px]
 25PASS Web Animations: property <offset-anchor> from [220px 240px] to [300px 400px] at (2) should be [380px 560px]
 26PASS CSS Transitions: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (-1) should be [calc(960px - 240%) calc(800px - 160%)]
 27PASS CSS Transitions: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (0) should be [left calc(0% + 480px) top calc(0% + 400px)]
 28PASS CSS Transitions: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (0.125) should be [calc(420px + 30%) calc(350px + 20%)]
 29PASS CSS Transitions: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (0.875) should be [calc(210% + 60px) calc(140% + 50px)]
 30PASS CSS Transitions: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (1) should be [right -140% bottom -60%]
 31PASS CSS Transitions: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (2) should be [calc(480% - 480px) calc(320% - 400px)]
 32PASS CSS Transitions with transition: all: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (-1) should be [calc(960px - 240%) calc(800px - 160%)]
 33PASS CSS Transitions with transition: all: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (0) should be [left calc(0% + 480px) top calc(0% + 400px)]
 34PASS CSS Transitions with transition: all: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (0.125) should be [calc(420px + 30%) calc(350px + 20%)]
 35PASS CSS Transitions with transition: all: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (0.875) should be [calc(210% + 60px) calc(140% + 50px)]
 36PASS CSS Transitions with transition: all: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (1) should be [right -140% bottom -60%]
 37PASS CSS Transitions with transition: all: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (2) should be [calc(480% - 480px) calc(320% - 400px)]
 38PASS CSS Animations: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (-1) should be [calc(960px - 240%) calc(800px - 160%)]
 39PASS CSS Animations: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (0) should be [left calc(0% + 480px) top calc(0% + 400px)]
 40PASS CSS Animations: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (0.125) should be [calc(420px + 30%) calc(350px + 20%)]
 41PASS CSS Animations: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (0.875) should be [calc(210% + 60px) calc(140% + 50px)]
 42PASS CSS Animations: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (1) should be [right -140% bottom -60%]
 43PASS CSS Animations: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (2) should be [calc(480% - 480px) calc(320% - 400px)]
 44PASS Web Animations: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (-1) should be [calc(960px - 240%) calc(800px - 160%)]
 45PASS Web Animations: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (0) should be [left calc(0% + 480px) top calc(0% + 400px)]
 46PASS Web Animations: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (0.125) should be [calc(420px + 30%) calc(350px + 20%)]
 47PASS Web Animations: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (0.875) should be [calc(210% + 60px) calc(140% + 50px)]
 48PASS Web Animations: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (1) should be [right -140% bottom -60%]
 49PASS Web Animations: property <offset-anchor> from [left 480px top 400px] to [right -140% bottom -60%] at (2) should be [calc(480% - 480px) calc(320% - 400px)]
 50PASS CSS Transitions: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (-1) should be [calc(0% - 8px) -80%]
 51PASS CSS Transitions: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (0) should be [left top]
 52PASS CSS Transitions: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (0.125) should be [calc(0% + 1px) 10%]
 53PASS CSS Transitions: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (0.875) should be [calc(0% + 7px) 70%]
 54PASS CSS Transitions: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (1) should be [left calc(0% + 8px) bottom 20%]
 55PASS CSS Transitions: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (2) should be [calc(0% + 16px) 160%]
 56PASS CSS Transitions with transition: all: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (-1) should be [calc(0% - 8px) -80%]
 57PASS CSS Transitions with transition: all: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (0) should be [left top]
 58PASS CSS Transitions with transition: all: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (0.125) should be [calc(0% + 1px) 10%]
 59PASS CSS Transitions with transition: all: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (0.875) should be [calc(0% + 7px) 70%]
 60PASS CSS Transitions with transition: all: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (1) should be [left calc(0% + 8px) bottom 20%]
 61PASS CSS Transitions with transition: all: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (2) should be [calc(0% + 16px) 160%]
 62PASS CSS Animations: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (-1) should be [calc(0% - 8px) -80%]
 63PASS CSS Animations: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (0) should be [left top]
 64PASS CSS Animations: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (0.125) should be [calc(0% + 1px) 10%]
 65PASS CSS Animations: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (0.875) should be [calc(0% + 7px) 70%]
 66PASS CSS Animations: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (1) should be [left calc(0% + 8px) bottom 20%]
 67PASS CSS Animations: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (2) should be [calc(0% + 16px) 160%]
 68PASS Web Animations: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (-1) should be [calc(0% - 8px) -80%]
 69PASS Web Animations: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (0) should be [left top]
 70PASS Web Animations: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (0.125) should be [calc(0% + 1px) 10%]
 71PASS Web Animations: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (0.875) should be [calc(0% + 7px) 70%]
 72PASS Web Animations: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (1) should be [left calc(0% + 8px) bottom 20%]
 73PASS Web Animations: property <offset-anchor> from [left top] to [left 8px bottom 20%] at (2) should be [calc(0% + 16px) 160%]
 74PASS CSS Transitions: property <offset-anchor> from [right 10px top 20%] to [auto] at (-0.3) should be [auto]
 75PASS CSS Transitions: property <offset-anchor> from [right 10px top 20%] to [auto] at (0) should be [auto]
 76PASS CSS Transitions: property <offset-anchor> from [right 10px top 20%] to [auto] at (0.3) should be [auto]
 77PASS CSS Transitions: property <offset-anchor> from [right 10px top 20%] to [auto] at (0.5) should be [auto]
 78PASS CSS Transitions: property <offset-anchor> from [right 10px top 20%] to [auto] at (0.6) should be [auto]
 79PASS CSS Transitions: property <offset-anchor> from [right 10px top 20%] to [auto] at (1) should be [auto]
 80PASS CSS Transitions: property <offset-anchor> from [right 10px top 20%] to [auto] at (1.5) should be [auto]
 81PASS CSS Transitions with transition: all: property <offset-anchor> from [right 10px top 20%] to [auto] at (-0.3) should be [auto]
 82PASS CSS Transitions with transition: all: property <offset-anchor> from [right 10px top 20%] to [auto] at (0) should be [auto]
 83PASS CSS Transitions with transition: all: property <offset-anchor> from [right 10px top 20%] to [auto] at (0.3) should be [auto]
 84PASS CSS Transitions with transition: all: property <offset-anchor> from [right 10px top 20%] to [auto] at (0.5) should be [auto]
 85PASS CSS Transitions with transition: all: property <offset-anchor> from [right 10px top 20%] to [auto] at (0.6) should be [auto]
 86PASS CSS Transitions with transition: all: property <offset-anchor> from [right 10px top 20%] to [auto] at (1) should be [auto]
 87PASS CSS Transitions with transition: all: property <offset-anchor> from [right 10px top 20%] to [auto] at (1.5) should be [auto]
 88PASS CSS Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (-0.3) should be [right 10px top 20%]
 89PASS CSS Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (0) should be [right 10px top 20%]
 90PASS CSS Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (0.3) should be [right 10px top 20%]
 91PASS CSS Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (0.5) should be [auto]
 92PASS CSS Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (0.6) should be [auto]
 93PASS CSS Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (1) should be [auto]
 94PASS CSS Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (1.5) should be [auto]
 95PASS Web Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (-0.3) should be [right 10px top 20%]
 96PASS Web Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (0) should be [right 10px top 20%]
 97PASS Web Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (0.3) should be [right 10px top 20%]
 98PASS Web Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (0.5) should be [auto]
 99PASS Web Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (0.6) should be [auto]
 100PASS Web Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (1) should be [auto]
 101PASS Web Animations: property <offset-anchor> from [right 10px top 20%] to [auto] at (1.5) should be [auto]
 102PASS CSS Transitions: property <offset-anchor> from neutral to [20px 20px] at (-0.3) should be [7px 33px]
 103PASS CSS Transitions: property <offset-anchor> from neutral to [20px 20px] at (0) should be [10px 30px]
 104PASS CSS Transitions: property <offset-anchor> from neutral to [20px 20px] at (0.3) should be [13px 27px]
 105PASS CSS Transitions: property <offset-anchor> from neutral to [20px 20px] at (0.6) should be [16px 24px]
 106PASS CSS Transitions: property <offset-anchor> from neutral to [20px 20px] at (1) should be [20px 20px]
 107PASS CSS Transitions: property <offset-anchor> from neutral to [20px 20px] at (1.5) should be [25px 15px]
 108PASS CSS Transitions with transition: all: property <offset-anchor> from neutral to [20px 20px] at (-0.3) should be [7px 33px]
 109PASS CSS Transitions with transition: all: property <offset-anchor> from neutral to [20px 20px] at (0) should be [10px 30px]
 110PASS CSS Transitions with transition: all: property <offset-anchor> from neutral to [20px 20px] at (0.3) should be [13px 27px]
 111PASS CSS Transitions with transition: all: property <offset-anchor> from neutral to [20px 20px] at (0.6) should be [16px 24px]
 112PASS CSS Transitions with transition: all: property <offset-anchor> from neutral to [20px 20px] at (1) should be [20px 20px]
 113PASS CSS Transitions with transition: all: property <offset-anchor> from neutral to [20px 20px] at (1.5) should be [25px 15px]
 114PASS CSS Animations: property <offset-anchor> from neutral to [20px 20px] at (-0.3) should be [7px 33px]
 115PASS CSS Animations: property <offset-anchor> from neutral to [20px 20px] at (0) should be [10px 30px]
 116PASS CSS Animations: property <offset-anchor> from neutral to [20px 20px] at (0.3) should be [13px 27px]
 117PASS CSS Animations: property <offset-anchor> from neutral to [20px 20px] at (0.6) should be [16px 24px]
 118PASS CSS Animations: property <offset-anchor> from neutral to [20px 20px] at (1) should be [20px 20px]
 119PASS CSS Animations: property <offset-anchor> from neutral to [20px 20px] at (1.5) should be [25px 15px]
 120PASS Web Animations: property <offset-anchor> from neutral to [20px 20px] at (-0.3) should be [7px 33px]
 121PASS Web Animations: property <offset-anchor> from neutral to [20px 20px] at (0) should be [10px 30px]
 122PASS Web Animations: property <offset-anchor> from neutral to [20px 20px] at (0.3) should be [13px 27px]
 123PASS Web Animations: property <offset-anchor> from neutral to [20px 20px] at (0.6) should be [16px 24px]
 124PASS Web Animations: property <offset-anchor> from neutral to [20px 20px] at (1) should be [20px 20px]
 125PASS Web Animations: property <offset-anchor> from neutral to [20px 20px] at (1.5) should be [25px 15px]
 126PASS CSS Transitions: property <offset-anchor> from [initial] to [60% 40%] at (-0.3) should be [60% 40%]
 127PASS CSS Transitions: property <offset-anchor> from [initial] to [60% 40%] at (0) should be [60% 40%]
 128PASS CSS Transitions: property <offset-anchor> from [initial] to [60% 40%] at (0.3) should be [60% 40%]
 129PASS CSS Transitions: property <offset-anchor> from [initial] to [60% 40%] at (0.5) should be [60% 40%]
 130PASS CSS Transitions: property <offset-anchor> from [initial] to [60% 40%] at (0.6) should be [60% 40%]
 131PASS CSS Transitions: property <offset-anchor> from [initial] to [60% 40%] at (1) should be [60% 40%]
 132PASS CSS Transitions: property <offset-anchor> from [initial] to [60% 40%] at (1.5) should be [60% 40%]
 133PASS CSS Transitions with transition: all: property <offset-anchor> from [initial] to [60% 40%] at (-0.3) should be [60% 40%]
 134PASS CSS Transitions with transition: all: property <offset-anchor> from [initial] to [60% 40%] at (0) should be [60% 40%]
 135PASS CSS Transitions with transition: all: property <offset-anchor> from [initial] to [60% 40%] at (0.3) should be [60% 40%]
 136PASS CSS Transitions with transition: all: property <offset-anchor> from [initial] to [60% 40%] at (0.5) should be [60% 40%]
 137PASS CSS Transitions with transition: all: property <offset-anchor> from [initial] to [60% 40%] at (0.6) should be [60% 40%]
 138PASS CSS Transitions with transition: all: property <offset-anchor> from [initial] to [60% 40%] at (1) should be [60% 40%]
 139PASS CSS Transitions with transition: all: property <offset-anchor> from [initial] to [60% 40%] at (1.5) should be [60% 40%]
 140PASS CSS Animations: property <offset-anchor> from [initial] to [60% 40%] at (-0.3) should be [initial]
 141PASS CSS Animations: property <offset-anchor> from [initial] to [60% 40%] at (0) should be [initial]
 142PASS CSS Animations: property <offset-anchor> from [initial] to [60% 40%] at (0.3) should be [initial]
 143PASS CSS Animations: property <offset-anchor> from [initial] to [60% 40%] at (0.5) should be [60% 40%]
 144PASS CSS Animations: property <offset-anchor> from [initial] to [60% 40%] at (0.6) should be [60% 40%]
 145PASS CSS Animations: property <offset-anchor> from [initial] to [60% 40%] at (1) should be [60% 40%]
 146PASS CSS Animations: property <offset-anchor> from [initial] to [60% 40%] at (1.5) should be [60% 40%]
 147PASS Web Animations: property <offset-anchor> from [initial] to [60% 40%] at (-0.3) should be [initial]
 148PASS Web Animations: property <offset-anchor> from [initial] to [60% 40%] at (0) should be [initial]
 149PASS Web Animations: property <offset-anchor> from [initial] to [60% 40%] at (0.3) should be [initial]
 150PASS Web Animations: property <offset-anchor> from [initial] to [60% 40%] at (0.5) should be [60% 40%]
 151PASS Web Animations: property <offset-anchor> from [initial] to [60% 40%] at (0.6) should be [60% 40%]
 152PASS Web Animations: property <offset-anchor> from [initial] to [60% 40%] at (1) should be [60% 40%]
 153PASS Web Animations: property <offset-anchor> from [initial] to [60% 40%] at (1.5) should be [60% 40%]
 154PASS CSS Transitions: property <offset-anchor> from [inherit] to [20px 20px] at (-0.3) should be [33px 7px]
 155PASS CSS Transitions: property <offset-anchor> from [inherit] to [20px 20px] at (0) should be [30px 10px]
 156PASS CSS Transitions: property <offset-anchor> from [inherit] to [20px 20px] at (0.3) should be [27px 13px]
 157PASS CSS Transitions: property <offset-anchor> from [inherit] to [20px 20px] at (0.6) should be [24px 16px]
 158PASS CSS Transitions: property <offset-anchor> from [inherit] to [20px 20px] at (1) should be [20px 20px]
 159PASS CSS Transitions: property <offset-anchor> from [inherit] to [20px 20px] at (1.5) should be [15px 25px]
 160PASS CSS Transitions with transition: all: property <offset-anchor> from [inherit] to [20px 20px] at (-0.3) should be [33px 7px]
 161PASS CSS Transitions with transition: all: property <offset-anchor> from [inherit] to [20px 20px] at (0) should be [30px 10px]
 162PASS CSS Transitions with transition: all: property <offset-anchor> from [inherit] to [20px 20px] at (0.3) should be [27px 13px]
 163PASS CSS Transitions with transition: all: property <offset-anchor> from [inherit] to [20px 20px] at (0.6) should be [24px 16px]
 164PASS CSS Transitions with transition: all: property <offset-anchor> from [inherit] to [20px 20px] at (1) should be [20px 20px]
 165PASS CSS Transitions with transition: all: property <offset-anchor> from [inherit] to [20px 20px] at (1.5) should be [15px 25px]
 166PASS CSS Animations: property <offset-anchor> from [inherit] to [20px 20px] at (-0.3) should be [33px 7px]
 167PASS CSS Animations: property <offset-anchor> from [inherit] to [20px 20px] at (0) should be [30px 10px]
 168PASS CSS Animations: property <offset-anchor> from [inherit] to [20px 20px] at (0.3) should be [27px 13px]
 169PASS CSS Animations: property <offset-anchor> from [inherit] to [20px 20px] at (0.6) should be [24px 16px]
 170PASS CSS Animations: property <offset-anchor> from [inherit] to [20px 20px] at (1) should be [20px 20px]
 171PASS CSS Animations: property <offset-anchor> from [inherit] to [20px 20px] at (1.5) should be [15px 25px]
 172PASS Web Animations: property <offset-anchor> from [inherit] to [20px 20px] at (-0.3) should be [33px 7px]
 173PASS Web Animations: property <offset-anchor> from [inherit] to [20px 20px] at (0) should be [30px 10px]
 174PASS Web Animations: property <offset-anchor> from [inherit] to [20px 20px] at (0.3) should be [27px 13px]
 175PASS Web Animations: property <offset-anchor> from [inherit] to [20px 20px] at (0.6) should be [24px 16px]
 176PASS Web Animations: property <offset-anchor> from [inherit] to [20px 20px] at (1) should be [20px 20px]
 177PASS Web Animations: property <offset-anchor> from [inherit] to [20px 20px] at (1.5) should be [15px 25px]
 178PASS CSS Transitions: property <offset-anchor> from [unset] to [50% 10px] at (-0.3) should be [50% 10px]
 179PASS CSS Transitions: property <offset-anchor> from [unset] to [50% 10px] at (0) should be [50% 10px]
 180PASS CSS Transitions: property <offset-anchor> from [unset] to [50% 10px] at (0.3) should be [50% 10px]
 181PASS CSS Transitions: property <offset-anchor> from [unset] to [50% 10px] at (0.5) should be [50% 10px]
 182PASS CSS Transitions: property <offset-anchor> from [unset] to [50% 10px] at (0.6) should be [50% 10px]
 183PASS CSS Transitions: property <offset-anchor> from [unset] to [50% 10px] at (1) should be [50% 10px]
 184PASS CSS Transitions: property <offset-anchor> from [unset] to [50% 10px] at (1.5) should be [50% 10px]
 185PASS CSS Transitions with transition: all: property <offset-anchor> from [unset] to [50% 10px] at (-0.3) should be [50% 10px]
 186PASS CSS Transitions with transition: all: property <offset-anchor> from [unset] to [50% 10px] at (0) should be [50% 10px]
 187PASS CSS Transitions with transition: all: property <offset-anchor> from [unset] to [50% 10px] at (0.3) should be [50% 10px]
 188PASS CSS Transitions with transition: all: property <offset-anchor> from [unset] to [50% 10px] at (0.5) should be [50% 10px]
 189PASS CSS Transitions with transition: all: property <offset-anchor> from [unset] to [50% 10px] at (0.6) should be [50% 10px]
 190PASS CSS Transitions with transition: all: property <offset-anchor> from [unset] to [50% 10px] at (1) should be [50% 10px]
 191PASS CSS Transitions with transition: all: property <offset-anchor> from [unset] to [50% 10px] at (1.5) should be [50% 10px]
 192PASS CSS Animations: property <offset-anchor> from [unset] to [50% 10px] at (-0.3) should be [unset]
 193PASS CSS Animations: property <offset-anchor> from [unset] to [50% 10px] at (0) should be [unset]
 194PASS CSS Animations: property <offset-anchor> from [unset] to [50% 10px] at (0.3) should be [unset]
 195PASS CSS Animations: property <offset-anchor> from [unset] to [50% 10px] at (0.5) should be [50% 10px]
 196PASS CSS Animations: property <offset-anchor> from [unset] to [50% 10px] at (0.6) should be [50% 10px]
 197PASS CSS Animations: property <offset-anchor> from [unset] to [50% 10px] at (1) should be [50% 10px]
 198PASS CSS Animations: property <offset-anchor> from [unset] to [50% 10px] at (1.5) should be [50% 10px]
 199PASS Web Animations: property <offset-anchor> from [unset] to [50% 10px] at (-0.3) should be [unset]
 200PASS Web Animations: property <offset-anchor> from [unset] to [50% 10px] at (0) should be [unset]
 201PASS Web Animations: property <offset-anchor> from [unset] to [50% 10px] at (0.3) should be [unset]
 202PASS Web Animations: property <offset-anchor> from [unset] to [50% 10px] at (0.5) should be [50% 10px]
 203PASS Web Animations: property <offset-anchor> from [unset] to [50% 10px] at (0.6) should be [50% 10px]
 204PASS Web Animations: property <offset-anchor> from [unset] to [50% 10px] at (1) should be [50% 10px]
 205PASS Web Animations: property <offset-anchor> from [unset] to [50% 10px] at (1.5) should be [50% 10px]
 206PASS CSS Transitions: property <offset-anchor> from [0% 50%] to [100% 150%] at (-0.3) should be [-30% 20%]
 207PASS CSS Transitions: property <offset-anchor> from [0% 50%] to [100% 150%] at (0) should be [0% 50%]
 208PASS CSS Transitions: property <offset-anchor> from [0% 50%] to [100% 150%] at (0.3) should be [30% 80%]
 209PASS CSS Transitions: property <offset-anchor> from [0% 50%] to [100% 150%] at (0.6) should be [60% 110%]
 210PASS CSS Transitions: property <offset-anchor> from [0% 50%] to [100% 150%] at (1) should be [100% 150%]
 211PASS CSS Transitions: property <offset-anchor> from [0% 50%] to [100% 150%] at (1.5) should be [150% 200%]
 212PASS CSS Transitions with transition: all: property <offset-anchor> from [0% 50%] to [100% 150%] at (-0.3) should be [-30% 20%]
 213PASS CSS Transitions with transition: all: property <offset-anchor> from [0% 50%] to [100% 150%] at (0) should be [0% 50%]
 214PASS CSS Transitions with transition: all: property <offset-anchor> from [0% 50%] to [100% 150%] at (0.3) should be [30% 80%]
 215PASS CSS Transitions with transition: all: property <offset-anchor> from [0% 50%] to [100% 150%] at (0.6) should be [60% 110%]
 216PASS CSS Transitions with transition: all: property <offset-anchor> from [0% 50%] to [100% 150%] at (1) should be [100% 150%]
 217PASS CSS Transitions with transition: all: property <offset-anchor> from [0% 50%] to [100% 150%] at (1.5) should be [150% 200%]
 218PASS CSS Animations: property <offset-anchor> from [0% 50%] to [100% 150%] at (-0.3) should be [-30% 20%]
 219PASS CSS Animations: property <offset-anchor> from [0% 50%] to [100% 150%] at (0) should be [0% 50%]
 220PASS CSS Animations: property <offset-anchor> from [0% 50%] to [100% 150%] at (0.3) should be [30% 80%]
 221PASS CSS Animations: property <offset-anchor> from [0% 50%] to [100% 150%] at (0.6) should be [60% 110%]
 222PASS CSS Animations: property <offset-anchor> from [0% 50%] to [100% 150%] at (1) should be [100% 150%]
 223PASS CSS Animations: property <offset-anchor> from [0% 50%] to [100% 150%] at (1.5) should be [150% 200%]
 224PASS Web Animations: property <offset-anchor> from [0% 50%] to [100% 150%] at (-0.3) should be [-30% 20%]
 225PASS Web Animations: property <offset-anchor> from [0% 50%] to [100% 150%] at (0) should be [0% 50%]
 226PASS Web Animations: property <offset-anchor> from [0% 50%] to [100% 150%] at (0.3) should be [30% 80%]
 227PASS Web Animations: property <offset-anchor> from [0% 50%] to [100% 150%] at (0.6) should be [60% 110%]
 228PASS Web Animations: property <offset-anchor> from [0% 50%] to [100% 150%] at (1) should be [100% 150%]
 229PASS Web Animations: property <offset-anchor> from [0% 50%] to [100% 150%] at (1.5) should be [150% 200%]
 230PASS CSS Transitions: property <offset-anchor> from [auto] to [20px 20px] at (-0.3) should be [20px 20px]
 231PASS CSS Transitions: property <offset-anchor> from [auto] to [20px 20px] at (0) should be [20px 20px]
 232PASS CSS Transitions: property <offset-anchor> from [auto] to [20px 20px] at (0.3) should be [20px 20px]
 233PASS CSS Transitions: property <offset-anchor> from [auto] to [20px 20px] at (0.5) should be [20px 20px]
 234PASS CSS Transitions: property <offset-anchor> from [auto] to [20px 20px] at (0.6) should be [20px 20px]
 235PASS CSS Transitions: property <offset-anchor> from [auto] to [20px 20px] at (1) should be [20px 20px]
 236PASS CSS Transitions: property <offset-anchor> from [auto] to [20px 20px] at (1.5) should be [20px 20px]
 237PASS CSS Transitions with transition: all: property <offset-anchor> from [auto] to [20px 20px] at (-0.3) should be [20px 20px]
 238PASS CSS Transitions with transition: all: property <offset-anchor> from [auto] to [20px 20px] at (0) should be [20px 20px]
 239PASS CSS Transitions with transition: all: property <offset-anchor> from [auto] to [20px 20px] at (0.3) should be [20px 20px]
 240PASS CSS Transitions with transition: all: property <offset-anchor> from [auto] to [20px 20px] at (0.5) should be [20px 20px]
 241PASS CSS Transitions with transition: all: property <offset-anchor> from [auto] to [20px 20px] at (0.6) should be [20px 20px]
 242PASS CSS Transitions with transition: all: property <offset-anchor> from [auto] to [20px 20px] at (1) should be [20px 20px]
 243PASS CSS Transitions with transition: all: property <offset-anchor> from [auto] to [20px 20px] at (1.5) should be [20px 20px]
 244PASS CSS Animations: property <offset-anchor> from [auto] to [20px 20px] at (-0.3) should be [auto]
 245PASS CSS Animations: property <offset-anchor> from [auto] to [20px 20px] at (0) should be [auto]
 246PASS CSS Animations: property <offset-anchor> from [auto] to [20px 20px] at (0.3) should be [auto]
 247PASS CSS Animations: property <offset-anchor> from [auto] to [20px 20px] at (0.5) should be [20px 20px]
 248PASS CSS Animations: property <offset-anchor> from [auto] to [20px 20px] at (0.6) should be [20px 20px]
 249PASS CSS Animations: property <offset-anchor> from [auto] to [20px 20px] at (1) should be [20px 20px]
 250PASS CSS Animations: property <offset-anchor> from [auto] to [20px 20px] at (1.5) should be [20px 20px]
 251PASS Web Animations: property <offset-anchor> from [auto] to [20px 20px] at (-0.3) should be [auto]
 252PASS Web Animations: property <offset-anchor> from [auto] to [20px 20px] at (0) should be [auto]
 253PASS Web Animations: property <offset-anchor> from [auto] to [20px 20px] at (0.3) should be [auto]
 254PASS Web Animations: property <offset-anchor> from [auto] to [20px 20px] at (0.5) should be [20px 20px]
 255PASS Web Animations: property <offset-anchor> from [auto] to [20px 20px] at (0.6) should be [20px 20px]
 256PASS Web Animations: property <offset-anchor> from [auto] to [20px 20px] at (1) should be [20px 20px]
 257PASS Web Animations: property <offset-anchor> from [auto] to [20px 20px] at (1.5) should be [20px 20px]
258258

LayoutTests/imported/w3c/web-platform-tests/css/motion/animation/offset-distance-composition-expected.txt

11
2 FAIL Compositing: property <offset-distance> underlying [50px] from add [100px] to add [200px] at (-0.3) should be [120px] assert_true: 'from' value should be supported expected true got false
3 FAIL Compositing: property <offset-distance> underlying [50px] from add [100px] to add [200px] at (0) should be [150px] assert_true: 'from' value should be supported expected true got false
4 FAIL Compositing: property <offset-distance> underlying [50px] from add [100px] to add [200px] at (0.5) should be [200px] assert_true: 'from' value should be supported expected true got false
5 FAIL Compositing: property <offset-distance> underlying [50px] from add [100px] to add [200px] at (1) should be [250px] assert_true: 'from' value should be supported expected true got false
6 FAIL Compositing: property <offset-distance> underlying [50px] from add [100px] to add [200px] at (1.5) should be [300px] assert_true: 'from' value should be supported expected true got false
7 FAIL Compositing: property <offset-distance> underlying [100px] from add [10px] to add [2px] at (-0.5) should be [114px] assert_true: 'from' value should be supported expected true got false
8 FAIL Compositing: property <offset-distance> underlying [100px] from add [10px] to add [2px] at (0) should be [110px] assert_true: 'from' value should be supported expected true got false
9 FAIL Compositing: property <offset-distance> underlying [100px] from add [10px] to add [2px] at (0.5) should be [106px] assert_true: 'from' value should be supported expected true got false
10 FAIL Compositing: property <offset-distance> underlying [100px] from add [10px] to add [2px] at (1) should be [102px] assert_true: 'from' value should be supported expected true got false
11 FAIL Compositing: property <offset-distance> underlying [100px] from add [10px] to add [2px] at (1.5) should be [98px] assert_true: 'from' value should be supported expected true got false
12 FAIL Compositing: property <offset-distance> underlying [10%] from add [100px] to add [20%] at (-0.3) should be [calc(130px + 4%)] assert_true: 'from' value should be supported expected true got false
13 FAIL Compositing: property <offset-distance> underlying [10%] from add [100px] to add [20%] at (0) should be [calc(100px + 10%)] assert_true: 'from' value should be supported expected true got false
14 FAIL Compositing: property <offset-distance> underlying [10%] from add [100px] to add [20%] at (0.5) should be [calc(50px + 20%)] assert_true: 'from' value should be supported expected true got false
15 FAIL Compositing: property <offset-distance> underlying [10%] from add [100px] to add [20%] at (1) should be [30%] assert_true: 'from' value should be supported expected true got false
16 FAIL Compositing: property <offset-distance> underlying [10%] from add [100px] to add [20%] at (1.5) should be [calc(-50px + 40%)] assert_true: 'from' value should be supported expected true got false
17 FAIL Compositing: property <offset-distance> underlying [50px] from add [100px] to replace [200px] at (-0.3) should be [135px] assert_true: 'from' value should be supported expected true got false
18 FAIL Compositing: property <offset-distance> underlying [50px] from add [100px] to replace [200px] at (0) should be [150px] assert_true: 'from' value should be supported expected true got false
19 FAIL Compositing: property <offset-distance> underlying [50px] from add [100px] to replace [200px] at (0.5) should be [175px] assert_true: 'from' value should be supported expected true got false
20 FAIL Compositing: property <offset-distance> underlying [50px] from add [100px] to replace [200px] at (1) should be [200px] assert_true: 'from' value should be supported expected true got false
21 FAIL Compositing: property <offset-distance> underlying [50px] from add [100px] to replace [200px] at (1.5) should be [225px] assert_true: 'from' value should be supported expected true got false
 2FAIL Compositing: property <offset-distance> underlying [50px] from add [100px] to add [200px] at (-0.3) should be [120px] assert_equals: expected "120px " but got "70px "
 3FAIL Compositing: property <offset-distance> underlying [50px] from add [100px] to add [200px] at (0) should be [150px] assert_equals: expected "150px " but got "100px "
 4FAIL Compositing: property <offset-distance> underlying [50px] from add [100px] to add [200px] at (0.5) should be [200px] assert_equals: expected "200px " but got "150px "
 5FAIL Compositing: property <offset-distance> underlying [50px] from add [100px] to add [200px] at (1) should be [250px] assert_equals: expected "250px " but got "200px "
 6FAIL Compositing: property <offset-distance> underlying [50px] from add [100px] to add [200px] at (1.5) should be [300px] assert_equals: expected "300px " but got "250px "
 7FAIL Compositing: property <offset-distance> underlying [100px] from add [10px] to add [2px] at (-0.5) should be [114px] assert_equals: expected "114px " but got "14px "
 8FAIL Compositing: property <offset-distance> underlying [100px] from add [10px] to add [2px] at (0) should be [110px] assert_equals: expected "110px " but got "10px "
 9FAIL Compositing: property <offset-distance> underlying [100px] from add [10px] to add [2px] at (0.5) should be [106px] assert_equals: expected "106px " but got "6px "
 10FAIL Compositing: property <offset-distance> underlying [100px] from add [10px] to add [2px] at (1) should be [102px] assert_equals: expected "102px " but got "2px "
 11FAIL Compositing: property <offset-distance> underlying [100px] from add [10px] to add [2px] at (1.5) should be [98px] assert_equals: expected "98px " but got "- 2px "
 12FAIL Compositing: property <offset-distance> underlying [10%] from add [100px] to add [20%] at (-0.3) should be [calc(130px + 4%)] assert_equals: expected "calc ( 4 % + 130px ) " but got "calc ( - 6 % + 130px ) "
 13FAIL Compositing: property <offset-distance> underlying [10%] from add [100px] to add [20%] at (0) should be [calc(100px + 10%)] assert_equals: expected "calc ( 10 % + 100px ) " but got "calc ( 0 % + 100px ) "
 14FAIL Compositing: property <offset-distance> underlying [10%] from add [100px] to add [20%] at (0.5) should be [calc(50px + 20%)] assert_equals: expected "calc ( 20 % + 50px ) " but got "calc ( 10 % + 50px ) "
 15FAIL Compositing: property <offset-distance> underlying [10%] from add [100px] to add [20%] at (1) should be [30%] assert_equals: expected "30 % " but got "20 % "
 16FAIL Compositing: property <offset-distance> underlying [10%] from add [100px] to add [20%] at (1.5) should be [calc(-50px + 40%)] assert_equals: expected "calc ( 40 % - 50px ) " but got "calc ( 30 % - 50px ) "
 17FAIL Compositing: property <offset-distance> underlying [50px] from add [100px] to replace [200px] at (-0.3) should be [135px] assert_equals: expected "135px " but got "70px "
 18FAIL Compositing: property <offset-distance> underlying [50px] from add [100px] to replace [200px] at (0) should be [150px] assert_equals: expected "150px " but got "100px "
 19FAIL Compositing: property <offset-distance> underlying [50px] from add [100px] to replace [200px] at (0.5) should be [175px] assert_equals: expected "175px " but got "150px "
 20PASS Compositing: property <offset-distance> underlying [50px] from add [100px] to replace [200px] at (1) should be [200px]
 21FAIL Compositing: property <offset-distance> underlying [50px] from add [100px] to replace [200px] at (1.5) should be [225px] assert_equals: expected "225px " but got "250px "
2222

LayoutTests/imported/w3c/web-platform-tests/css/motion/animation/offset-distance-interpolation-expected.txt

11
2 FAIL CSS Transitions: property <offset-distance> from [-30px] to [50px] at (-1) should be [-110px] assert_true: 'from' value should be supported expected true got false
3 FAIL CSS Transitions: property <offset-distance> from [-30px] to [50px] at (0) should be [-30px] assert_true: 'from' value should be supported expected true got false
4 FAIL CSS Transitions: property <offset-distance> from [-30px] to [50px] at (0.125) should be [-20px] assert_true: 'from' value should be supported expected true got false
5 FAIL CSS Transitions: property <offset-distance> from [-30px] to [50px] at (0.875) should be [40px] assert_true: 'from' value should be supported expected true got false
6 FAIL CSS Transitions: property <offset-distance> from [-30px] to [50px] at (1) should be [50px] assert_true: 'from' value should be supported expected true got false
7 FAIL CSS Transitions: property <offset-distance> from [-30px] to [50px] at (2) should be [130px] assert_true: 'from' value should be supported expected true got false
8 FAIL CSS Transitions with transition: all: property <offset-distance> from [-30px] to [50px] at (-1) should be [-110px] assert_true: 'from' value should be supported expected true got false
9 FAIL CSS Transitions with transition: all: property <offset-distance> from [-30px] to [50px] at (0) should be [-30px] assert_true: 'from' value should be supported expected true got false
10 FAIL CSS Transitions with transition: all: property <offset-distance> from [-30px] to [50px] at (0.125) should be [-20px] assert_true: 'from' value should be supported expected true got false
11 FAIL CSS Transitions with transition: all: property <offset-distance> from [-30px] to [50px] at (0.875) should be [40px] assert_true: 'from' value should be supported expected true got false
12 FAIL CSS Transitions with transition: all: property <offset-distance> from [-30px] to [50px] at (1) should be [50px] assert_true: 'from' value should be supported expected true got false
13 FAIL CSS Transitions with transition: all: property <offset-distance> from [-30px] to [50px] at (2) should be [130px] assert_true: 'from' value should be supported expected true got false
14 FAIL CSS Animations: property <offset-distance> from [-30px] to [50px] at (-1) should be [-110px] assert_true: 'from' value should be supported expected true got false
15 FAIL CSS Animations: property <offset-distance> from [-30px] to [50px] at (0) should be [-30px] assert_true: 'from' value should be supported expected true got false
16 FAIL CSS Animations: property <offset-distance> from [-30px] to [50px] at (0.125) should be [-20px] assert_true: 'from' value should be supported expected true got false
17 FAIL CSS Animations: property <offset-distance> from [-30px] to [50px] at (0.875) should be [40px] assert_true: 'from' value should be supported expected true got false
18 FAIL CSS Animations: property <offset-distance> from [-30px] to [50px] at (1) should be [50px] assert_true: 'from' value should be supported expected true got false
19 FAIL CSS Animations: property <offset-distance> from [-30px] to [50px] at (2) should be [130px] assert_true: 'from' value should be supported expected true got false
20 FAIL Web Animations: property <offset-distance> from [-30px] to [50px] at (-1) should be [-110px] assert_true: 'from' value should be supported expected true got false
21 FAIL Web Animations: property <offset-distance> from [-30px] to [50px] at (0) should be [-30px] assert_true: 'from' value should be supported expected true got false
22 FAIL Web Animations: property <offset-distance> from [-30px] to [50px] at (0.125) should be [-20px] assert_true: 'from' value should be supported expected true got false
23 FAIL Web Animations: property <offset-distance> from [-30px] to [50px] at (0.875) should be [40px] assert_true: 'from' value should be supported expected true got false
24 FAIL Web Animations: property <offset-distance> from [-30px] to [50px] at (1) should be [50px] assert_true: 'from' value should be supported expected true got false
25 FAIL Web Animations: property <offset-distance> from [-30px] to [50px] at (2) should be [130px] assert_true: 'from' value should be supported expected true got false
26 FAIL CSS Transitions: property <offset-distance> from [20%] to [100%] at (-1) should be [-60%] assert_true: 'from' value should be supported expected true got false
27 FAIL CSS Transitions: property <offset-distance> from [20%] to [100%] at (0) should be [20%] assert_true: 'from' value should be supported expected true got false
28 FAIL CSS Transitions: property <offset-distance> from [20%] to [100%] at (0.125) should be [30%] assert_true: 'from' value should be supported expected true got false
29 FAIL CSS Transitions: property <offset-distance> from [20%] to [100%] at (0.875) should be [90%] assert_true: 'from' value should be supported expected true got false
30 FAIL CSS Transitions: property <offset-distance> from [20%] to [100%] at (1) should be [100%] assert_true: 'from' value should be supported expected true got false
31 FAIL CSS Transitions: property <offset-distance> from [20%] to [100%] at (2) should be [180%] assert_true: 'from' value should be supported expected true got false
32 FAIL CSS Transitions with transition: all: property <offset-distance> from [20%] to [100%] at (-1) should be [-60%] assert_true: 'from' value should be supported expected true got false
33 FAIL CSS Transitions with transition: all: property <offset-distance> from [20%] to [100%] at (0) should be [20%] assert_true: 'from' value should be supported expected true got false
34 FAIL CSS Transitions with transition: all: property <offset-distance> from [20%] to [100%] at (0.125) should be [30%] assert_true: 'from' value should be supported expected true got false
35 FAIL CSS Transitions with transition: all: property <offset-distance> from [20%] to [100%] at (0.875) should be [90%] assert_true: 'from' value should be supported expected true got false
36 FAIL CSS Transitions with transition: all: property <offset-distance> from [20%] to [100%] at (1) should be [100%] assert_true: 'from' value should be supported expected true got false
37 FAIL CSS Transitions with transition: all: property <offset-distance> from [20%] to [100%] at (2) should be [180%] assert_true: 'from' value should be supported expected true got false
38 FAIL CSS Animations: property <offset-distance> from [20%] to [100%] at (-1) should be [-60%] assert_true: 'from' value should be supported expected true got false
39 FAIL CSS Animations: property <offset-distance> from [20%] to [100%] at (0) should be [20%] assert_true: 'from' value should be supported expected true got false
40 FAIL CSS Animations: property <offset-distance> from [20%] to [100%] at (0.125) should be [30%] assert_true: 'from' value should be supported expected true got false
41 FAIL CSS Animations: property <offset-distance> from [20%] to [100%] at (0.875) should be [90%] assert_true: 'from' value should be supported expected true got false
42 FAIL CSS Animations: property <offset-distance> from [20%] to [100%] at (1) should be [100%] assert_true: 'from' value should be supported expected true got false
43 FAIL CSS Animations: property <offset-distance> from [20%] to [100%] at (2) should be [180%] assert_true: 'from' value should be supported expected true got false
44 FAIL Web Animations: property <offset-distance> from [20%] to [100%] at (-1) should be [-60%] assert_true: 'from' value should be supported expected true got false
45 FAIL Web Animations: property <offset-distance> from [20%] to [100%] at (0) should be [20%] assert_true: 'from' value should be supported expected true got false
46 FAIL Web Animations: property <offset-distance> from [20%] to [100%] at (0.125) should be [30%] assert_true: 'from' value should be supported expected true got false
47 FAIL Web Animations: property <offset-distance> from [20%] to [100%] at (0.875) should be [90%] assert_true: 'from' value should be supported expected true got false
48 FAIL Web Animations: property <offset-distance> from [20%] to [100%] at (1) should be [100%] assert_true: 'from' value should be supported expected true got false
49 FAIL Web Animations: property <offset-distance> from [20%] to [100%] at (2) should be [180%] assert_true: 'from' value should be supported expected true got false
50 FAIL CSS Transitions: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (-1) should be [calc(-110px + -60%)] assert_true: 'from' value should be supported expected true got false
51 FAIL CSS Transitions: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (0) should be [calc(20% - 30px)] assert_true: 'from' value should be supported expected true got false
52 FAIL CSS Transitions: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (0.125) should be [calc(-20px + 30%)] assert_true: 'from' value should be supported expected true got false
53 FAIL CSS Transitions: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (0.875) should be [calc(40px + 90%)] assert_true: 'from' value should be supported expected true got false
54 FAIL CSS Transitions: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (1) should be [calc(50px + 100%)] assert_true: 'from' value should be supported expected true got false
55 FAIL CSS Transitions: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (2) should be [calc(130px + 180%)] assert_true: 'from' value should be supported expected true got false
56 FAIL CSS Transitions with transition: all: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (-1) should be [calc(-110px + -60%)] assert_true: 'from' value should be supported expected true got false
57 FAIL CSS Transitions with transition: all: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (0) should be [calc(20% - 30px)] assert_true: 'from' value should be supported expected true got false
58 FAIL CSS Transitions with transition: all: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (0.125) should be [calc(-20px + 30%)] assert_true: 'from' value should be supported expected true got false
59 FAIL CSS Transitions with transition: all: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (0.875) should be [calc(40px + 90%)] assert_true: 'from' value should be supported expected true got false
60 FAIL CSS Transitions with transition: all: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (1) should be [calc(50px + 100%)] assert_true: 'from' value should be supported expected true got false
61 FAIL CSS Transitions with transition: all: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (2) should be [calc(130px + 180%)] assert_true: 'from' value should be supported expected true got false
62 FAIL CSS Animations: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (-1) should be [calc(-110px + -60%)] assert_true: 'from' value should be supported expected true got false
63 FAIL CSS Animations: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (0) should be [calc(20% - 30px)] assert_true: 'from' value should be supported expected true got false
64 FAIL CSS Animations: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (0.125) should be [calc(-20px + 30%)] assert_true: 'from' value should be supported expected true got false
65 FAIL CSS Animations: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (0.875) should be [calc(40px + 90%)] assert_true: 'from' value should be supported expected true got false
66 FAIL CSS Animations: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (1) should be [calc(50px + 100%)] assert_true: 'from' value should be supported expected true got false
67 FAIL CSS Animations: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (2) should be [calc(130px + 180%)] assert_true: 'from' value should be supported expected true got false
68 FAIL Web Animations: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (-1) should be [calc(-110px + -60%)] assert_true: 'from' value should be supported expected true got false
69 FAIL Web Animations: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (0) should be [calc(20% - 30px)] assert_true: 'from' value should be supported expected true got false
70 FAIL Web Animations: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (0.125) should be [calc(-20px + 30%)] assert_true: 'from' value should be supported expected true got false
71 FAIL Web Animations: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (0.875) should be [calc(40px + 90%)] assert_true: 'from' value should be supported expected true got false
72 FAIL Web Animations: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (1) should be [calc(50px + 100%)] assert_true: 'from' value should be supported expected true got false
73 FAIL Web Animations: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (2) should be [calc(130px + 180%)] assert_true: 'from' value should be supported expected true got false
74 FAIL CSS Transitions: property <offset-distance> from neutral to [20px] at (-0.3) should be [7px] assert_true: 'to' value should be supported expected true got false
75 FAIL CSS Transitions: property <offset-distance> from neutral to [20px] at (0) should be [10px] assert_true: 'to' value should be supported expected true got false
76 FAIL CSS Transitions: property <offset-distance> from neutral to [20px] at (0.3) should be [13px] assert_true: 'to' value should be supported expected true got false
77 FAIL CSS Transitions: property <offset-distance> from neutral to [20px] at (0.6) should be [16px] assert_true: 'to' value should be supported expected true got false
78 FAIL CSS Transitions: property <offset-distance> from neutral to [20px] at (1) should be [20px] assert_true: 'to' value should be supported expected true got false
79 FAIL CSS Transitions: property <offset-distance> from neutral to [20px] at (1.5) should be [25px] assert_true: 'to' value should be supported expected true got false
80 FAIL CSS Transitions with transition: all: property <offset-distance> from neutral to [20px] at (-0.3) should be [7px] assert_true: 'to' value should be supported expected true got false
81 FAIL CSS Transitions with transition: all: property <offset-distance> from neutral to [20px] at (0) should be [10px] assert_true: 'to' value should be supported expected true got false
82 FAIL CSS Transitions with transition: all: property <offset-distance> from neutral to [20px] at (0.3) should be [13px] assert_true: 'to' value should be supported expected true got false
83 FAIL CSS Transitions with transition: all: property <offset-distance> from neutral to [20px] at (0.6) should be [16px] assert_true: 'to' value should be supported expected true got false
84 FAIL CSS Transitions with transition: all: property <offset-distance> from neutral to [20px] at (1) should be [20px] assert_true: 'to' value should be supported expected true got false
85 FAIL CSS Transitions with transition: all: property <offset-distance> from neutral to [20px] at (1.5) should be [25px] assert_true: 'to' value should be supported expected true got false
86 FAIL CSS Animations: property <offset-distance> from neutral to [20px] at (-0.3) should be [7px] assert_true: 'to' value should be supported expected true got false
87 FAIL CSS Animations: property <offset-distance> from neutral to [20px] at (0) should be [10px] assert_true: 'to' value should be supported expected true got false
88 FAIL CSS Animations: property <offset-distance> from neutral to [20px] at (0.3) should be [13px] assert_true: 'to' value should be supported expected true got false
89 FAIL CSS Animations: property <offset-distance> from neutral to [20px] at (0.6) should be [16px] assert_true: 'to' value should be supported expected true got false
90 FAIL CSS Animations: property <offset-distance> from neutral to [20px] at (1) should be [20px] assert_true: 'to' value should be supported expected true got false
91 FAIL CSS Animations: property <offset-distance> from neutral to [20px] at (1.5) should be [25px] assert_true: 'to' value should be supported expected true got false
92 FAIL Web Animations: property <offset-distance> from neutral to [20px] at (-0.3) should be [7px] assert_true: 'to' value should be supported expected true got false
93 FAIL Web Animations: property <offset-distance> from neutral to [20px] at (0) should be [10px] assert_true: 'to' value should be supported expected true got false
94 FAIL Web Animations: property <offset-distance> from neutral to [20px] at (0.3) should be [13px] assert_true: 'to' value should be supported expected true got false
95 FAIL Web Animations: property <offset-distance> from neutral to [20px] at (0.6) should be [16px] assert_true: 'to' value should be supported expected true got false
96 FAIL Web Animations: property <offset-distance> from neutral to [20px] at (1) should be [20px] assert_true: 'to' value should be supported expected true got false
97 FAIL Web Animations: property <offset-distance> from neutral to [20px] at (1.5) should be [25px] assert_true: 'to' value should be supported expected true got false
98 FAIL CSS Transitions: property <offset-distance> from [initial] to [20px] at (-0.3) should be [-6px] assert_true: 'from' value should be supported expected true got false
99 FAIL CSS Transitions: property <offset-distance> from [initial] to [20px] at (0) should be [0px] assert_true: 'from' value should be supported expected true got false
100 FAIL CSS Transitions: property <offset-distance> from [initial] to [20px] at (0.3) should be [6px] assert_true: 'from' value should be supported expected true got false
101 FAIL CSS Transitions: property <offset-distance> from [initial] to [20px] at (0.6) should be [12px] assert_true: 'from' value should be supported expected true got false
102 FAIL CSS Transitions: property <offset-distance> from [initial] to [20px] at (1) should be [20px] assert_true: 'from' value should be supported expected true got false
103 FAIL CSS Transitions: property <offset-distance> from [initial] to [20px] at (1.5) should be [30px] assert_true: 'from' value should be supported expected true got false
104 FAIL CSS Transitions with transition: all: property <offset-distance> from [initial] to [20px] at (-0.3) should be [-6px] assert_true: 'from' value should be supported expected true got false
105 FAIL CSS Transitions with transition: all: property <offset-distance> from [initial] to [20px] at (0) should be [0px] assert_true: 'from' value should be supported expected true got false
106 FAIL CSS Transitions with transition: all: property <offset-distance> from [initial] to [20px] at (0.3) should be [6px] assert_true: 'from' value should be supported expected true got false
107 FAIL CSS Transitions with transition: all: property <offset-distance> from [initial] to [20px] at (0.6) should be [12px] assert_true: 'from' value should be supported expected true got false
108 FAIL CSS Transitions with transition: all: property <offset-distance> from [initial] to [20px] at (1) should be [20px] assert_true: 'from' value should be supported expected true got false
109 FAIL CSS Transitions with transition: all: property <offset-distance> from [initial] to [20px] at (1.5) should be [30px] assert_true: 'from' value should be supported expected true got false
110 FAIL CSS Animations: property <offset-distance> from [initial] to [20px] at (-0.3) should be [-6px] assert_true: 'from' value should be supported expected true got false
111 FAIL CSS Animations: property <offset-distance> from [initial] to [20px] at (0) should be [0px] assert_true: 'from' value should be supported expected true got false
112 FAIL CSS Animations: property <offset-distance> from [initial] to [20px] at (0.3) should be [6px] assert_true: 'from' value should be supported expected true got false
113 FAIL CSS Animations: property <offset-distance> from [initial] to [20px] at (0.6) should be [12px] assert_true: 'from' value should be supported expected true got false
114 FAIL CSS Animations: property <offset-distance> from [initial] to [20px] at (1) should be [20px] assert_true: 'from' value should be supported expected true got false
115 FAIL CSS Animations: property <offset-distance> from [initial] to [20px] at (1.5) should be [30px] assert_true: 'from' value should be supported expected true got false
116 FAIL Web Animations: property <offset-distance> from [initial] to [20px] at (-0.3) should be [-6px] assert_true: 'from' value should be supported expected true got false
117 FAIL Web Animations: property <offset-distance> from [initial] to [20px] at (0) should be [0px] assert_true: 'from' value should be supported expected true got false
118 FAIL Web Animations: property <offset-distance> from [initial] to [20px] at (0.3) should be [6px] assert_true: 'from' value should be supported expected true got false
119 FAIL Web Animations: property <offset-distance> from [initial] to [20px] at (0.6) should be [12px] assert_true: 'from' value should be supported expected true got false
120 FAIL Web Animations: property <offset-distance> from [initial] to [20px] at (1) should be [20px] assert_true: 'from' value should be supported expected true got false
121 FAIL Web Animations: property <offset-distance> from [initial] to [20px] at (1.5) should be [30px] assert_true: 'from' value should be supported expected true got false
122 FAIL CSS Transitions: property <offset-distance> from [inherit] to [20px] at (-0.3) should be [33px] assert_true: 'from' value should be supported expected true got false
123 FAIL CSS Transitions: property <offset-distance> from [inherit] to [20px] at (0) should be [30px] assert_true: 'from' value should be supported expected true got false
124 FAIL CSS Transitions: property <offset-distance> from [inherit] to [20px] at (0.3) should be [27px] assert_true: 'from' value should be supported expected true got false
125 FAIL CSS Transitions: property <offset-distance> from [inherit] to [20px] at (0.6) should be [24px] assert_true: 'from' value should be supported expected true got false
126 FAIL CSS Transitions: property <offset-distance> from [inherit] to [20px] at (1) should be [20px] assert_true: 'from' value should be supported expected true got false
127 FAIL CSS Transitions: property <offset-distance> from [inherit] to [20px] at (1.5) should be [15px] assert_true: 'from' value should be supported expected true got false
128 FAIL CSS Transitions with transition: all: property <offset-distance> from [inherit] to [20px] at (-0.3) should be [33px] assert_true: 'from' value should be supported expected true got false
129 FAIL CSS Transitions with transition: all: property <offset-distance> from [inherit] to [20px] at (0) should be [30px] assert_true: 'from' value should be supported expected true got false
130 FAIL CSS Transitions with transition: all: property <offset-distance> from [inherit] to [20px] at (0.3) should be [27px] assert_true: 'from' value should be supported expected true got false
131 FAIL CSS Transitions with transition: all: property <offset-distance> from [inherit] to [20px] at (0.6) should be [24px] assert_true: 'from' value should be supported expected true got false
132 FAIL CSS Transitions with transition: all: property <offset-distance> from [inherit] to [20px] at (1) should be [20px] assert_true: 'from' value should be supported expected true got false
133 FAIL CSS Transitions with transition: all: property <offset-distance> from [inherit] to [20px] at (1.5) should be [15px] assert_true: 'from' value should be supported expected true got false
134 FAIL CSS Animations: property <offset-distance> from [inherit] to [20px] at (-0.3) should be [33px] assert_true: 'from' value should be supported expected true got false
135 FAIL CSS Animations: property <offset-distance> from [inherit] to [20px] at (0) should be [30px] assert_true: 'from' value should be supported expected true got false
136 FAIL CSS Animations: property <offset-distance> from [inherit] to [20px] at (0.3) should be [27px] assert_true: 'from' value should be supported expected true got false
137 FAIL CSS Animations: property <offset-distance> from [inherit] to [20px] at (0.6) should be [24px] assert_true: 'from' value should be supported expected true got false
138 FAIL CSS Animations: property <offset-distance> from [inherit] to [20px] at (1) should be [20px] assert_true: 'from' value should be supported expected true got false
139 FAIL CSS Animations: property <offset-distance> from [inherit] to [20px] at (1.5) should be [15px] assert_true: 'from' value should be supported expected true got false
140 FAIL Web Animations: property <offset-distance> from [inherit] to [20px] at (-0.3) should be [33px] assert_true: 'from' value should be supported expected true got false
141 FAIL Web Animations: property <offset-distance> from [inherit] to [20px] at (0) should be [30px] assert_true: 'from' value should be supported expected true got false
142 FAIL Web Animations: property <offset-distance> from [inherit] to [20px] at (0.3) should be [27px] assert_true: 'from' value should be supported expected true got false
143 FAIL Web Animations: property <offset-distance> from [inherit] to [20px] at (0.6) should be [24px] assert_true: 'from' value should be supported expected true got false
144 FAIL Web Animations: property <offset-distance> from [inherit] to [20px] at (1) should be [20px] assert_true: 'from' value should be supported expected true got false
145 FAIL Web Animations: property <offset-distance> from [inherit] to [20px] at (1.5) should be [15px] assert_true: 'from' value should be supported expected true got false
146 FAIL CSS Transitions: property <offset-distance> from [unset] to [20px] at (-0.3) should be [-6px] assert_true: 'from' value should be supported expected true got false
147 FAIL CSS Transitions: property <offset-distance> from [unset] to [20px] at (0) should be [0px] assert_true: 'from' value should be supported expected true got false
148 FAIL CSS Transitions: property <offset-distance> from [unset] to [20px] at (0.3) should be [6px] assert_true: 'from' value should be supported expected true got false
149 FAIL CSS Transitions: property <offset-distance> from [unset] to [20px] at (0.6) should be [12px] assert_true: 'from' value should be supported expected true got false
150 FAIL CSS Transitions: property <offset-distance> from [unset] to [20px] at (1) should be [20px] assert_true: 'from' value should be supported expected true got false
151 FAIL CSS Transitions: property <offset-distance> from [unset] to [20px] at (1.5) should be [30px] assert_true: 'from' value should be supported expected true got false
152 FAIL CSS Transitions with transition: all: property <offset-distance> from [unset] to [20px] at (-0.3) should be [-6px] assert_true: 'from' value should be supported expected true got false
153 FAIL CSS Transitions with transition: all: property <offset-distance> from [unset] to [20px] at (0) should be [0px] assert_true: 'from' value should be supported expected true got false
154 FAIL CSS Transitions with transition: all: property <offset-distance> from [unset] to [20px] at (0.3) should be [6px] assert_true: 'from' value should be supported expected true got false
155 FAIL CSS Transitions with transition: all: property <offset-distance> from [unset] to [20px] at (0.6) should be [12px] assert_true: 'from' value should be supported expected true got false
156 FAIL CSS Transitions with transition: all: property <offset-distance> from [unset] to [20px] at (1) should be [20px] assert_true: 'from' value should be supported expected true got false
157 FAIL CSS Transitions with transition: all: property <offset-distance> from [unset] to [20px] at (1.5) should be [30px] assert_true: 'from' value should be supported expected true got false
158 FAIL CSS Animations: property <offset-distance> from [unset] to [20px] at (-0.3) should be [-6px] assert_true: 'from' value should be supported expected true got false
159 FAIL CSS Animations: property <offset-distance> from [unset] to [20px] at (0) should be [0px] assert_true: 'from' value should be supported expected true got false
160 FAIL CSS Animations: property <offset-distance> from [unset] to [20px] at (0.3) should be [6px] assert_true: 'from' value should be supported expected true got false
161 FAIL CSS Animations: property <offset-distance> from [unset] to [20px] at (0.6) should be [12px] assert_true: 'from' value should be supported expected true got false
162 FAIL CSS Animations: property <offset-distance> from [unset] to [20px] at (1) should be [20px] assert_true: 'from' value should be supported expected true got false
163 FAIL CSS Animations: property <offset-distance> from [unset] to [20px] at (1.5) should be [30px] assert_true: 'from' value should be supported expected true got false
164 FAIL Web Animations: property <offset-distance> from [unset] to [20px] at (-0.3) should be [-6px] assert_true: 'from' value should be supported expected true got false
165 FAIL Web Animations: property <offset-distance> from [unset] to [20px] at (0) should be [0px] assert_true: 'from' value should be supported expected true got false
166 FAIL Web Animations: property <offset-distance> from [unset] to [20px] at (0.3) should be [6px] assert_true: 'from' value should be supported expected true got false
167 FAIL Web Animations: property <offset-distance> from [unset] to [20px] at (0.6) should be [12px] assert_true: 'from' value should be supported expected true got false
168 FAIL Web Animations: property <offset-distance> from [unset] to [20px] at (1) should be [20px] assert_true: 'from' value should be supported expected true got false
169 FAIL Web Animations: property <offset-distance> from [unset] to [20px] at (1.5) should be [30px] assert_true: 'from' value should be supported expected true got false
170 FAIL CSS Transitions: property <offset-distance> from [10px] to [100%] at (-0.3) should be [calc(13px + -30%)] assert_true: 'from' value should be supported expected true got false
171 FAIL CSS Transitions: property <offset-distance> from [10px] to [100%] at (0) should be [calc(0% + 10px)] assert_true: 'from' value should be supported expected true got false
172 FAIL CSS Transitions: property <offset-distance> from [10px] to [100%] at (0.3) should be [calc(7px + 30%)] assert_true: 'from' value should be supported expected true got false
173 FAIL CSS Transitions: property <offset-distance> from [10px] to [100%] at (0.6) should be [calc(4px + 60%)] assert_true: 'from' value should be supported expected true got false
174 FAIL CSS Transitions: property <offset-distance> from [10px] to [100%] at (1) should be [100%] assert_true: 'from' value should be supported expected true got false
175 FAIL CSS Transitions: property <offset-distance> from [10px] to [100%] at (1.5) should be [calc(-5px + 150%)] assert_true: 'from' value should be supported expected true got false
176 FAIL CSS Transitions with transition: all: property <offset-distance> from [10px] to [100%] at (-0.3) should be [calc(13px + -30%)] assert_true: 'from' value should be supported expected true got false
177 FAIL CSS Transitions with transition: all: property <offset-distance> from [10px] to [100%] at (0) should be [calc(0% + 10px)] assert_true: 'from' value should be supported expected true got false
178 FAIL CSS Transitions with transition: all: property <offset-distance> from [10px] to [100%] at (0.3) should be [calc(7px + 30%)] assert_true: 'from' value should be supported expected true got false
179 FAIL CSS Transitions with transition: all: property <offset-distance> from [10px] to [100%] at (0.6) should be [calc(4px + 60%)] assert_true: 'from' value should be supported expected true got false
180 FAIL CSS Transitions with transition: all: property <offset-distance> from [10px] to [100%] at (1) should be [100%] assert_true: 'from' value should be supported expected true got false
181 FAIL CSS Transitions with transition: all: property <offset-distance> from [10px] to [100%] at (1.5) should be [calc(-5px + 150%)] assert_true: 'from' value should be supported expected true got false
182 FAIL CSS Animations: property <offset-distance> from [10px] to [100%] at (-0.3) should be [calc(13px + -30%)] assert_true: 'from' value should be supported expected true got false
183 FAIL CSS Animations: property <offset-distance> from [10px] to [100%] at (0) should be [calc(0% + 10px)] assert_true: 'from' value should be supported expected true got false
184 FAIL CSS Animations: property <offset-distance> from [10px] to [100%] at (0.3) should be [calc(7px + 30%)] assert_true: 'from' value should be supported expected true got false
185 FAIL CSS Animations: property <offset-distance> from [10px] to [100%] at (0.6) should be [calc(4px + 60%)] assert_true: 'from' value should be supported expected true got false
186 FAIL CSS Animations: property <offset-distance> from [10px] to [100%] at (1) should be [100%] assert_true: 'from' value should be supported expected true got false
187 FAIL CSS Animations: property <offset-distance> from [10px] to [100%] at (1.5) should be [calc(-5px + 150%)] assert_true: 'from' value should be supported expected true got false
188 FAIL Web Animations: property <offset-distance> from [10px] to [100%] at (-0.3) should be [calc(13px + -30%)] assert_true: 'from' value should be supported expected true got false
189 FAIL Web Animations: property <offset-distance> from [10px] to [100%] at (0) should be [calc(0% + 10px)] assert_true: 'from' value should be supported expected true got false
190 FAIL Web Animations: property <offset-distance> from [10px] to [100%] at (0.3) should be [calc(7px + 30%)] assert_true: 'from' value should be supported expected true got false
191 FAIL Web Animations: property <offset-distance> from [10px] to [100%] at (0.6) should be [calc(4px + 60%)] assert_true: 'from' value should be supported expected true got false
192 FAIL Web Animations: property <offset-distance> from [10px] to [100%] at (1) should be [100%] assert_true: 'from' value should be supported expected true got false
193 FAIL Web Animations: property <offset-distance> from [10px] to [100%] at (1.5) should be [calc(-5px + 150%)] assert_true: 'from' value should be supported expected true got false
 2PASS CSS Transitions: property <offset-distance> from [-30px] to [50px] at (-1) should be [-110px]
 3PASS CSS Transitions: property <offset-distance> from [-30px] to [50px] at (0) should be [-30px]
 4PASS CSS Transitions: property <offset-distance> from [-30px] to [50px] at (0.125) should be [-20px]
 5PASS CSS Transitions: property <offset-distance> from [-30px] to [50px] at (0.875) should be [40px]
 6PASS CSS Transitions: property <offset-distance> from [-30px] to [50px] at (1) should be [50px]
 7PASS CSS Transitions: property <offset-distance> from [-30px] to [50px] at (2) should be [130px]
 8PASS CSS Transitions with transition: all: property <offset-distance> from [-30px] to [50px] at (-1) should be [-110px]
 9PASS CSS Transitions with transition: all: property <offset-distance> from [-30px] to [50px] at (0) should be [-30px]
 10PASS CSS Transitions with transition: all: property <offset-distance> from [-30px] to [50px] at (0.125) should be [-20px]
 11PASS CSS Transitions with transition: all: property <offset-distance> from [-30px] to [50px] at (0.875) should be [40px]
 12PASS CSS Transitions with transition: all: property <offset-distance> from [-30px] to [50px] at (1) should be [50px]
 13PASS CSS Transitions with transition: all: property <offset-distance> from [-30px] to [50px] at (2) should be [130px]
 14PASS CSS Animations: property <offset-distance> from [-30px] to [50px] at (-1) should be [-110px]
 15PASS CSS Animations: property <offset-distance> from [-30px] to [50px] at (0) should be [-30px]
 16PASS CSS Animations: property <offset-distance> from [-30px] to [50px] at (0.125) should be [-20px]
 17PASS CSS Animations: property <offset-distance> from [-30px] to [50px] at (0.875) should be [40px]
 18PASS CSS Animations: property <offset-distance> from [-30px] to [50px] at (1) should be [50px]
 19PASS CSS Animations: property <offset-distance> from [-30px] to [50px] at (2) should be [130px]
 20PASS Web Animations: property <offset-distance> from [-30px] to [50px] at (-1) should be [-110px]
 21PASS Web Animations: property <offset-distance> from [-30px] to [50px] at (0) should be [-30px]
 22PASS Web Animations: property <offset-distance> from [-30px] to [50px] at (0.125) should be [-20px]
 23PASS Web Animations: property <offset-distance> from [-30px] to [50px] at (0.875) should be [40px]
 24PASS Web Animations: property <offset-distance> from [-30px] to [50px] at (1) should be [50px]
 25PASS Web Animations: property <offset-distance> from [-30px] to [50px] at (2) should be [130px]
 26PASS CSS Transitions: property <offset-distance> from [20%] to [100%] at (-1) should be [-60%]
 27PASS CSS Transitions: property <offset-distance> from [20%] to [100%] at (0) should be [20%]
 28PASS CSS Transitions: property <offset-distance> from [20%] to [100%] at (0.125) should be [30%]
 29PASS CSS Transitions: property <offset-distance> from [20%] to [100%] at (0.875) should be [90%]
 30PASS CSS Transitions: property <offset-distance> from [20%] to [100%] at (1) should be [100%]
 31PASS CSS Transitions: property <offset-distance> from [20%] to [100%] at (2) should be [180%]
 32PASS CSS Transitions with transition: all: property <offset-distance> from [20%] to [100%] at (-1) should be [-60%]
 33PASS CSS Transitions with transition: all: property <offset-distance> from [20%] to [100%] at (0) should be [20%]
 34PASS CSS Transitions with transition: all: property <offset-distance> from [20%] to [100%] at (0.125) should be [30%]
 35PASS CSS Transitions with transition: all: property <offset-distance> from [20%] to [100%] at (0.875) should be [90%]
 36PASS CSS Transitions with transition: all: property <offset-distance> from [20%] to [100%] at (1) should be [100%]
 37PASS CSS Transitions with transition: all: property <offset-distance> from [20%] to [100%] at (2) should be [180%]
 38PASS CSS Animations: property <offset-distance> from [20%] to [100%] at (-1) should be [-60%]
 39PASS CSS Animations: property <offset-distance> from [20%] to [100%] at (0) should be [20%]
 40PASS CSS Animations: property <offset-distance> from [20%] to [100%] at (0.125) should be [30%]
 41PASS CSS Animations: property <offset-distance> from [20%] to [100%] at (0.875) should be [90%]
 42PASS CSS Animations: property <offset-distance> from [20%] to [100%] at (1) should be [100%]
 43PASS CSS Animations: property <offset-distance> from [20%] to [100%] at (2) should be [180%]
 44PASS Web Animations: property <offset-distance> from [20%] to [100%] at (-1) should be [-60%]
 45PASS Web Animations: property <offset-distance> from [20%] to [100%] at (0) should be [20%]
 46PASS Web Animations: property <offset-distance> from [20%] to [100%] at (0.125) should be [30%]
 47PASS Web Animations: property <offset-distance> from [20%] to [100%] at (0.875) should be [90%]
 48PASS Web Animations: property <offset-distance> from [20%] to [100%] at (1) should be [100%]
 49PASS Web Animations: property <offset-distance> from [20%] to [100%] at (2) should be [180%]
 50PASS CSS Transitions: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (-1) should be [calc(-110px + -60%)]
 51PASS CSS Transitions: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (0) should be [calc(20% - 30px)]
 52PASS CSS Transitions: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (0.125) should be [calc(-20px + 30%)]
 53PASS CSS Transitions: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (0.875) should be [calc(40px + 90%)]
 54PASS CSS Transitions: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (1) should be [calc(50px + 100%)]
 55PASS CSS Transitions: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (2) should be [calc(130px + 180%)]
 56PASS CSS Transitions with transition: all: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (-1) should be [calc(-110px + -60%)]
 57PASS CSS Transitions with transition: all: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (0) should be [calc(20% - 30px)]
 58PASS CSS Transitions with transition: all: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (0.125) should be [calc(-20px + 30%)]
 59PASS CSS Transitions with transition: all: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (0.875) should be [calc(40px + 90%)]
 60PASS CSS Transitions with transition: all: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (1) should be [calc(50px + 100%)]
 61PASS CSS Transitions with transition: all: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (2) should be [calc(130px + 180%)]
 62PASS CSS Animations: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (-1) should be [calc(-110px + -60%)]
 63PASS CSS Animations: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (0) should be [calc(20% - 30px)]
 64PASS CSS Animations: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (0.125) should be [calc(-20px + 30%)]
 65PASS CSS Animations: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (0.875) should be [calc(40px + 90%)]
 66PASS CSS Animations: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (1) should be [calc(50px + 100%)]
 67PASS CSS Animations: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (2) should be [calc(130px + 180%)]
 68PASS Web Animations: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (-1) should be [calc(-110px + -60%)]
 69PASS Web Animations: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (0) should be [calc(20% - 30px)]
 70PASS Web Animations: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (0.125) should be [calc(-20px + 30%)]
 71PASS Web Animations: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (0.875) should be [calc(40px + 90%)]
 72PASS Web Animations: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (1) should be [calc(50px + 100%)]
 73PASS Web Animations: property <offset-distance> from [calc(20% - 30px)] to [calc(50px + 100%)] at (2) should be [calc(130px + 180%)]
 74PASS CSS Transitions: property <offset-distance> from neutral to [20px] at (-0.3) should be [7px]
 75PASS CSS Transitions: property <offset-distance> from neutral to [20px] at (0) should be [10px]
 76PASS CSS Transitions: property <offset-distance> from neutral to [20px] at (0.3) should be [13px]
 77PASS CSS Transitions: property <offset-distance> from neutral to [20px] at (0.6) should be [16px]
 78PASS CSS Transitions: property <offset-distance> from neutral to [20px] at (1) should be [20px]
 79PASS CSS Transitions: property <offset-distance> from neutral to [20px] at (1.5) should be [25px]
 80PASS CSS Transitions with transition: all: property <offset-distance> from neutral to [20px] at (-0.3) should be [7px]
 81PASS CSS Transitions with transition: all: property <offset-distance> from neutral to [20px] at (0) should be [10px]
 82PASS CSS Transitions with transition: all: property <offset-distance> from neutral to [20px] at (0.3) should be [13px]
 83PASS CSS Transitions with transition: all: property <offset-distance> from neutral to [20px] at (0.6) should be [16px]
 84PASS CSS Transitions with transition: all: property <offset-distance> from neutral to [20px] at (1) should be [20px]
 85PASS CSS Transitions with transition: all: property <offset-distance> from neutral to [20px] at (1.5) should be [25px]
 86PASS CSS Animations: property <offset-distance> from neutral to [20px] at (-0.3) should be [7px]
 87PASS CSS Animations: property <offset-distance> from neutral to [20px] at (0) should be [10px]
 88PASS CSS Animations: property <offset-distance> from neutral to [20px] at (0.3) should be [13px]
 89PASS CSS Animations: property <offset-distance> from neutral to [20px] at (0.6) should be [16px]
 90PASS CSS Animations: property <offset-distance> from neutral to [20px] at (1) should be [20px]
 91PASS CSS Animations: property <offset-distance> from neutral to [20px] at (1.5) should be [25px]
 92PASS Web Animations: property <offset-distance> from neutral to [20px] at (-0.3) should be [7px]
 93PASS Web Animations: property <offset-distance> from neutral to [20px] at (0) should be [10px]
 94PASS Web Animations: property <offset-distance> from neutral to [20px] at (0.3) should be [13px]
 95PASS Web Animations: property <offset-distance> from neutral to [20px] at (0.6) should be [16px]
 96PASS Web Animations: property <offset-distance> from neutral to [20px] at (1) should be [20px]
 97PASS Web Animations: property <offset-distance> from neutral to [20px] at (1.5) should be [25px]
 98PASS CSS Transitions: property <offset-distance> from [initial] to [20px] at (-0.3) should be [-6px]
 99PASS CSS Transitions: property <offset-distance> from [initial] to [20px] at (0) should be [0px]
 100PASS CSS Transitions: property <offset-distance> from [initial] to [20px] at (0.3) should be [6px]
 101PASS CSS Transitions: property <offset-distance> from [initial] to [20px] at (0.6) should be [12px]
 102PASS CSS Transitions: property <offset-distance> from [initial] to [20px] at (1) should be [20px]
 103PASS CSS Transitions: property <offset-distance> from [initial] to [20px] at (1.5) should be [30px]
 104PASS CSS Transitions with transition: all: property <offset-distance> from [initial] to [20px] at (-0.3) should be [-6px]
 105PASS CSS Transitions with transition: all: property <offset-distance> from [initial] to [20px] at (0) should be [0px]
 106PASS CSS Transitions with transition: all: property <offset-distance> from [initial] to [20px] at (0.3) should be [6px]
 107PASS CSS Transitions with transition: all: property <offset-distance> from [initial] to [20px] at (0.6) should be [12px]
 108PASS CSS Transitions with transition: all: property <offset-distance> from [initial] to [20px] at (1) should be [20px]
 109PASS CSS Transitions with transition: all: property <offset-distance> from [initial] to [20px] at (1.5) should be [30px]
 110PASS CSS Animations: property <offset-distance> from [initial] to [20px] at (-0.3) should be [-6px]
 111PASS CSS Animations: property <offset-distance> from [initial] to [20px] at (0) should be [0px]
 112PASS CSS Animations: property <offset-distance> from [initial] to [20px] at (0.3) should be [6px]
 113PASS CSS Animations: property <offset-distance> from [initial] to [20px] at (0.6) should be [12px]
 114PASS CSS Animations: property <offset-distance> from [initial] to [20px] at (1) should be [20px]
 115PASS CSS Animations: property <offset-distance> from [initial] to [20px] at (1.5) should be [30px]
 116PASS Web Animations: property <offset-distance> from [initial] to [20px] at (-0.3) should be [-6px]
 117PASS Web Animations: property <offset-distance> from [initial] to [20px] at (0) should be [0px]
 118PASS Web Animations: property <offset-distance> from [initial] to [20px] at (0.3) should be [6px]
 119PASS Web Animations: property <offset-distance> from [initial] to [20px] at (0.6) should be [12px]
 120PASS Web Animations: property <offset-distance> from [initial] to [20px] at (1) should be [20px]
 121PASS Web Animations: property <offset-distance> from [initial] to [20px] at (1.5) should be [30px]
 122PASS CSS Transitions: property <offset-distance> from [inherit] to [20px] at (-0.3) should be [33px]
 123PASS CSS Transitions: property <offset-distance> from [inherit] to [20px] at (0) should be [30px]
 124PASS CSS Transitions: property <offset-distance> from [inherit] to [20px] at (0.3) should be [27px]
 125PASS CSS Transitions: property <offset-distance> from [inherit] to [20px] at (0.6) should be [24px]
 126PASS CSS Transitions: property <offset-distance> from [inherit] to [20px] at (1) should be [20px]
 127PASS CSS Transitions: property <offset-distance> from [inherit] to [20px] at (1.5) should be [15px]
 128PASS CSS Transitions with transition: all: property <offset-distance> from [inherit] to [20px] at (-0.3) should be [33px]
 129PASS CSS Transitions with transition: all: property <offset-distance> from [inherit] to [20px] at (0) should be [30px]
 130PASS CSS Transitions with transition: all: property <offset-distance> from [inherit] to [20px] at (0.3) should be [27px]
 131PASS CSS Transitions with transition: all: property <offset-distance> from [inherit] to [20px] at (0.6) should be [24px]
 132PASS CSS Transitions with transition: all: property <offset-distance> from [inherit] to [20px] at (1) should be [20px]
 133PASS CSS Transitions with transition: all: property <offset-distance> from [inherit] to [20px] at (1.5) should be [15px]
 134PASS CSS Animations: property <offset-distance> from [inherit] to [20px] at (-0.3) should be [33px]
 135PASS CSS Animations: property <offset-distance> from [inherit] to [20px] at (0) should be [30px]
 136PASS CSS Animations: property <offset-distance> from [inherit] to [20px] at (0.3) should be [27px]
 137PASS CSS Animations: property <offset-distance> from [inherit] to [20px] at (0.6) should be [24px]
 138PASS CSS Animations: property <offset-distance> from [inherit] to [20px] at (1) should be [20px]
 139PASS CSS Animations: property <offset-distance> from [inherit] to [20px] at (1.5) should be [15px]
 140PASS Web Animations: property <offset-distance> from [inherit] to [20px] at (-0.3) should be [33px]
 141PASS Web Animations: property <offset-distance> from [inherit] to [20px] at (0) should be [30px]
 142PASS Web Animations: property <offset-distance> from [inherit] to [20px] at (0.3) should be [27px]
 143PASS Web Animations: property <offset-distance> from [inherit] to [20px] at (0.6) should be [24px]
 144PASS Web Animations: property <offset-distance> from [inherit] to [20px] at (1) should be [20px]
 145PASS Web Animations: property <offset-distance> from [inherit] to [20px] at (1.5) should be [15px]
 146PASS CSS Transitions: property <offset-distance> from [unset] to [20px] at (-0.3) should be [-6px]
 147PASS CSS Transitions: property <offset-distance> from [unset] to [20px] at (0) should be [0px]
 148PASS CSS Transitions: property <offset-distance> from [unset] to [20px] at (0.3) should be [6px]
 149PASS CSS Transitions: property <offset-distance> from [unset] to [20px] at (0.6) should be [12px]
 150PASS CSS Transitions: property <offset-distance> from [unset] to [20px] at (1) should be [20px]
 151PASS CSS Transitions: property <offset-distance> from [unset] to [20px] at (1.5) should be [30px]
 152PASS CSS Transitions with transition: all: property <offset-distance> from [unset] to [20px] at (-0.3) should be [-6px]
 153PASS CSS Transitions with transition: all: property <offset-distance> from [unset] to [20px] at (0) should be [0px]
 154PASS CSS Transitions with transition: all: property <offset-distance> from [unset] to [20px] at (0.3) should be [6px]
 155PASS CSS Transitions with transition: all: property <offset-distance> from [unset] to [20px] at (0.6) should be [12px]
 156PASS CSS Transitions with transition: all: property <offset-distance> from [unset] to [20px] at (1) should be [20px]
 157PASS CSS Transitions with transition: all: property <offset-distance> from [unset] to [20px] at (1.5) should be [30px]
 158PASS CSS Animations: property <offset-distance> from [unset] to [20px] at (-0.3) should be [-6px]
 159PASS CSS Animations: property <offset-distance> from [unset] to [20px] at (0) should be [0px]
 160PASS CSS Animations: property <offset-distance> from [unset] to [20px] at (0.3) should be [6px]
 161PASS CSS Animations: property <offset-distance> from [unset] to [20px] at (0.6) should be [12px]
 162PASS CSS Animations: property <offset-distance> from [unset] to [20px] at (1) should be [20px]
 163PASS CSS Animations: property <offset-distance> from [unset] to [20px] at (1.5) should be [30px]
 164PASS Web Animations: property <offset-distance> from [unset] to [20px] at (-0.3) should be [-6px]
 165PASS Web Animations: property <offset-distance> from [unset] to [20px] at (0) should be [0px]
 166PASS Web Animations: property <offset-distance> from [unset] to [20px] at (0.3) should be [6px]
 167PASS Web Animations: property <offset-distance> from [unset] to [20px] at (0.6) should be [12px]
 168PASS Web Animations: property <offset-distance> from [unset] to [20px] at (1) should be [20px]
 169PASS Web Animations: property <offset-distance> from [unset] to [20px] at (1.5) should be [30px]
 170PASS CSS Transitions: property <offset-distance> from [10px] to [100%] at (-0.3) should be [calc(13px + -30%)]
 171PASS CSS Transitions: property <offset-distance> from [10px] to [100%] at (0) should be [calc(0% + 10px)]
 172PASS CSS Transitions: property <offset-distance> from [10px] to [100%] at (0.3) should be [calc(7px + 30%)]
 173PASS CSS Transitions: property <offset-distance> from [10px] to [100%] at (0.6) should be [calc(4px + 60%)]
 174PASS CSS Transitions: property <offset-distance> from [10px] to [100%] at (1) should be [100%]
 175PASS CSS Transitions: property <offset-distance> from [10px] to [100%] at (1.5) should be [calc(-5px + 150%)]
 176PASS CSS Transitions with transition: all: property <offset-distance> from [10px] to [100%] at (-0.3) should be [calc(13px + -30%)]
 177PASS CSS Transitions with transition: all: property <offset-distance> from [10px] to [100%] at (0) should be [calc(0% + 10px)]
 178PASS CSS Transitions with transition: all: property <offset-distance> from [10px] to [100%] at (0.3) should be [calc(7px + 30%)]
 179PASS CSS Transitions with transition: all: property <offset-distance> from [10px] to [100%] at (0.6) should be [calc(4px + 60%)]
 180PASS CSS Transitions with transition: all: property <offset-distance> from [10px] to [100%] at (1) should be [100%]
 181PASS CSS Transitions with transition: all: property <offset-distance> from [10px] to [100%] at (1.5) should be [calc(-5px + 150%)]
 182PASS CSS Animations: property <offset-distance> from [10px] to [100%] at (-0.3) should be [calc(13px + -30%)]
 183PASS CSS Animations: property <offset-distance> from [10px] to [100%] at (0) should be [calc(0% + 10px)]
 184PASS CSS Animations: property <offset-distance> from [10px] to [100%] at (0.3) should be [calc(7px + 30%)]
 185PASS CSS Animations: property <offset-distance> from [10px] to [100%] at (0.6) should be [calc(4px + 60%)]
 186PASS CSS Animations: property <offset-distance> from [10px] to [100%] at (1) should be [100%]
 187PASS CSS Animations: property <offset-distance> from [10px] to [100%] at (1.5) should be [calc(-5px + 150%)]
 188PASS Web Animations: property <offset-distance> from [10px] to [100%] at (-0.3) should be [calc(13px + -30%)]
 189PASS Web Animations: property <offset-distance> from [10px] to [100%] at (0) should be [calc(0% + 10px)]
 190PASS Web Animations: property <offset-distance> from [10px] to [100%] at (0.3) should be [calc(7px + 30%)]
 191PASS Web Animations: property <offset-distance> from [10px] to [100%] at (0.6) should be [calc(4px + 60%)]
 192PASS Web Animations: property <offset-distance> from [10px] to [100%] at (1) should be [100%]
 193PASS Web Animations: property <offset-distance> from [10px] to [100%] at (1.5) should be [calc(-5px + 150%)]
194194

LayoutTests/imported/w3c/web-platform-tests/css/motion/animation/offset-position-composition-expected.txt

11
2 FAIL Compositing: property <offset-position> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (-0.25) should be [75px 75px] assert_true: 'from' value should be supported expected true got false
3 FAIL Compositing: property <offset-position> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (0) should be [100px 100px] assert_true: 'from' value should be supported expected true got false
4 FAIL Compositing: property <offset-position> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (0.25) should be [125px 125px] assert_true: 'from' value should be supported expected true got false
5 FAIL Compositing: property <offset-position> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (0.5) should be [150px 150px] assert_true: 'from' value should be supported expected true got false
6 FAIL Compositing: property <offset-position> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (0.75) should be [175px 175px] assert_true: 'from' value should be supported expected true got false
7 FAIL Compositing: property <offset-position> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (1) should be [200px 200px] assert_true: 'from' value should be supported expected true got false
8 FAIL Compositing: property <offset-position> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (1.25) should be [225px 225px] assert_true: 'from' value should be supported expected true got false
9 FAIL Compositing: property <offset-position> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (-0.25) should be [110% 105%] assert_true: 'from' value should be supported expected true got false
10 FAIL Compositing: property <offset-position> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (0) should be [100% 100%] assert_true: 'from' value should be supported expected true got false
11 FAIL Compositing: property <offset-position> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (0.25) should be [90% 95%] assert_true: 'from' value should be supported expected true got false
12 FAIL Compositing: property <offset-position> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (0.5) should be [80% 90%] assert_true: 'from' value should be supported expected true got false
13 FAIL Compositing: property <offset-position> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (0.75) should be [70% 85%] assert_true: 'from' value should be supported expected true got false
14 FAIL Compositing: property <offset-position> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (1) should be [60% 80%] assert_true: 'from' value should be supported expected true got false
15 FAIL Compositing: property <offset-position> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (1.25) should be [50% 75%] assert_true: 'from' value should be supported expected true got false
16 FAIL Compositing: property <offset-position> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (-0.25) should be [75px 225px] assert_true: 'from' value should be supported expected true got false
17 FAIL Compositing: property <offset-position> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (0) should be [100px 200px] assert_true: 'from' value should be supported expected true got false
18 FAIL Compositing: property <offset-position> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (0.25) should be [125px 175px] assert_true: 'from' value should be supported expected true got false
19 FAIL Compositing: property <offset-position> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (0.5) should be [150px 150px] assert_true: 'from' value should be supported expected true got false
20 FAIL Compositing: property <offset-position> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (0.75) should be [175px 125px] assert_true: 'from' value should be supported expected true got false
21 FAIL Compositing: property <offset-position> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (1) should be [200px 100px] assert_true: 'from' value should be supported expected true got false
22 FAIL Compositing: property <offset-position> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (1.25) should be [225px 75px] assert_true: 'from' value should be supported expected true got false
23 FAIL Compositing: property <offset-position> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (-0.25) should be [75px 225px] assert_true: 'from' value should be supported expected true got false
24 FAIL Compositing: property <offset-position> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (0) should be [100px 200px] assert_true: 'from' value should be supported expected true got false
25 FAIL Compositing: property <offset-position> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (0.25) should be [125px 175px] assert_true: 'from' value should be supported expected true got false
26 FAIL Compositing: property <offset-position> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (0.5) should be [150px 150px] assert_true: 'from' value should be supported expected true got false
27 FAIL Compositing: property <offset-position> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (0.75) should be [175px 125px] assert_true: 'from' value should be supported expected true got false
28 FAIL Compositing: property <offset-position> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (1) should be [200px 100px] assert_true: 'from' value should be supported expected true got false
29 FAIL Compositing: property <offset-position> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (1.25) should be [225px 75px] assert_true: 'from' value should be supported expected true got false
 2FAIL Compositing: property <offset-position> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (-0.25) should be [75px 75px] assert_equals: expected "75px 75px " but got "35px 15px "
 3FAIL Compositing: property <offset-position> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (0) should be [100px 100px] assert_equals: expected "100px 100px " but got "60px 40px "
 4FAIL Compositing: property <offset-position> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (0.25) should be [125px 125px] assert_equals: expected "125px 125px " but got "85px 65px "
 5FAIL Compositing: property <offset-position> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (0.5) should be [150px 150px] assert_equals: expected "150px 150px " but got "110px 90px "
 6FAIL Compositing: property <offset-position> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (0.75) should be [175px 175px] assert_equals: expected "175px 175px " but got "135px 115px "
 7FAIL Compositing: property <offset-position> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (1) should be [200px 200px] assert_equals: expected "200px 200px " but got "160px 140px "
 8FAIL Compositing: property <offset-position> underlying [40px 60px] from add [60px 40px] to add [160px 140px] at (1.25) should be [225px 225px] assert_equals: expected "225px 225px " but got "185px 165px "
 9FAIL Compositing: property <offset-position> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (-0.25) should be [110% 105%] assert_equals: expected "110 % 105 % " but got "70 % 85 % "
 10FAIL Compositing: property <offset-position> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (0) should be [100% 100%] assert_equals: expected "100 % 100 % " but got "60 % 80 % "
 11FAIL Compositing: property <offset-position> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (0.25) should be [90% 95%] assert_equals: expected "90 % 95 % " but got "50 % 75 % "
 12FAIL Compositing: property <offset-position> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (0.5) should be [80% 90%] assert_equals: expected "80 % 90 % " but got "40 % 70 % "
 13FAIL Compositing: property <offset-position> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (0.75) should be [70% 85%] assert_equals: expected "70 % 85 % " but got "30 % 65 % "
 14FAIL Compositing: property <offset-position> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (1) should be [60% 80%] assert_equals: expected "60 % 80 % " but got "20 % 60 % "
 15FAIL Compositing: property <offset-position> underlying [top 20% left 40%] from add [left 60% top 80%] to add [right 80% bottom 40%] at (1.25) should be [50% 75%] assert_equals: expected "50 % 75 % " but got "10 % 55 % "
 16FAIL Compositing: property <offset-position> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (-0.25) should be [75px 225px] assert_equals: expected "75px 225px " but got "85px 240px "
 17PASS Compositing: property <offset-position> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (0) should be [100px 200px]
 18FAIL Compositing: property <offset-position> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (0.25) should be [125px 175px] assert_equals: expected "125px 175px " but got "115px 160px "
 19FAIL Compositing: property <offset-position> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (0.5) should be [150px 150px] assert_equals: expected "150px 150px " but got "130px 120px "
 20FAIL Compositing: property <offset-position> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (0.75) should be [175px 125px] assert_equals: expected "175px 125px " but got "145px 80px "
 21FAIL Compositing: property <offset-position> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (1) should be [200px 100px] assert_equals: expected "200px 100px " but got "160px 40px "
 22FAIL Compositing: property <offset-position> underlying [40px 60px] from replace [100px 200px] to add [160px 40px] at (1.25) should be [225px 75px] assert_equals: expected "225px 75px " but got "175px 0px "
 23FAIL Compositing: property <offset-position> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (-0.25) should be [75px 225px] assert_equals: expected "75px 225px " but got "25px 150px "
 24FAIL Compositing: property <offset-position> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (0) should be [100px 200px] assert_equals: expected "100px 200px " but got "60px 140px "
 25FAIL Compositing: property <offset-position> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (0.25) should be [125px 175px] assert_equals: expected "125px 175px " but got "95px 130px "
 26FAIL Compositing: property <offset-position> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (0.5) should be [150px 150px] assert_equals: expected "150px 150px " but got "130px 120px "
 27FAIL Compositing: property <offset-position> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (0.75) should be [175px 125px] assert_equals: expected "175px 125px " but got "165px 110px "
 28PASS Compositing: property <offset-position> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (1) should be [200px 100px]
 29FAIL Compositing: property <offset-position> underlying [40px 60px] from add [60px 140px] to replace [200px 100px] at (1.25) should be [225px 75px] assert_equals: expected "225px 75px " but got "235px 90px "
3030

LayoutTests/imported/w3c/web-platform-tests/css/motion/animation/offset-position-interpolation-expected.txt

11
2 FAIL CSS Transitions: property <offset-position> from [220px 240px] to [300px 400px] at (-1) should be [140px 80px] assert_true: 'from' value should be supported expected true got false
3 FAIL CSS Transitions: property <offset-position> from [220px 240px] to [300px 400px] at (0) should be [220px 240px] assert_true: 'from' value should be supported expected true got false
4 FAIL CSS Transitions: property <offset-position> from [220px 240px] to [300px 400px] at (0.125) should be [230px 260px] assert_true: 'from' value should be supported expected true got false
5 FAIL CSS Transitions: property <offset-position> from [220px 240px] to [300px 400px] at (0.875) should be [290px 380px] assert_true: 'from' value should be supported expected true got false
6 FAIL CSS Transitions: property <offset-position> from [220px 240px] to [300px 400px] at (1) should be [300px 400px] assert_true: 'from' value should be supported expected true got false
7 FAIL CSS Transitions: property <offset-position> from [220px 240px] to [300px 400px] at (2) should be [380px 560px] assert_true: 'from' value should be supported expected true got false
8 FAIL CSS Transitions with transition: all: property <offset-position> from [220px 240px] to [300px 400px] at (-1) should be [140px 80px] assert_true: 'from' value should be supported expected true got false
9 FAIL CSS Transitions with transition: all: property <offset-position> from [220px 240px] to [300px 400px] at (0) should be [220px 240px] assert_true: 'from' value should be supported expected true got false
10 FAIL CSS Transitions with transition: all: property <offset-position> from [220px 240px] to [300px 400px] at (0.125) should be [230px 260px] assert_true: 'from' value should be supported expected true got false
11 FAIL CSS Transitions with transition: all: property <offset-position> from [220px 240px] to [300px 400px] at (0.875) should be [290px 380px] assert_true: 'from' value should be supported expected true got false
12 FAIL CSS Transitions with transition: all: property <offset-position> from [220px 240px] to [300px 400px] at (1) should be [300px 400px] assert_true: 'from' value should be supported expected true got false
13 FAIL CSS Transitions with transition: all: property <offset-position> from [220px 240px] to [300px 400px] at (2) should be [380px 560px] assert_true: 'from' value should be supported expected true got false
14 FAIL CSS Animations: property <offset-position> from [220px 240px] to [300px 400px] at (-1) should be [140px 80px] assert_true: 'from' value should be supported expected true got false
15 FAIL CSS Animations: property <offset-position> from [220px 240px] to [300px 400px] at (0) should be [220px 240px] assert_true: 'from' value should be supported expected true got false
16 FAIL CSS Animations: property <offset-position> from [220px 240px] to [300px 400px] at (0.125) should be [230px 260px] assert_true: 'from' value should be supported expected true got false
17 FAIL CSS Animations: property <offset-position> from [220px 240px] to [300px 400px] at (0.875) should be [290px 380px] assert_true: 'from' value should be supported expected true got false
18 FAIL CSS Animations: property <offset-position> from [220px 240px] to [300px 400px] at (1) should be [300px 400px] assert_true: 'from' value should be supported expected true got false
19 FAIL CSS Animations: property <offset-position> from [220px 240px] to [300px 400px] at (2) should be [380px 560px] assert_true: 'from' value should be supported expected true got false
20 FAIL Web Animations: property <offset-position> from [220px 240px] to [300px 400px] at (-1) should be [140px 80px] assert_true: 'from' value should be supported expected true got false
21 FAIL Web Animations: property <offset-position> from [220px 240px] to [300px 400px] at (0) should be [220px 240px] assert_true: 'from' value should be supported expected true got false
22 FAIL Web Animations: property <offset-position> from [220px 240px] to [300px 400px] at (0.125) should be [230px 260px] assert_true: 'from' value should be supported expected true got false
23 FAIL Web Animations: property <offset-position> from [220px 240px] to [300px 400px] at (0.875) should be [290px 380px] assert_true: 'from' value should be supported expected true got false
24 FAIL Web Animations: property <offset-position> from [220px 240px] to [300px 400px] at (1) should be [300px 400px] assert_true: 'from' value should be supported expected true got false
25 FAIL Web Animations: property <offset-position> from [220px 240px] to [300px 400px] at (2) should be [380px 560px] assert_true: 'from' value should be supported expected true got false
26 FAIL CSS Transitions: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (-1) should be [calc(960px - 240%) calc(800px - 160%)] assert_true: 'from' value should be supported expected true got false
27 FAIL CSS Transitions: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0) should be [left 480px top 400px] assert_true: 'from' value should be supported expected true got false
28 FAIL CSS Transitions: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0.125) should be [calc(420px + 30%) calc(350px + 20%)] assert_true: 'from' value should be supported expected true got false
29 FAIL CSS Transitions: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0.875) should be [calc(210% + 60px) calc(140% + 50px)] assert_true: 'from' value should be supported expected true got false
30 FAIL CSS Transitions: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (1) should be [right -140% bottom -60%] assert_true: 'from' value should be supported expected true got false
31 FAIL CSS Transitions: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (2) should be [calc(480% - 480px) calc(320% - 400px)] assert_true: 'from' value should be supported expected true got false
32 FAIL CSS Transitions with transition: all: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (-1) should be [calc(960px - 240%) calc(800px - 160%)] assert_true: 'from' value should be supported expected true got false
33 FAIL CSS Transitions with transition: all: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0) should be [left 480px top 400px] assert_true: 'from' value should be supported expected true got false
34 FAIL CSS Transitions with transition: all: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0.125) should be [calc(420px + 30%) calc(350px + 20%)] assert_true: 'from' value should be supported expected true got false
35 FAIL CSS Transitions with transition: all: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0.875) should be [calc(210% + 60px) calc(140% + 50px)] assert_true: 'from' value should be supported expected true got false
36 FAIL CSS Transitions with transition: all: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (1) should be [right -140% bottom -60%] assert_true: 'from' value should be supported expected true got false
37 FAIL CSS Transitions with transition: all: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (2) should be [calc(480% - 480px) calc(320% - 400px)] assert_true: 'from' value should be supported expected true got false
38 FAIL CSS Animations: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (-1) should be [calc(960px - 240%) calc(800px - 160%)] assert_true: 'from' value should be supported expected true got false
39 FAIL CSS Animations: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0) should be [left 480px top 400px] assert_true: 'from' value should be supported expected true got false
40 FAIL CSS Animations: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0.125) should be [calc(420px + 30%) calc(350px + 20%)] assert_true: 'from' value should be supported expected true got false
41 FAIL CSS Animations: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0.875) should be [calc(210% + 60px) calc(140% + 50px)] assert_true: 'from' value should be supported expected true got false
42 FAIL CSS Animations: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (1) should be [right -140% bottom -60%] assert_true: 'from' value should be supported expected true got false
43 FAIL CSS Animations: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (2) should be [calc(480% - 480px) calc(320% - 400px)] assert_true: 'from' value should be supported expected true got false
44 FAIL Web Animations: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (-1) should be [calc(960px - 240%) calc(800px - 160%)] assert_true: 'from' value should be supported expected true got false
45 FAIL Web Animations: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0) should be [left 480px top 400px] assert_true: 'from' value should be supported expected true got false
46 FAIL Web Animations: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0.125) should be [calc(420px + 30%) calc(350px + 20%)] assert_true: 'from' value should be supported expected true got false
47 FAIL Web Animations: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0.875) should be [calc(210% + 60px) calc(140% + 50px)] assert_true: 'from' value should be supported expected true got false
48 FAIL Web Animations: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (1) should be [right -140% bottom -60%] assert_true: 'from' value should be supported expected true got false
49 FAIL Web Animations: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (2) should be [calc(480% - 480px) calc(320% - 400px)] assert_true: 'from' value should be supported expected true got false
50 FAIL CSS Transitions: property <offset-position> from [left top] to [left 8px bottom 20%] at (-1) should be [-8px -80%] assert_true: 'from' value should be supported expected true got false
51 FAIL CSS Transitions: property <offset-position> from [left top] to [left 8px bottom 20%] at (0) should be [left top] assert_true: 'from' value should be supported expected true got false
52 FAIL CSS Transitions: property <offset-position> from [left top] to [left 8px bottom 20%] at (0.125) should be [1px 10%] assert_true: 'from' value should be supported expected true got false
53 FAIL CSS Transitions: property <offset-position> from [left top] to [left 8px bottom 20%] at (0.875) should be [7px 70%] assert_true: 'from' value should be supported expected true got false
54 FAIL CSS Transitions: property <offset-position> from [left top] to [left 8px bottom 20%] at (1) should be [left 8px bottom 20%] assert_true: 'from' value should be supported expected true got false
55 FAIL CSS Transitions: property <offset-position> from [left top] to [left 8px bottom 20%] at (2) should be [16px 160%] assert_true: 'from' value should be supported expected true got false
56 FAIL CSS Transitions with transition: all: property <offset-position> from [left top] to [left 8px bottom 20%] at (-1) should be [-8px -80%] assert_true: 'from' value should be supported expected true got false
57 FAIL CSS Transitions with transition: all: property <offset-position> from [left top] to [left 8px bottom 20%] at (0) should be [left top] assert_true: 'from' value should be supported expected true got false
58 FAIL CSS Transitions with transition: all: property <offset-position> from [left top] to [left 8px bottom 20%] at (0.125) should be [1px 10%] assert_true: 'from' value should be supported expected true got false
59 FAIL CSS Transitions with transition: all: property <offset-position> from [left top] to [left 8px bottom 20%] at (0.875) should be [7px 70%] assert_true: 'from' value should be supported expected true got false
60 FAIL CSS Transitions with transition: all: property <offset-position> from [left top] to [left 8px bottom 20%] at (1) should be [left 8px bottom 20%] assert_true: 'from' value should be supported expected true got false
61 FAIL CSS Transitions with transition: all: property <offset-position> from [left top] to [left 8px bottom 20%] at (2) should be [16px 160%] assert_true: 'from' value should be supported expected true got false
62 FAIL CSS Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (-1) should be [-8px -80%] assert_true: 'from' value should be supported expected true got false
63 FAIL CSS Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (0) should be [left top] assert_true: 'from' value should be supported expected true got false
64 FAIL CSS Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (0.125) should be [1px 10%] assert_true: 'from' value should be supported expected true got false
65 FAIL CSS Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (0.875) should be [7px 70%] assert_true: 'from' value should be supported expected true got false
66 FAIL CSS Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (1) should be [left 8px bottom 20%] assert_true: 'from' value should be supported expected true got false
67 FAIL CSS Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (2) should be [16px 160%] assert_true: 'from' value should be supported expected true got false
68 FAIL Web Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (-1) should be [-8px -80%] assert_true: 'from' value should be supported expected true got false
69 FAIL Web Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (0) should be [left top] assert_true: 'from' value should be supported expected true got false
70 FAIL Web Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (0.125) should be [1px 10%] assert_true: 'from' value should be supported expected true got false
71 FAIL Web Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (0.875) should be [7px 70%] assert_true: 'from' value should be supported expected true got false
72 FAIL Web Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (1) should be [left 8px bottom 20%] assert_true: 'from' value should be supported expected true got false
73 FAIL Web Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (2) should be [16px 160%] assert_true: 'from' value should be supported expected true got false
74 FAIL CSS Transitions: property <offset-position> from [right 10px top 20%] to [auto] at (-0.3) should be [auto] assert_true: 'from' value should be supported expected true got false
75 FAIL CSS Transitions: property <offset-position> from [right 10px top 20%] to [auto] at (0) should be [auto] assert_true: 'from' value should be supported expected true got false
76 FAIL CSS Transitions: property <offset-position> from [right 10px top 20%] to [auto] at (0.3) should be [auto] assert_true: 'from' value should be supported expected true got false
77 FAIL CSS Transitions: property <offset-position> from [right 10px top 20%] to [auto] at (0.5) should be [auto] assert_true: 'from' value should be supported expected true got false
78 FAIL CSS Transitions: property <offset-position> from [right 10px top 20%] to [auto] at (0.6) should be [auto] assert_true: 'from' value should be supported expected true got false
79 FAIL CSS Transitions: property <offset-position> from [right 10px top 20%] to [auto] at (1) should be [auto] assert_true: 'from' value should be supported expected true got false
80 FAIL CSS Transitions: property <offset-position> from [right 10px top 20%] to [auto] at (1.5) should be [auto] assert_true: 'from' value should be supported expected true got false
81 FAIL CSS Transitions with transition: all: property <offset-position> from [right 10px top 20%] to [auto] at (-0.3) should be [auto] assert_true: 'from' value should be supported expected true got false
82 FAIL CSS Transitions with transition: all: property <offset-position> from [right 10px top 20%] to [auto] at (0) should be [auto] assert_true: 'from' value should be supported expected true got false
83 FAIL CSS Transitions with transition: all: property <offset-position> from [right 10px top 20%] to [auto] at (0.3) should be [auto] assert_true: 'from' value should be supported expected true got false
84 FAIL CSS Transitions with transition: all: property <offset-position> from [right 10px top 20%] to [auto] at (0.5) should be [auto] assert_true: 'from' value should be supported expected true got false
85 FAIL CSS Transitions with transition: all: property <offset-position> from [right 10px top 20%] to [auto] at (0.6) should be [auto] assert_true: 'from' value should be supported expected true got false
86 FAIL CSS Transitions with transition: all: property <offset-position> from [right 10px top 20%] to [auto] at (1) should be [auto] assert_true: 'from' value should be supported expected true got false
87 FAIL CSS Transitions with transition: all: property <offset-position> from [right 10px top 20%] to [auto] at (1.5) should be [auto] assert_true: 'from' value should be supported expected true got false
88 FAIL CSS Animations: property <offset-position> from [right 10px top 20%] to [auto] at (-0.3) should be [right 10px top 20%] assert_true: 'from' value should be supported expected true got false
89 FAIL CSS Animations: property <offset-position> from [right 10px top 20%] to [auto] at (0) should be [right 10px top 20%] assert_true: 'from' value should be supported expected true got false
90 FAIL CSS Animations: property <offset-position> from [right 10px top 20%] to [auto] at (0.3) should be [right 10px top 20%] assert_true: 'from' value should be supported expected true got false
91 FAIL CSS Animations: property <offset-position> from [right 10px top 20%] to [auto] at (0.5) should be [auto] assert_true: 'from' value should be supported expected true got false
92 FAIL CSS Animations: property <offset-position> from [right 10px top 20%] to [auto] at (0.6) should be [auto] assert_true: 'from' value should be supported expected true got false
93 FAIL CSS Animations: property <offset-position> from [right 10px top 20%] to [auto] at (1) should be [auto] assert_true: 'from' value should be supported expected true got false
94 FAIL CSS Animations: property <offset-position> from [right 10px top 20%] to [auto] at (1.5) should be [auto] assert_true: 'from' value should be supported expected true got false
95 FAIL Web Animations: property <offset-position> from [right 10px top 20%] to [auto] at (-0.3) should be [right 10px top 20%] assert_true: 'from' value should be supported expected true got false
96 FAIL Web Animations: property <offset-position> from [right 10px top 20%] to [auto] at (0) should be [right 10px top 20%] assert_true: 'from' value should be supported expected true got false
97 FAIL Web Animations: property <offset-position> from [right 10px top 20%] to [auto] at (0.3) should be [right 10px top 20%] assert_true: 'from' value should be supported expected true got false
98 FAIL Web Animations: property <offset-position> from [right 10px top 20%] to [auto] at (0.5) should be [auto] assert_true: 'from' value should be supported expected true got false
99 FAIL Web Animations: property <offset-position> from [right 10px top 20%] to [auto] at (0.6) should be [auto] assert_true: 'from' value should be supported expected true got false
100 FAIL Web Animations: property <offset-position> from [right 10px top 20%] to [auto] at (1) should be [auto] assert_true: 'from' value should be supported expected true got false
101 FAIL Web Animations: property <offset-position> from [right 10px top 20%] to [auto] at (1.5) should be [auto] assert_true: 'from' value should be supported expected true got false
102 FAIL CSS Transitions: property <offset-position> from neutral to [20px 20px] at (-0.3) should be [7px 33px] assert_true: 'to' value should be supported expected true got false
103 FAIL CSS Transitions: property <offset-position> from neutral to [20px 20px] at (0) should be [10px 30px] assert_true: 'to' value should be supported expected true got false
104 FAIL CSS Transitions: property <offset-position> from neutral to [20px 20px] at (0.3) should be [13px 27px] assert_true: 'to' value should be supported expected true got false
105 FAIL CSS Transitions: property <offset-position> from neutral to [20px 20px] at (0.6) should be [16px 24px] assert_true: 'to' value should be supported expected true got false
106 FAIL CSS Transitions: property <offset-position> from neutral to [20px 20px] at (1) should be [20px 20px] assert_true: 'to' value should be supported expected true got false
107 FAIL CSS Transitions: property <offset-position> from neutral to [20px 20px] at (1.5) should be [25px 15px] assert_true: 'to' value should be supported expected true got false
108 FAIL CSS Transitions with transition: all: property <offset-position> from neutral to [20px 20px] at (-0.3) should be [7px 33px] assert_true: 'to' value should be supported expected true got false
109 FAIL CSS Transitions with transition: all: property <offset-position> from neutral to [20px 20px] at (0) should be [10px 30px] assert_true: 'to' value should be supported expected true got false
110 FAIL CSS Transitions with transition: all: property <offset-position> from neutral to [20px 20px] at (0.3) should be [13px 27px] assert_true: 'to' value should be supported expected true got false
111 FAIL CSS Transitions with transition: all: property <offset-position> from neutral to [20px 20px] at (0.6) should be [16px 24px] assert_true: 'to' value should be supported expected true got false
112 FAIL CSS Transitions with transition: all: property <offset-position> from neutral to [20px 20px] at (1) should be [20px 20px] assert_true: 'to' value should be supported expected true got false
113 FAIL CSS Transitions with transition: all: property <offset-position> from neutral to [20px 20px] at (1.5) should be [25px 15px] assert_true: 'to' value should be supported expected true got false
114 FAIL CSS Animations: property <offset-position> from neutral to [20px 20px] at (-0.3) should be [7px 33px] assert_true: 'to' value should be supported expected true got false
115 FAIL CSS Animations: property <offset-position> from neutral to [20px 20px] at (0) should be [10px 30px] assert_true: 'to' value should be supported expected true got false
116 FAIL CSS Animations: property <offset-position> from neutral to [20px 20px] at (0.3) should be [13px 27px] assert_true: 'to' value should be supported expected true got false
117 FAIL CSS Animations: property <offset-position> from neutral to [20px 20px] at (0.6) should be [16px 24px] assert_true: 'to' value should be supported expected true got false
118 FAIL CSS Animations: property <offset-position> from neutral to [20px 20px] at (1) should be [20px 20px] assert_true: 'to' value should be supported expected true got false
119 FAIL CSS Animations: property <offset-position> from neutral to [20px 20px] at (1.5) should be [25px 15px] assert_true: 'to' value should be supported expected true got false
120 FAIL Web Animations: property <offset-position> from neutral to [20px 20px] at (-0.3) should be [7px 33px] assert_true: 'to' value should be supported expected true got false
121 FAIL Web Animations: property <offset-position> from neutral to [20px 20px] at (0) should be [10px 30px] assert_true: 'to' value should be supported expected true got false
122 FAIL Web Animations: property <offset-position> from neutral to [20px 20px] at (0.3) should be [13px 27px] assert_true: 'to' value should be supported expected true got false
123 FAIL Web Animations: property <offset-position> from neutral to [20px 20px] at (0.6) should be [16px 24px] assert_true: 'to' value should be supported expected true got false
124 FAIL Web Animations: property <offset-position> from neutral to [20px 20px] at (1) should be [20px 20px] assert_true: 'to' value should be supported expected true got false
125 FAIL Web Animations: property <offset-position> from neutral to [20px 20px] at (1.5) should be [25px 15px] assert_true: 'to' value should be supported expected true got false
126 FAIL CSS Transitions: property <offset-position> from [initial] to [20px 20px] at (-0.3) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
127 FAIL CSS Transitions: property <offset-position> from [initial] to [20px 20px] at (0) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
128 FAIL CSS Transitions: property <offset-position> from [initial] to [20px 20px] at (0.3) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
129 FAIL CSS Transitions: property <offset-position> from [initial] to [20px 20px] at (0.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
130 FAIL CSS Transitions: property <offset-position> from [initial] to [20px 20px] at (0.6) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
131 FAIL CSS Transitions: property <offset-position> from [initial] to [20px 20px] at (1) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
132 FAIL CSS Transitions: property <offset-position> from [initial] to [20px 20px] at (1.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
133 FAIL CSS Transitions with transition: all: property <offset-position> from [initial] to [20px 20px] at (-0.3) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
134 FAIL CSS Transitions with transition: all: property <offset-position> from [initial] to [20px 20px] at (0) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
135 FAIL CSS Transitions with transition: all: property <offset-position> from [initial] to [20px 20px] at (0.3) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
136 FAIL CSS Transitions with transition: all: property <offset-position> from [initial] to [20px 20px] at (0.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
137 FAIL CSS Transitions with transition: all: property <offset-position> from [initial] to [20px 20px] at (0.6) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
138 FAIL CSS Transitions with transition: all: property <offset-position> from [initial] to [20px 20px] at (1) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
139 FAIL CSS Transitions with transition: all: property <offset-position> from [initial] to [20px 20px] at (1.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
140 FAIL CSS Animations: property <offset-position> from [initial] to [20px 20px] at (-0.3) should be [initial] assert_true: 'from' value should be supported expected true got false
141 FAIL CSS Animations: property <offset-position> from [initial] to [20px 20px] at (0) should be [initial] assert_true: 'from' value should be supported expected true got false
142 FAIL CSS Animations: property <offset-position> from [initial] to [20px 20px] at (0.3) should be [initial] assert_true: 'from' value should be supported expected true got false
143 FAIL CSS Animations: property <offset-position> from [initial] to [20px 20px] at (0.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
144 FAIL CSS Animations: property <offset-position> from [initial] to [20px 20px] at (0.6) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
145 FAIL CSS Animations: property <offset-position> from [initial] to [20px 20px] at (1) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
146 FAIL CSS Animations: property <offset-position> from [initial] to [20px 20px] at (1.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
147 FAIL Web Animations: property <offset-position> from [initial] to [20px 20px] at (-0.3) should be [initial] assert_true: 'from' value should be supported expected true got false
148 FAIL Web Animations: property <offset-position> from [initial] to [20px 20px] at (0) should be [initial] assert_true: 'from' value should be supported expected true got false
149 FAIL Web Animations: property <offset-position> from [initial] to [20px 20px] at (0.3) should be [initial] assert_true: 'from' value should be supported expected true got false
150 FAIL Web Animations: property <offset-position> from [initial] to [20px 20px] at (0.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
151 FAIL Web Animations: property <offset-position> from [initial] to [20px 20px] at (0.6) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
152 FAIL Web Animations: property <offset-position> from [initial] to [20px 20px] at (1) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
153 FAIL Web Animations: property <offset-position> from [initial] to [20px 20px] at (1.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
154 FAIL CSS Transitions: property <offset-position> from [inherit] to [20px 20px] at (-0.3) should be [33px 7px] assert_true: 'from' value should be supported expected true got false
155 FAIL CSS Transitions: property <offset-position> from [inherit] to [20px 20px] at (0) should be [30px 10px] assert_true: 'from' value should be supported expected true got false
156 FAIL CSS Transitions: property <offset-position> from [inherit] to [20px 20px] at (0.3) should be [27px 13px] assert_true: 'from' value should be supported expected true got false
157 FAIL CSS Transitions: property <offset-position> from [inherit] to [20px 20px] at (0.6) should be [24px 16px] assert_true: 'from' value should be supported expected true got false
158 FAIL CSS Transitions: property <offset-position> from [inherit] to [20px 20px] at (1) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
159 FAIL CSS Transitions: property <offset-position> from [inherit] to [20px 20px] at (1.5) should be [15px 25px] assert_true: 'from' value should be supported expected true got false
160 FAIL CSS Transitions with transition: all: property <offset-position> from [inherit] to [20px 20px] at (-0.3) should be [33px 7px] assert_true: 'from' value should be supported expected true got false
161 FAIL CSS Transitions with transition: all: property <offset-position> from [inherit] to [20px 20px] at (0) should be [30px 10px] assert_true: 'from' value should be supported expected true got false
162 FAIL CSS Transitions with transition: all: property <offset-position> from [inherit] to [20px 20px] at (0.3) should be [27px 13px] assert_true: 'from' value should be supported expected true got false
163 FAIL CSS Transitions with transition: all: property <offset-position> from [inherit] to [20px 20px] at (0.6) should be [24px 16px] assert_true: 'from' value should be supported expected true got false
164 FAIL CSS Transitions with transition: all: property <offset-position> from [inherit] to [20px 20px] at (1) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
165 FAIL CSS Transitions with transition: all: property <offset-position> from [inherit] to [20px 20px] at (1.5) should be [15px 25px] assert_true: 'from' value should be supported expected true got false
166 FAIL CSS Animations: property <offset-position> from [inherit] to [20px 20px] at (-0.3) should be [33px 7px] assert_true: 'from' value should be supported expected true got false
167 FAIL CSS Animations: property <offset-position> from [inherit] to [20px 20px] at (0) should be [30px 10px] assert_true: 'from' value should be supported expected true got false
168 FAIL CSS Animations: property <offset-position> from [inherit] to [20px 20px] at (0.3) should be [27px 13px] assert_true: 'from' value should be supported expected true got false
169 FAIL CSS Animations: property <offset-position> from [inherit] to [20px 20px] at (0.6) should be [24px 16px] assert_true: 'from' value should be supported expected true got false
170 FAIL CSS Animations: property <offset-position> from [inherit] to [20px 20px] at (1) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
171 FAIL CSS Animations: property <offset-position> from [inherit] to [20px 20px] at (1.5) should be [15px 25px] assert_true: 'from' value should be supported expected true got false
172 FAIL Web Animations: property <offset-position> from [inherit] to [20px 20px] at (-0.3) should be [33px 7px] assert_true: 'from' value should be supported expected true got false
173 FAIL Web Animations: property <offset-position> from [inherit] to [20px 20px] at (0) should be [30px 10px] assert_true: 'from' value should be supported expected true got false
174 FAIL Web Animations: property <offset-position> from [inherit] to [20px 20px] at (0.3) should be [27px 13px] assert_true: 'from' value should be supported expected true got false
175 FAIL Web Animations: property <offset-position> from [inherit] to [20px 20px] at (0.6) should be [24px 16px] assert_true: 'from' value should be supported expected true got false
176 FAIL Web Animations: property <offset-position> from [inherit] to [20px 20px] at (1) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
177 FAIL Web Animations: property <offset-position> from [inherit] to [20px 20px] at (1.5) should be [15px 25px] assert_true: 'from' value should be supported expected true got false
178 FAIL CSS Transitions: property <offset-position> from [unset] to [20px 20px] at (-0.3) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
179 FAIL CSS Transitions: property <offset-position> from [unset] to [20px 20px] at (0) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
180 FAIL CSS Transitions: property <offset-position> from [unset] to [20px 20px] at (0.3) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
181 FAIL CSS Transitions: property <offset-position> from [unset] to [20px 20px] at (0.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
182 FAIL CSS Transitions: property <offset-position> from [unset] to [20px 20px] at (0.6) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
183 FAIL CSS Transitions: property <offset-position> from [unset] to [20px 20px] at (1) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
184 FAIL CSS Transitions: property <offset-position> from [unset] to [20px 20px] at (1.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
185 FAIL CSS Transitions with transition: all: property <offset-position> from [unset] to [20px 20px] at (-0.3) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
186 FAIL CSS Transitions with transition: all: property <offset-position> from [unset] to [20px 20px] at (0) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
187 FAIL CSS Transitions with transition: all: property <offset-position> from [unset] to [20px 20px] at (0.3) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
188 FAIL CSS Transitions with transition: all: property <offset-position> from [unset] to [20px 20px] at (0.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
189 FAIL CSS Transitions with transition: all: property <offset-position> from [unset] to [20px 20px] at (0.6) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
190 FAIL CSS Transitions with transition: all: property <offset-position> from [unset] to [20px 20px] at (1) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
191 FAIL CSS Transitions with transition: all: property <offset-position> from [unset] to [20px 20px] at (1.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
192 FAIL CSS Animations: property <offset-position> from [unset] to [20px 20px] at (-0.3) should be [unset] assert_true: 'from' value should be supported expected true got false
193 FAIL CSS Animations: property <offset-position> from [unset] to [20px 20px] at (0) should be [unset] assert_true: 'from' value should be supported expected true got false
194 FAIL CSS Animations: property <offset-position> from [unset] to [20px 20px] at (0.3) should be [unset] assert_true: 'from' value should be supported expected true got false
195 FAIL CSS Animations: property <offset-position> from [unset] to [20px 20px] at (0.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
196 FAIL CSS Animations: property <offset-position> from [unset] to [20px 20px] at (0.6) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
197 FAIL CSS Animations: property <offset-position> from [unset] to [20px 20px] at (1) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
198 FAIL CSS Animations: property <offset-position> from [unset] to [20px 20px] at (1.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
199 FAIL Web Animations: property <offset-position> from [unset] to [20px 20px] at (-0.3) should be [unset] assert_true: 'from' value should be supported expected true got false
200 FAIL Web Animations: property <offset-position> from [unset] to [20px 20px] at (0) should be [unset] assert_true: 'from' value should be supported expected true got false
201 FAIL Web Animations: property <offset-position> from [unset] to [20px 20px] at (0.3) should be [unset] assert_true: 'from' value should be supported expected true got false
202 FAIL Web Animations: property <offset-position> from [unset] to [20px 20px] at (0.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
203 FAIL Web Animations: property <offset-position> from [unset] to [20px 20px] at (0.6) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
204 FAIL Web Animations: property <offset-position> from [unset] to [20px 20px] at (1) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
205 FAIL Web Animations: property <offset-position> from [unset] to [20px 20px] at (1.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
206 FAIL CSS Transitions: property <offset-position> from [0% 50%] to [100% 150%] at (-0.3) should be [-30% 20%] assert_true: 'from' value should be supported expected true got false
207 FAIL CSS Transitions: property <offset-position> from [0% 50%] to [100% 150%] at (0) should be [0% 50%] assert_true: 'from' value should be supported expected true got false
208 FAIL CSS Transitions: property <offset-position> from [0% 50%] to [100% 150%] at (0.3) should be [30% 80%] assert_true: 'from' value should be supported expected true got false
209 FAIL CSS Transitions: property <offset-position> from [0% 50%] to [100% 150%] at (0.6) should be [60% 110%] assert_true: 'from' value should be supported expected true got false
210 FAIL CSS Transitions: property <offset-position> from [0% 50%] to [100% 150%] at (1) should be [100% 150%] assert_true: 'from' value should be supported expected true got false
211 FAIL CSS Transitions: property <offset-position> from [0% 50%] to [100% 150%] at (1.5) should be [150% 200%] assert_true: 'from' value should be supported expected true got false
212 FAIL CSS Transitions with transition: all: property <offset-position> from [0% 50%] to [100% 150%] at (-0.3) should be [-30% 20%] assert_true: 'from' value should be supported expected true got false
213 FAIL CSS Transitions with transition: all: property <offset-position> from [0% 50%] to [100% 150%] at (0) should be [0% 50%] assert_true: 'from' value should be supported expected true got false
214 FAIL CSS Transitions with transition: all: property <offset-position> from [0% 50%] to [100% 150%] at (0.3) should be [30% 80%] assert_true: 'from' value should be supported expected true got false
215 FAIL CSS Transitions with transition: all: property <offset-position> from [0% 50%] to [100% 150%] at (0.6) should be [60% 110%] assert_true: 'from' value should be supported expected true got false
216 FAIL CSS Transitions with transition: all: property <offset-position> from [0% 50%] to [100% 150%] at (1) should be [100% 150%] assert_true: 'from' value should be supported expected true got false
217 FAIL CSS Transitions with transition: all: property <offset-position> from [0% 50%] to [100% 150%] at (1.5) should be [150% 200%] assert_true: 'from' value should be supported expected true got false
218 FAIL CSS Animations: property <offset-position> from [0% 50%] to [100% 150%] at (-0.3) should be [-30% 20%] assert_true: 'from' value should be supported expected true got false
219 FAIL CSS Animations: property <offset-position> from [0% 50%] to [100% 150%] at (0) should be [0% 50%] assert_true: 'from' value should be supported expected true got false
220 FAIL CSS Animations: property <offset-position> from [0% 50%] to [100% 150%] at (0.3) should be [30% 80%] assert_true: 'from' value should be supported expected true got false
221 FAIL CSS Animations: property <offset-position> from [0% 50%] to [100% 150%] at (0.6) should be [60% 110%] assert_true: 'from' value should be supported expected true got false
222 FAIL CSS Animations: property <offset-position> from [0% 50%] to [100% 150%] at (1) should be [100% 150%] assert_true: 'from' value should be supported expected true got false
223 FAIL CSS Animations: property <offset-position> from [0% 50%] to [100% 150%] at (1.5) should be [150% 200%] assert_true: 'from' value should be supported expected true got false
224 FAIL Web Animations: property <offset-position> from [0% 50%] to [100% 150%] at (-0.3) should be [-30% 20%] assert_true: 'from' value should be supported expected true got false
225 FAIL Web Animations: property <offset-position> from [0% 50%] to [100% 150%] at (0) should be [0% 50%] assert_true: 'from' value should be supported expected true got false
226 FAIL Web Animations: property <offset-position> from [0% 50%] to [100% 150%] at (0.3) should be [30% 80%] assert_true: 'from' value should be supported expected true got false
227 FAIL Web Animations: property <offset-position> from [0% 50%] to [100% 150%] at (0.6) should be [60% 110%] assert_true: 'from' value should be supported expected true got false
228 FAIL Web Animations: property <offset-position> from [0% 50%] to [100% 150%] at (1) should be [100% 150%] assert_true: 'from' value should be supported expected true got false
229 FAIL Web Animations: property <offset-position> from [0% 50%] to [100% 150%] at (1.5) should be [150% 200%] assert_true: 'from' value should be supported expected true got false
230 FAIL CSS Transitions: property <offset-position> from [auto] to [20px 20px] at (-0.3) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
231 FAIL CSS Transitions: property <offset-position> from [auto] to [20px 20px] at (0) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
232 FAIL CSS Transitions: property <offset-position> from [auto] to [20px 20px] at (0.3) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
233 FAIL CSS Transitions: property <offset-position> from [auto] to [20px 20px] at (0.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
234 FAIL CSS Transitions: property <offset-position> from [auto] to [20px 20px] at (0.6) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
235 FAIL CSS Transitions: property <offset-position> from [auto] to [20px 20px] at (1) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
236 FAIL CSS Transitions: property <offset-position> from [auto] to [20px 20px] at (1.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
237 FAIL CSS Transitions with transition: all: property <offset-position> from [auto] to [20px 20px] at (-0.3) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
238 FAIL CSS Transitions with transition: all: property <offset-position> from [auto] to [20px 20px] at (0) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
239 FAIL CSS Transitions with transition: all: property <offset-position> from [auto] to [20px 20px] at (0.3) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
240 FAIL CSS Transitions with transition: all: property <offset-position> from [auto] to [20px 20px] at (0.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
241 FAIL CSS Transitions with transition: all: property <offset-position> from [auto] to [20px 20px] at (0.6) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
242 FAIL CSS Transitions with transition: all: property <offset-position> from [auto] to [20px 20px] at (1) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
243 FAIL CSS Transitions with transition: all: property <offset-position> from [auto] to [20px 20px] at (1.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
244 FAIL CSS Animations: property <offset-position> from [auto] to [20px 20px] at (-0.3) should be [auto] assert_true: 'from' value should be supported expected true got false
245 FAIL CSS Animations: property <offset-position> from [auto] to [20px 20px] at (0) should be [auto] assert_true: 'from' value should be supported expected true got false
246 FAIL CSS Animations: property <offset-position> from [auto] to [20px 20px] at (0.3) should be [auto] assert_true: 'from' value should be supported expected true got false
247 FAIL CSS Animations: property <offset-position> from [auto] to [20px 20px] at (0.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
248 FAIL CSS Animations: property <offset-position> from [auto] to [20px 20px] at (0.6) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
249 FAIL CSS Animations: property <offset-position> from [auto] to [20px 20px] at (1) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
250 FAIL CSS Animations: property <offset-position> from [auto] to [20px 20px] at (1.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
251 FAIL Web Animations: property <offset-position> from [auto] to [20px 20px] at (-0.3) should be [auto] assert_true: 'from' value should be supported expected true got false
252 FAIL Web Animations: property <offset-position> from [auto] to [20px 20px] at (0) should be [auto] assert_true: 'from' value should be supported expected true got false
253 FAIL Web Animations: property <offset-position> from [auto] to [20px 20px] at (0.3) should be [auto] assert_true: 'from' value should be supported expected true got false
254 FAIL Web Animations: property <offset-position> from [auto] to [20px 20px] at (0.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
255 FAIL Web Animations: property <offset-position> from [auto] to [20px 20px] at (0.6) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
256 FAIL Web Animations: property <offset-position> from [auto] to [20px 20px] at (1) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
257 FAIL Web Animations: property <offset-position> from [auto] to [20px 20px] at (1.5) should be [20px 20px] assert_true: 'from' value should be supported expected true got false
 2PASS CSS Transitions: property <offset-position> from [220px 240px] to [300px 400px] at (-1) should be [140px 80px]
 3PASS CSS Transitions: property <offset-position> from [220px 240px] to [300px 400px] at (0) should be [220px 240px]
 4PASS CSS Transitions: property <offset-position> from [220px 240px] to [300px 400px] at (0.125) should be [230px 260px]
 5PASS CSS Transitions: property <offset-position> from [220px 240px] to [300px 400px] at (0.875) should be [290px 380px]
 6PASS CSS Transitions: property <offset-position> from [220px 240px] to [300px 400px] at (1) should be [300px 400px]
 7PASS CSS Transitions: property <offset-position> from [220px 240px] to [300px 400px] at (2) should be [380px 560px]
 8PASS CSS Transitions with transition: all: property <offset-position> from [220px 240px] to [300px 400px] at (-1) should be [140px 80px]
 9PASS CSS Transitions with transition: all: property <offset-position> from [220px 240px] to [300px 400px] at (0) should be [220px 240px]
 10PASS CSS Transitions with transition: all: property <offset-position> from [220px 240px] to [300px 400px] at (0.125) should be [230px 260px]
 11PASS CSS Transitions with transition: all: property <offset-position> from [220px 240px] to [300px 400px] at (0.875) should be [290px 380px]
 12PASS CSS Transitions with transition: all: property <offset-position> from [220px 240px] to [300px 400px] at (1) should be [300px 400px]
 13PASS CSS Transitions with transition: all: property <offset-position> from [220px 240px] to [300px 400px] at (2) should be [380px 560px]
 14PASS CSS Animations: property <offset-position> from [220px 240px] to [300px 400px] at (-1) should be [140px 80px]
 15PASS CSS Animations: property <offset-position> from [220px 240px] to [300px 400px] at (0) should be [220px 240px]
 16PASS CSS Animations: property <offset-position> from [220px 240px] to [300px 400px] at (0.125) should be [230px 260px]
 17PASS CSS Animations: property <offset-position> from [220px 240px] to [300px 400px] at (0.875) should be [290px 380px]
 18PASS CSS Animations: property <offset-position> from [220px 240px] to [300px 400px] at (1) should be [300px 400px]
 19PASS CSS Animations: property <offset-position> from [220px 240px] to [300px 400px] at (2) should be [380px 560px]
 20PASS Web Animations: property <offset-position> from [220px 240px] to [300px 400px] at (-1) should be [140px 80px]
 21PASS Web Animations: property <offset-position> from [220px 240px] to [300px 400px] at (0) should be [220px 240px]
 22PASS Web Animations: property <offset-position> from [220px 240px] to [300px 400px] at (0.125) should be [230px 260px]
 23PASS Web Animations: property <offset-position> from [220px 240px] to [300px 400px] at (0.875) should be [290px 380px]
 24PASS Web Animations: property <offset-position> from [220px 240px] to [300px 400px] at (1) should be [300px 400px]
 25PASS Web Animations: property <offset-position> from [220px 240px] to [300px 400px] at (2) should be [380px 560px]
 26PASS CSS Transitions: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (-1) should be [calc(960px - 240%) calc(800px - 160%)]
 27PASS CSS Transitions: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0) should be [calc(0 % + 480px) calc(0 % + 400px)] for <0>
 28PASS CSS Transitions: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0) should be [left 480px top 400px] for <1>
 29PASS CSS Transitions: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0.125) should be [calc(420px + 30%) calc(350px + 20%)]
 30PASS CSS Transitions: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0.875) should be [calc(210% + 60px) calc(140% + 50px)]
 31PASS CSS Transitions: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (1) should be [right -140% bottom -60%]
 32PASS CSS Transitions: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (2) should be [calc(480% - 480px) calc(320% - 400px)]
 33PASS CSS Transitions with transition: all: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (-1) should be [calc(960px - 240%) calc(800px - 160%)]
 34PASS CSS Transitions with transition: all: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0) should be [calc(0 % + 480px) calc(0 % + 400px)] for <0>
 35PASS CSS Transitions with transition: all: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0) should be [left 480px top 400px] for <1>
 36PASS CSS Transitions with transition: all: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0.125) should be [calc(420px + 30%) calc(350px + 20%)]
 37PASS CSS Transitions with transition: all: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0.875) should be [calc(210% + 60px) calc(140% + 50px)]
 38PASS CSS Transitions with transition: all: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (1) should be [right -140% bottom -60%]
 39PASS CSS Transitions with transition: all: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (2) should be [calc(480% - 480px) calc(320% - 400px)]
 40PASS CSS Animations: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (-1) should be [calc(960px - 240%) calc(800px - 160%)]
 41PASS CSS Animations: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0) should be [calc(0 % + 480px) calc(0 % + 400px)] for <0>
 42PASS CSS Animations: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0) should be [left 480px top 400px] for <1>
 43PASS CSS Animations: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0.125) should be [calc(420px + 30%) calc(350px + 20%)]
 44PASS CSS Animations: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0.875) should be [calc(210% + 60px) calc(140% + 50px)]
 45PASS CSS Animations: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (1) should be [right -140% bottom -60%]
 46PASS CSS Animations: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (2) should be [calc(480% - 480px) calc(320% - 400px)]
 47PASS Web Animations: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (-1) should be [calc(960px - 240%) calc(800px - 160%)]
 48PASS Web Animations: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0) should be [calc(0 % + 480px) calc(0 % + 400px)] for <0>
 49PASS Web Animations: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0) should be [left 480px top 400px] for <1>
 50PASS Web Animations: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0.125) should be [calc(420px + 30%) calc(350px + 20%)]
 51PASS Web Animations: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (0.875) should be [calc(210% + 60px) calc(140% + 50px)]
 52PASS Web Animations: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (1) should be [right -140% bottom -60%]
 53PASS Web Animations: property <offset-position> from [left 480px top 400px] to [right -140% bottom -60%] at (2) should be [calc(480% - 480px) calc(320% - 400px)]
 54PASS CSS Transitions: property <offset-position> from [left top] to [left 8px bottom 20%] at (-1) should be [calc(0% - 8px) - 80%] for <0>
 55PASS CSS Transitions: property <offset-position> from [left top] to [left 8px bottom 20%] at (-1) should be [-8px -80%] for <1>
 56PASS CSS Transitions: property <offset-position> from [left top] to [left 8px bottom 20%] at (0) should be [left top]
 57PASS CSS Transitions: property <offset-position> from [left top] to [left 8px bottom 20%] at (0.125) should be [calc(0% + 1px) 10%] for <0>
 58PASS CSS Transitions: property <offset-position> from [left top] to [left 8px bottom 20%] at (0.125) should be [1px 10%] for <1>
 59PASS CSS Transitions: property <offset-position> from [left top] to [left 8px bottom 20%] at (0.875) should be [calc(0% + 7px) 70%] for <0>
 60PASS CSS Transitions: property <offset-position> from [left top] to [left 8px bottom 20%] at (0.875) should be [7px 70%] for <1>
 61PASS CSS Transitions: property <offset-position> from [left top] to [left 8px bottom 20%] at (1) should be [calc ( 0 % + 8px ) 80 %] for <0>
 62PASS CSS Transitions: property <offset-position> from [left top] to [left 8px bottom 20%] at (1) should be [left 8px bottom 20%] for <1>
 63PASS CSS Transitions: property <offset-position> from [left top] to [left 8px bottom 20%] at (2) should be [calc ( 0 % + 16px ) 160 %] for <0>
 64PASS CSS Transitions: property <offset-position> from [left top] to [left 8px bottom 20%] at (2) should be [16px 160%] for <1>
 65PASS CSS Transitions with transition: all: property <offset-position> from [left top] to [left 8px bottom 20%] at (-1) should be [calc(0% - 8px) - 80%] for <0>
 66PASS CSS Transitions with transition: all: property <offset-position> from [left top] to [left 8px bottom 20%] at (-1) should be [-8px -80%] for <1>
 67PASS CSS Transitions with transition: all: property <offset-position> from [left top] to [left 8px bottom 20%] at (0) should be [left top]
 68PASS CSS Transitions with transition: all: property <offset-position> from [left top] to [left 8px bottom 20%] at (0.125) should be [calc(0% + 1px) 10%] for <0>
 69PASS CSS Transitions with transition: all: property <offset-position> from [left top] to [left 8px bottom 20%] at (0.125) should be [1px 10%] for <1>
 70PASS CSS Transitions with transition: all: property <offset-position> from [left top] to [left 8px bottom 20%] at (0.875) should be [calc(0% + 7px) 70%] for <0>
 71PASS CSS Transitions with transition: all: property <offset-position> from [left top] to [left 8px bottom 20%] at (0.875) should be [7px 70%] for <1>
 72PASS CSS Transitions with transition: all: property <offset-position> from [left top] to [left 8px bottom 20%] at (1) should be [calc ( 0 % + 8px ) 80 %] for <0>
 73PASS CSS Transitions with transition: all: property <offset-position> from [left top] to [left 8px bottom 20%] at (1) should be [left 8px bottom 20%] for <1>
 74PASS CSS Transitions with transition: all: property <offset-position> from [left top] to [left 8px bottom 20%] at (2) should be [calc ( 0 % + 16px ) 160 %] for <0>
 75PASS CSS Transitions with transition: all: property <offset-position> from [left top] to [left 8px bottom 20%] at (2) should be [16px 160%] for <1>
 76PASS CSS Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (-1) should be [calc(0% - 8px) - 80%] for <0>
 77PASS CSS Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (-1) should be [-8px -80%] for <1>
 78PASS CSS Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (0) should be [left top]
 79PASS CSS Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (0.125) should be [calc(0% + 1px) 10%] for <0>
 80PASS CSS Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (0.125) should be [1px 10%] for <1>
 81PASS CSS Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (0.875) should be [calc(0% + 7px) 70%] for <0>
 82PASS CSS Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (0.875) should be [7px 70%] for <1>
 83PASS CSS Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (1) should be [calc ( 0 % + 8px ) 80 %] for <0>
 84PASS CSS Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (1) should be [left 8px bottom 20%] for <1>
 85PASS CSS Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (2) should be [calc ( 0 % + 16px ) 160 %] for <0>
 86PASS CSS Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (2) should be [16px 160%] for <1>
 87PASS Web Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (-1) should be [calc(0% - 8px) - 80%] for <0>
 88PASS Web Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (-1) should be [-8px -80%] for <1>
 89PASS Web Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (0) should be [left top]
 90PASS Web Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (0.125) should be [calc(0% + 1px) 10%] for <0>
 91PASS Web Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (0.125) should be [1px 10%] for <1>
 92PASS Web Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (0.875) should be [calc(0% + 7px) 70%] for <0>
 93PASS Web Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (0.875) should be [7px 70%] for <1>
 94PASS Web Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (1) should be [calc ( 0 % + 8px ) 80 %] for <0>
 95PASS Web Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (1) should be [left 8px bottom 20%] for <1>
 96PASS Web Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (2) should be [calc ( 0 % + 16px ) 160 %] for <0>
 97PASS Web Animations: property <offset-position> from [left top] to [left 8px bottom 20%] at (2) should be [16px 160%] for <1>
 98PASS CSS Transitions: property <offset-position> from [right 10px top 20%] to [auto] at (-0.3) should be [auto]
 99PASS CSS Transitions: property <offset-position> from [right 10px top 20%] to [auto] at (0) should be [auto]
 100PASS CSS Transitions: property <offset-position> from [right 10px top 20%] to [auto] at (0.3) should be [auto]
 101PASS CSS Transitions: property <offset-position> from [right 10px top 20%] to [auto] at (0.5) should be [auto]
 102PASS CSS Transitions: property <offset-position> from [right 10px top 20%] to [auto] at (0.6) should be [auto]
 103PASS CSS Transitions: property <offset-position> from [right 10px top 20%] to [auto] at (1) should be [auto]
 104PASS CSS Transitions: property <offset-position> from [right 10px top 20%] to [auto] at (1.5) should be [auto]
 105PASS CSS Transitions with transition: all: property <offset-position> from [right 10px top 20%] to [auto] at (-0.3) should be [auto]
 106PASS CSS Transitions with transition: all: property <offset-position> from [right 10px top 20%] to [auto] at (0) should be [auto]
 107PASS CSS Transitions with transition: all: property <offset-position> from [right 10px top 20%] to [auto] at (0.3) should be [auto]
 108PASS CSS Transitions with transition: all: property <offset-position> from [right 10px top 20%] to [auto] at (0.5) should be [auto]
 109PASS CSS Transitions with transition: all: property <offset-position> from [right 10px top 20%] to [auto] at (0.6) should be [auto]
 110PASS CSS Transitions with transition: all: property <offset-position> from [right 10px top 20%] to [auto] at (1) should be [auto]
 111PASS CSS Transitions with transition: all: property <offset-position> from [right 10px top 20%] to [auto] at (1.5) should be [auto]
 112PASS CSS Animations: property <offset-position> from [right 10px top 20%] to [auto] at (-0.3) should be [right 10px top 20%]
 113PASS CSS Animations: property <offset-position> from [right 10px top 20%] to [auto] at (0) should be [right 10px top 20%]
 114PASS CSS Animations: property <offset-position> from [right 10px top 20%] to [auto] at (0.3) should be [right 10px top 20%]
 115PASS CSS Animations: property <offset-position> from [right 10px top 20%] to [auto] at (0.5) should be [auto]
 116PASS CSS Animations: property <offset-position> from [right 10px top 20%] to [auto] at (0.6) should be [auto]
 117PASS CSS Animations: property <offset-position> from [right 10px top 20%] to [auto] at (1) should be [auto]
 118PASS CSS Animations: property <offset-position> from [right 10px top 20%] to [auto] at (1.5) should be [auto]
 119PASS Web Animations: property <offset-position> from [right 10px top 20%] to [auto] at (-0.3) should be [right 10px top 20%]
 120PASS Web Animations: property <offset-position> from [right 10px top 20%] to [auto] at (0) should be [right 10px top 20%]
 121PASS Web Animations: property <offset-position> from [right 10px top 20%] to [auto] at (0.3) should be [right 10px top 20%]
 122PASS Web Animations: property <offset-position> from [right 10px top 20%] to [auto] at (0.5) should be [auto]
 123PASS Web Animations: property <offset-position> from [right 10px top 20%] to [auto] at (0.6) should be [auto]
 124PASS Web Animations: property <offset-position> from [right 10px top 20%] to [auto] at (1) should be [auto]
 125PASS Web Animations: property <offset-position> from [right 10px top 20%] to [auto] at (1.5) should be [auto]
 126PASS CSS Transitions: property <offset-position> from neutral to [20px 20px] at (-0.3) should be [7px 33px]
 127PASS CSS Transitions: property <offset-position> from neutral to [20px 20px] at (0) should be [10px 30px]
 128PASS CSS Transitions: property <offset-position> from neutral to [20px 20px] at (0.3) should be [13px 27px]
 129PASS CSS Transitions: property <offset-position> from neutral to [20px 20px] at (0.6) should be [16px 24px]
 130PASS CSS Transitions: property <offset-position> from neutral to [20px 20px] at (1) should be [20px 20px]
 131PASS CSS Transitions: property <offset-position> from neutral to [20px 20px] at (1.5) should be [25px 15px]
 132PASS CSS Transitions with transition: all: property <offset-position> from neutral to [20px 20px] at (-0.3) should be [7px 33px]
 133PASS CSS Transitions with transition: all: property <offset-position> from neutral to [20px 20px] at (0) should be [10px 30px]
 134PASS CSS Transitions with transition: all: property <offset-position> from neutral to [20px 20px] at (0.3) should be [13px 27px]
 135PASS CSS Transitions with transition: all: property <offset-position> from neutral to [20px 20px] at (0.6) should be [16px 24px]
 136PASS CSS Transitions with transition: all: property <offset-position> from neutral to [20px 20px] at (1) should be [20px 20px]
 137PASS CSS Transitions with transition: all: property <offset-position> from neutral to [20px 20px] at (1.5) should be [25px 15px]
 138PASS CSS Animations: property <offset-position> from neutral to [20px 20px] at (-0.3) should be [7px 33px]
 139PASS CSS Animations: property <offset-position> from neutral to [20px 20px] at (0) should be [10px 30px]
 140PASS CSS Animations: property <offset-position> from neutral to [20px 20px] at (0.3) should be [13px 27px]
 141PASS CSS Animations: property <offset-position> from neutral to [20px 20px] at (0.6) should be [16px 24px]
 142PASS CSS Animations: property <offset-position> from neutral to [20px 20px] at (1) should be [20px 20px]
 143PASS CSS Animations: property <offset-position> from neutral to [20px 20px] at (1.5) should be [25px 15px]
 144PASS Web Animations: property <offset-position> from neutral to [20px 20px] at (-0.3) should be [7px 33px]
 145PASS Web Animations: property <offset-position> from neutral to [20px 20px] at (0) should be [10px 30px]
 146PASS Web Animations: property <offset-position> from neutral to [20px 20px] at (0.3) should be [13px 27px]
 147PASS Web Animations: property <offset-position> from neutral to [20px 20px] at (0.6) should be [16px 24px]
 148PASS Web Animations: property <offset-position> from neutral to [20px 20px] at (1) should be [20px 20px]
 149PASS Web Animations: property <offset-position> from neutral to [20px 20px] at (1.5) should be [25px 15px]
 150PASS CSS Transitions: property <offset-position> from [initial] to [20px 20px] at (-0.3) should be [20px 20px]
 151PASS CSS Transitions: property <offset-position> from [initial] to [20px 20px] at (0) should be [20px 20px]
 152PASS CSS Transitions: property <offset-position> from [initial] to [20px 20px] at (0.3) should be [20px 20px]
 153PASS CSS Transitions: property <offset-position> from [initial] to [20px 20px] at (0.5) should be [20px 20px]
 154PASS CSS Transitions: property <offset-position> from [initial] to [20px 20px] at (0.6) should be [20px 20px]
 155PASS CSS Transitions: property <offset-position> from [initial] to [20px 20px] at (1) should be [20px 20px]
 156PASS CSS Transitions: property <offset-position> from [initial] to [20px 20px] at (1.5) should be [20px 20px]
 157PASS CSS Transitions with transition: all: property <offset-position> from [initial] to [20px 20px] at (-0.3) should be [20px 20px]
 158PASS CSS Transitions with transition: all: property <offset-position> from [initial] to [20px 20px] at (0) should be [20px 20px]
 159PASS CSS Transitions with transition: all: property <offset-position> from [initial] to [20px 20px] at (0.3) should be [20px 20px]
 160PASS CSS Transitions with transition: all: property <offset-position> from [initial] to [20px 20px] at (0.5) should be [20px 20px]
 161PASS CSS Transitions with transition: all: property <offset-position> from [initial] to [20px 20px] at (0.6) should be [20px 20px]
 162PASS CSS Transitions with transition: all: property <offset-position> from [initial] to [20px 20px] at (1) should be [20px 20px]
 163PASS CSS Transitions with transition: all: property <offset-position> from [initial] to [20px 20px] at (1.5) should be [20px 20px]
 164PASS CSS Animations: property <offset-position> from [initial] to [20px 20px] at (-0.3) should be [initial]
 165PASS CSS Animations: property <offset-position> from [initial] to [20px 20px] at (0) should be [initial]
 166PASS CSS Animations: property <offset-position> from [initial] to [20px 20px] at (0.3) should be [initial]
 167PASS CSS Animations: property <offset-position> from [initial] to [20px 20px] at (0.5) should be [20px 20px]
 168PASS CSS Animations: property <offset-position> from [initial] to [20px 20px] at (0.6) should be [20px 20px]
 169PASS CSS Animations: property <offset-position> from [initial] to [20px 20px] at (1) should be [20px 20px]
 170PASS CSS Animations: property <offset-position> from [initial] to [20px 20px] at (1.5) should be [20px 20px]
 171PASS Web Animations: property <offset-position> from [initial] to [20px 20px] at (-0.3) should be [initial]
 172PASS Web Animations: property <offset-position> from [initial] to [20px 20px] at (0) should be [initial]
 173PASS Web Animations: property <offset-position> from [initial] to [20px 20px] at (0.3) should be [initial]
 174PASS Web Animations: property <offset-position> from [initial] to [20px 20px] at (0.5) should be [20px 20px]
 175PASS Web Animations: property <offset-position> from [initial] to [20px 20px] at (0.6) should be [20px 20px]
 176PASS Web Animations: property <offset-position> from [initial] to [20px 20px] at (1) should be [20px 20px]
 177PASS Web Animations: property <offset-position> from [initial] to [20px 20px] at (1.5) should be [20px 20px]
 178PASS CSS Transitions: property <offset-position> from [inherit] to [20px 20px] at (-0.3) should be [33px 7px]
 179PASS CSS Transitions: property <offset-position> from [inherit] to [20px 20px] at (0) should be [30px 10px]
 180PASS CSS Transitions: property <offset-position> from [inherit] to [20px 20px] at (0.3) should be [27px 13px]
 181PASS CSS Transitions: property <offset-position> from [inherit] to [20px 20px] at (0.6) should be [24px 16px]
 182PASS CSS Transitions: property <offset-position> from [inherit] to [20px 20px] at (1) should be [20px 20px]
 183PASS CSS Transitions: property <offset-position> from [inherit] to [20px 20px] at (1.5) should be [15px 25px]
 184PASS CSS Transitions with transition: all: property <offset-position> from [inherit] to [20px 20px] at (-0.3) should be [33px 7px]
 185PASS CSS Transitions with transition: all: property <offset-position> from [inherit] to [20px 20px] at (0) should be [30px 10px]
 186PASS CSS Transitions with transition: all: property <offset-position> from [inherit] to [20px 20px] at (0.3) should be [27px 13px]
 187PASS CSS Transitions with transition: all: property <offset-position> from [inherit] to [20px 20px] at (0.6) should be [24px 16px]
 188PASS CSS Transitions with transition: all: property <offset-position> from [inherit] to [20px 20px] at (1) should be [20px 20px]
 189PASS CSS Transitions with transition: all: property <offset-position> from [inherit] to [20px 20px] at (1.5) should be [15px 25px]
 190PASS CSS Animations: property <offset-position> from [inherit] to [20px 20px] at (-0.3) should be [33px 7px]
 191PASS CSS Animations: property <offset-position> from [inherit] to [20px 20px] at (0) should be [30px 10px]
 192PASS CSS Animations: property <offset-position> from [inherit] to [20px 20px] at (0.3) should be [27px 13px]
 193PASS CSS Animations: property <offset-position> from [inherit] to [20px 20px] at (0.6) should be [24px 16px]
 194PASS CSS Animations: property <offset-position> from [inherit] to [20px 20px] at (1) should be [20px 20px]
 195PASS CSS Animations: property <offset-position> from [inherit] to [20px 20px] at (1.5) should be [15px 25px]
 196PASS Web Animations: property <offset-position> from [inherit] to [20px 20px] at (-0.3) should be [33px 7px]
 197PASS Web Animations: property <offset-position> from [inherit] to [20px 20px] at (0) should be [30px 10px]
 198PASS Web Animations: property <offset-position> from [inherit] to [20px 20px] at (0.3) should be [27px 13px]
 199PASS Web Animations: property <offset-position> from [inherit] to [20px 20px] at (0.6) should be [24px 16px]
 200PASS Web Animations: property <offset-position> from [inherit] to [20px 20px] at (1) should be [20px 20px]
 201PASS Web Animations: property <offset-position> from [inherit] to [20px 20px] at (1.5) should be [15px 25px]
 202PASS CSS Transitions: property <offset-position> from [unset] to [20px 20px] at (-0.3) should be [20px 20px]
 203PASS CSS Transitions: property <offset-position> from [unset] to [20px 20px] at (0) should be [20px 20px]
 204PASS CSS Transitions: property <offset-position> from [unset] to [20px 20px] at (0.3) should be [20px 20px]
 205PASS CSS Transitions: property <offset-position> from [unset] to [20px 20px] at (0.5) should be [20px 20px]
 206PASS CSS Transitions: property <offset-position> from [unset] to [20px 20px] at (0.6) should be [20px 20px]
 207PASS CSS Transitions: property <offset-position> from [unset] to [20px 20px] at (1) should be [20px 20px]
 208PASS CSS Transitions: property <offset-position> from [unset] to [20px 20px] at (1.5) should be [20px 20px]
 209PASS CSS Transitions with transition: all: property <offset-position> from [unset] to [20px 20px] at (-0.3) should be [20px 20px]
 210PASS CSS Transitions with transition: all: property <offset-position> from [unset] to [20px 20px] at (0) should be [20px 20px]
 211PASS CSS Transitions with transition: all: property <offset-position> from [unset] to [20px 20px] at (0.3) should be [20px 20px]
 212PASS CSS Transitions with transition: all: property <offset-position> from [unset] to [20px 20px] at (0.5) should be [20px 20px]
 213PASS CSS Transitions with transition: all: property <offset-position> from [unset] to [20px 20px] at (0.6) should be [20px 20px]
 214PASS CSS Transitions with transition: all: property <offset-position> from [unset] to [20px 20px] at (1) should be [20px 20px]
 215PASS CSS Transitions with transition: all: property <offset-position> from [unset] to [20px 20px] at (1.5) should be [20px 20px]
 216PASS CSS Animations: property <offset-position> from [unset] to [20px 20px] at (-0.3) should be [unset]
 217PASS CSS Animations: property <offset-position> from [unset] to [20px 20px] at (0) should be [unset]
 218PASS CSS Animations: property <offset-position> from [unset] to [20px 20px] at (0.3) should be [unset]
 219PASS CSS Animations: property <offset-position> from [unset] to [20px 20px] at (0.5) should be [20px 20px]
 220PASS CSS Animations: property <offset-position> from [unset] to [20px 20px] at (0.6) should be [20px 20px]
 221PASS CSS Animations: property <offset-position> from [unset] to [20px 20px] at (1) should be [20px 20px]
 222PASS CSS Animations: property <offset-position> from [unset] to [20px 20px] at (1.5) should be [20px 20px]
 223PASS Web Animations: property <offset-position> from [unset] to [20px 20px] at (-0.3) should be [unset]
 224PASS Web Animations: property <offset-position> from [unset] to [20px 20px] at (0) should be [unset]
 225PASS Web Animations: property <offset-position> from [unset] to [20px 20px] at (0.3) should be [unset]
 226PASS Web Animations: property <offset-position> from [unset] to [20px 20px] at (0.5) should be [20px 20px]
 227PASS Web Animations: property <offset-position> from [unset] to [20px 20px] at (0.6) should be [20px 20px]
 228PASS Web Animations: property <offset-position> from [unset] to [20px 20px] at (1) should be [20px 20px]
 229PASS Web Animations: property <offset-position> from [unset] to [20px 20px] at (1.5) should be [20px 20px]
 230PASS CSS Transitions: property <offset-position> from [0% 50%] to [100% 150%] at (-0.3) should be [-30% 20%]
 231PASS CSS Transitions: property <offset-position> from [0% 50%] to [100% 150%] at (0) should be [0% 50%]
 232PASS CSS Transitions: property <offset-position> from [0% 50%] to [100% 150%] at (0.3) should be [30% 80%]
 233PASS CSS Transitions: property <offset-position> from [0% 50%] to [100% 150%] at (0.6) should be [60% 110%]
 234PASS CSS Transitions: property <offset-position> from [0% 50%] to [100% 150%] at (1) should be [100% 150%]
 235PASS CSS Transitions: property <offset-position> from [0% 50%] to [100% 150%] at (1.5) should be [150% 200%]
 236PASS CSS Transitions with transition: all: property <offset-position> from [0% 50%] to [100% 150%] at (-0.3) should be [-30% 20%]
 237PASS CSS Transitions with transition: all: property <offset-position> from [0% 50%] to [100% 150%] at (0) should be [0% 50%]
 238PASS CSS Transitions with transition: all: property <offset-position> from [0% 50%] to [100% 150%] at (0.3) should be [30% 80%]
 239PASS CSS Transitions with transition: all: property <offset-position> from [0% 50%] to [100% 150%] at (0.6) should be [60% 110%]
 240PASS CSS Transitions with transition: all: property <offset-position> from [0% 50%] to [100% 150%] at (1) should be [100% 150%]
 241PASS CSS Transitions with transition: all: property <offset-position> from [0% 50%] to [100% 150%] at (1.5) should be [150% 200%]
 242PASS CSS Animations: property <offset-position> from [0% 50%] to [100% 150%] at (-0.3) should be [-30% 20%]
 243PASS CSS Animations: property <offset-position> from [0% 50%] to [100% 150%] at (0) should be [0% 50%]
 244PASS CSS Animations: property <offset-position> from [0% 50%] to [100% 150%] at (0.3) should be [30% 80%]
 245PASS CSS Animations: property <offset-position> from [0% 50%] to [100% 150%] at (0.6) should be [60% 110%]
 246PASS CSS Animations: property <offset-position> from [0% 50%] to [100% 150%] at (1) should be [100% 150%]
 247PASS CSS Animations: property <offset-position> from [0% 50%] to [100% 150%] at (1.5) should be [150% 200%]
 248PASS Web Animations: property <offset-position> from [0% 50%] to [100% 150%] at (-0.3) should be [-30% 20%]
 249PASS Web Animations: property <offset-position> from [0% 50%] to [100% 150%] at (0) should be [0% 50%]
 250PASS Web Animations: property <offset-position> from [0% 50%] to [100% 150%] at (0.3) should be [30% 80%]
 251PASS Web Animations: property <offset-position> from [0% 50%] to [100% 150%] at (0.6) should be [60% 110%]
 252PASS Web Animations: property <offset-position> from [0% 50%] to [100% 150%] at (1) should be [100% 150%]
 253PASS Web Animations: property <offset-position> from [0% 50%] to [100% 150%] at (1.5) should be [150% 200%]
 254PASS CSS Transitions: property <offset-position> from [auto] to [20px 20px] at (-0.3) should be [20px 20px]
 255PASS CSS Transitions: property <offset-position> from [auto] to [20px 20px] at (0) should be [20px 20px]
 256PASS CSS Transitions: property <offset-position> from [auto] to [20px 20px] at (0.3) should be [20px 20px]
 257PASS CSS Transitions: property <offset-position> from [auto] to [20px 20px] at (0.5) should be [20px 20px]
 258PASS CSS Transitions: property <offset-position> from [auto] to [20px 20px] at (0.6) should be [20px 20px]
 259PASS CSS Transitions: property <offset-position> from [auto] to [20px 20px] at (1) should be [20px 20px]
 260PASS CSS Transitions: property <offset-position> from [auto] to [20px 20px] at (1.5) should be [20px 20px]
 261PASS CSS Transitions with transition: all: property <offset-position> from [auto] to [20px 20px] at (-0.3) should be [20px 20px]
 262PASS CSS Transitions with transition: all: property <offset-position> from [auto] to [20px 20px] at (0) should be [20px 20px]
 263PASS CSS Transitions with transition: all: property <offset-position> from [auto] to [20px 20px] at (0.3) should be [20px 20px]
 264PASS CSS Transitions with transition: all: property <offset-position> from [auto] to [20px 20px] at (0.5) should be [20px 20px]
 265PASS CSS Transitions with transition: all: property <offset-position> from [auto] to [20px 20px] at (0.6) should be [20px 20px]
 266PASS CSS Transitions with transition: all: property <offset-position> from [auto] to [20px 20px] at (1) should be [20px 20px]
 267PASS CSS Transitions with transition: all: property <offset-position> from [auto] to [20px 20px] at (1.5) should be [20px 20px]
 268PASS CSS Animations: property <offset-position> from [auto] to [20px 20px] at (-0.3) should be [auto]
 269PASS CSS Animations: property <offset-position> from [auto] to [20px 20px] at (0) should be [auto]
 270PASS CSS Animations: property <offset-position> from [auto] to [20px 20px] at (0.3) should be [auto]
 271PASS CSS Animations: property <offset-position> from [auto] to [20px 20px] at (0.5) should be [20px 20px]
 272PASS CSS Animations: property <offset-position> from [auto] to [20px 20px] at (0.6) should be [20px 20px]
 273PASS CSS Animations: property <offset-position> from [auto] to [20px 20px] at (1) should be [20px 20px]
 274PASS CSS Animations: property <offset-position> from [auto] to [20px 20px] at (1.5) should be [20px 20px]
 275PASS Web Animations: property <offset-position> from [auto] to [20px 20px] at (-0.3) should be [auto]
 276PASS Web Animations: property <offset-position> from [auto] to [20px 20px] at (0) should be [auto]
 277PASS Web Animations: property <offset-position> from [auto] to [20px 20px] at (0.3) should be [auto]
 278PASS Web Animations: property <offset-position> from [auto] to [20px 20px] at (0.5) should be [20px 20px]
 279PASS Web Animations: property <offset-position> from [auto] to [20px 20px] at (0.6) should be [20px 20px]
 280PASS Web Animations: property <offset-position> from [auto] to [20px 20px] at (1) should be [20px 20px]
 281PASS Web Animations: property <offset-position> from [auto] to [20px 20px] at (1.5) should be [20px 20px]
258282

LayoutTests/imported/w3c/web-platform-tests/css/motion/animation/offset-position-interpolation.html

3939 to: 'right -140% bottom -60%',
4040 }, [
4141 {at: -1, expect: 'calc(960px - 240%) calc(800px - 160%)'},
42  {at: 0, expect: 'left 480px top 400px'},
 42 {at: 0, expect: ['calc(0 % + 480px) calc(0 % + 400px)', 'left 480px top 400px']},
4343 {at: 0.125, expect: 'calc(420px + 30%) calc(350px + 20%)'},
4444 {at: 0.875, expect: 'calc(210% + 60px) calc(140% + 50px)'},
4545 {at: 1, expect: 'right -140% bottom -60%'},

5151 from: 'left top',
5252 to: 'left 8px bottom 20%',
5353 }, [
54  {at: -1, expect: '-8px -80%'},
 54 {at: -1, expect: ['calc(0% - 8px) - 80%', '-8px -80%']},
5555 {at: 0, expect: 'left top'},
56  {at: 0.125, expect: '1px 10%'},
57  {at: 0.875, expect: '7px 70%'},
58  {at: 1, expect: 'left 8px bottom 20%'},
59  {at: 2, expect: '16px 160%'}
 56 {at: 0.125, expect: ['calc(0% + 1px) 10%', '1px 10%']},
 57 {at: 0.875, expect: ['calc(0% + 7px) 70%', '7px 70%']},
 58 {at: 1, expect: ['calc ( 0 % + 8px ) 80 %', 'left 8px bottom 20%']},
 59 {at: 2, expect: ['calc ( 0 % + 16px ) 160 %', '16px 160%']}
6060 ]);
6161
6262 test_no_interpolation({

LayoutTests/imported/w3c/web-platform-tests/css/motion/inheritance-expected.txt

11
2 FAIL Property offset-anchor has initial value auto assert_true: offset-anchor doesn't seem to be supported in the computed style expected true got false
3 FAIL Property offset-anchor does not inherit assert_true: expected true got false
4 FAIL Property offset-distance has initial value 0px assert_true: offset-distance doesn't seem to be supported in the computed style expected true got false
5 FAIL Property offset-distance does not inherit assert_true: expected true got false
 2PASS Property offset-anchor has initial value auto
 3PASS Property offset-anchor does not inherit
 4PASS Property offset-distance has initial value 0px
 5PASS Property offset-distance does not inherit
66FAIL Property offset-path has initial value none assert_true: offset-path doesn't seem to be supported in the computed style expected true got false
77FAIL Property offset-path does not inherit assert_true: expected true got false
8 FAIL Property offset-position has initial value auto assert_true: offset-position doesn't seem to be supported in the computed style expected true got false
9 FAIL Property offset-position does not inherit assert_true: expected true got false
 8PASS Property offset-position has initial value auto
 9PASS Property offset-position does not inherit
1010FAIL Property offset-rotate has initial value ['auto 0deg' or 'auto'] assert_true: offset-rotate doesn't seem to be supported in the computed style expected true got false
1111FAIL Property offset-rotate does not inherit assert_true: expected true got false
1212

LayoutTests/imported/w3c/web-platform-tests/css/motion/offset-supports-calc-expected.txt

11
2 FAIL offset-position supports calc assert_equals: expected (string) "calc(20% + 30px) calc(100% - 40px)" but got (undefined) undefined
 2PASS offset-position supports calc
33FAIL offset-path supports calc assert_equals: expected (string) "ray(270deg closest-side)" but got (undefined) undefined
4 FAIL offset-distance supports calc assert_equals: expected (string) "calc(50% - 100px)" but got (undefined) undefined
 4PASS offset-distance supports calc
55FAIL offset-rotate supports calc assert_equals: expected (string) "auto 270deg" but got (undefined) undefined
6 FAIL offset-anchor supports calc assert_equals: expected (string) "calc(20% + 30px) calc(100% - 40px)" but got (undefined) undefined
 6PASS offset-anchor supports calc
77

LayoutTests/imported/w3c/web-platform-tests/css/motion/parsing/offset-anchor-computed-expected.txt

11
2 FAIL Property offset-anchor value 'auto' assert_true: offset-anchor doesn't seem to be supported in the computed style expected true got false
3 FAIL Property offset-anchor value 'left bottom' assert_true: offset-anchor doesn't seem to be supported in the computed style expected true got false
4 FAIL Property offset-anchor value 'center center' assert_true: offset-anchor doesn't seem to be supported in the computed style expected true got false
5 FAIL Property offset-anchor value 'right center' assert_true: offset-anchor doesn't seem to be supported in the computed style expected true got false
6 FAIL Property offset-anchor value 'center top' assert_true: offset-anchor doesn't seem to be supported in the computed style expected true got false
7 FAIL Property offset-anchor value 'center bottom' assert_true: offset-anchor doesn't seem to be supported in the computed style expected true got false
8 FAIL Property offset-anchor value 'calc(20% - 5em) center' assert_true: offset-anchor doesn't seem to be supported in the computed style expected true got false
9 FAIL Property offset-anchor value 'right 4em' assert_true: offset-anchor doesn't seem to be supported in the computed style expected true got false
10 FAIL Property offset-anchor value '10px 20%' assert_true: offset-anchor doesn't seem to be supported in the computed style expected true got false
11 FAIL Property offset-anchor value 'left -10px top -20%' assert_true: offset-anchor doesn't seem to be supported in the computed style expected true got false
12 FAIL Property offset-anchor value 'right 10% bottom 20em' assert_true: offset-anchor doesn't seem to be supported in the computed style expected true got false
13 FAIL Property offset-anchor value 'top 10px right -20%' assert_true: offset-anchor doesn't seem to be supported in the computed style expected true got false
14 FAIL Property offset-anchor value 'left 10% bottom 20em' assert_true: offset-anchor doesn't seem to be supported in the computed style expected true got false
15 FAIL Property offset-anchor value 'calc(10px - 0.5em) calc(10px + 0.5em)' assert_true: offset-anchor doesn't seem to be supported in the computed style expected true got false
 2PASS Property offset-anchor value 'auto'
 3PASS Property offset-anchor value 'left bottom'
 4PASS Property offset-anchor value 'center center'
 5PASS Property offset-anchor value 'right center'
 6PASS Property offset-anchor value 'center top'
 7PASS Property offset-anchor value 'center bottom'
 8PASS Property offset-anchor value 'calc(20% - 5em) center'
 9PASS Property offset-anchor value 'right 4em'
 10PASS Property offset-anchor value '10px 20%'
 11PASS Property offset-anchor value 'left -10px top -20%'
 12PASS Property offset-anchor value 'right 10% bottom 20em'
 13PASS Property offset-anchor value 'top 10px right -20%'
 14PASS Property offset-anchor value 'left 10% bottom 20em'
 15PASS Property offset-anchor value 'calc(10px - 0.5em) calc(10px + 0.5em)'
1616

LayoutTests/imported/w3c/web-platform-tests/css/motion/parsing/offset-anchor-parsing-valid-expected.txt

11
2 FAIL e.style['offset-anchor'] = "auto" should set the property value assert_not_equals: property should be set got disallowed value ""
3 FAIL e.style['offset-anchor'] = "left bottom" should set the property value assert_not_equals: property should be set got disallowed value ""
4 FAIL e.style['offset-anchor'] = "center center" should set the property value assert_not_equals: property should be set got disallowed value ""
5 FAIL e.style['offset-anchor'] = "right center" should set the property value assert_not_equals: property should be set got disallowed value ""
6 FAIL e.style['offset-anchor'] = "center top" should set the property value assert_not_equals: property should be set got disallowed value ""
7 FAIL e.style['offset-anchor'] = "center bottom" should set the property value assert_not_equals: property should be set got disallowed value ""
8 FAIL e.style['offset-anchor'] = "calc(20% + 10px) center" should set the property value assert_not_equals: property should be set got disallowed value ""
9 FAIL e.style['offset-anchor'] = "right 30em" should set the property value assert_not_equals: property should be set got disallowed value ""
10 FAIL e.style['offset-anchor'] = "10px 20%" should set the property value assert_not_equals: property should be set got disallowed value ""
11 FAIL e.style['offset-anchor'] = "left -10px top -20%" should set the property value assert_not_equals: property should be set got disallowed value ""
12 FAIL e.style['offset-anchor'] = "right 10% bottom 20em" should set the property value assert_not_equals: property should be set got disallowed value ""
 2PASS e.style['offset-anchor'] = "auto" should set the property value
 3PASS e.style['offset-anchor'] = "left bottom" should set the property value
 4PASS e.style['offset-anchor'] = "center center" should set the property value
 5PASS e.style['offset-anchor'] = "right center" should set the property value
 6PASS e.style['offset-anchor'] = "center top" should set the property value
 7PASS e.style['offset-anchor'] = "center bottom" should set the property value
 8PASS e.style['offset-anchor'] = "calc(20% + 10px) center" should set the property value
 9PASS e.style['offset-anchor'] = "right 30em" should set the property value
 10PASS e.style['offset-anchor'] = "10px 20%" should set the property value
 11PASS e.style['offset-anchor'] = "left -10px top -20%" should set the property value
 12PASS e.style['offset-anchor'] = "right 10% bottom 20em" should set the property value
1313

LayoutTests/imported/w3c/web-platform-tests/css/motion/parsing/offset-anchor-parsing-valid.html

1515test_valid_value("offset-anchor", "auto");
1616
1717test_valid_value("offset-anchor", "left bottom");
18 test_valid_value("offset-anchor", "center center");
 18test_valid_value("offset-anchor", "center center", ["center center", "center"]);
1919test_valid_value("offset-anchor", "right center");
2020test_valid_value("offset-anchor", "center top");
2121test_valid_value("offset-anchor", "center bottom");
22 test_valid_value("offset-anchor", "calc(20% + 10px) center");
 22test_valid_value("offset-anchor", "calc(20% + 10px) center", ["calc(20% + 10px) center", "calc(10px + 20%) center"]);
2323test_valid_value("offset-anchor", "right 30em");
2424test_valid_value("offset-anchor", "10px 20%");
2525test_valid_value("offset-anchor", "left -10px top -20%");

LayoutTests/imported/w3c/web-platform-tests/css/motion/parsing/offset-distance-computed-expected.txt

11
2 FAIL Property offset-distance value '10px' assert_true: offset-distance doesn't seem to be supported in the computed style expected true got false
3 FAIL Property offset-distance value '20%' assert_true: offset-distance doesn't seem to be supported in the computed style expected true got false
4 FAIL Property offset-distance value 'calc(40% - 30px)' assert_true: offset-distance doesn't seem to be supported in the computed style expected true got false
5 FAIL Property offset-distance value '0' assert_true: offset-distance doesn't seem to be supported in the computed style expected true got false
6 FAIL Property offset-distance value 'calc(10px - 0.5em)' assert_true: offset-distance doesn't seem to be supported in the computed style expected true got false
7 FAIL Property offset-distance value 'calc(10px + 0.5em)' assert_true: offset-distance doesn't seem to be supported in the computed style expected true got false
 2PASS Property offset-distance value '10px'
 3PASS Property offset-distance value '20%'
 4PASS Property offset-distance value 'calc(40% - 30px)'
 5PASS Property offset-distance value '0'
 6PASS Property offset-distance value 'calc(10px - 0.5em)'
 7PASS Property offset-distance value 'calc(10px + 0.5em)'
88

LayoutTests/imported/w3c/web-platform-tests/css/motion/parsing/offset-distance-parsing-valid-expected.txt

11
2 FAIL e.style['offset-distance'] = "10px" should set the property value assert_not_equals: property should be set got disallowed value ""
3 FAIL e.style['offset-distance'] = "20%" should set the property value assert_not_equals: property should be set got disallowed value ""
4 FAIL e.style['offset-distance'] = "calc(40% + 30px)" should set the property value assert_not_equals: property should be set got disallowed value ""
5 FAIL e.style['offset-distance'] = "0" should set the property value assert_not_equals: property should be set got disallowed value ""
 2PASS e.style['offset-distance'] = "10px" should set the property value
 3PASS e.style['offset-distance'] = "20%" should set the property value
 4PASS e.style['offset-distance'] = "calc(40% + 30px)" should set the property value
 5PASS e.style['offset-distance'] = "0" should set the property value
66

LayoutTests/imported/w3c/web-platform-tests/css/motion/parsing/offset-position-computed-expected.txt

11
2 FAIL Property offset-position value 'auto' assert_true: offset-position doesn't seem to be supported in the computed style expected true got false
3 FAIL Property offset-position value 'left bottom' assert_true: offset-position doesn't seem to be supported in the computed style expected true got false
4 FAIL Property offset-position value 'center center' assert_true: offset-position doesn't seem to be supported in the computed style expected true got false
5 FAIL Property offset-position value 'right center' assert_true: offset-position doesn't seem to be supported in the computed style expected true got false
6 FAIL Property offset-position value 'center top' assert_true: offset-position doesn't seem to be supported in the computed style expected true got false
7 FAIL Property offset-position value 'center bottom' assert_true: offset-position doesn't seem to be supported in the computed style expected true got false
8 FAIL Property offset-position value 'calc(5em + 20%) center' assert_true: offset-position doesn't seem to be supported in the computed style expected true got false
9 FAIL Property offset-position value 'right 3em' assert_true: offset-position doesn't seem to be supported in the computed style expected true got false
10 FAIL Property offset-position value '10px 20%' assert_true: offset-position doesn't seem to be supported in the computed style expected true got false
11 FAIL Property offset-position value 'left -10px top -20%' assert_true: offset-position doesn't seem to be supported in the computed style expected true got false
12 FAIL Property offset-position value 'right 10% bottom 5em' assert_true: offset-position doesn't seem to be supported in the computed style expected true got false
13 FAIL Property offset-position value 'top 10px right -20%' assert_true: offset-position doesn't seem to be supported in the computed style expected true got false
14 FAIL Property offset-position value 'left 10% bottom 2em' assert_true: offset-position doesn't seem to be supported in the computed style expected true got false
15 FAIL Property offset-position value 'calc(10px - 0.5em) calc(10px + 0.5em)' assert_true: offset-position doesn't seem to be supported in the computed style expected true got false
 2PASS Property offset-position value 'auto'
 3PASS Property offset-position value 'left bottom'
 4PASS Property offset-position value 'center center'
 5PASS Property offset-position value 'right center'
 6PASS Property offset-position value 'center top'
 7PASS Property offset-position value 'center bottom'
 8PASS Property offset-position value 'calc(5em + 20%) center'
 9PASS Property offset-position value 'right 3em'
 10PASS Property offset-position value '10px 20%'
 11PASS Property offset-position value 'left -10px top -20%'
 12PASS Property offset-position value 'right 10% bottom 5em'
 13PASS Property offset-position value 'top 10px right -20%'
 14PASS Property offset-position value 'left 10% bottom 2em'
 15PASS Property offset-position value 'calc(10px - 0.5em) calc(10px + 0.5em)'
1616

LayoutTests/imported/w3c/web-platform-tests/css/motion/parsing/offset-position-parsing-valid-expected.txt

11
2 FAIL e.style['offset-position'] = "auto" should set the property value assert_not_equals: property should be set got disallowed value ""
3 FAIL e.style['offset-position'] = "left bottom" should set the property value assert_not_equals: property should be set got disallowed value ""
4 FAIL e.style['offset-position'] = "center center" should set the property value assert_not_equals: property should be set got disallowed value ""
5 FAIL e.style['offset-position'] = "right center" should set the property value assert_not_equals: property should be set got disallowed value ""
6 FAIL e.style['offset-position'] = "center top" should set the property value assert_not_equals: property should be set got disallowed value ""
7 FAIL e.style['offset-position'] = "center bottom" should set the property value assert_not_equals: property should be set got disallowed value ""
8 FAIL e.style['offset-position'] = "calc(10px + 20%) center" should set the property value assert_not_equals: property should be set got disallowed value ""
9 FAIL e.style['offset-position'] = "right 30em" should set the property value assert_not_equals: property should be set got disallowed value ""
10 FAIL e.style['offset-position'] = "10px 20%" should set the property value assert_not_equals: property should be set got disallowed value ""
11 FAIL e.style['offset-position'] = "left -10px top -20%" should set the property value assert_not_equals: property should be set got disallowed value ""
12 FAIL e.style['offset-position'] = "right 10% bottom 20em" should set the property value assert_not_equals: property should be set got disallowed value ""
 2PASS e.style['offset-position'] = "auto" should set the property value
 3PASS e.style['offset-position'] = "left bottom" should set the property value
 4PASS e.style['offset-position'] = "center center" should set the property value
 5PASS e.style['offset-position'] = "right center" should set the property value
 6PASS e.style['offset-position'] = "center top" should set the property value
 7PASS e.style['offset-position'] = "center bottom" should set the property value
 8PASS e.style['offset-position'] = "calc(10px + 20%) center" should set the property value
 9PASS e.style['offset-position'] = "right 30em" should set the property value
 10PASS e.style['offset-position'] = "10px 20%" should set the property value
 11PASS e.style['offset-position'] = "left -10px top -20%" should set the property value
 12PASS e.style['offset-position'] = "right 10% bottom 20em" should set the property value
1313

LayoutTests/imported/w3c/web-platform-tests/css/motion/parsing/offset-position-parsing-valid.html

1515test_valid_value("offset-position", "auto");
1616
1717test_valid_value("offset-position", "left bottom");
18 test_valid_value("offset-position", "center center");
 18test_valid_value("offset-position", "center center", ["center center", "center"]);
1919test_valid_value("offset-position", "right center");
2020test_valid_value("offset-position", "center top");
2121test_valid_value("offset-position", "center bottom");
22 test_valid_value("offset-position", "calc(10px + 20%) center");
 22test_valid_value("offset-position", "calc(10px + 20%) center", ["calc(10px + 20%) center", "calc(20% + 10px) center"]);
2323test_valid_value("offset-position", "right 30em");
2424test_valid_value("offset-position", "10px 20%");
2525test_valid_value("offset-position", "left -10px top -20%");

LayoutTests/imported/w3c/web-platform-tests/css/motion/parsing/offset-shorthand-expected.txt

11
2 FAIL e.style['offset'] = "left bottom ray(0rad closest-side) 10px auto 30deg / right bottom" should set offset-anchor assert_equals: offset-anchor should be canonical expected (string) "right bottom" but got (undefined) undefined
3 FAIL e.style['offset'] = "left bottom ray(0rad closest-side) 10px auto 30deg / right bottom" should set offset-distance assert_equals: offset-distance should be canonical expected (string) "10px" but got (undefined) undefined
 2FAIL e.style['offset'] = "left bottom ray(0rad closest-side) 10px auto 30deg / right bottom" should set offset-anchor assert_equals: offset-anchor should be canonical expected "right bottom" but got ""
 3FAIL e.style['offset'] = "left bottom ray(0rad closest-side) 10px auto 30deg / right bottom" should set offset-distance assert_equals: offset-distance should be canonical expected "10px" but got ""
44FAIL e.style['offset'] = "left bottom ray(0rad closest-side) 10px auto 30deg / right bottom" should set offset-path assert_equals: offset-path should be canonical expected (string) "ray(0rad closest-side)" but got (undefined) undefined
5 FAIL e.style['offset'] = "left bottom ray(0rad closest-side) 10px auto 30deg / right bottom" should set offset-position assert_equals: offset-position should be canonical expected (string) "left bottom" but got (undefined) undefined
 5FAIL e.style['offset'] = "left bottom ray(0rad closest-side) 10px auto 30deg / right bottom" should set offset-position assert_equals: offset-position should be canonical expected "left bottom" but got ""
66FAIL e.style['offset'] = "left bottom ray(0rad closest-side) 10px auto 30deg / right bottom" should set offset-rotate assert_equals: offset-rotate should be canonical expected (string) "auto 30deg" but got (undefined) undefined
77FAIL e.style['offset'] = "left bottom ray(0rad closest-side) 10px auto 30deg / right bottom" should not set unrelated longhands assert_true: expected true got false
8 FAIL e.style['offset'] = "top right / top left" should set offset-anchor assert_equals: offset-anchor should be canonical expected (string) "left top" but got (undefined) undefined
9 FAIL e.style['offset'] = "top right / top left" should set offset-distance assert_equals: offset-distance should be canonical expected (string) "0px" but got (undefined) undefined
 8FAIL e.style['offset'] = "top right / top left" should set offset-anchor assert_equals: offset-anchor should be canonical expected "left top" but got ""
 9FAIL e.style['offset'] = "top right / top left" should set offset-distance assert_equals: offset-distance should be canonical expected "0px" but got ""
1010FAIL e.style['offset'] = "top right / top left" should set offset-path assert_equals: offset-path should be canonical expected (string) "none" but got (undefined) undefined
11 FAIL e.style['offset'] = "top right / top left" should set offset-position assert_equals: offset-position should be canonical expected (string) "right top" but got (undefined) undefined
 11FAIL e.style['offset'] = "top right / top left" should set offset-position assert_equals: offset-position should be canonical expected "right top" but got ""
1212FAIL e.style['offset'] = "top right / top left" should set offset-rotate assert_equals: offset-rotate should be canonical expected (string) "auto" but got (undefined) undefined
1313FAIL e.style['offset'] = "top right / top left" should not set unrelated longhands assert_true: expected true got false
14 FAIL e.style['offset'] = "path(\"M 0 0 H 2\") reverse 50%" should set offset-anchor assert_equals: offset-anchor should be canonical expected (string) "auto" but got (undefined) undefined
15 FAIL e.style['offset'] = "path(\"M 0 0 H 2\") reverse 50%" should set offset-distance assert_equals: offset-distance should be canonical expected (string) "50%" but got (undefined) undefined
 14FAIL e.style['offset'] = "path(\"M 0 0 H 2\") reverse 50%" should set offset-anchor assert_equals: offset-anchor should be canonical expected "auto" but got ""
 15FAIL e.style['offset'] = "path(\"M 0 0 H 2\") reverse 50%" should set offset-distance assert_equals: offset-distance should be canonical expected "50%" but got ""
1616FAIL e.style['offset'] = "path(\"M 0 0 H 2\") reverse 50%" should set offset-path assert_equals: offset-path should be canonical expected (string) "path(\"M 0 0 H 2\")" but got (undefined) undefined
17 FAIL e.style['offset'] = "path(\"M 0 0 H 2\") reverse 50%" should set offset-position assert_equals: offset-position should be canonical expected (string) "auto" but got (undefined) undefined
 17FAIL e.style['offset'] = "path(\"M 0 0 H 2\") reverse 50%" should set offset-position assert_equals: offset-position should be canonical expected "auto" but got ""
1818FAIL e.style['offset'] = "path(\"M 0 0 H 2\") reverse 50%" should set offset-rotate assert_equals: offset-rotate should be canonical expected (string) "reverse" but got (undefined) undefined
1919FAIL e.style['offset'] = "path(\"M 0 0 H 2\") reverse 50%" should not set unrelated longhands assert_true: expected true got false
2020

LayoutTests/imported/w3c/web-platform-tests/web-animations/animation-model/animation-types/accumulation-per-property-002-expected.txt

@@PASS mix-blend-mode: "multiply" onto "screen"
3737PASS object-fit (type: discrete) has testAccumulation function
3838PASS object-fit: "contain" onto "fill"
3939PASS object-fit: "fill" onto "contain"
 40PASS offset-distance (type: lengthPercentageOrCalc) has testAccumulation function
 41FAIL offset-distance: length assert_equals: The value should be 20px at 0ms expected "20px" but got "10px"
 42FAIL offset-distance: length of rem assert_equals: The value should be 20px at 0ms expected "20px" but got "10px"
 43FAIL offset-distance: percentage assert_equals: The value should be 130% at 0ms expected "130%" but got "70%"
 44FAIL offset-distance: units "%" onto "px" assert_equals: The value should be calc(10% + 10px) at 0ms expected "calc(10% + 10px)" but got "10%"
 45FAIL offset-distance: units "px" onto "%" assert_equals: The value should be calc(10% + 10px) at 0ms expected "calc(10% + 10px)" but got "10px"
 46FAIL offset-distance: units "rem" onto "%" assert_equals: The value should be calc(10% + 20px) at 0ms expected "calc(10% + 20px)" but got "20px"
 47FAIL offset-distance: units "%" onto "rem" assert_equals: The value should be calc(10% + 20px) at 0ms expected "calc(10% + 20px)" but got "10%"
 48FAIL offset-distance: units "rem" onto "em" assert_equals: The value should be 40px at 0ms expected "40px" but got "20px"
 49FAIL offset-distance: units "em" onto "rem" assert_equals: The value should be 40px at 0ms expected "40px" but got "20px"
 50FAIL offset-distance: units "calc" onto "px" assert_equals: The value should be calc(20% + 30px) at 0ms expected "calc(20% + 30px)" but got "calc(20% + 20px)"
 51FAIL offset-distance: calc assert_equals: The value should be calc(30% + 30px) at 0ms expected "calc(30% + 30px)" but got "calc(20% + 20px)"
4052PASS order (type: integer) has testAccumulation function
4153FAIL order: integer assert_equals: The value should be -3 at 0ms expected "-3" but got "-2"
4254PASS outline-color (type: color) has testAccumulation function

LayoutTests/imported/w3c/web-platform-tests/web-animations/animation-model/animation-types/addition-per-property-002-expected.txt

@@PASS mix-blend-mode: "multiply" onto "screen"
3737PASS object-fit (type: discrete) has testAddition function
3838PASS object-fit: "contain" onto "fill"
3939PASS object-fit: "fill" onto "contain"
 40PASS offset-distance (type: lengthPercentageOrCalc) has testAddition function
 41FAIL offset-distance: length assert_equals: The value should be 20px at 0ms expected "20px" but got "10px"
 42FAIL offset-distance: length of rem assert_equals: The value should be 20px at 0ms expected "20px" but got "10px"
 43FAIL offset-distance: percentage assert_equals: The value should be 130% at 0ms expected "130%" but got "70%"
 44FAIL offset-distance: units "%" onto "px" assert_equals: The value should be calc(10% + 10px) at 0ms expected "calc(10% + 10px)" but got "10%"
 45FAIL offset-distance: units "px" onto "%" assert_equals: The value should be calc(10% + 10px) at 0ms expected "calc(10% + 10px)" but got "10px"
 46FAIL offset-distance: units "rem" onto "%" assert_equals: The value should be calc(10% + 20px) at 0ms expected "calc(10% + 20px)" but got "20px"
 47FAIL offset-distance: units "%" onto "rem" assert_equals: The value should be calc(10% + 20px) at 0ms expected "calc(10% + 20px)" but got "10%"
 48FAIL offset-distance: units "rem" onto "em" assert_equals: The value should be 40px at 0ms expected "40px" but got "20px"
 49FAIL offset-distance: units "em" onto "rem" assert_equals: The value should be 40px at 0ms expected "40px" but got "20px"
 50FAIL offset-distance: units "calc" onto "px" assert_equals: The value should be calc(20% + 30px) at 0ms expected "calc(20% + 30px)" but got "calc(20% + 20px)"
 51FAIL offset-distance: calc assert_equals: The value should be calc(30% + 30px) at 0ms expected "calc(30% + 30px)" but got "calc(20% + 20px)"
4052PASS order (type: integer) has testAddition function
4153FAIL order: integer assert_equals: The value should be -3 at 0ms expected "-3" but got "-2"
4254PASS outline-color (type: color) has testAddition function

LayoutTests/imported/w3c/web-platform-tests/web-animations/animation-model/animation-types/interpolation-per-property-002-expected.txt

@@PASS object-fit (type: discrete) has testInterpolation function
4646PASS object-fit uses discrete animation when animating between "fill" and "contain" with linear easing
4747PASS object-fit uses discrete animation when animating between "fill" and "contain" with effect easing
4848PASS object-fit uses discrete animation when animating between "fill" and "contain" with keyframe easing
 49PASS offset-distance (type: lengthPercentageOrCalc) has testInterpolation function
 50PASS offset-distance supports animating as a length
 51PASS offset-distance supports animating as a length of rem
 52PASS offset-distance supports animating as a percentage
 53PASS offset-distance supports animating as combination units "px" and "%"
 54PASS offset-distance supports animating as combination units "%" and "em"
 55PASS offset-distance supports animating as combination units "em" and "rem"
 56PASS offset-distance supports animating as combination units "px" and "calc"
 57PASS offset-distance supports animating as a calc
4958PASS order (type: integer) has testInterpolation function
5059PASS order supports animating as an integer
5160PASS outline-color (type: color) has testInterpolation function