Changeset 251668 in webkit


Ignore:
Timestamp:
Oct 28, 2019, 1:32:16 PM (5 years ago)
Author:
Simon Fraser
Message:

Properties that take <position> should not accept 3 values
https://bugs.webkit.org/show_bug.cgi?id=189142
LayoutTests/imported/w3c:

<rdar://problem/44110851>

Reviewed by Antti Koivisto.

New PASS results.

  • web-platform-tests/css/css-images/parsing/gradient-position-invalid-expected.txt:
  • web-platform-tests/css/css-images/parsing/object-position-invalid-expected.txt:
  • web-platform-tests/css/css-shapes/parsing/shape-outside-invalid-position-expected.txt:

Source/WebCore:

Reviewed by Antti Koivisto.

The resolution in https://github.com/w3c/csswg-drafts/issues/2140 changed the syntax for <position>,
disallowing the 3-value syntax. This is used in object-position, gradients and shapes. background-position
continues to use the old syntax.

Fix CSS parsing accordingly.

Tested by css-images WPT, by shapes tests, and object-position tests.

  • css/parser/CSSPropertyParser.cpp:

(WebCore::CSSPropertyParser::consumePerspectiveOrigin):
(WebCore::consumeBasicShapeCircle):
(WebCore::consumeBasicShapeEllipse):
(WebCore::CSSPropertyParser::parseSingleValue):
(WebCore::consumeBackgroundPosition):
(WebCore::CSSPropertyParser::consumeBackgroundShorthand):

  • css/parser/CSSPropertyParserHelpers.cpp:

(WebCore::CSSPropertyParserHelpers::backgroundPositionFromThreeValues):
(WebCore::CSSPropertyParserHelpers::positionFromFourValues):
(WebCore::CSSPropertyParserHelpers::consumePosition):
(WebCore::CSSPropertyParserHelpers::consumeRadialGradient):
(WebCore::CSSPropertyParserHelpers::consumeConicGradient):
(WebCore::CSSPropertyParserHelpers::positionFromThreeOrFourValues): Deleted.

  • css/parser/CSSPropertyParserHelpers.h:

LayoutTests:

Reviewed by Antti Koivisto.

Land some FAIL results for these shapes tests. They should get removed when
the css/css-shapes WPT are imported (webkit.org/b/203441), though the WPT
haven't been updated for the new syntax either.

  • css3/shapes/shape-outside/values/shape-outside-circle-002-expected.txt:
  • css3/shapes/shape-outside/values/shape-outside-circle-004-expected.txt:
  • css3/shapes/shape-outside/values/shape-outside-ellipse-002-expected.txt:
  • css3/shapes/shape-outside/values/shape-outside-ellipse-004-expected.txt:
  • fast/css/object-position/parsing-object-position-expected.txt:
  • fast/css/object-position/parsing-object-position.html: Remove the invalid position test.
  • fast/shapes/parsing/parsing-shape-outside-expected.txt:
  • fast/shapes/parsing/parsing-test-utils.js: Remove the invalid position tests.
Location:
trunk
Files:
17 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r251666 r251668  
    77
    88        * platform/mac-wk1/TestExpectations:
     9
     102019-10-28  Simon Fraser  <simon.fraser@apple.com>
     11
     12        Properties that take <position> should not accept 3 values
     13        https://bugs.webkit.org/show_bug.cgi?id=189142
     14
     15        Reviewed by Antti Koivisto.
     16
     17        Land some FAIL results for these shapes tests. They should get removed when
     18        the css/css-shapes WPT are imported (webkit.org/b/203441), though the WPT
     19        haven't been updated for the new syntax either.
     20
     21        * css3/shapes/shape-outside/values/shape-outside-circle-002-expected.txt:
     22        * css3/shapes/shape-outside/values/shape-outside-circle-004-expected.txt:
     23        * css3/shapes/shape-outside/values/shape-outside-ellipse-002-expected.txt:
     24        * css3/shapes/shape-outside/values/shape-outside-ellipse-004-expected.txt:
     25        * fast/css/object-position/parsing-object-position-expected.txt:
     26        * fast/css/object-position/parsing-object-position.html: Remove the invalid position test.
     27        * fast/shapes/parsing/parsing-shape-outside-expected.txt:
     28        * fast/shapes/parsing/parsing-test-utils.js:  Remove the invalid position tests.
    929
    10302019-10-28  John Wilander  <wilander@apple.com>
  • trunk/LayoutTests/css3/shapes/shape-outside/values/shape-outside-circle-002-expected.txt

    r172733 r251668  
    4040PASS circle(at 60% center) serializes as circle(at 60% 50%) - inline
    4141PASS circle(at 60px center) serializes as circle(at 60px 50%) - inline
    42 PASS circle(at center top 50%) serializes as circle(at 50% 50%) - inline
    43 PASS circle(at center top 50px) serializes as circle(at 50% 50px) - inline
    44 PASS circle(at center left 50%) serializes as circle(at 50% 50%) - inline
    45 PASS circle(at center left 50px) serializes as circle(at 50px 50%) - inline
    46 PASS circle(at center right 70%) serializes as circle(at 30% 50%) - inline
    47 PASS circle(at center right 70px) serializes as circle(at right 70px top 50%) - inline
    48 PASS circle(at center bottom 70%) serializes as circle(at 50% 30%) - inline
    49 PASS circle(at center bottom 70px) serializes as circle(at left 50% bottom 70px) - inline
    50 PASS circle(at left top 50%) serializes as circle(at 0% 50%) - inline
    51 PASS circle(at left top 50px) serializes as circle(at 0% 50px) - inline
    52 PASS circle(at left bottom 70%) serializes as circle(at 0% 30%) - inline
    53 PASS circle(at left bottom 70px) serializes as circle(at left 0% bottom 70px) - inline
    54 PASS circle(at top left 50%) serializes as circle(at 50% 0%) - inline
    55 PASS circle(at top left 50px) serializes as circle(at 50px 0%) - inline
    56 PASS circle(at top right 70%) serializes as circle(at 30% 0%) - inline
    57 PASS circle(at top right 70px) serializes as circle(at right 70px top 0%) - inline
    58 PASS circle(at bottom left 50%) serializes as circle(at 50% 100%) - inline
    59 PASS circle(at bottom left 50px) serializes as circle(at 50px 100%) - inline
    60 PASS circle(at bottom right 70%) serializes as circle(at 30% 100%) - inline
    61 PASS circle(at bottom right 70px) serializes as circle(at right 70px top 100%) - inline
    62 PASS circle(at right bottom 70%) serializes as circle(at 100% 30%) - inline
    63 PASS circle(at right bottom 70px) serializes as circle(at left 100% bottom 70px) - inline
    64 PASS circle(at right top 50%) serializes as circle(at 100% 50%) - inline
    65 PASS circle(at right top 50px) serializes as circle(at 100% 50px) - inline
    66 PASS circle(at left 50% center) serializes as circle(at 50% 50%) - inline
    67 PASS circle(at left 50px center) serializes as circle(at 50px 50%) - inline
    68 PASS circle(at left 50% top) serializes as circle(at 50% 0%) - inline
    69 PASS circle(at left 50px top) serializes as circle(at 50px 0%) - inline
    70 PASS circle(at left 50% bottom) serializes as circle(at 50% 100%) - inline
    71 PASS circle(at left 50px bottom) serializes as circle(at 50px 100%) - inline
    72 PASS circle(at top 50% center) serializes as circle(at 50% 50%) - inline
    73 PASS circle(at top 50px center) serializes as circle(at 50% 50px) - inline
    74 PASS circle(at top 50% left) serializes as circle(at 0% 50%) - inline
    75 PASS circle(at top 50px left) serializes as circle(at 0% 50px) - inline
    76 PASS circle(at top 50% right) serializes as circle(at 100% 50%) - inline
    77 PASS circle(at top 50px right) serializes as circle(at 100% 50px) - inline
    78 PASS circle(at bottom 70% center) serializes as circle(at 50% 30%) - inline
    79 PASS circle(at bottom 70px center) serializes as circle(at left 50% bottom 70px) - inline
    80 PASS circle(at bottom 70% left) serializes as circle(at 0% 30%) - inline
    81 PASS circle(at bottom 70px left) serializes as circle(at left 0% bottom 70px) - inline
    82 PASS circle(at bottom 70% right) serializes as circle(at 100% 30%) - inline
    83 PASS circle(at bottom 70px right) serializes as circle(at left 100% bottom 70px) - inline
    84 PASS circle(at right 80% center) serializes as circle(at 20% 50%) - inline
    85 PASS circle(at right 80px center) serializes as circle(at right 80px top 50%) - inline
    86 PASS circle(at right 80% bottom) serializes as circle(at 20% 100%) - inline
    87 PASS circle(at right 80px bottom) serializes as circle(at right 80px top 100%) - inline
    88 PASS circle(at right 80% top) serializes as circle(at 20% 0%) - inline
    89 PASS circle(at right 80px top) serializes as circle(at right 80px top 0%) - inline
     42FAIL circle(at center top 50%) serializes as circle(at 50% 50%) - inline assert_equals: expected "circle(at 50% 50%)" but got ""
     43FAIL circle(at center top 50px) serializes as circle(at 50% 50px) - inline assert_equals: expected "circle(at 50% 50px)" but got ""
     44FAIL circle(at center left 50%) serializes as circle(at 50% 50%) - inline assert_equals: expected "circle(at 50% 50%)" but got ""
     45FAIL circle(at center left 50px) serializes as circle(at 50px 50%) - inline assert_equals: expected "circle(at 50px 50%)" but got ""
     46FAIL circle(at center right 70%) serializes as circle(at 30% 50%) - inline assert_equals: expected "circle(at 30% 50%)" but got ""
     47FAIL circle(at center right 70px) serializes as circle(at right 70px top 50%) - inline assert_equals: expected "circle(at right 70px top 50%)" but got ""
     48FAIL circle(at center bottom 70%) serializes as circle(at 50% 30%) - inline assert_equals: expected "circle(at 50% 30%)" but got ""
     49FAIL circle(at center bottom 70px) serializes as circle(at left 50% bottom 70px) - inline assert_equals: expected "circle(at left 50% bottom 70px)" but got ""
     50FAIL circle(at left top 50%) serializes as circle(at 0% 50%) - inline assert_equals: expected "circle(at 0% 50%)" but got ""
     51FAIL circle(at left top 50px) serializes as circle(at 0% 50px) - inline assert_equals: expected "circle(at 0% 50px)" but got ""
     52FAIL circle(at left bottom 70%) serializes as circle(at 0% 30%) - inline assert_equals: expected "circle(at 0% 30%)" but got ""
     53FAIL circle(at left bottom 70px) serializes as circle(at left 0% bottom 70px) - inline assert_equals: expected "circle(at left 0% bottom 70px)" but got ""
     54FAIL circle(at top left 50%) serializes as circle(at 50% 0%) - inline assert_equals: expected "circle(at 50% 0%)" but got ""
     55FAIL circle(at top left 50px) serializes as circle(at 50px 0%) - inline assert_equals: expected "circle(at 50px 0%)" but got ""
     56FAIL circle(at top right 70%) serializes as circle(at 30% 0%) - inline assert_equals: expected "circle(at 30% 0%)" but got ""
     57FAIL circle(at top right 70px) serializes as circle(at right 70px top 0%) - inline assert_equals: expected "circle(at right 70px top 0%)" but got ""
     58FAIL circle(at bottom left 50%) serializes as circle(at 50% 100%) - inline assert_equals: expected "circle(at 50% 100%)" but got ""
     59FAIL circle(at bottom left 50px) serializes as circle(at 50px 100%) - inline assert_equals: expected "circle(at 50px 100%)" but got ""
     60FAIL circle(at bottom right 70%) serializes as circle(at 30% 100%) - inline assert_equals: expected "circle(at 30% 100%)" but got ""
     61FAIL circle(at bottom right 70px) serializes as circle(at right 70px top 100%) - inline assert_equals: expected "circle(at right 70px top 100%)" but got ""
     62FAIL circle(at right bottom 70%) serializes as circle(at 100% 30%) - inline assert_equals: expected "circle(at 100% 30%)" but got ""
     63FAIL circle(at right bottom 70px) serializes as circle(at left 100% bottom 70px) - inline assert_equals: expected "circle(at left 100% bottom 70px)" but got ""
     64FAIL circle(at right top 50%) serializes as circle(at 100% 50%) - inline assert_equals: expected "circle(at 100% 50%)" but got ""
     65FAIL circle(at right top 50px) serializes as circle(at 100% 50px) - inline assert_equals: expected "circle(at 100% 50px)" but got ""
     66FAIL circle(at left 50% center) serializes as circle(at 50% 50%) - inline assert_equals: expected "circle(at 50% 50%)" but got ""
     67FAIL circle(at left 50px center) serializes as circle(at 50px 50%) - inline assert_equals: expected "circle(at 50px 50%)" but got ""
     68FAIL circle(at left 50% top) serializes as circle(at 50% 0%) - inline assert_equals: expected "circle(at 50% 0%)" but got ""
     69FAIL circle(at left 50px top) serializes as circle(at 50px 0%) - inline assert_equals: expected "circle(at 50px 0%)" but got ""
     70FAIL circle(at left 50% bottom) serializes as circle(at 50% 100%) - inline assert_equals: expected "circle(at 50% 100%)" but got ""
     71FAIL circle(at left 50px bottom) serializes as circle(at 50px 100%) - inline assert_equals: expected "circle(at 50px 100%)" but got ""
     72FAIL circle(at top 50% center) serializes as circle(at 50% 50%) - inline assert_equals: expected "circle(at 50% 50%)" but got ""
     73FAIL circle(at top 50px center) serializes as circle(at 50% 50px) - inline assert_equals: expected "circle(at 50% 50px)" but got ""
     74FAIL circle(at top 50% left) serializes as circle(at 0% 50%) - inline assert_equals: expected "circle(at 0% 50%)" but got ""
     75FAIL circle(at top 50px left) serializes as circle(at 0% 50px) - inline assert_equals: expected "circle(at 0% 50px)" but got ""
     76FAIL circle(at top 50% right) serializes as circle(at 100% 50%) - inline assert_equals: expected "circle(at 100% 50%)" but got ""
     77FAIL circle(at top 50px right) serializes as circle(at 100% 50px) - inline assert_equals: expected "circle(at 100% 50px)" but got ""
     78FAIL circle(at bottom 70% center) serializes as circle(at 50% 30%) - inline assert_equals: expected "circle(at 50% 30%)" but got ""
     79FAIL circle(at bottom 70px center) serializes as circle(at left 50% bottom 70px) - inline assert_equals: expected "circle(at left 50% bottom 70px)" but got ""
     80FAIL circle(at bottom 70% left) serializes as circle(at 0% 30%) - inline assert_equals: expected "circle(at 0% 30%)" but got ""
     81FAIL circle(at bottom 70px left) serializes as circle(at left 0% bottom 70px) - inline assert_equals: expected "circle(at left 0% bottom 70px)" but got ""
     82FAIL circle(at bottom 70% right) serializes as circle(at 100% 30%) - inline assert_equals: expected "circle(at 100% 30%)" but got ""
     83FAIL circle(at bottom 70px right) serializes as circle(at left 100% bottom 70px) - inline assert_equals: expected "circle(at left 100% bottom 70px)" but got ""
     84FAIL circle(at right 80% center) serializes as circle(at 20% 50%) - inline assert_equals: expected "circle(at 20% 50%)" but got ""
     85FAIL circle(at right 80px center) serializes as circle(at right 80px top 50%) - inline assert_equals: expected "circle(at right 80px top 50%)" but got ""
     86FAIL circle(at right 80% bottom) serializes as circle(at 20% 100%) - inline assert_equals: expected "circle(at 20% 100%)" but got ""
     87FAIL circle(at right 80px bottom) serializes as circle(at right 80px top 100%) - inline assert_equals: expected "circle(at right 80px top 100%)" but got ""
     88FAIL circle(at right 80% top) serializes as circle(at 20% 0%) - inline assert_equals: expected "circle(at 20% 0%)" but got ""
     89FAIL circle(at right 80px top) serializes as circle(at right 80px top 0%) - inline assert_equals: expected "circle(at right 80px top 0%)" but got ""
    9090PASS circle(at left 50% top 50%) serializes as circle(at 50% 50%) - inline
    9191PASS circle(at left 50% top 50px) serializes as circle(at 50% 50px) - inline
     
    160160PASS circle(at 60% center) serializes as circle(at 60% 50%) - computed
    161161PASS circle(at 60px center) serializes as circle(at 60px 50%) - computed
    162 PASS circle(at center top 50%) serializes as circle(at 50% 50%) - computed
    163 PASS circle(at center top 50px) serializes as circle(at 50% 50px) - computed
    164 PASS circle(at center left 50%) serializes as circle(at 50% 50%) - computed
    165 PASS circle(at center left 50px) serializes as circle(at 50px 50%) - computed
    166 PASS circle(at center right 70%) serializes as circle(at 30% 50%) - computed
    167 PASS circle(at center right 70px) serializes as circle(at right 70px top 50%) - computed
    168 PASS circle(at center bottom 70%) serializes as circle(at 50% 30%) - computed
    169 PASS circle(at center bottom 70px) serializes as circle(at left 50% bottom 70px) - computed
    170 PASS circle(at left top 50%) serializes as circle(at 0% 50%) - computed
    171 PASS circle(at left top 50px) serializes as circle(at 0% 50px) - computed
    172 PASS circle(at left bottom 70%) serializes as circle(at 0% 30%) - computed
    173 PASS circle(at left bottom 70px) serializes as circle(at left 0% bottom 70px) - computed
    174 PASS circle(at top left 50%) serializes as circle(at 50% 0%) - computed
    175 PASS circle(at top left 50px) serializes as circle(at 50px 0%) - computed
    176 PASS circle(at top right 70%) serializes as circle(at 30% 0%) - computed
    177 PASS circle(at top right 70px) serializes as circle(at right 70px top 0%) - computed
    178 PASS circle(at bottom left 50%) serializes as circle(at 50% 100%) - computed
    179 PASS circle(at bottom left 50px) serializes as circle(at 50px 100%) - computed
    180 PASS circle(at bottom right 70%) serializes as circle(at 30% 100%) - computed
    181 PASS circle(at bottom right 70px) serializes as circle(at right 70px top 100%) - computed
    182 PASS circle(at right bottom 70%) serializes as circle(at 100% 30%) - computed
    183 PASS circle(at right bottom 70px) serializes as circle(at left 100% bottom 70px) - computed
    184 PASS circle(at right top 50%) serializes as circle(at 100% 50%) - computed
    185 PASS circle(at right top 50px) serializes as circle(at 100% 50px) - computed
    186 PASS circle(at left 50% center) serializes as circle(at 50% 50%) - computed
    187 PASS circle(at left 50px center) serializes as circle(at 50px 50%) - computed
    188 PASS circle(at left 50% top) serializes as circle(at 50% 0%) - computed
    189 PASS circle(at left 50px top) serializes as circle(at 50px 0%) - computed
    190 PASS circle(at left 50% bottom) serializes as circle(at 50% 100%) - computed
    191 PASS circle(at left 50px bottom) serializes as circle(at 50px 100%) - computed
    192 PASS circle(at top 50% center) serializes as circle(at 50% 50%) - computed
    193 PASS circle(at top 50px center) serializes as circle(at 50% 50px) - computed
    194 PASS circle(at top 50% left) serializes as circle(at 0% 50%) - computed
    195 PASS circle(at top 50px left) serializes as circle(at 0% 50px) - computed
    196 PASS circle(at top 50% right) serializes as circle(at 100% 50%) - computed
    197 PASS circle(at top 50px right) serializes as circle(at 100% 50px) - computed
    198 PASS circle(at bottom 70% center) serializes as circle(at 50% 30%) - computed
    199 PASS circle(at bottom 70px center) serializes as circle(at left 50% bottom 70px) - computed
    200 PASS circle(at bottom 70% left) serializes as circle(at 0% 30%) - computed
    201 PASS circle(at bottom 70px left) serializes as circle(at left 0% bottom 70px) - computed
    202 PASS circle(at bottom 70% right) serializes as circle(at 100% 30%) - computed
    203 PASS circle(at bottom 70px right) serializes as circle(at left 100% bottom 70px) - computed
    204 PASS circle(at right 80% center) serializes as circle(at 20% 50%) - computed
    205 PASS circle(at right 80px center) serializes as circle(at right 80px top 50%) - computed
    206 PASS circle(at right 80% bottom) serializes as circle(at 20% 100%) - computed
    207 PASS circle(at right 80px bottom) serializes as circle(at right 80px top 100%) - computed
    208 PASS circle(at right 80% top) serializes as circle(at 20% 0%) - computed
    209 PASS circle(at right 80px top) serializes as circle(at right 80px top 0%) - computed
     162FAIL circle(at center top 50%) serializes as circle(at 50% 50%) - computed assert_equals: expected "circle(at 50% 50%)" but got "none"
     163FAIL circle(at center top 50px) serializes as circle(at 50% 50px) - computed assert_equals: expected "circle(at 50% 50px)" but got "none"
     164FAIL circle(at center left 50%) serializes as circle(at 50% 50%) - computed assert_equals: expected "circle(at 50% 50%)" but got "none"
     165FAIL circle(at center left 50px) serializes as circle(at 50px 50%) - computed assert_equals: expected "circle(at 50px 50%)" but got "none"
     166FAIL circle(at center right 70%) serializes as circle(at 30% 50%) - computed assert_equals: expected "circle(at 30% 50%)" but got "none"
     167FAIL circle(at center right 70px) serializes as circle(at right 70px top 50%) - computed assert_equals: expected "circle(at right 70px top 50%)" but got "none"
     168FAIL circle(at center bottom 70%) serializes as circle(at 50% 30%) - computed assert_equals: expected "circle(at 50% 30%)" but got "none"
     169FAIL circle(at center bottom 70px) serializes as circle(at left 50% bottom 70px) - computed assert_equals: expected "circle(at left 50% bottom 70px)" but got "none"
     170FAIL circle(at left top 50%) serializes as circle(at 0% 50%) - computed assert_equals: expected "circle(at 0% 50%)" but got "none"
     171FAIL circle(at left top 50px) serializes as circle(at 0% 50px) - computed assert_equals: expected "circle(at 0% 50px)" but got "none"
     172FAIL circle(at left bottom 70%) serializes as circle(at 0% 30%) - computed assert_equals: expected "circle(at 0% 30%)" but got "none"
     173FAIL circle(at left bottom 70px) serializes as circle(at left 0% bottom 70px) - computed assert_equals: expected "circle(at left 0% bottom 70px)" but got "none"
     174FAIL circle(at top left 50%) serializes as circle(at 50% 0%) - computed assert_equals: expected "circle(at 50% 0%)" but got "none"
     175FAIL circle(at top left 50px) serializes as circle(at 50px 0%) - computed assert_equals: expected "circle(at 50px 0%)" but got "none"
     176FAIL circle(at top right 70%) serializes as circle(at 30% 0%) - computed assert_equals: expected "circle(at 30% 0%)" but got "none"
     177FAIL circle(at top right 70px) serializes as circle(at right 70px top 0%) - computed assert_equals: expected "circle(at right 70px top 0%)" but got "none"
     178FAIL circle(at bottom left 50%) serializes as circle(at 50% 100%) - computed assert_equals: expected "circle(at 50% 100%)" but got "none"
     179FAIL circle(at bottom left 50px) serializes as circle(at 50px 100%) - computed assert_equals: expected "circle(at 50px 100%)" but got "none"
     180FAIL circle(at bottom right 70%) serializes as circle(at 30% 100%) - computed assert_equals: expected "circle(at 30% 100%)" but got "none"
     181FAIL circle(at bottom right 70px) serializes as circle(at right 70px top 100%) - computed assert_equals: expected "circle(at right 70px top 100%)" but got "none"
     182FAIL circle(at right bottom 70%) serializes as circle(at 100% 30%) - computed assert_equals: expected "circle(at 100% 30%)" but got "none"
     183FAIL circle(at right bottom 70px) serializes as circle(at left 100% bottom 70px) - computed assert_equals: expected "circle(at left 100% bottom 70px)" but got "none"
     184FAIL circle(at right top 50%) serializes as circle(at 100% 50%) - computed assert_equals: expected "circle(at 100% 50%)" but got "none"
     185FAIL circle(at right top 50px) serializes as circle(at 100% 50px) - computed assert_equals: expected "circle(at 100% 50px)" but got "none"
     186FAIL circle(at left 50% center) serializes as circle(at 50% 50%) - computed assert_equals: expected "circle(at 50% 50%)" but got "none"
     187FAIL circle(at left 50px center) serializes as circle(at 50px 50%) - computed assert_equals: expected "circle(at 50px 50%)" but got "none"
     188FAIL circle(at left 50% top) serializes as circle(at 50% 0%) - computed assert_equals: expected "circle(at 50% 0%)" but got "none"
     189FAIL circle(at left 50px top) serializes as circle(at 50px 0%) - computed assert_equals: expected "circle(at 50px 0%)" but got "none"
     190FAIL circle(at left 50% bottom) serializes as circle(at 50% 100%) - computed assert_equals: expected "circle(at 50% 100%)" but got "none"
     191FAIL circle(at left 50px bottom) serializes as circle(at 50px 100%) - computed assert_equals: expected "circle(at 50px 100%)" but got "none"
     192FAIL circle(at top 50% center) serializes as circle(at 50% 50%) - computed assert_equals: expected "circle(at 50% 50%)" but got "none"
     193FAIL circle(at top 50px center) serializes as circle(at 50% 50px) - computed assert_equals: expected "circle(at 50% 50px)" but got "none"
     194FAIL circle(at top 50% left) serializes as circle(at 0% 50%) - computed assert_equals: expected "circle(at 0% 50%)" but got "none"
     195FAIL circle(at top 50px left) serializes as circle(at 0% 50px) - computed assert_equals: expected "circle(at 0% 50px)" but got "none"
     196FAIL circle(at top 50% right) serializes as circle(at 100% 50%) - computed assert_equals: expected "circle(at 100% 50%)" but got "none"
     197FAIL circle(at top 50px right) serializes as circle(at 100% 50px) - computed assert_equals: expected "circle(at 100% 50px)" but got "none"
     198FAIL circle(at bottom 70% center) serializes as circle(at 50% 30%) - computed assert_equals: expected "circle(at 50% 30%)" but got "none"
     199FAIL circle(at bottom 70px center) serializes as circle(at left 50% bottom 70px) - computed assert_equals: expected "circle(at left 50% bottom 70px)" but got "none"
     200FAIL circle(at bottom 70% left) serializes as circle(at 0% 30%) - computed assert_equals: expected "circle(at 0% 30%)" but got "none"
     201FAIL circle(at bottom 70px left) serializes as circle(at left 0% bottom 70px) - computed assert_equals: expected "circle(at left 0% bottom 70px)" but got "none"
     202FAIL circle(at bottom 70% right) serializes as circle(at 100% 30%) - computed assert_equals: expected "circle(at 100% 30%)" but got "none"
     203FAIL circle(at bottom 70px right) serializes as circle(at left 100% bottom 70px) - computed assert_equals: expected "circle(at left 100% bottom 70px)" but got "none"
     204FAIL circle(at right 80% center) serializes as circle(at 20% 50%) - computed assert_equals: expected "circle(at 20% 50%)" but got "none"
     205FAIL circle(at right 80px center) serializes as circle(at right 80px top 50%) - computed assert_equals: expected "circle(at right 80px top 50%)" but got "none"
     206FAIL circle(at right 80% bottom) serializes as circle(at 20% 100%) - computed assert_equals: expected "circle(at 20% 100%)" but got "none"
     207FAIL circle(at right 80px bottom) serializes as circle(at right 80px top 100%) - computed assert_equals: expected "circle(at right 80px top 100%)" but got "none"
     208FAIL circle(at right 80% top) serializes as circle(at 20% 0%) - computed assert_equals: expected "circle(at 20% 0%)" but got "none"
     209FAIL circle(at right 80px top) serializes as circle(at right 80px top 0%) - computed assert_equals: expected "circle(at right 80px top 0%)" but got "none"
    210210PASS circle(at left 50% top 50%) serializes as circle(at 50% 50%) - computed
    211211PASS circle(at left 50% top 50px) serializes as circle(at 50% 50px) - computed
  • trunk/LayoutTests/css3/shapes/shape-outside/values/shape-outside-circle-004-expected.txt

    r172733 r251668  
    1010PASS test unit (inline): cm - circle(at center 60cm)
    1111PASS test unit (inline): cm - circle(at 60cm center)
    12 PASS test unit (inline): cm - circle(at center top 50cm)
    13 PASS test unit (inline): cm - circle(at center left 50cm)
    14 PASS test unit (inline): cm - circle(at center right 70cm)
    15 PASS test unit (inline): cm - circle(at center bottom 70cm)
    16 PASS test unit (inline): cm - circle(at left top 50cm)
    17 PASS test unit (inline): cm - circle(at left bottom 70cm)
    18 PASS test unit (inline): cm - circle(at top left 50cm)
    19 PASS test unit (inline): cm - circle(at top right 70cm)
    20 PASS test unit (inline): cm - circle(at bottom left 50cm)
    21 PASS test unit (inline): cm - circle(at bottom right 70cm)
    22 PASS test unit (inline): cm - circle(at right bottom 70cm)
    23 PASS test unit (inline): cm - circle(at right top 50cm)
    24 PASS test unit (inline): cm - circle(at left 50cm center)
    25 PASS test unit (inline): cm - circle(at left 50cm top)
    26 PASS test unit (inline): cm - circle(at left 50cm bottom)
    27 PASS test unit (inline): cm - circle(at top 50cm center)
    28 PASS test unit (inline): cm - circle(at top 50cm left)
    29 PASS test unit (inline): cm - circle(at top 50cm right)
    30 PASS test unit (inline): cm - circle(at bottom 70cm center)
    31 PASS test unit (inline): cm - circle(at bottom 70cm left)
    32 PASS test unit (inline): cm - circle(at bottom 70cm right)
    33 PASS test unit (inline): cm - circle(at right 80cm center)
    34 PASS test unit (inline): cm - circle(at right 80cm bottom)
    35 PASS test unit (inline): cm - circle(at right 80cm top)
     12FAIL test unit (inline): cm - circle(at center top 50cm) assert_equals: expected "circle(at 50% 50cm)" but got ""
     13FAIL test unit (inline): cm - circle(at center left 50cm) assert_equals: expected "circle(at 50cm 50%)" but got ""
     14FAIL test unit (inline): cm - circle(at center right 70cm) assert_equals: expected "circle(at right 70cm top 50%)" but got ""
     15FAIL test unit (inline): cm - circle(at center bottom 70cm) assert_equals: expected "circle(at left 50% bottom 70cm)" but got ""
     16FAIL test unit (inline): cm - circle(at left top 50cm) assert_equals: expected "circle(at 0% 50cm)" but got ""
     17FAIL test unit (inline): cm - circle(at left bottom 70cm) assert_equals: expected "circle(at left 0% bottom 70cm)" but got ""
     18FAIL test unit (inline): cm - circle(at top left 50cm) assert_equals: expected "circle(at 50cm 0%)" but got ""
     19FAIL test unit (inline): cm - circle(at top right 70cm) assert_equals: expected "circle(at right 70cm top 0%)" but got ""
     20FAIL test unit (inline): cm - circle(at bottom left 50cm) assert_equals: expected "circle(at 50cm 100%)" but got ""
     21FAIL test unit (inline): cm - circle(at bottom right 70cm) assert_equals: expected "circle(at right 70cm top 100%)" but got ""
     22FAIL test unit (inline): cm - circle(at right bottom 70cm) assert_equals: expected "circle(at left 100% bottom 70cm)" but got ""
     23FAIL test unit (inline): cm - circle(at right top 50cm) assert_equals: expected "circle(at 100% 50cm)" but got ""
     24FAIL test unit (inline): cm - circle(at left 50cm center) assert_equals: expected "circle(at 50cm 50%)" but got ""
     25FAIL test unit (inline): cm - circle(at left 50cm top) assert_equals: expected "circle(at 50cm 0%)" but got ""
     26FAIL test unit (inline): cm - circle(at left 50cm bottom) assert_equals: expected "circle(at 50cm 100%)" but got ""
     27FAIL test unit (inline): cm - circle(at top 50cm center) assert_equals: expected "circle(at 50% 50cm)" but got ""
     28FAIL test unit (inline): cm - circle(at top 50cm left) assert_equals: expected "circle(at 0% 50cm)" but got ""
     29FAIL test unit (inline): cm - circle(at top 50cm right) assert_equals: expected "circle(at 100% 50cm)" but got ""
     30FAIL test unit (inline): cm - circle(at bottom 70cm center) assert_equals: expected "circle(at left 50% bottom 70cm)" but got ""
     31FAIL test unit (inline): cm - circle(at bottom 70cm left) assert_equals: expected "circle(at left 0% bottom 70cm)" but got ""
     32FAIL test unit (inline): cm - circle(at bottom 70cm right) assert_equals: expected "circle(at left 100% bottom 70cm)" but got ""
     33FAIL test unit (inline): cm - circle(at right 80cm center) assert_equals: expected "circle(at right 80cm top 50%)" but got ""
     34FAIL test unit (inline): cm - circle(at right 80cm bottom) assert_equals: expected "circle(at right 80cm top 100%)" but got ""
     35FAIL test unit (inline): cm - circle(at right 80cm top) assert_equals: expected "circle(at right 80cm top 0%)" but got ""
    3636PASS test unit (inline): cm - circle(at left 50% top 50cm)
    3737PASS test unit (inline): cm - circle(at left 50% bottom 70cm)
     
    6868PASS test unit (inline): mm - circle(at center 60mm)
    6969PASS test unit (inline): mm - circle(at 60mm center)
    70 PASS test unit (inline): mm - circle(at center top 50mm)
    71 PASS test unit (inline): mm - circle(at center left 50mm)
    72 PASS test unit (inline): mm - circle(at center right 70mm)
    73 PASS test unit (inline): mm - circle(at center bottom 70mm)
    74 PASS test unit (inline): mm - circle(at left top 50mm)
    75 PASS test unit (inline): mm - circle(at left bottom 70mm)
    76 PASS test unit (inline): mm - circle(at top left 50mm)
    77 PASS test unit (inline): mm - circle(at top right 70mm)
    78 PASS test unit (inline): mm - circle(at bottom left 50mm)
    79 PASS test unit (inline): mm - circle(at bottom right 70mm)
    80 PASS test unit (inline): mm - circle(at right bottom 70mm)
    81 PASS test unit (inline): mm - circle(at right top 50mm)
    82 PASS test unit (inline): mm - circle(at left 50mm center)
    83 PASS test unit (inline): mm - circle(at left 50mm top)
    84 PASS test unit (inline): mm - circle(at left 50mm bottom)
    85 PASS test unit (inline): mm - circle(at top 50mm center)
    86 PASS test unit (inline): mm - circle(at top 50mm left)
    87 PASS test unit (inline): mm - circle(at top 50mm right)
    88 PASS test unit (inline): mm - circle(at bottom 70mm center)
    89 PASS test unit (inline): mm - circle(at bottom 70mm left)
    90 PASS test unit (inline): mm - circle(at bottom 70mm right)
    91 PASS test unit (inline): mm - circle(at right 80mm center)
    92 PASS test unit (inline): mm - circle(at right 80mm bottom)
    93 PASS test unit (inline): mm - circle(at right 80mm top)
     70FAIL test unit (inline): mm - circle(at center top 50mm) assert_equals: expected "circle(at 50% 50mm)" but got ""
     71FAIL test unit (inline): mm - circle(at center left 50mm) assert_equals: expected "circle(at 50mm 50%)" but got ""
     72FAIL test unit (inline): mm - circle(at center right 70mm) assert_equals: expected "circle(at right 70mm top 50%)" but got ""
     73FAIL test unit (inline): mm - circle(at center bottom 70mm) assert_equals: expected "circle(at left 50% bottom 70mm)" but got ""
     74FAIL test unit (inline): mm - circle(at left top 50mm) assert_equals: expected "circle(at 0% 50mm)" but got ""
     75FAIL test unit (inline): mm - circle(at left bottom 70mm) assert_equals: expected "circle(at left 0% bottom 70mm)" but got ""
     76FAIL test unit (inline): mm - circle(at top left 50mm) assert_equals: expected "circle(at 50mm 0%)" but got ""
     77FAIL test unit (inline): mm - circle(at top right 70mm) assert_equals: expected "circle(at right 70mm top 0%)" but got ""
     78FAIL test unit (inline): mm - circle(at bottom left 50mm) assert_equals: expected "circle(at 50mm 100%)" but got ""
     79FAIL test unit (inline): mm - circle(at bottom right 70mm) assert_equals: expected "circle(at right 70mm top 100%)" but got ""
     80FAIL test unit (inline): mm - circle(at right bottom 70mm) assert_equals: expected "circle(at left 100% bottom 70mm)" but got ""
     81FAIL test unit (inline): mm - circle(at right top 50mm) assert_equals: expected "circle(at 100% 50mm)" but got ""
     82FAIL test unit (inline): mm - circle(at left 50mm center) assert_equals: expected "circle(at 50mm 50%)" but got ""
     83FAIL test unit (inline): mm - circle(at left 50mm top) assert_equals: expected "circle(at 50mm 0%)" but got ""
     84FAIL test unit (inline): mm - circle(at left 50mm bottom) assert_equals: expected "circle(at 50mm 100%)" but got ""
     85FAIL test unit (inline): mm - circle(at top 50mm center) assert_equals: expected "circle(at 50% 50mm)" but got ""
     86FAIL test unit (inline): mm - circle(at top 50mm left) assert_equals: expected "circle(at 0% 50mm)" but got ""
     87FAIL test unit (inline): mm - circle(at top 50mm right) assert_equals: expected "circle(at 100% 50mm)" but got ""
     88FAIL test unit (inline): mm - circle(at bottom 70mm center) assert_equals: expected "circle(at left 50% bottom 70mm)" but got ""
     89FAIL test unit (inline): mm - circle(at bottom 70mm left) assert_equals: expected "circle(at left 0% bottom 70mm)" but got ""
     90FAIL test unit (inline): mm - circle(at bottom 70mm right) assert_equals: expected "circle(at left 100% bottom 70mm)" but got ""
     91FAIL test unit (inline): mm - circle(at right 80mm center) assert_equals: expected "circle(at right 80mm top 50%)" but got ""
     92FAIL test unit (inline): mm - circle(at right 80mm bottom) assert_equals: expected "circle(at right 80mm top 100%)" but got ""
     93FAIL test unit (inline): mm - circle(at right 80mm top) assert_equals: expected "circle(at right 80mm top 0%)" but got ""
    9494PASS test unit (inline): mm - circle(at left 50% top 50mm)
    9595PASS test unit (inline): mm - circle(at left 50% bottom 70mm)
     
    126126PASS test unit (inline): in - circle(at center 60in)
    127127PASS test unit (inline): in - circle(at 60in center)
    128 PASS test unit (inline): in - circle(at center top 50in)
    129 PASS test unit (inline): in - circle(at center left 50in)
    130 PASS test unit (inline): in - circle(at center right 70in)
    131 PASS test unit (inline): in - circle(at center bottom 70in)
    132 PASS test unit (inline): in - circle(at left top 50in)
    133 PASS test unit (inline): in - circle(at left bottom 70in)
    134 PASS test unit (inline): in - circle(at top left 50in)
    135 PASS test unit (inline): in - circle(at top right 70in)
    136 PASS test unit (inline): in - circle(at bottom left 50in)
    137 PASS test unit (inline): in - circle(at bottom right 70in)
    138 PASS test unit (inline): in - circle(at right bottom 70in)
    139 PASS test unit (inline): in - circle(at right top 50in)
    140 PASS test unit (inline): in - circle(at left 50in center)
    141 PASS test unit (inline): in - circle(at left 50in top)
    142 PASS test unit (inline): in - circle(at left 50in bottom)
    143 PASS test unit (inline): in - circle(at top 50in center)
    144 PASS test unit (inline): in - circle(at top 50in left)
    145 PASS test unit (inline): in - circle(at top 50in right)
    146 PASS test unit (inline): in - circle(at bottom 70in center)
    147 PASS test unit (inline): in - circle(at bottom 70in left)
    148 PASS test unit (inline): in - circle(at bottom 70in right)
    149 PASS test unit (inline): in - circle(at right 80in center)
    150 PASS test unit (inline): in - circle(at right 80in bottom)
    151 PASS test unit (inline): in - circle(at right 80in top)
     128FAIL test unit (inline): in - circle(at center top 50in) assert_equals: expected "circle(at 50% 50in)" but got ""
     129FAIL test unit (inline): in - circle(at center left 50in) assert_equals: expected "circle(at 50in 50%)" but got ""
     130FAIL test unit (inline): in - circle(at center right 70in) assert_equals: expected "circle(at right 70in top 50%)" but got ""
     131FAIL test unit (inline): in - circle(at center bottom 70in) assert_equals: expected "circle(at left 50% bottom 70in)" but got ""
     132FAIL test unit (inline): in - circle(at left top 50in) assert_equals: expected "circle(at 0% 50in)" but got ""
     133FAIL test unit (inline): in - circle(at left bottom 70in) assert_equals: expected "circle(at left 0% bottom 70in)" but got ""
     134FAIL test unit (inline): in - circle(at top left 50in) assert_equals: expected "circle(at 50in 0%)" but got ""
     135FAIL test unit (inline): in - circle(at top right 70in) assert_equals: expected "circle(at right 70in top 0%)" but got ""
     136FAIL test unit (inline): in - circle(at bottom left 50in) assert_equals: expected "circle(at 50in 100%)" but got ""
     137FAIL test unit (inline): in - circle(at bottom right 70in) assert_equals: expected "circle(at right 70in top 100%)" but got ""
     138FAIL test unit (inline): in - circle(at right bottom 70in) assert_equals: expected "circle(at left 100% bottom 70in)" but got ""
     139FAIL test unit (inline): in - circle(at right top 50in) assert_equals: expected "circle(at 100% 50in)" but got ""
     140FAIL test unit (inline): in - circle(at left 50in center) assert_equals: expected "circle(at 50in 50%)" but got ""
     141FAIL test unit (inline): in - circle(at left 50in top) assert_equals: expected "circle(at 50in 0%)" but got ""
     142FAIL test unit (inline): in - circle(at left 50in bottom) assert_equals: expected "circle(at 50in 100%)" but got ""
     143FAIL test unit (inline): in - circle(at top 50in center) assert_equals: expected "circle(at 50% 50in)" but got ""
     144FAIL test unit (inline): in - circle(at top 50in left) assert_equals: expected "circle(at 0% 50in)" but got ""
     145FAIL test unit (inline): in - circle(at top 50in right) assert_equals: expected "circle(at 100% 50in)" but got ""
     146FAIL test unit (inline): in - circle(at bottom 70in center) assert_equals: expected "circle(at left 50% bottom 70in)" but got ""
     147FAIL test unit (inline): in - circle(at bottom 70in left) assert_equals: expected "circle(at left 0% bottom 70in)" but got ""
     148FAIL test unit (inline): in - circle(at bottom 70in right) assert_equals: expected "circle(at left 100% bottom 70in)" but got ""
     149FAIL test unit (inline): in - circle(at right 80in center) assert_equals: expected "circle(at right 80in top 50%)" but got ""
     150FAIL test unit (inline): in - circle(at right 80in bottom) assert_equals: expected "circle(at right 80in top 100%)" but got ""
     151FAIL test unit (inline): in - circle(at right 80in top) assert_equals: expected "circle(at right 80in top 0%)" but got ""
    152152PASS test unit (inline): in - circle(at left 50% top 50in)
    153153PASS test unit (inline): in - circle(at left 50% bottom 70in)
     
    184184PASS test unit (inline): pt - circle(at center 60pt)
    185185PASS test unit (inline): pt - circle(at 60pt center)
    186 PASS test unit (inline): pt - circle(at center top 50pt)
    187 PASS test unit (inline): pt - circle(at center left 50pt)
    188 PASS test unit (inline): pt - circle(at center right 70pt)
    189 PASS test unit (inline): pt - circle(at center bottom 70pt)
    190 PASS test unit (inline): pt - circle(at left top 50pt)
    191 PASS test unit (inline): pt - circle(at left bottom 70pt)
    192 PASS test unit (inline): pt - circle(at top left 50pt)
    193 PASS test unit (inline): pt - circle(at top right 70pt)
    194 PASS test unit (inline): pt - circle(at bottom left 50pt)
    195 PASS test unit (inline): pt - circle(at bottom right 70pt)
    196 PASS test unit (inline): pt - circle(at right bottom 70pt)
    197 PASS test unit (inline): pt - circle(at right top 50pt)
    198 PASS test unit (inline): pt - circle(at left 50pt center)
    199 PASS test unit (inline): pt - circle(at left 50pt top)
    200 PASS test unit (inline): pt - circle(at left 50pt bottom)
    201 PASS test unit (inline): pt - circle(at top 50pt center)
    202 PASS test unit (inline): pt - circle(at top 50pt left)
    203 PASS test unit (inline): pt - circle(at top 50pt right)
    204 PASS test unit (inline): pt - circle(at bottom 70pt center)
    205 PASS test unit (inline): pt - circle(at bottom 70pt left)
    206 PASS test unit (inline): pt - circle(at bottom 70pt right)
    207 PASS test unit (inline): pt - circle(at right 80pt center)
    208 PASS test unit (inline): pt - circle(at right 80pt bottom)
    209 PASS test unit (inline): pt - circle(at right 80pt top)
     186FAIL test unit (inline): pt - circle(at center top 50pt) assert_equals: expected "circle(at 50% 50pt)" but got ""
     187FAIL test unit (inline): pt - circle(at center left 50pt) assert_equals: expected "circle(at 50pt 50%)" but got ""
     188FAIL test unit (inline): pt - circle(at center right 70pt) assert_equals: expected "circle(at right 70pt top 50%)" but got ""
     189FAIL test unit (inline): pt - circle(at center bottom 70pt) assert_equals: expected "circle(at left 50% bottom 70pt)" but got ""
     190FAIL test unit (inline): pt - circle(at left top 50pt) assert_equals: expected "circle(at 0% 50pt)" but got ""
     191FAIL test unit (inline): pt - circle(at left bottom 70pt) assert_equals: expected "circle(at left 0% bottom 70pt)" but got ""
     192FAIL test unit (inline): pt - circle(at top left 50pt) assert_equals: expected "circle(at 50pt 0%)" but got ""
     193FAIL test unit (inline): pt - circle(at top right 70pt) assert_equals: expected "circle(at right 70pt top 0%)" but got ""
     194FAIL test unit (inline): pt - circle(at bottom left 50pt) assert_equals: expected "circle(at 50pt 100%)" but got ""
     195FAIL test unit (inline): pt - circle(at bottom right 70pt) assert_equals: expected "circle(at right 70pt top 100%)" but got ""
     196FAIL test unit (inline): pt - circle(at right bottom 70pt) assert_equals: expected "circle(at left 100% bottom 70pt)" but got ""
     197FAIL test unit (inline): pt - circle(at right top 50pt) assert_equals: expected "circle(at 100% 50pt)" but got ""
     198FAIL test unit (inline): pt - circle(at left 50pt center) assert_equals: expected "circle(at 50pt 50%)" but got ""
     199FAIL test unit (inline): pt - circle(at left 50pt top) assert_equals: expected "circle(at 50pt 0%)" but got ""
     200FAIL test unit (inline): pt - circle(at left 50pt bottom) assert_equals: expected "circle(at 50pt 100%)" but got ""
     201FAIL test unit (inline): pt - circle(at top 50pt center) assert_equals: expected "circle(at 50% 50pt)" but got ""
     202FAIL test unit (inline): pt - circle(at top 50pt left) assert_equals: expected "circle(at 0% 50pt)" but got ""
     203FAIL test unit (inline): pt - circle(at top 50pt right) assert_equals: expected "circle(at 100% 50pt)" but got ""
     204FAIL test unit (inline): pt - circle(at bottom 70pt center) assert_equals: expected "circle(at left 50% bottom 70pt)" but got ""
     205FAIL test unit (inline): pt - circle(at bottom 70pt left) assert_equals: expected "circle(at left 0% bottom 70pt)" but got ""
     206FAIL test unit (inline): pt - circle(at bottom 70pt right) assert_equals: expected "circle(at left 100% bottom 70pt)" but got ""
     207FAIL test unit (inline): pt - circle(at right 80pt center) assert_equals: expected "circle(at right 80pt top 50%)" but got ""
     208FAIL test unit (inline): pt - circle(at right 80pt bottom) assert_equals: expected "circle(at right 80pt top 100%)" but got ""
     209FAIL test unit (inline): pt - circle(at right 80pt top) assert_equals: expected "circle(at right 80pt top 0%)" but got ""
    210210PASS test unit (inline): pt - circle(at left 50% top 50pt)
    211211PASS test unit (inline): pt - circle(at left 50% bottom 70pt)
     
    242242PASS test unit (inline): pc - circle(at center 60pc)
    243243PASS test unit (inline): pc - circle(at 60pc center)
    244 PASS test unit (inline): pc - circle(at center top 50pc)
    245 PASS test unit (inline): pc - circle(at center left 50pc)
    246 PASS test unit (inline): pc - circle(at center right 70pc)
    247 PASS test unit (inline): pc - circle(at center bottom 70pc)
    248 PASS test unit (inline): pc - circle(at left top 50pc)
    249 PASS test unit (inline): pc - circle(at left bottom 70pc)
    250 PASS test unit (inline): pc - circle(at top left 50pc)
    251 PASS test unit (inline): pc - circle(at top right 70pc)
    252 PASS test unit (inline): pc - circle(at bottom left 50pc)
    253 PASS test unit (inline): pc - circle(at bottom right 70pc)
    254 PASS test unit (inline): pc - circle(at right bottom 70pc)
    255 PASS test unit (inline): pc - circle(at right top 50pc)
    256 PASS test unit (inline): pc - circle(at left 50pc center)
    257 PASS test unit (inline): pc - circle(at left 50pc top)
    258 PASS test unit (inline): pc - circle(at left 50pc bottom)
    259 PASS test unit (inline): pc - circle(at top 50pc center)
    260 PASS test unit (inline): pc - circle(at top 50pc left)
    261 PASS test unit (inline): pc - circle(at top 50pc right)
    262 PASS test unit (inline): pc - circle(at bottom 70pc center)
    263 PASS test unit (inline): pc - circle(at bottom 70pc left)
    264 PASS test unit (inline): pc - circle(at bottom 70pc right)
    265 PASS test unit (inline): pc - circle(at right 80pc center)
    266 PASS test unit (inline): pc - circle(at right 80pc bottom)
    267 PASS test unit (inline): pc - circle(at right 80pc top)
     244FAIL test unit (inline): pc - circle(at center top 50pc) assert_equals: expected "circle(at 50% 50pc)" but got ""
     245FAIL test unit (inline): pc - circle(at center left 50pc) assert_equals: expected "circle(at 50pc 50%)" but got ""
     246FAIL test unit (inline): pc - circle(at center right 70pc) assert_equals: expected "circle(at right 70pc top 50%)" but got ""
     247FAIL test unit (inline): pc - circle(at center bottom 70pc) assert_equals: expected "circle(at left 50% bottom 70pc)" but got ""
     248FAIL test unit (inline): pc - circle(at left top 50pc) assert_equals: expected "circle(at 0% 50pc)" but got ""
     249FAIL test unit (inline): pc - circle(at left bottom 70pc) assert_equals: expected "circle(at left 0% bottom 70pc)" but got ""
     250FAIL test unit (inline): pc - circle(at top left 50pc) assert_equals: expected "circle(at 50pc 0%)" but got ""
     251FAIL test unit (inline): pc - circle(at top right 70pc) assert_equals: expected "circle(at right 70pc top 0%)" but got ""
     252FAIL test unit (inline): pc - circle(at bottom left 50pc) assert_equals: expected "circle(at 50pc 100%)" but got ""
     253FAIL test unit (inline): pc - circle(at bottom right 70pc) assert_equals: expected "circle(at right 70pc top 100%)" but got ""
     254FAIL test unit (inline): pc - circle(at right bottom 70pc) assert_equals: expected "circle(at left 100% bottom 70pc)" but got ""
     255FAIL test unit (inline): pc - circle(at right top 50pc) assert_equals: expected "circle(at 100% 50pc)" but got ""
     256FAIL test unit (inline): pc - circle(at left 50pc center) assert_equals: expected "circle(at 50pc 50%)" but got ""
     257FAIL test unit (inline): pc - circle(at left 50pc top) assert_equals: expected "circle(at 50pc 0%)" but got ""
     258FAIL test unit (inline): pc - circle(at left 50pc bottom) assert_equals: expected "circle(at 50pc 100%)" but got ""
     259FAIL test unit (inline): pc - circle(at top 50pc center) assert_equals: expected "circle(at 50% 50pc)" but got ""
     260FAIL test unit (inline): pc - circle(at top 50pc left) assert_equals: expected "circle(at 0% 50pc)" but got ""
     261FAIL test unit (inline): pc - circle(at top 50pc right) assert_equals: expected "circle(at 100% 50pc)" but got ""
     262FAIL test unit (inline): pc - circle(at bottom 70pc center) assert_equals: expected "circle(at left 50% bottom 70pc)" but got ""
     263FAIL test unit (inline): pc - circle(at bottom 70pc left) assert_equals: expected "circle(at left 0% bottom 70pc)" but got ""
     264FAIL test unit (inline): pc - circle(at bottom 70pc right) assert_equals: expected "circle(at left 100% bottom 70pc)" but got ""
     265FAIL test unit (inline): pc - circle(at right 80pc center) assert_equals: expected "circle(at right 80pc top 50%)" but got ""
     266FAIL test unit (inline): pc - circle(at right 80pc bottom) assert_equals: expected "circle(at right 80pc top 100%)" but got ""
     267FAIL test unit (inline): pc - circle(at right 80pc top) assert_equals: expected "circle(at right 80pc top 0%)" but got ""
    268268PASS test unit (inline): pc - circle(at left 50% top 50pc)
    269269PASS test unit (inline): pc - circle(at left 50% bottom 70pc)
     
    300300PASS test unit (inline): em - circle(at center 60em)
    301301PASS test unit (inline): em - circle(at 60em center)
    302 PASS test unit (inline): em - circle(at center top 50em)
    303 PASS test unit (inline): em - circle(at center left 50em)
    304 PASS test unit (inline): em - circle(at center right 70em)
    305 PASS test unit (inline): em - circle(at center bottom 70em)
    306 PASS test unit (inline): em - circle(at left top 50em)
    307 PASS test unit (inline): em - circle(at left bottom 70em)
    308 PASS test unit (inline): em - circle(at top left 50em)
    309 PASS test unit (inline): em - circle(at top right 70em)
    310 PASS test unit (inline): em - circle(at bottom left 50em)
    311 PASS test unit (inline): em - circle(at bottom right 70em)
    312 PASS test unit (inline): em - circle(at right bottom 70em)
    313 PASS test unit (inline): em - circle(at right top 50em)
    314 PASS test unit (inline): em - circle(at left 50em center)
    315 PASS test unit (inline): em - circle(at left 50em top)
    316 PASS test unit (inline): em - circle(at left 50em bottom)
    317 PASS test unit (inline): em - circle(at top 50em center)
    318 PASS test unit (inline): em - circle(at top 50em left)
    319 PASS test unit (inline): em - circle(at top 50em right)
    320 PASS test unit (inline): em - circle(at bottom 70em center)
    321 PASS test unit (inline): em - circle(at bottom 70em left)
    322 PASS test unit (inline): em - circle(at bottom 70em right)
    323 PASS test unit (inline): em - circle(at right 80em center)
    324 PASS test unit (inline): em - circle(at right 80em bottom)
    325 PASS test unit (inline): em - circle(at right 80em top)
     302FAIL test unit (inline): em - circle(at center top 50em) assert_equals: expected "circle(at 50% 50em)" but got ""
     303FAIL test unit (inline): em - circle(at center left 50em) assert_equals: expected "circle(at 50em 50%)" but got ""
     304FAIL test unit (inline): em - circle(at center right 70em) assert_equals: expected "circle(at right 70em top 50%)" but got ""
     305FAIL test unit (inline): em - circle(at center bottom 70em) assert_equals: expected "circle(at left 50% bottom 70em)" but got ""
     306FAIL test unit (inline): em - circle(at left top 50em) assert_equals: expected "circle(at 0% 50em)" but got ""
     307FAIL test unit (inline): em - circle(at left bottom 70em) assert_equals: expected "circle(at left 0% bottom 70em)" but got ""
     308FAIL test unit (inline): em - circle(at top left 50em) assert_equals: expected "circle(at 50em 0%)" but got ""
     309FAIL test unit (inline): em - circle(at top right 70em) assert_equals: expected "circle(at right 70em top 0%)" but got ""
     310FAIL test unit (inline): em - circle(at bottom left 50em) assert_equals: expected "circle(at 50em 100%)" but got ""
     311FAIL test unit (inline): em - circle(at bottom right 70em) assert_equals: expected "circle(at right 70em top 100%)" but got ""
     312FAIL test unit (inline): em - circle(at right bottom 70em) assert_equals: expected "circle(at left 100% bottom 70em)" but got ""
     313FAIL test unit (inline): em - circle(at right top 50em) assert_equals: expected "circle(at 100% 50em)" but got ""
     314FAIL test unit (inline): em - circle(at left 50em center) assert_equals: expected "circle(at 50em 50%)" but got ""
     315FAIL test unit (inline): em - circle(at left 50em top) assert_equals: expected "circle(at 50em 0%)" but got ""
     316FAIL test unit (inline): em - circle(at left 50em bottom) assert_equals: expected "circle(at 50em 100%)" but got ""
     317FAIL test unit (inline): em - circle(at top 50em center) assert_equals: expected "circle(at 50% 50em)" but got ""
     318FAIL test unit (inline): em - circle(at top 50em left) assert_equals: expected "circle(at 0% 50em)" but got ""
     319FAIL test unit (inline): em - circle(at top 50em right) assert_equals: expected "circle(at 100% 50em)" but got ""
     320FAIL test unit (inline): em - circle(at bottom 70em center) assert_equals: expected "circle(at left 50% bottom 70em)" but got ""
     321FAIL test unit (inline): em - circle(at bottom 70em left) assert_equals: expected "circle(at left 0% bottom 70em)" but got ""
     322FAIL test unit (inline): em - circle(at bottom 70em right) assert_equals: expected "circle(at left 100% bottom 70em)" but got ""
     323FAIL test unit (inline): em - circle(at right 80em center) assert_equals: expected "circle(at right 80em top 50%)" but got ""
     324FAIL test unit (inline): em - circle(at right 80em bottom) assert_equals: expected "circle(at right 80em top 100%)" but got ""
     325FAIL test unit (inline): em - circle(at right 80em top) assert_equals: expected "circle(at right 80em top 0%)" but got ""
    326326PASS test unit (inline): em - circle(at left 50% top 50em)
    327327PASS test unit (inline): em - circle(at left 50% bottom 70em)
     
    358358PASS test unit (inline): ex - circle(at center 60ex)
    359359PASS test unit (inline): ex - circle(at 60ex center)
    360 PASS test unit (inline): ex - circle(at center top 50ex)
    361 PASS test unit (inline): ex - circle(at center left 50ex)
    362 PASS test unit (inline): ex - circle(at center right 70ex)
    363 PASS test unit (inline): ex - circle(at center bottom 70ex)
    364 PASS test unit (inline): ex - circle(at left top 50ex)
    365 PASS test unit (inline): ex - circle(at left bottom 70ex)
    366 PASS test unit (inline): ex - circle(at top left 50ex)
    367 PASS test unit (inline): ex - circle(at top right 70ex)
    368 PASS test unit (inline): ex - circle(at bottom left 50ex)
    369 PASS test unit (inline): ex - circle(at bottom right 70ex)
    370 PASS test unit (inline): ex - circle(at right bottom 70ex)
    371 PASS test unit (inline): ex - circle(at right top 50ex)
    372 PASS test unit (inline): ex - circle(at left 50ex center)
    373 PASS test unit (inline): ex - circle(at left 50ex top)
    374 PASS test unit (inline): ex - circle(at left 50ex bottom)
    375 PASS test unit (inline): ex - circle(at top 50ex center)
    376 PASS test unit (inline): ex - circle(at top 50ex left)
    377 PASS test unit (inline): ex - circle(at top 50ex right)
    378 PASS test unit (inline): ex - circle(at bottom 70ex center)
    379 PASS test unit (inline): ex - circle(at bottom 70ex left)
    380 PASS test unit (inline): ex - circle(at bottom 70ex right)
    381 PASS test unit (inline): ex - circle(at right 80ex center)
    382 PASS test unit (inline): ex - circle(at right 80ex bottom)
    383 PASS test unit (inline): ex - circle(at right 80ex top)
     360FAIL test unit (inline): ex - circle(at center top 50ex) assert_equals: expected "circle(at 50% 50ex)" but got ""
     361FAIL test unit (inline): ex - circle(at center left 50ex) assert_equals: expected "circle(at 50ex 50%)" but got ""
     362FAIL test unit (inline): ex - circle(at center right 70ex) assert_equals: expected "circle(at right 70ex top 50%)" but got ""
     363FAIL test unit (inline): ex - circle(at center bottom 70ex) assert_equals: expected "circle(at left 50% bottom 70ex)" but got ""
     364FAIL test unit (inline): ex - circle(at left top 50ex) assert_equals: expected "circle(at 0% 50ex)" but got ""
     365FAIL test unit (inline): ex - circle(at left bottom 70ex) assert_equals: expected "circle(at left 0% bottom 70ex)" but got ""
     366FAIL test unit (inline): ex - circle(at top left 50ex) assert_equals: expected "circle(at 50ex 0%)" but got ""
     367FAIL test unit (inline): ex - circle(at top right 70ex) assert_equals: expected "circle(at right 70ex top 0%)" but got ""
     368FAIL test unit (inline): ex - circle(at bottom left 50ex) assert_equals: expected "circle(at 50ex 100%)" but got ""
     369FAIL test unit (inline): ex - circle(at bottom right 70ex) assert_equals: expected "circle(at right 70ex top 100%)" but got ""
     370FAIL test unit (inline): ex - circle(at right bottom 70ex) assert_equals: expected "circle(at left 100% bottom 70ex)" but got ""
     371FAIL test unit (inline): ex - circle(at right top 50ex) assert_equals: expected "circle(at 100% 50ex)" but got ""
     372FAIL test unit (inline): ex - circle(at left 50ex center) assert_equals: expected "circle(at 50ex 50%)" but got ""
     373FAIL test unit (inline): ex - circle(at left 50ex top) assert_equals: expected "circle(at 50ex 0%)" but got ""
     374FAIL test unit (inline): ex - circle(at left 50ex bottom) assert_equals: expected "circle(at 50ex 100%)" but got ""
     375FAIL test unit (inline): ex - circle(at top 50ex center) assert_equals: expected "circle(at 50% 50ex)" but got ""
     376FAIL test unit (inline): ex - circle(at top 50ex left) assert_equals: expected "circle(at 0% 50ex)" but got ""
     377FAIL test unit (inline): ex - circle(at top 50ex right) assert_equals: expected "circle(at 100% 50ex)" but got ""
     378FAIL test unit (inline): ex - circle(at bottom 70ex center) assert_equals: expected "circle(at left 50% bottom 70ex)" but got ""
     379FAIL test unit (inline): ex - circle(at bottom 70ex left) assert_equals: expected "circle(at left 0% bottom 70ex)" but got ""
     380FAIL test unit (inline): ex - circle(at bottom 70ex right) assert_equals: expected "circle(at left 100% bottom 70ex)" but got ""
     381FAIL test unit (inline): ex - circle(at right 80ex center) assert_equals: expected "circle(at right 80ex top 50%)" but got ""
     382FAIL test unit (inline): ex - circle(at right 80ex bottom) assert_equals: expected "circle(at right 80ex top 100%)" but got ""
     383FAIL test unit (inline): ex - circle(at right 80ex top) assert_equals: expected "circle(at right 80ex top 0%)" but got ""
    384384PASS test unit (inline): ex - circle(at left 50% top 50ex)
    385385PASS test unit (inline): ex - circle(at left 50% bottom 70ex)
     
    416416PASS test unit (inline): ch - circle(at center 60ch)
    417417PASS test unit (inline): ch - circle(at 60ch center)
    418 PASS test unit (inline): ch - circle(at center top 50ch)
    419 PASS test unit (inline): ch - circle(at center left 50ch)
    420 PASS test unit (inline): ch - circle(at center right 70ch)
    421 PASS test unit (inline): ch - circle(at center bottom 70ch)
    422 PASS test unit (inline): ch - circle(at left top 50ch)
    423 PASS test unit (inline): ch - circle(at left bottom 70ch)
    424 PASS test unit (inline): ch - circle(at top left 50ch)
    425 PASS test unit (inline): ch - circle(at top right 70ch)
    426 PASS test unit (inline): ch - circle(at bottom left 50ch)
    427 PASS test unit (inline): ch - circle(at bottom right 70ch)
    428 PASS test unit (inline): ch - circle(at right bottom 70ch)
    429 PASS test unit (inline): ch - circle(at right top 50ch)
    430 PASS test unit (inline): ch - circle(at left 50ch center)
    431 PASS test unit (inline): ch - circle(at left 50ch top)
    432 PASS test unit (inline): ch - circle(at left 50ch bottom)
    433 PASS test unit (inline): ch - circle(at top 50ch center)
    434 PASS test unit (inline): ch - circle(at top 50ch left)
    435 PASS test unit (inline): ch - circle(at top 50ch right)
    436 PASS test unit (inline): ch - circle(at bottom 70ch center)
    437 PASS test unit (inline): ch - circle(at bottom 70ch left)
    438 PASS test unit (inline): ch - circle(at bottom 70ch right)
    439 PASS test unit (inline): ch - circle(at right 80ch center)
    440 PASS test unit (inline): ch - circle(at right 80ch bottom)
    441 PASS test unit (inline): ch - circle(at right 80ch top)
     418FAIL test unit (inline): ch - circle(at center top 50ch) assert_equals: expected "circle(at 50% 50ch)" but got ""
     419FAIL test unit (inline): ch - circle(at center left 50ch) assert_equals: expected "circle(at 50ch 50%)" but got ""
     420FAIL test unit (inline): ch - circle(at center right 70ch) assert_equals: expected "circle(at right 70ch top 50%)" but got ""
     421FAIL test unit (inline): ch - circle(at center bottom 70ch) assert_equals: expected "circle(at left 50% bottom 70ch)" but got ""
     422FAIL test unit (inline): ch - circle(at left top 50ch) assert_equals: expected "circle(at 0% 50ch)" but got ""
     423FAIL test unit (inline): ch - circle(at left bottom 70ch) assert_equals: expected "circle(at left 0% bottom 70ch)" but got ""
     424FAIL test unit (inline): ch - circle(at top left 50ch) assert_equals: expected "circle(at 50ch 0%)" but got ""
     425FAIL test unit (inline): ch - circle(at top right 70ch) assert_equals: expected "circle(at right 70ch top 0%)" but got ""
     426FAIL test unit (inline): ch - circle(at bottom left 50ch) assert_equals: expected "circle(at 50ch 100%)" but got ""
     427FAIL test unit (inline): ch - circle(at bottom right 70ch) assert_equals: expected "circle(at right 70ch top 100%)" but got ""
     428FAIL test unit (inline): ch - circle(at right bottom 70ch) assert_equals: expected "circle(at left 100% bottom 70ch)" but got ""
     429FAIL test unit (inline): ch - circle(at right top 50ch) assert_equals: expected "circle(at 100% 50ch)" but got ""
     430FAIL test unit (inline): ch - circle(at left 50ch center) assert_equals: expected "circle(at 50ch 50%)" but got ""
     431FAIL test unit (inline): ch - circle(at left 50ch top) assert_equals: expected "circle(at 50ch 0%)" but got ""
     432FAIL test unit (inline): ch - circle(at left 50ch bottom) assert_equals: expected "circle(at 50ch 100%)" but got ""
     433FAIL test unit (inline): ch - circle(at top 50ch center) assert_equals: expected "circle(at 50% 50ch)" but got ""
     434FAIL test unit (inline): ch - circle(at top 50ch left) assert_equals: expected "circle(at 0% 50ch)" but got ""
     435FAIL test unit (inline): ch - circle(at top 50ch right) assert_equals: expected "circle(at 100% 50ch)" but got ""
     436FAIL test unit (inline): ch - circle(at bottom 70ch center) assert_equals: expected "circle(at left 50% bottom 70ch)" but got ""
     437FAIL test unit (inline): ch - circle(at bottom 70ch left) assert_equals: expected "circle(at left 0% bottom 70ch)" but got ""
     438FAIL test unit (inline): ch - circle(at bottom 70ch right) assert_equals: expected "circle(at left 100% bottom 70ch)" but got ""
     439FAIL test unit (inline): ch - circle(at right 80ch center) assert_equals: expected "circle(at right 80ch top 50%)" but got ""
     440FAIL test unit (inline): ch - circle(at right 80ch bottom) assert_equals: expected "circle(at right 80ch top 100%)" but got ""
     441FAIL test unit (inline): ch - circle(at right 80ch top) assert_equals: expected "circle(at right 80ch top 0%)" but got ""
    442442PASS test unit (inline): ch - circle(at left 50% top 50ch)
    443443PASS test unit (inline): ch - circle(at left 50% bottom 70ch)
     
    474474PASS test unit (inline): rem - circle(at center 60rem)
    475475PASS test unit (inline): rem - circle(at 60rem center)
    476 PASS test unit (inline): rem - circle(at center top 50rem)
    477 PASS test unit (inline): rem - circle(at center left 50rem)
    478 PASS test unit (inline): rem - circle(at center right 70rem)
    479 PASS test unit (inline): rem - circle(at center bottom 70rem)
    480 PASS test unit (inline): rem - circle(at left top 50rem)
    481 PASS test unit (inline): rem - circle(at left bottom 70rem)
    482 PASS test unit (inline): rem - circle(at top left 50rem)
    483 PASS test unit (inline): rem - circle(at top right 70rem)
    484 PASS test unit (inline): rem - circle(at bottom left 50rem)
    485 PASS test unit (inline): rem - circle(at bottom right 70rem)
    486 PASS test unit (inline): rem - circle(at right bottom 70rem)
    487 PASS test unit (inline): rem - circle(at right top 50rem)
    488 PASS test unit (inline): rem - circle(at left 50rem center)
    489 PASS test unit (inline): rem - circle(at left 50rem top)
    490 PASS test unit (inline): rem - circle(at left 50rem bottom)
    491 PASS test unit (inline): rem - circle(at top 50rem center)
    492 PASS test unit (inline): rem - circle(at top 50rem left)
    493 PASS test unit (inline): rem - circle(at top 50rem right)
    494 PASS test unit (inline): rem - circle(at bottom 70rem center)
    495 PASS test unit (inline): rem - circle(at bottom 70rem left)
    496 PASS test unit (inline): rem - circle(at bottom 70rem right)
    497 PASS test unit (inline): rem - circle(at right 80rem center)
    498 PASS test unit (inline): rem - circle(at right 80rem bottom)
    499 PASS test unit (inline): rem - circle(at right 80rem top)
     476FAIL test unit (inline): rem - circle(at center top 50rem) assert_equals: expected "circle(at 50% 50rem)" but got ""
     477FAIL test unit (inline): rem - circle(at center left 50rem) assert_equals: expected "circle(at 50rem 50%)" but got ""
     478FAIL test unit (inline): rem - circle(at center right 70rem) assert_equals: expected "circle(at right 70rem top 50%)" but got ""
     479FAIL test unit (inline): rem - circle(at center bottom 70rem) assert_equals: expected "circle(at left 50% bottom 70rem)" but got ""
     480FAIL test unit (inline): rem - circle(at left top 50rem) assert_equals: expected "circle(at 0% 50rem)" but got ""
     481FAIL test unit (inline): rem - circle(at left bottom 70rem) assert_equals: expected "circle(at left 0% bottom 70rem)" but got ""
     482FAIL test unit (inline): rem - circle(at top left 50rem) assert_equals: expected "circle(at 50rem 0%)" but got ""
     483FAIL test unit (inline): rem - circle(at top right 70rem) assert_equals: expected "circle(at right 70rem top 0%)" but got ""
     484FAIL test unit (inline): rem - circle(at bottom left 50rem) assert_equals: expected "circle(at 50rem 100%)" but got ""
     485FAIL test unit (inline): rem - circle(at bottom right 70rem) assert_equals: expected "circle(at right 70rem top 100%)" but got ""
     486FAIL test unit (inline): rem - circle(at right bottom 70rem) assert_equals: expected "circle(at left 100% bottom 70rem)" but got ""
     487FAIL test unit (inline): rem - circle(at right top 50rem) assert_equals: expected "circle(at 100% 50rem)" but got ""
     488FAIL test unit (inline): rem - circle(at left 50rem center) assert_equals: expected "circle(at 50rem 50%)" but got ""
     489FAIL test unit (inline): rem - circle(at left 50rem top) assert_equals: expected "circle(at 50rem 0%)" but got ""
     490FAIL test unit (inline): rem - circle(at left 50rem bottom) assert_equals: expected "circle(at 50rem 100%)" but got ""
     491FAIL test unit (inline): rem - circle(at top 50rem center) assert_equals: expected "circle(at 50% 50rem)" but got ""
     492FAIL test unit (inline): rem - circle(at top 50rem left) assert_equals: expected "circle(at 0% 50rem)" but got ""
     493FAIL test unit (inline): rem - circle(at top 50rem right) assert_equals: expected "circle(at 100% 50rem)" but got ""
     494FAIL test unit (inline): rem - circle(at bottom 70rem center) assert_equals: expected "circle(at left 50% bottom 70rem)" but got ""
     495FAIL test unit (inline): rem - circle(at bottom 70rem left) assert_equals: expected "circle(at left 0% bottom 70rem)" but got ""
     496FAIL test unit (inline): rem - circle(at bottom 70rem right) assert_equals: expected "circle(at left 100% bottom 70rem)" but got ""
     497FAIL test unit (inline): rem - circle(at right 80rem center) assert_equals: expected "circle(at right 80rem top 50%)" but got ""
     498FAIL test unit (inline): rem - circle(at right 80rem bottom) assert_equals: expected "circle(at right 80rem top 100%)" but got ""
     499FAIL test unit (inline): rem - circle(at right 80rem top) assert_equals: expected "circle(at right 80rem top 0%)" but got ""
    500500PASS test unit (inline): rem - circle(at left 50% top 50rem)
    501501PASS test unit (inline): rem - circle(at left 50% bottom 70rem)
     
    532532PASS test unit (inline): vw - circle(at center 60vw)
    533533PASS test unit (inline): vw - circle(at 60vw center)
    534 PASS test unit (inline): vw - circle(at center top 50vw)
    535 PASS test unit (inline): vw - circle(at center left 50vw)
    536 PASS test unit (inline): vw - circle(at center right 70vw)
    537 PASS test unit (inline): vw - circle(at center bottom 70vw)
    538 PASS test unit (inline): vw - circle(at left top 50vw)
    539 PASS test unit (inline): vw - circle(at left bottom 70vw)
    540 PASS test unit (inline): vw - circle(at top left 50vw)
    541 PASS test unit (inline): vw - circle(at top right 70vw)
    542 PASS test unit (inline): vw - circle(at bottom left 50vw)
    543 PASS test unit (inline): vw - circle(at bottom right 70vw)
    544 PASS test unit (inline): vw - circle(at right bottom 70vw)
    545 PASS test unit (inline): vw - circle(at right top 50vw)
    546 PASS test unit (inline): vw - circle(at left 50vw center)
    547 PASS test unit (inline): vw - circle(at left 50vw top)
    548 PASS test unit (inline): vw - circle(at left 50vw bottom)
    549 PASS test unit (inline): vw - circle(at top 50vw center)
    550 PASS test unit (inline): vw - circle(at top 50vw left)
    551 PASS test unit (inline): vw - circle(at top 50vw right)
    552 PASS test unit (inline): vw - circle(at bottom 70vw center)
    553 PASS test unit (inline): vw - circle(at bottom 70vw left)
    554 PASS test unit (inline): vw - circle(at bottom 70vw right)
    555 PASS test unit (inline): vw - circle(at right 80vw center)
    556 PASS test unit (inline): vw - circle(at right 80vw bottom)
    557 PASS test unit (inline): vw - circle(at right 80vw top)
     534FAIL test unit (inline): vw - circle(at center top 50vw) assert_equals: expected "circle(at 50% 50vw)" but got ""
     535FAIL test unit (inline): vw - circle(at center left 50vw) assert_equals: expected "circle(at 50vw 50%)" but got ""
     536FAIL test unit (inline): vw - circle(at center right 70vw) assert_equals: expected "circle(at right 70vw top 50%)" but got ""
     537FAIL test unit (inline): vw - circle(at center bottom 70vw) assert_equals: expected "circle(at left 50% bottom 70vw)" but got ""
     538FAIL test unit (inline): vw - circle(at left top 50vw) assert_equals: expected "circle(at 0% 50vw)" but got ""
     539FAIL test unit (inline): vw - circle(at left bottom 70vw) assert_equals: expected "circle(at left 0% bottom 70vw)" but got ""
     540FAIL test unit (inline): vw - circle(at top left 50vw) assert_equals: expected "circle(at 50vw 0%)" but got ""
     541FAIL test unit (inline): vw - circle(at top right 70vw) assert_equals: expected "circle(at right 70vw top 0%)" but got ""
     542FAIL test unit (inline): vw - circle(at bottom left 50vw) assert_equals: expected "circle(at 50vw 100%)" but got ""
     543FAIL test unit (inline): vw - circle(at bottom right 70vw) assert_equals: expected "circle(at right 70vw top 100%)" but got ""
     544FAIL test unit (inline): vw - circle(at right bottom 70vw) assert_equals: expected "circle(at left 100% bottom 70vw)" but got ""
     545FAIL test unit (inline): vw - circle(at right top 50vw) assert_equals: expected "circle(at 100% 50vw)" but got ""
     546FAIL test unit (inline): vw - circle(at left 50vw center) assert_equals: expected "circle(at 50vw 50%)" but got ""
     547FAIL test unit (inline): vw - circle(at left 50vw top) assert_equals: expected "circle(at 50vw 0%)" but got ""
     548FAIL test unit (inline): vw - circle(at left 50vw bottom) assert_equals: expected "circle(at 50vw 100%)" but got ""
     549FAIL test unit (inline): vw - circle(at top 50vw center) assert_equals: expected "circle(at 50% 50vw)" but got ""
     550FAIL test unit (inline): vw - circle(at top 50vw left) assert_equals: expected "circle(at 0% 50vw)" but got ""
     551FAIL test unit (inline): vw - circle(at top 50vw right) assert_equals: expected "circle(at 100% 50vw)" but got ""
     552FAIL test unit (inline): vw - circle(at bottom 70vw center) assert_equals: expected "circle(at left 50% bottom 70vw)" but got ""
     553FAIL test unit (inline): vw - circle(at bottom 70vw left) assert_equals: expected "circle(at left 0% bottom 70vw)" but got ""
     554FAIL test unit (inline): vw - circle(at bottom 70vw right) assert_equals: expected "circle(at left 100% bottom 70vw)" but got ""
     555FAIL test unit (inline): vw - circle(at right 80vw center) assert_equals: expected "circle(at right 80vw top 50%)" but got ""
     556FAIL test unit (inline): vw - circle(at right 80vw bottom) assert_equals: expected "circle(at right 80vw top 100%)" but got ""
     557FAIL test unit (inline): vw - circle(at right 80vw top) assert_equals: expected "circle(at right 80vw top 0%)" but got ""
    558558PASS test unit (inline): vw - circle(at left 50% top 50vw)
    559559PASS test unit (inline): vw - circle(at left 50% bottom 70vw)
     
    590590PASS test unit (inline): vh - circle(at center 60vh)
    591591PASS test unit (inline): vh - circle(at 60vh center)
    592 PASS test unit (inline): vh - circle(at center top 50vh)
    593 PASS test unit (inline): vh - circle(at center left 50vh)
    594 PASS test unit (inline): vh - circle(at center right 70vh)
    595 PASS test unit (inline): vh - circle(at center bottom 70vh)
    596 PASS test unit (inline): vh - circle(at left top 50vh)
    597 PASS test unit (inline): vh - circle(at left bottom 70vh)
    598 PASS test unit (inline): vh - circle(at top left 50vh)
    599 PASS test unit (inline): vh - circle(at top right 70vh)
    600 PASS test unit (inline): vh - circle(at bottom left 50vh)
    601 PASS test unit (inline): vh - circle(at bottom right 70vh)
    602 PASS test unit (inline): vh - circle(at right bottom 70vh)
    603 PASS test unit (inline): vh - circle(at right top 50vh)
    604 PASS test unit (inline): vh - circle(at left 50vh center)
    605 PASS test unit (inline): vh - circle(at left 50vh top)
    606 PASS test unit (inline): vh - circle(at left 50vh bottom)
    607 PASS test unit (inline): vh - circle(at top 50vh center)
    608 PASS test unit (inline): vh - circle(at top 50vh left)
    609 PASS test unit (inline): vh - circle(at top 50vh right)
    610 PASS test unit (inline): vh - circle(at bottom 70vh center)
    611 PASS test unit (inline): vh - circle(at bottom 70vh left)
    612 PASS test unit (inline): vh - circle(at bottom 70vh right)
    613 PASS test unit (inline): vh - circle(at right 80vh center)
    614 PASS test unit (inline): vh - circle(at right 80vh bottom)
    615 PASS test unit (inline): vh - circle(at right 80vh top)
     592FAIL test unit (inline): vh - circle(at center top 50vh) assert_equals: expected "circle(at 50% 50vh)" but got ""
     593FAIL test unit (inline): vh - circle(at center left 50vh) assert_equals: expected "circle(at 50vh 50%)" but got ""
     594FAIL test unit (inline): vh - circle(at center right 70vh) assert_equals: expected "circle(at right 70vh top 50%)" but got ""
     595FAIL test unit (inline): vh - circle(at center bottom 70vh) assert_equals: expected "circle(at left 50% bottom 70vh)" but got ""
     596FAIL test unit (inline): vh - circle(at left top 50vh) assert_equals: expected "circle(at 0% 50vh)" but got ""
     597FAIL test unit (inline): vh - circle(at left bottom 70vh) assert_equals: expected "circle(at left 0% bottom 70vh)" but got ""
     598FAIL test unit (inline): vh - circle(at top left 50vh) assert_equals: expected "circle(at 50vh 0%)" but got ""
     599FAIL test unit (inline): vh - circle(at top right 70vh) assert_equals: expected "circle(at right 70vh top 0%)" but got ""
     600FAIL test unit (inline): vh - circle(at bottom left 50vh) assert_equals: expected "circle(at 50vh 100%)" but got ""
     601FAIL test unit (inline): vh - circle(at bottom right 70vh) assert_equals: expected "circle(at right 70vh top 100%)" but got ""
     602FAIL test unit (inline): vh - circle(at right bottom 70vh) assert_equals: expected "circle(at left 100% bottom 70vh)" but got ""
     603FAIL test unit (inline): vh - circle(at right top 50vh) assert_equals: expected "circle(at 100% 50vh)" but got ""
     604FAIL test unit (inline): vh - circle(at left 50vh center) assert_equals: expected "circle(at 50vh 50%)" but got ""
     605FAIL test unit (inline): vh - circle(at left 50vh top) assert_equals: expected "circle(at 50vh 0%)" but got ""
     606FAIL test unit (inline): vh - circle(at left 50vh bottom) assert_equals: expected "circle(at 50vh 100%)" but got ""
     607FAIL test unit (inline): vh - circle(at top 50vh center) assert_equals: expected "circle(at 50% 50vh)" but got ""
     608FAIL test unit (inline): vh - circle(at top 50vh left) assert_equals: expected "circle(at 0% 50vh)" but got ""
     609FAIL test unit (inline): vh - circle(at top 50vh right) assert_equals: expected "circle(at 100% 50vh)" but got ""
     610FAIL test unit (inline): vh - circle(at bottom 70vh center) assert_equals: expected "circle(at left 50% bottom 70vh)" but got ""
     611FAIL test unit (inline): vh - circle(at bottom 70vh left) assert_equals: expected "circle(at left 0% bottom 70vh)" but got ""
     612FAIL test unit (inline): vh - circle(at bottom 70vh right) assert_equals: expected "circle(at left 100% bottom 70vh)" but got ""
     613FAIL test unit (inline): vh - circle(at right 80vh center) assert_equals: expected "circle(at right 80vh top 50%)" but got ""
     614FAIL test unit (inline): vh - circle(at right 80vh bottom) assert_equals: expected "circle(at right 80vh top 100%)" but got ""
     615FAIL test unit (inline): vh - circle(at right 80vh top) assert_equals: expected "circle(at right 80vh top 0%)" but got ""
    616616PASS test unit (inline): vh - circle(at left 50% top 50vh)
    617617PASS test unit (inline): vh - circle(at left 50% bottom 70vh)
     
    648648PASS test unit (inline): vmin - circle(at center 60vmin)
    649649PASS test unit (inline): vmin - circle(at 60vmin center)
    650 PASS test unit (inline): vmin - circle(at center top 50vmin)
    651 PASS test unit (inline): vmin - circle(at center left 50vmin)
    652 PASS test unit (inline): vmin - circle(at center right 70vmin)
    653 PASS test unit (inline): vmin - circle(at center bottom 70vmin)
    654 PASS test unit (inline): vmin - circle(at left top 50vmin)
    655 PASS test unit (inline): vmin - circle(at left bottom 70vmin)
    656 PASS test unit (inline): vmin - circle(at top left 50vmin)
    657 PASS test unit (inline): vmin - circle(at top right 70vmin)
    658 PASS test unit (inline): vmin - circle(at bottom left 50vmin)
    659 PASS test unit (inline): vmin - circle(at bottom right 70vmin)
    660 PASS test unit (inline): vmin - circle(at right bottom 70vmin)
    661 PASS test unit (inline): vmin - circle(at right top 50vmin)
    662 PASS test unit (inline): vmin - circle(at left 50vmin center)
    663 PASS test unit (inline): vmin - circle(at left 50vmin top)
    664 PASS test unit (inline): vmin - circle(at left 50vmin bottom)
    665 PASS test unit (inline): vmin - circle(at top 50vmin center)
    666 PASS test unit (inline): vmin - circle(at top 50vmin left)
    667 PASS test unit (inline): vmin - circle(at top 50vmin right)
    668 PASS test unit (inline): vmin - circle(at bottom 70vmin center)
    669 PASS test unit (inline): vmin - circle(at bottom 70vmin left)
    670 PASS test unit (inline): vmin - circle(at bottom 70vmin right)
    671 PASS test unit (inline): vmin - circle(at right 80vmin center)
    672 PASS test unit (inline): vmin - circle(at right 80vmin bottom)
    673 PASS test unit (inline): vmin - circle(at right 80vmin top)
     650FAIL test unit (inline): vmin - circle(at center top 50vmin) assert_equals: expected "circle(at 50% 50vmin)" but got ""
     651FAIL test unit (inline): vmin - circle(at center left 50vmin) assert_equals: expected "circle(at 50vmin 50%)" but got ""
     652FAIL test unit (inline): vmin - circle(at center right 70vmin) assert_equals: expected "circle(at right 70vmin top 50%)" but got ""
     653FAIL test unit (inline): vmin - circle(at center bottom 70vmin) assert_equals: expected "circle(at left 50% bottom 70vmin)" but got ""
     654FAIL test unit (inline): vmin - circle(at left top 50vmin) assert_equals: expected "circle(at 0% 50vmin)" but got ""
     655FAIL test unit (inline): vmin - circle(at left bottom 70vmin) assert_equals: expected "circle(at left 0% bottom 70vmin)" but got ""
     656FAIL test unit (inline): vmin - circle(at top left 50vmin) assert_equals: expected "circle(at 50vmin 0%)" but got ""
     657FAIL test unit (inline): vmin - circle(at top right 70vmin) assert_equals: expected "circle(at right 70vmin top 0%)" but got ""
     658FAIL test unit (inline): vmin - circle(at bottom left 50vmin) assert_equals: expected "circle(at 50vmin 100%)" but got ""
     659FAIL test unit (inline): vmin - circle(at bottom right 70vmin) assert_equals: expected "circle(at right 70vmin top 100%)" but got ""
     660FAIL test unit (inline): vmin - circle(at right bottom 70vmin) assert_equals: expected "circle(at left 100% bottom 70vmin)" but got ""
     661FAIL test unit (inline): vmin - circle(at right top 50vmin) assert_equals: expected "circle(at 100% 50vmin)" but got ""
     662FAIL test unit (inline): vmin - circle(at left 50vmin center) assert_equals: expected "circle(at 50vmin 50%)" but got ""
     663FAIL test unit (inline): vmin - circle(at left 50vmin top) assert_equals: expected "circle(at 50vmin 0%)" but got ""
     664FAIL test unit (inline): vmin - circle(at left 50vmin bottom) assert_equals: expected "circle(at 50vmin 100%)" but got ""
     665FAIL test unit (inline): vmin - circle(at top 50vmin center) assert_equals: expected "circle(at 50% 50vmin)" but got ""
     666FAIL test unit (inline): vmin - circle(at top 50vmin left) assert_equals: expected "circle(at 0% 50vmin)" but got ""
     667FAIL test unit (inline): vmin - circle(at top 50vmin right) assert_equals: expected "circle(at 100% 50vmin)" but got ""
     668FAIL test unit (inline): vmin - circle(at bottom 70vmin center) assert_equals: expected "circle(at left 50% bottom 70vmin)" but got ""
     669FAIL test unit (inline): vmin - circle(at bottom 70vmin left) assert_equals: expected "circle(at left 0% bottom 70vmin)" but got ""
     670FAIL test unit (inline): vmin - circle(at bottom 70vmin right) assert_equals: expected "circle(at left 100% bottom 70vmin)" but got ""
     671FAIL test unit (inline): vmin - circle(at right 80vmin center) assert_equals: expected "circle(at right 80vmin top 50%)" but got ""
     672FAIL test unit (inline): vmin - circle(at right 80vmin bottom) assert_equals: expected "circle(at right 80vmin top 100%)" but got ""
     673FAIL test unit (inline): vmin - circle(at right 80vmin top) assert_equals: expected "circle(at right 80vmin top 0%)" but got ""
    674674PASS test unit (inline): vmin - circle(at left 50% top 50vmin)
    675675PASS test unit (inline): vmin - circle(at left 50% bottom 70vmin)
     
    706706PASS test unit (inline): vmax - circle(at center 60vmax)
    707707PASS test unit (inline): vmax - circle(at 60vmax center)
    708 PASS test unit (inline): vmax - circle(at center top 50vmax)
    709 PASS test unit (inline): vmax - circle(at center left 50vmax)
    710 PASS test unit (inline): vmax - circle(at center right 70vmax)
    711 PASS test unit (inline): vmax - circle(at center bottom 70vmax)
    712 PASS test unit (inline): vmax - circle(at left top 50vmax)
    713 PASS test unit (inline): vmax - circle(at left bottom 70vmax)
    714 PASS test unit (inline): vmax - circle(at top left 50vmax)
    715 PASS test unit (inline): vmax - circle(at top right 70vmax)
    716 PASS test unit (inline): vmax - circle(at bottom left 50vmax)
    717 PASS test unit (inline): vmax - circle(at bottom right 70vmax)
    718 PASS test unit (inline): vmax - circle(at right bottom 70vmax)
    719 PASS test unit (inline): vmax - circle(at right top 50vmax)
    720 PASS test unit (inline): vmax - circle(at left 50vmax center)
    721 PASS test unit (inline): vmax - circle(at left 50vmax top)
    722 PASS test unit (inline): vmax - circle(at left 50vmax bottom)
    723 PASS test unit (inline): vmax - circle(at top 50vmax center)
    724 PASS test unit (inline): vmax - circle(at top 50vmax left)
    725 PASS test unit (inline): vmax - circle(at top 50vmax right)
    726 PASS test unit (inline): vmax - circle(at bottom 70vmax center)
    727 PASS test unit (inline): vmax - circle(at bottom 70vmax left)
    728 PASS test unit (inline): vmax - circle(at bottom 70vmax right)
    729 PASS test unit (inline): vmax - circle(at right 80vmax center)
    730 PASS test unit (inline): vmax - circle(at right 80vmax bottom)
    731 PASS test unit (inline): vmax - circle(at right 80vmax top)
     708FAIL test unit (inline): vmax - circle(at center top 50vmax) assert_equals: expected "circle(at 50% 50vmax)" but got ""
     709FAIL test unit (inline): vmax - circle(at center left 50vmax) assert_equals: expected "circle(at 50vmax 50%)" but got ""
     710FAIL test unit (inline): vmax - circle(at center right 70vmax) assert_equals: expected "circle(at right 70vmax top 50%)" but got ""
     711FAIL test unit (inline): vmax - circle(at center bottom 70vmax) assert_equals: expected "circle(at left 50% bottom 70vmax)" but got ""
     712FAIL test unit (inline): vmax - circle(at left top 50vmax) assert_equals: expected "circle(at 0% 50vmax)" but got ""
     713FAIL test unit (inline): vmax - circle(at left bottom 70vmax) assert_equals: expected "circle(at left 0% bottom 70vmax)" but got ""
     714FAIL test unit (inline): vmax - circle(at top left 50vmax) assert_equals: expected "circle(at 50vmax 0%)" but got ""
     715FAIL test unit (inline): vmax - circle(at top right 70vmax) assert_equals: expected "circle(at right 70vmax top 0%)" but got ""
     716FAIL test unit (inline): vmax - circle(at bottom left 50vmax) assert_equals: expected "circle(at 50vmax 100%)" but got ""
     717FAIL test unit (inline): vmax - circle(at bottom right 70vmax) assert_equals: expected "circle(at right 70vmax top 100%)" but got ""
     718FAIL test unit (inline): vmax - circle(at right bottom 70vmax) assert_equals: expected "circle(at left 100% bottom 70vmax)" but got ""
     719FAIL test unit (inline): vmax - circle(at right top 50vmax) assert_equals: expected "circle(at 100% 50vmax)" but got ""
     720FAIL test unit (inline): vmax - circle(at left 50vmax center) assert_equals: expected "circle(at 50vmax 50%)" but got ""
     721FAIL test unit (inline): vmax - circle(at left 50vmax top) assert_equals: expected "circle(at 50vmax 0%)" but got ""
     722FAIL test unit (inline): vmax - circle(at left 50vmax bottom) assert_equals: expected "circle(at 50vmax 100%)" but got ""
     723FAIL test unit (inline): vmax - circle(at top 50vmax center) assert_equals: expected "circle(at 50% 50vmax)" but got ""
     724FAIL test unit (inline): vmax - circle(at top 50vmax left) assert_equals: expected "circle(at 0% 50vmax)" but got ""
     725FAIL test unit (inline): vmax - circle(at top 50vmax right) assert_equals: expected "circle(at 100% 50vmax)" but got ""
     726FAIL test unit (inline): vmax - circle(at bottom 70vmax center) assert_equals: expected "circle(at left 50% bottom 70vmax)" but got ""
     727FAIL test unit (inline): vmax - circle(at bottom 70vmax left) assert_equals: expected "circle(at left 0% bottom 70vmax)" but got ""
     728FAIL test unit (inline): vmax - circle(at bottom 70vmax right) assert_equals: expected "circle(at left 100% bottom 70vmax)" but got ""
     729FAIL test unit (inline): vmax - circle(at right 80vmax center) assert_equals: expected "circle(at right 80vmax top 50%)" but got ""
     730FAIL test unit (inline): vmax - circle(at right 80vmax bottom) assert_equals: expected "circle(at right 80vmax top 100%)" but got ""
     731FAIL test unit (inline): vmax - circle(at right 80vmax top) assert_equals: expected "circle(at right 80vmax top 0%)" but got ""
    732732PASS test unit (inline): vmax - circle(at left 50% top 50vmax)
    733733PASS test unit (inline): vmax - circle(at left 50% bottom 70vmax)
     
    764764PASS test unit (computed): cm - circle(at center 60cm)
    765765PASS test unit (computed): cm - circle(at 60cm center)
    766 PASS test unit (computed): cm - circle(at center top 50cm)
    767 PASS test unit (computed): cm - circle(at center left 50cm)
    768 PASS test unit (computed): cm - circle(at center right 70cm)
    769 PASS test unit (computed): cm - circle(at center bottom 70cm)
    770 PASS test unit (computed): cm - circle(at left top 50cm)
    771 PASS test unit (computed): cm - circle(at left bottom 70cm)
    772 PASS test unit (computed): cm - circle(at top left 50cm)
    773 PASS test unit (computed): cm - circle(at top right 70cm)
    774 PASS test unit (computed): cm - circle(at bottom left 50cm)
    775 PASS test unit (computed): cm - circle(at bottom right 70cm)
    776 PASS test unit (computed): cm - circle(at right bottom 70cm)
    777 PASS test unit (computed): cm - circle(at right top 50cm)
    778 PASS test unit (computed): cm - circle(at left 50cm center)
    779 PASS test unit (computed): cm - circle(at left 50cm top)
    780 PASS test unit (computed): cm - circle(at left 50cm bottom)
    781 PASS test unit (computed): cm - circle(at top 50cm center)
    782 PASS test unit (computed): cm - circle(at top 50cm left)
    783 PASS test unit (computed): cm - circle(at top 50cm right)
    784 PASS test unit (computed): cm - circle(at bottom 70cm center)
    785 PASS test unit (computed): cm - circle(at bottom 70cm left)
    786 PASS test unit (computed): cm - circle(at bottom 70cm right)
    787 PASS test unit (computed): cm - circle(at right 80cm center)
    788 PASS test unit (computed): cm - circle(at right 80cm bottom)
    789 PASS test unit (computed): cm - circle(at right 80cm top)
     766FAIL test unit (computed): cm - circle(at center top 50cm) assert_equals: expected "circle(at 50% 1889.764px)" but got "none"
     767FAIL test unit (computed): cm - circle(at center left 50cm) assert_equals: expected "circle(at 1889.764px 50%)" but got "none"
     768FAIL test unit (computed): cm - circle(at center right 70cm) assert_equals: expected "circle(at right 2645.669px top 50%)" but got "none"
     769FAIL test unit (computed): cm - circle(at center bottom 70cm) assert_equals: expected "circle(at left 50% bottom 2645.669px)" but got "none"
     770FAIL test unit (computed): cm - circle(at left top 50cm) assert_equals: expected "circle(at 0% 1889.764px)" but got "none"
     771FAIL test unit (computed): cm - circle(at left bottom 70cm) assert_equals: expected "circle(at left 0% bottom 2645.669px)" but got "none"
     772FAIL test unit (computed): cm - circle(at top left 50cm) assert_equals: expected "circle(at 1889.764px 0%)" but got "none"
     773FAIL test unit (computed): cm - circle(at top right 70cm) assert_equals: expected "circle(at right 2645.669px top 0%)" but got "none"
     774FAIL test unit (computed): cm - circle(at bottom left 50cm) assert_equals: expected "circle(at 1889.764px 100%)" but got "none"
     775FAIL test unit (computed): cm - circle(at bottom right 70cm) assert_equals: expected "circle(at right 2645.669px top 100%)" but got "none"
     776FAIL test unit (computed): cm - circle(at right bottom 70cm) assert_equals: expected "circle(at left 100% bottom 2645.669px)" but got "none"
     777FAIL test unit (computed): cm - circle(at right top 50cm) assert_equals: expected "circle(at 100% 1889.764px)" but got "none"
     778FAIL test unit (computed): cm - circle(at left 50cm center) assert_equals: expected "circle(at 1889.764px 50%)" but got "none"
     779FAIL test unit (computed): cm - circle(at left 50cm top) assert_equals: expected "circle(at 1889.764px 0%)" but got "none"
     780FAIL test unit (computed): cm - circle(at left 50cm bottom) assert_equals: expected "circle(at 1889.764px 100%)" but got "none"
     781FAIL test unit (computed): cm - circle(at top 50cm center) assert_equals: expected "circle(at 50% 1889.764px)" but got "none"
     782FAIL test unit (computed): cm - circle(at top 50cm left) assert_equals: expected "circle(at 0% 1889.764px)" but got "none"
     783FAIL test unit (computed): cm - circle(at top 50cm right) assert_equals: expected "circle(at 100% 1889.764px)" but got "none"
     784FAIL test unit (computed): cm - circle(at bottom 70cm center) assert_equals: expected "circle(at left 50% bottom 2645.669px)" but got "none"
     785FAIL test unit (computed): cm - circle(at bottom 70cm left) assert_equals: expected "circle(at left 0% bottom 2645.669px)" but got "none"
     786FAIL test unit (computed): cm - circle(at bottom 70cm right) assert_equals: expected "circle(at left 100% bottom 2645.669px)" but got "none"
     787FAIL test unit (computed): cm - circle(at right 80cm center) assert_equals: expected "circle(at right 3023.622px top 50%)" but got "none"
     788FAIL test unit (computed): cm - circle(at right 80cm bottom) assert_equals: expected "circle(at right 3023.622px top 100%)" but got "none"
     789FAIL test unit (computed): cm - circle(at right 80cm top) assert_equals: expected "circle(at right 3023.622px top 0%)" but got "none"
    790790PASS test unit (computed): cm - circle(at left 50% top 50cm)
    791791PASS test unit (computed): cm - circle(at left 50% bottom 70cm)
     
    822822PASS test unit (computed): mm - circle(at center 60mm)
    823823PASS test unit (computed): mm - circle(at 60mm center)
    824 PASS test unit (computed): mm - circle(at center top 50mm)
    825 PASS test unit (computed): mm - circle(at center left 50mm)
    826 PASS test unit (computed): mm - circle(at center right 70mm)
    827 PASS test unit (computed): mm - circle(at center bottom 70mm)
    828 PASS test unit (computed): mm - circle(at left top 50mm)
    829 PASS test unit (computed): mm - circle(at left bottom 70mm)
    830 PASS test unit (computed): mm - circle(at top left 50mm)
    831 PASS test unit (computed): mm - circle(at top right 70mm)
    832 PASS test unit (computed): mm - circle(at bottom left 50mm)
    833 PASS test unit (computed): mm - circle(at bottom right 70mm)
    834 PASS test unit (computed): mm - circle(at right bottom 70mm)
    835 PASS test unit (computed): mm - circle(at right top 50mm)
    836 PASS test unit (computed): mm - circle(at left 50mm center)
    837 PASS test unit (computed): mm - circle(at left 50mm top)
    838 PASS test unit (computed): mm - circle(at left 50mm bottom)
    839 PASS test unit (computed): mm - circle(at top 50mm center)
    840 PASS test unit (computed): mm - circle(at top 50mm left)
    841 PASS test unit (computed): mm - circle(at top 50mm right)
    842 PASS test unit (computed): mm - circle(at bottom 70mm center)
    843 PASS test unit (computed): mm - circle(at bottom 70mm left)
    844 PASS test unit (computed): mm - circle(at bottom 70mm right)
    845 PASS test unit (computed): mm - circle(at right 80mm center)
    846 PASS test unit (computed): mm - circle(at right 80mm bottom)
    847 PASS test unit (computed): mm - circle(at right 80mm top)
     824FAIL test unit (computed): mm - circle(at center top 50mm) assert_equals: expected "circle(at 50% 188.976px)" but got "none"
     825FAIL test unit (computed): mm - circle(at center left 50mm) assert_equals: expected "circle(at 188.976px 50%)" but got "none"
     826FAIL test unit (computed): mm - circle(at center right 70mm) assert_equals: expected "circle(at right 264.567px top 50%)" but got "none"
     827FAIL test unit (computed): mm - circle(at center bottom 70mm) assert_equals: expected "circle(at left 50% bottom 264.567px)" but got "none"
     828FAIL test unit (computed): mm - circle(at left top 50mm) assert_equals: expected "circle(at 0% 188.976px)" but got "none"
     829FAIL test unit (computed): mm - circle(at left bottom 70mm) assert_equals: expected "circle(at left 0% bottom 264.567px)" but got "none"
     830FAIL test unit (computed): mm - circle(at top left 50mm) assert_equals: expected "circle(at 188.976px 0%)" but got "none"
     831FAIL test unit (computed): mm - circle(at top right 70mm) assert_equals: expected "circle(at right 264.567px top 0%)" but got "none"
     832FAIL test unit (computed): mm - circle(at bottom left 50mm) assert_equals: expected "circle(at 188.976px 100%)" but got "none"
     833FAIL test unit (computed): mm - circle(at bottom right 70mm) assert_equals: expected "circle(at right 264.567px top 100%)" but got "none"
     834FAIL test unit (computed): mm - circle(at right bottom 70mm) assert_equals: expected "circle(at left 100% bottom 264.567px)" but got "none"
     835FAIL test unit (computed): mm - circle(at right top 50mm) assert_equals: expected "circle(at 100% 188.976px)" but got "none"
     836FAIL test unit (computed): mm - circle(at left 50mm center) assert_equals: expected "circle(at 188.976px 50%)" but got "none"
     837FAIL test unit (computed): mm - circle(at left 50mm top) assert_equals: expected "circle(at 188.976px 0%)" but got "none"
     838FAIL test unit (computed): mm - circle(at left 50mm bottom) assert_equals: expected "circle(at 188.976px 100%)" but got "none"
     839FAIL test unit (computed): mm - circle(at top 50mm center) assert_equals: expected "circle(at 50% 188.976px)" but got "none"
     840FAIL test unit (computed): mm - circle(at top 50mm left) assert_equals: expected "circle(at 0% 188.976px)" but got "none"
     841FAIL test unit (computed): mm - circle(at top 50mm right) assert_equals: expected "circle(at 100% 188.976px)" but got "none"
     842FAIL test unit (computed): mm - circle(at bottom 70mm center) assert_equals: expected "circle(at left 50% bottom 264.567px)" but got "none"
     843FAIL test unit (computed): mm - circle(at bottom 70mm left) assert_equals: expected "circle(at left 0% bottom 264.567px)" but got "none"
     844FAIL test unit (computed): mm - circle(at bottom 70mm right) assert_equals: expected "circle(at left 100% bottom 264.567px)" but got "none"
     845FAIL test unit (computed): mm - circle(at right 80mm center) assert_equals: expected "circle(at right 302.362px top 50%)" but got "none"
     846FAIL test unit (computed): mm - circle(at right 80mm bottom) assert_equals: expected "circle(at right 302.362px top 100%)" but got "none"
     847FAIL test unit (computed): mm - circle(at right 80mm top) assert_equals: expected "circle(at right 302.362px top 0%)" but got "none"
    848848PASS test unit (computed): mm - circle(at left 50% top 50mm)
    849849PASS test unit (computed): mm - circle(at left 50% bottom 70mm)
     
    880880PASS test unit (computed): in - circle(at center 60in)
    881881PASS test unit (computed): in - circle(at 60in center)
    882 PASS test unit (computed): in - circle(at center top 50in)
    883 PASS test unit (computed): in - circle(at center left 50in)
    884 PASS test unit (computed): in - circle(at center right 70in)
    885 PASS test unit (computed): in - circle(at center bottom 70in)
    886 PASS test unit (computed): in - circle(at left top 50in)
    887 PASS test unit (computed): in - circle(at left bottom 70in)
    888 PASS test unit (computed): in - circle(at top left 50in)
    889 PASS test unit (computed): in - circle(at top right 70in)
    890 PASS test unit (computed): in - circle(at bottom left 50in)
    891 PASS test unit (computed): in - circle(at bottom right 70in)
    892 PASS test unit (computed): in - circle(at right bottom 70in)
    893 PASS test unit (computed): in - circle(at right top 50in)
    894 PASS test unit (computed): in - circle(at left 50in center)
    895 PASS test unit (computed): in - circle(at left 50in top)
    896 PASS test unit (computed): in - circle(at left 50in bottom)
    897 PASS test unit (computed): in - circle(at top 50in center)
    898 PASS test unit (computed): in - circle(at top 50in left)
    899 PASS test unit (computed): in - circle(at top 50in right)
    900 PASS test unit (computed): in - circle(at bottom 70in center)
    901 PASS test unit (computed): in - circle(at bottom 70in left)
    902 PASS test unit (computed): in - circle(at bottom 70in right)
    903 PASS test unit (computed): in - circle(at right 80in center)
    904 PASS test unit (computed): in - circle(at right 80in bottom)
    905 PASS test unit (computed): in - circle(at right 80in top)
     882FAIL test unit (computed): in - circle(at center top 50in) assert_equals: expected "circle(at 50% 4800px)" but got "none"
     883FAIL test unit (computed): in - circle(at center left 50in) assert_equals: expected "circle(at 4800px 50%)" but got "none"
     884FAIL test unit (computed): in - circle(at center right 70in) assert_equals: expected "circle(at right 6720px top 50%)" but got "none"
     885FAIL test unit (computed): in - circle(at center bottom 70in) assert_equals: expected "circle(at left 50% bottom 6720px)" but got "none"
     886FAIL test unit (computed): in - circle(at left top 50in) assert_equals: expected "circle(at 0% 4800px)" but got "none"
     887FAIL test unit (computed): in - circle(at left bottom 70in) assert_equals: expected "circle(at left 0% bottom 6720px)" but got "none"
     888FAIL test unit (computed): in - circle(at top left 50in) assert_equals: expected "circle(at 4800px 0%)" but got "none"
     889FAIL test unit (computed): in - circle(at top right 70in) assert_equals: expected "circle(at right 6720px top 0%)" but got "none"
     890FAIL test unit (computed): in - circle(at bottom left 50in) assert_equals: expected "circle(at 4800px 100%)" but got "none"
     891FAIL test unit (computed): in - circle(at bottom right 70in) assert_equals: expected "circle(at right 6720px top 100%)" but got "none"
     892FAIL test unit (computed): in - circle(at right bottom 70in) assert_equals: expected "circle(at left 100% bottom 6720px)" but got "none"
     893FAIL test unit (computed): in - circle(at right top 50in) assert_equals: expected "circle(at 100% 4800px)" but got "none"
     894FAIL test unit (computed): in - circle(at left 50in center) assert_equals: expected "circle(at 4800px 50%)" but got "none"
     895FAIL test unit (computed): in - circle(at left 50in top) assert_equals: expected "circle(at 4800px 0%)" but got "none"
     896FAIL test unit (computed): in - circle(at left 50in bottom) assert_equals: expected "circle(at 4800px 100%)" but got "none"
     897FAIL test unit (computed): in - circle(at top 50in center) assert_equals: expected "circle(at 50% 4800px)" but got "none"
     898FAIL test unit (computed): in - circle(at top 50in left) assert_equals: expected "circle(at 0% 4800px)" but got "none"
     899FAIL test unit (computed): in - circle(at top 50in right) assert_equals: expected "circle(at 100% 4800px)" but got "none"
     900FAIL test unit (computed): in - circle(at bottom 70in center) assert_equals: expected "circle(at left 50% bottom 6720px)" but got "none"
     901FAIL test unit (computed): in - circle(at bottom 70in left) assert_equals: expected "circle(at left 0% bottom 6720px)" but got "none"
     902FAIL test unit (computed): in - circle(at bottom 70in right) assert_equals: expected "circle(at left 100% bottom 6720px)" but got "none"
     903FAIL test unit (computed): in - circle(at right 80in center) assert_equals: expected "circle(at right 7680px top 50%)" but got "none"
     904FAIL test unit (computed): in - circle(at right 80in bottom) assert_equals: expected "circle(at right 7680px top 100%)" but got "none"
     905FAIL test unit (computed): in - circle(at right 80in top) assert_equals: expected "circle(at right 7680px top 0%)" but got "none"
    906906PASS test unit (computed): in - circle(at left 50% top 50in)
    907907PASS test unit (computed): in - circle(at left 50% bottom 70in)
     
    938938PASS test unit (computed): pt - circle(at center 60pt)
    939939PASS test unit (computed): pt - circle(at 60pt center)
    940 PASS test unit (computed): pt - circle(at center top 50pt)
    941 PASS test unit (computed): pt - circle(at center left 50pt)
    942 PASS test unit (computed): pt - circle(at center right 70pt)
    943 PASS test unit (computed): pt - circle(at center bottom 70pt)
    944 PASS test unit (computed): pt - circle(at left top 50pt)
    945 PASS test unit (computed): pt - circle(at left bottom 70pt)
    946 PASS test unit (computed): pt - circle(at top left 50pt)
    947 PASS test unit (computed): pt - circle(at top right 70pt)
    948 PASS test unit (computed): pt - circle(at bottom left 50pt)
    949 PASS test unit (computed): pt - circle(at bottom right 70pt)
    950 PASS test unit (computed): pt - circle(at right bottom 70pt)
    951 PASS test unit (computed): pt - circle(at right top 50pt)
    952 PASS test unit (computed): pt - circle(at left 50pt center)
    953 PASS test unit (computed): pt - circle(at left 50pt top)
    954 PASS test unit (computed): pt - circle(at left 50pt bottom)
    955 PASS test unit (computed): pt - circle(at top 50pt center)
    956 PASS test unit (computed): pt - circle(at top 50pt left)
    957 PASS test unit (computed): pt - circle(at top 50pt right)
    958 PASS test unit (computed): pt - circle(at bottom 70pt center)
    959 PASS test unit (computed): pt - circle(at bottom 70pt left)
    960 PASS test unit (computed): pt - circle(at bottom 70pt right)
    961 PASS test unit (computed): pt - circle(at right 80pt center)
    962 PASS test unit (computed): pt - circle(at right 80pt bottom)
    963 PASS test unit (computed): pt - circle(at right 80pt top)
     940FAIL test unit (computed): pt - circle(at center top 50pt) assert_equals: expected "circle(at 50% 66.667px)" but got "none"
     941FAIL test unit (computed): pt - circle(at center left 50pt) assert_equals: expected "circle(at 66.667px 50%)" but got "none"
     942FAIL test unit (computed): pt - circle(at center right 70pt) assert_equals: expected "circle(at right 93.333px top 50%)" but got "none"
     943FAIL test unit (computed): pt - circle(at center bottom 70pt) assert_equals: expected "circle(at left 50% bottom 93.333px)" but got "none"
     944FAIL test unit (computed): pt - circle(at left top 50pt) assert_equals: expected "circle(at 0% 66.667px)" but got "none"
     945FAIL test unit (computed): pt - circle(at left bottom 70pt) assert_equals: expected "circle(at left 0% bottom 93.333px)" but got "none"
     946FAIL test unit (computed): pt - circle(at top left 50pt) assert_equals: expected "circle(at 66.667px 0%)" but got "none"
     947FAIL test unit (computed): pt - circle(at top right 70pt) assert_equals: expected "circle(at right 93.333px top 0%)" but got "none"
     948FAIL test unit (computed): pt - circle(at bottom left 50pt) assert_equals: expected "circle(at 66.667px 100%)" but got "none"
     949FAIL test unit (computed): pt - circle(at bottom right 70pt) assert_equals: expected "circle(at right 93.333px top 100%)" but got "none"
     950FAIL test unit (computed): pt - circle(at right bottom 70pt) assert_equals: expected "circle(at left 100% bottom 93.333px)" but got "none"
     951FAIL test unit (computed): pt - circle(at right top 50pt) assert_equals: expected "circle(at 100% 66.667px)" but got "none"
     952FAIL test unit (computed): pt - circle(at left 50pt center) assert_equals: expected "circle(at 66.667px 50%)" but got "none"
     953FAIL test unit (computed): pt - circle(at left 50pt top) assert_equals: expected "circle(at 66.667px 0%)" but got "none"
     954FAIL test unit (computed): pt - circle(at left 50pt bottom) assert_equals: expected "circle(at 66.667px 100%)" but got "none"
     955FAIL test unit (computed): pt - circle(at top 50pt center) assert_equals: expected "circle(at 50% 66.667px)" but got "none"
     956FAIL test unit (computed): pt - circle(at top 50pt left) assert_equals: expected "circle(at 0% 66.667px)" but got "none"
     957FAIL test unit (computed): pt - circle(at top 50pt right) assert_equals: expected "circle(at 100% 66.667px)" but got "none"
     958FAIL test unit (computed): pt - circle(at bottom 70pt center) assert_equals: expected "circle(at left 50% bottom 93.333px)" but got "none"
     959FAIL test unit (computed): pt - circle(at bottom 70pt left) assert_equals: expected "circle(at left 0% bottom 93.333px)" but got "none"
     960FAIL test unit (computed): pt - circle(at bottom 70pt right) assert_equals: expected "circle(at left 100% bottom 93.333px)" but got "none"
     961FAIL test unit (computed): pt - circle(at right 80pt center) assert_equals: expected "circle(at right 106.667px top 50%)" but got "none"
     962FAIL test unit (computed): pt - circle(at right 80pt bottom) assert_equals: expected "circle(at right 106.667px top 100%)" but got "none"
     963FAIL test unit (computed): pt - circle(at right 80pt top) assert_equals: expected "circle(at right 106.667px top 0%)" but got "none"
    964964PASS test unit (computed): pt - circle(at left 50% top 50pt)
    965965PASS test unit (computed): pt - circle(at left 50% bottom 70pt)
     
    996996PASS test unit (computed): pc - circle(at center 60pc)
    997997PASS test unit (computed): pc - circle(at 60pc center)
    998 PASS test unit (computed): pc - circle(at center top 50pc)
    999 PASS test unit (computed): pc - circle(at center left 50pc)
    1000 PASS test unit (computed): pc - circle(at center right 70pc)
    1001 PASS test unit (computed): pc - circle(at center bottom 70pc)
    1002 PASS test unit (computed): pc - circle(at left top 50pc)
    1003 PASS test unit (computed): pc - circle(at left bottom 70pc)
    1004 PASS test unit (computed): pc - circle(at top left 50pc)
    1005 PASS test unit (computed): pc - circle(at top right 70pc)
    1006 PASS test unit (computed): pc - circle(at bottom left 50pc)
    1007 PASS test unit (computed): pc - circle(at bottom right 70pc)
    1008 PASS test unit (computed): pc - circle(at right bottom 70pc)
    1009 PASS test unit (computed): pc - circle(at right top 50pc)
    1010 PASS test unit (computed): pc - circle(at left 50pc center)
    1011 PASS test unit (computed): pc - circle(at left 50pc top)
    1012 PASS test unit (computed): pc - circle(at left 50pc bottom)
    1013 PASS test unit (computed): pc - circle(at top 50pc center)
    1014 PASS test unit (computed): pc - circle(at top 50pc left)
    1015 PASS test unit (computed): pc - circle(at top 50pc right)
    1016 PASS test unit (computed): pc - circle(at bottom 70pc center)
    1017 PASS test unit (computed): pc - circle(at bottom 70pc left)
    1018 PASS test unit (computed): pc - circle(at bottom 70pc right)
    1019 PASS test unit (computed): pc - circle(at right 80pc center)
    1020 PASS test unit (computed): pc - circle(at right 80pc bottom)
    1021 PASS test unit (computed): pc - circle(at right 80pc top)
     998FAIL test unit (computed): pc - circle(at center top 50pc) assert_equals: expected "circle(at 50% 800px)" but got "none"
     999FAIL test unit (computed): pc - circle(at center left 50pc) assert_equals: expected "circle(at 800px 50%)" but got "none"
     1000FAIL test unit (computed): pc - circle(at center right 70pc) assert_equals: expected "circle(at right 1120px top 50%)" but got "none"
     1001FAIL test unit (computed): pc - circle(at center bottom 70pc) assert_equals: expected "circle(at left 50% bottom 1120px)" but got "none"
     1002FAIL test unit (computed): pc - circle(at left top 50pc) assert_equals: expected "circle(at 0% 800px)" but got "none"
     1003FAIL test unit (computed): pc - circle(at left bottom 70pc) assert_equals: expected "circle(at left 0% bottom 1120px)" but got "none"
     1004FAIL test unit (computed): pc - circle(at top left 50pc) assert_equals: expected "circle(at 800px 0%)" but got "none"
     1005FAIL test unit (computed): pc - circle(at top right 70pc) assert_equals: expected "circle(at right 1120px top 0%)" but got "none"
     1006FAIL test unit (computed): pc - circle(at bottom left 50pc) assert_equals: expected "circle(at 800px 100%)" but got "none"
     1007FAIL test unit (computed): pc - circle(at bottom right 70pc) assert_equals: expected "circle(at right 1120px top 100%)" but got "none"
     1008FAIL test unit (computed): pc - circle(at right bottom 70pc) assert_equals: expected "circle(at left 100% bottom 1120px)" but got "none"
     1009FAIL test unit (computed): pc - circle(at right top 50pc) assert_equals: expected "circle(at 100% 800px)" but got "none"
     1010FAIL test unit (computed): pc - circle(at left 50pc center) assert_equals: expected "circle(at 800px 50%)" but got "none"
     1011FAIL test unit (computed): pc - circle(at left 50pc top) assert_equals: expected "circle(at 800px 0%)" but got "none"
     1012FAIL test unit (computed): pc - circle(at left 50pc bottom) assert_equals: expected "circle(at 800px 100%)" but got "none"
     1013FAIL test unit (computed): pc - circle(at top 50pc center) assert_equals: expected "circle(at 50% 800px)" but got "none"
     1014FAIL test unit (computed): pc - circle(at top 50pc left) assert_equals: expected "circle(at 0% 800px)" but got "none"
     1015FAIL test unit (computed): pc - circle(at top 50pc right) assert_equals: expected "circle(at 100% 800px)" but got "none"
     1016FAIL test unit (computed): pc - circle(at bottom 70pc center) assert_equals: expected "circle(at left 50% bottom 1120px)" but got "none"
     1017FAIL test unit (computed): pc - circle(at bottom 70pc left) assert_equals: expected "circle(at left 0% bottom 1120px)" but got "none"
     1018FAIL test unit (computed): pc - circle(at bottom 70pc right) assert_equals: expected "circle(at left 100% bottom 1120px)" but got "none"
     1019FAIL test unit (computed): pc - circle(at right 80pc center) assert_equals: expected "circle(at right 1280px top 50%)" but got "none"
     1020FAIL test unit (computed): pc - circle(at right 80pc bottom) assert_equals: expected "circle(at right 1280px top 100%)" but got "none"
     1021FAIL test unit (computed): pc - circle(at right 80pc top) assert_equals: expected "circle(at right 1280px top 0%)" but got "none"
    10221022PASS test unit (computed): pc - circle(at left 50% top 50pc)
    10231023PASS test unit (computed): pc - circle(at left 50% bottom 70pc)
     
    10541054PASS test unit (computed): em - circle(at center 60em)
    10551055PASS test unit (computed): em - circle(at 60em center)
    1056 PASS test unit (computed): em - circle(at center top 50em)
    1057 PASS test unit (computed): em - circle(at center left 50em)
    1058 PASS test unit (computed): em - circle(at center right 70em)
    1059 PASS test unit (computed): em - circle(at center bottom 70em)
    1060 PASS test unit (computed): em - circle(at left top 50em)
    1061 PASS test unit (computed): em - circle(at left bottom 70em)
    1062 PASS test unit (computed): em - circle(at top left 50em)
    1063 PASS test unit (computed): em - circle(at top right 70em)
    1064 PASS test unit (computed): em - circle(at bottom left 50em)
    1065 PASS test unit (computed): em - circle(at bottom right 70em)
    1066 PASS test unit (computed): em - circle(at right bottom 70em)
    1067 PASS test unit (computed): em - circle(at right top 50em)
    1068 PASS test unit (computed): em - circle(at left 50em center)
    1069 PASS test unit (computed): em - circle(at left 50em top)
    1070 PASS test unit (computed): em - circle(at left 50em bottom)
    1071 PASS test unit (computed): em - circle(at top 50em center)
    1072 PASS test unit (computed): em - circle(at top 50em left)
    1073 PASS test unit (computed): em - circle(at top 50em right)
    1074 PASS test unit (computed): em - circle(at bottom 70em center)
    1075 PASS test unit (computed): em - circle(at bottom 70em left)
    1076 PASS test unit (computed): em - circle(at bottom 70em right)
    1077 PASS test unit (computed): em - circle(at right 80em center)
    1078 PASS test unit (computed): em - circle(at right 80em bottom)
    1079 PASS test unit (computed): em - circle(at right 80em top)
     1056FAIL test unit (computed): em - circle(at center top 50em) assert_equals: expected "circle(at 50% 800px)" but got "none"
     1057FAIL test unit (computed): em - circle(at center left 50em) assert_equals: expected "circle(at 800px 50%)" but got "none"
     1058FAIL test unit (computed): em - circle(at center right 70em) assert_equals: expected "circle(at right 1120px top 50%)" but got "none"
     1059FAIL test unit (computed): em - circle(at center bottom 70em) assert_equals: expected "circle(at left 50% bottom 1120px)" but got "none"
     1060FAIL test unit (computed): em - circle(at left top 50em) assert_equals: expected "circle(at 0% 800px)" but got "none"
     1061FAIL test unit (computed): em - circle(at left bottom 70em) assert_equals: expected "circle(at left 0% bottom 1120px)" but got "none"
     1062FAIL test unit (computed): em - circle(at top left 50em) assert_equals: expected "circle(at 800px 0%)" but got "none"
     1063FAIL test unit (computed): em - circle(at top right 70em) assert_equals: expected "circle(at right 1120px top 0%)" but got "none"
     1064FAIL test unit (computed): em - circle(at bottom left 50em) assert_equals: expected "circle(at 800px 100%)" but got "none"
     1065FAIL test unit (computed): em - circle(at bottom right 70em) assert_equals: expected "circle(at right 1120px top 100%)" but got "none"
     1066FAIL test unit (computed): em - circle(at right bottom 70em) assert_equals: expected "circle(at left 100% bottom 1120px)" but got "none"
     1067FAIL test unit (computed): em - circle(at right top 50em) assert_equals: expected "circle(at 100% 800px)" but got "none"
     1068FAIL test unit (computed): em - circle(at left 50em center) assert_equals: expected "circle(at 800px 50%)" but got "none"
     1069FAIL test unit (computed): em - circle(at left 50em top) assert_equals: expected "circle(at 800px 0%)" but got "none"
     1070FAIL test unit (computed): em - circle(at left 50em bottom) assert_equals: expected "circle(at 800px 100%)" but got "none"
     1071FAIL test unit (computed): em - circle(at top 50em center) assert_equals: expected "circle(at 50% 800px)" but got "none"
     1072FAIL test unit (computed): em - circle(at top 50em left) assert_equals: expected "circle(at 0% 800px)" but got "none"
     1073FAIL test unit (computed): em - circle(at top 50em right) assert_equals: expected "circle(at 100% 800px)" but got "none"
     1074FAIL test unit (computed): em - circle(at bottom 70em center) assert_equals: expected "circle(at left 50% bottom 1120px)" but got "none"
     1075FAIL test unit (computed): em - circle(at bottom 70em left) assert_equals: expected "circle(at left 0% bottom 1120px)" but got "none"
     1076FAIL test unit (computed): em - circle(at bottom 70em right) assert_equals: expected "circle(at left 100% bottom 1120px)" but got "none"
     1077FAIL test unit (computed): em - circle(at right 80em center) assert_equals: expected "circle(at right 1280px top 50%)" but got "none"
     1078FAIL test unit (computed): em - circle(at right 80em bottom) assert_equals: expected "circle(at right 1280px top 100%)" but got "none"
     1079FAIL test unit (computed): em - circle(at right 80em top) assert_equals: expected "circle(at right 1280px top 0%)" but got "none"
    10801080PASS test unit (computed): em - circle(at left 50% top 50em)
    10811081PASS test unit (computed): em - circle(at left 50% bottom 70em)
     
    11121112PASS test unit (computed): ex - circle(at center 60ex)
    11131113PASS test unit (computed): ex - circle(at 60ex center)
    1114 PASS test unit (computed): ex - circle(at center top 50ex)
    1115 PASS test unit (computed): ex - circle(at center left 50ex)
    1116 PASS test unit (computed): ex - circle(at center right 70ex)
    1117 PASS test unit (computed): ex - circle(at center bottom 70ex)
    1118 PASS test unit (computed): ex - circle(at left top 50ex)
    1119 PASS test unit (computed): ex - circle(at left bottom 70ex)
    1120 PASS test unit (computed): ex - circle(at top left 50ex)
    1121 PASS test unit (computed): ex - circle(at top right 70ex)
    1122 PASS test unit (computed): ex - circle(at bottom left 50ex)
    1123 PASS test unit (computed): ex - circle(at bottom right 70ex)
    1124 PASS test unit (computed): ex - circle(at right bottom 70ex)
    1125 PASS test unit (computed): ex - circle(at right top 50ex)
    1126 PASS test unit (computed): ex - circle(at left 50ex center)
    1127 PASS test unit (computed): ex - circle(at left 50ex top)
    1128 PASS test unit (computed): ex - circle(at left 50ex bottom)
    1129 PASS test unit (computed): ex - circle(at top 50ex center)
    1130 PASS test unit (computed): ex - circle(at top 50ex left)
    1131 PASS test unit (computed): ex - circle(at top 50ex right)
    1132 PASS test unit (computed): ex - circle(at bottom 70ex center)
    1133 PASS test unit (computed): ex - circle(at bottom 70ex left)
    1134 PASS test unit (computed): ex - circle(at bottom 70ex right)
    1135 PASS test unit (computed): ex - circle(at right 80ex center)
    1136 PASS test unit (computed): ex - circle(at right 80ex bottom)
    1137 PASS test unit (computed): ex - circle(at right 80ex top)
     1114FAIL test unit (computed): ex - circle(at center top 50ex) assert_equals: expected "circle(at 50% 358.984px)" but got "none"
     1115FAIL test unit (computed): ex - circle(at center left 50ex) assert_equals: expected "circle(at 358.984px 50%)" but got "none"
     1116FAIL test unit (computed): ex - circle(at center right 70ex) assert_equals: expected "circle(at right 502.578px top 50%)" but got "none"
     1117FAIL test unit (computed): ex - circle(at center bottom 70ex) assert_equals: expected "circle(at left 50% bottom 502.578px)" but got "none"
     1118FAIL test unit (computed): ex - circle(at left top 50ex) assert_equals: expected "circle(at 0% 358.984px)" but got "none"
     1119FAIL test unit (computed): ex - circle(at left bottom 70ex) assert_equals: expected "circle(at left 0% bottom 502.578px)" but got "none"
     1120FAIL test unit (computed): ex - circle(at top left 50ex) assert_equals: expected "circle(at 358.984px 0%)" but got "none"
     1121FAIL test unit (computed): ex - circle(at top right 70ex) assert_equals: expected "circle(at right 502.578px top 0%)" but got "none"
     1122FAIL test unit (computed): ex - circle(at bottom left 50ex) assert_equals: expected "circle(at 358.984px 100%)" but got "none"
     1123FAIL test unit (computed): ex - circle(at bottom right 70ex) assert_equals: expected "circle(at right 502.578px top 100%)" but got "none"
     1124FAIL test unit (computed): ex - circle(at right bottom 70ex) assert_equals: expected "circle(at left 100% bottom 502.578px)" but got "none"
     1125FAIL test unit (computed): ex - circle(at right top 50ex) assert_equals: expected "circle(at 100% 358.984px)" but got "none"
     1126FAIL test unit (computed): ex - circle(at left 50ex center) assert_equals: expected "circle(at 358.984px 50%)" but got "none"
     1127FAIL test unit (computed): ex - circle(at left 50ex top) assert_equals: expected "circle(at 358.984px 0%)" but got "none"
     1128FAIL test unit (computed): ex - circle(at left 50ex bottom) assert_equals: expected "circle(at 358.984px 100%)" but got "none"
     1129FAIL test unit (computed): ex - circle(at top 50ex center) assert_equals: expected "circle(at 50% 358.984px)" but got "none"
     1130FAIL test unit (computed): ex - circle(at top 50ex left) assert_equals: expected "circle(at 0% 358.984px)" but got "none"
     1131FAIL test unit (computed): ex - circle(at top 50ex right) assert_equals: expected "circle(at 100% 358.984px)" but got "none"
     1132FAIL test unit (computed): ex - circle(at bottom 70ex center) assert_equals: expected "circle(at left 50% bottom 502.578px)" but got "none"
     1133FAIL test unit (computed): ex - circle(at bottom 70ex left) assert_equals: expected "circle(at left 0% bottom 502.578px)" but got "none"
     1134FAIL test unit (computed): ex - circle(at bottom 70ex right) assert_equals: expected "circle(at left 100% bottom 502.578px)" but got "none"
     1135FAIL test unit (computed): ex - circle(at right 80ex center) assert_equals: expected "circle(at right 574.375px top 50%)" but got "none"
     1136FAIL test unit (computed): ex - circle(at right 80ex bottom) assert_equals: expected "circle(at right 574.375px top 100%)" but got "none"
     1137FAIL test unit (computed): ex - circle(at right 80ex top) assert_equals: expected "circle(at right 574.375px top 0%)" but got "none"
    11381138PASS test unit (computed): ex - circle(at left 50% top 50ex)
    11391139PASS test unit (computed): ex - circle(at left 50% bottom 70ex)
     
    11701170PASS test unit (computed): ch - circle(at center 60ch)
    11711171PASS test unit (computed): ch - circle(at 60ch center)
    1172 PASS test unit (computed): ch - circle(at center top 50ch)
    1173 PASS test unit (computed): ch - circle(at center left 50ch)
    1174 PASS test unit (computed): ch - circle(at center right 70ch)
    1175 PASS test unit (computed): ch - circle(at center bottom 70ch)
    1176 PASS test unit (computed): ch - circle(at left top 50ch)
    1177 PASS test unit (computed): ch - circle(at left bottom 70ch)
    1178 PASS test unit (computed): ch - circle(at top left 50ch)
    1179 PASS test unit (computed): ch - circle(at top right 70ch)
    1180 PASS test unit (computed): ch - circle(at bottom left 50ch)
    1181 PASS test unit (computed): ch - circle(at bottom right 70ch)
    1182 PASS test unit (computed): ch - circle(at right bottom 70ch)
    1183 PASS test unit (computed): ch - circle(at right top 50ch)
    1184 PASS test unit (computed): ch - circle(at left 50ch center)
    1185 PASS test unit (computed): ch - circle(at left 50ch top)
    1186 PASS test unit (computed): ch - circle(at left 50ch bottom)
    1187 PASS test unit (computed): ch - circle(at top 50ch center)
    1188 PASS test unit (computed): ch - circle(at top 50ch left)
    1189 PASS test unit (computed): ch - circle(at top 50ch right)
    1190 PASS test unit (computed): ch - circle(at bottom 70ch center)
    1191 PASS test unit (computed): ch - circle(at bottom 70ch left)
    1192 PASS test unit (computed): ch - circle(at bottom 70ch right)
    1193 PASS test unit (computed): ch - circle(at right 80ch center)
    1194 PASS test unit (computed): ch - circle(at right 80ch bottom)
    1195 PASS test unit (computed): ch - circle(at right 80ch top)
     1172FAIL test unit (computed): ch - circle(at center top 50ch) assert_equals: expected "circle(at 50% 400px)" but got "none"
     1173FAIL test unit (computed): ch - circle(at center left 50ch) assert_equals: expected "circle(at 400px 50%)" but got "none"
     1174FAIL test unit (computed): ch - circle(at center right 70ch) assert_equals: expected "circle(at right 560px top 50%)" but got "none"
     1175FAIL test unit (computed): ch - circle(at center bottom 70ch) assert_equals: expected "circle(at left 50% bottom 560px)" but got "none"
     1176FAIL test unit (computed): ch - circle(at left top 50ch) assert_equals: expected "circle(at 0% 400px)" but got "none"
     1177FAIL test unit (computed): ch - circle(at left bottom 70ch) assert_equals: expected "circle(at left 0% bottom 560px)" but got "none"
     1178FAIL test unit (computed): ch - circle(at top left 50ch) assert_equals: expected "circle(at 400px 0%)" but got "none"
     1179FAIL test unit (computed): ch - circle(at top right 70ch) assert_equals: expected "circle(at right 560px top 0%)" but got "none"
     1180FAIL test unit (computed): ch - circle(at bottom left 50ch) assert_equals: expected "circle(at 400px 100%)" but got "none"
     1181FAIL test unit (computed): ch - circle(at bottom right 70ch) assert_equals: expected "circle(at right 560px top 100%)" but got "none"
     1182FAIL test unit (computed): ch - circle(at right bottom 70ch) assert_equals: expected "circle(at left 100% bottom 560px)" but got "none"
     1183FAIL test unit (computed): ch - circle(at right top 50ch) assert_equals: expected "circle(at 100% 400px)" but got "none"
     1184FAIL test unit (computed): ch - circle(at left 50ch center) assert_equals: expected "circle(at 400px 50%)" but got "none"
     1185FAIL test unit (computed): ch - circle(at left 50ch top) assert_equals: expected "circle(at 400px 0%)" but got "none"
     1186FAIL test unit (computed): ch - circle(at left 50ch bottom) assert_equals: expected "circle(at 400px 100%)" but got "none"
     1187FAIL test unit (computed): ch - circle(at top 50ch center) assert_equals: expected "circle(at 50% 400px)" but got "none"
     1188FAIL test unit (computed): ch - circle(at top 50ch left) assert_equals: expected "circle(at 0% 400px)" but got "none"
     1189FAIL test unit (computed): ch - circle(at top 50ch right) assert_equals: expected "circle(at 100% 400px)" but got "none"
     1190FAIL test unit (computed): ch - circle(at bottom 70ch center) assert_equals: expected "circle(at left 50% bottom 560px)" but got "none"
     1191FAIL test unit (computed): ch - circle(at bottom 70ch left) assert_equals: expected "circle(at left 0% bottom 560px)" but got "none"
     1192FAIL test unit (computed): ch - circle(at bottom 70ch right) assert_equals: expected "circle(at left 100% bottom 560px)" but got "none"
     1193FAIL test unit (computed): ch - circle(at right 80ch center) assert_equals: expected "circle(at right 640px top 50%)" but got "none"
     1194FAIL test unit (computed): ch - circle(at right 80ch bottom) assert_equals: expected "circle(at right 640px top 100%)" but got "none"
     1195FAIL test unit (computed): ch - circle(at right 80ch top) assert_equals: expected "circle(at right 640px top 0%)" but got "none"
    11961196PASS test unit (computed): ch - circle(at left 50% top 50ch)
    11971197PASS test unit (computed): ch - circle(at left 50% bottom 70ch)
     
    12281228PASS test unit (computed): rem - circle(at center 60rem)
    12291229PASS test unit (computed): rem - circle(at 60rem center)
    1230 PASS test unit (computed): rem - circle(at center top 50rem)
    1231 PASS test unit (computed): rem - circle(at center left 50rem)
    1232 PASS test unit (computed): rem - circle(at center right 70rem)
    1233 PASS test unit (computed): rem - circle(at center bottom 70rem)
    1234 PASS test unit (computed): rem - circle(at left top 50rem)
    1235 PASS test unit (computed): rem - circle(at left bottom 70rem)
    1236 PASS test unit (computed): rem - circle(at top left 50rem)
    1237 PASS test unit (computed): rem - circle(at top right 70rem)
    1238 PASS test unit (computed): rem - circle(at bottom left 50rem)
    1239 PASS test unit (computed): rem - circle(at bottom right 70rem)
    1240 PASS test unit (computed): rem - circle(at right bottom 70rem)
    1241 PASS test unit (computed): rem - circle(at right top 50rem)
    1242 PASS test unit (computed): rem - circle(at left 50rem center)
    1243 PASS test unit (computed): rem - circle(at left 50rem top)
    1244 PASS test unit (computed): rem - circle(at left 50rem bottom)
    1245 PASS test unit (computed): rem - circle(at top 50rem center)
    1246 PASS test unit (computed): rem - circle(at top 50rem left)
    1247 PASS test unit (computed): rem - circle(at top 50rem right)
    1248 PASS test unit (computed): rem - circle(at bottom 70rem center)
    1249 PASS test unit (computed): rem - circle(at bottom 70rem left)
    1250 PASS test unit (computed): rem - circle(at bottom 70rem right)
    1251 PASS test unit (computed): rem - circle(at right 80rem center)
    1252 PASS test unit (computed): rem - circle(at right 80rem bottom)
    1253 PASS test unit (computed): rem - circle(at right 80rem top)
     1230FAIL test unit (computed): rem - circle(at center top 50rem) assert_equals: expected "circle(at 50% 800px)" but got "none"
     1231FAIL test unit (computed): rem - circle(at center left 50rem) assert_equals: expected "circle(at 800px 50%)" but got "none"
     1232FAIL test unit (computed): rem - circle(at center right 70rem) assert_equals: expected "circle(at right 1120px top 50%)" but got "none"
     1233FAIL test unit (computed): rem - circle(at center bottom 70rem) assert_equals: expected "circle(at left 50% bottom 1120px)" but got "none"
     1234FAIL test unit (computed): rem - circle(at left top 50rem) assert_equals: expected "circle(at 0% 800px)" but got "none"
     1235FAIL test unit (computed): rem - circle(at left bottom 70rem) assert_equals: expected "circle(at left 0% bottom 1120px)" but got "none"
     1236FAIL test unit (computed): rem - circle(at top left 50rem) assert_equals: expected "circle(at 800px 0%)" but got "none"
     1237FAIL test unit (computed): rem - circle(at top right 70rem) assert_equals: expected "circle(at right 1120px top 0%)" but got "none"
     1238FAIL test unit (computed): rem - circle(at bottom left 50rem) assert_equals: expected "circle(at 800px 100%)" but got "none"
     1239FAIL test unit (computed): rem - circle(at bottom right 70rem) assert_equals: expected "circle(at right 1120px top 100%)" but got "none"
     1240FAIL test unit (computed): rem - circle(at right bottom 70rem) assert_equals: expected "circle(at left 100% bottom 1120px)" but got "none"
     1241FAIL test unit (computed): rem - circle(at right top 50rem) assert_equals: expected "circle(at 100% 800px)" but got "none"
     1242FAIL test unit (computed): rem - circle(at left 50rem center) assert_equals: expected "circle(at 800px 50%)" but got "none"
     1243FAIL test unit (computed): rem - circle(at left 50rem top) assert_equals: expected "circle(at 800px 0%)" but got "none"
     1244FAIL test unit (computed): rem - circle(at left 50rem bottom) assert_equals: expected "circle(at 800px 100%)" but got "none"
     1245FAIL test unit (computed): rem - circle(at top 50rem center) assert_equals: expected "circle(at 50% 800px)" but got "none"
     1246FAIL test unit (computed): rem - circle(at top 50rem left) assert_equals: expected "circle(at 0% 800px)" but got "none"
     1247FAIL test unit (computed): rem - circle(at top 50rem right) assert_equals: expected "circle(at 100% 800px)" but got "none"
     1248FAIL test unit (computed): rem - circle(at bottom 70rem center) assert_equals: expected "circle(at left 50% bottom 1120px)" but got "none"
     1249FAIL test unit (computed): rem - circle(at bottom 70rem left) assert_equals: expected "circle(at left 0% bottom 1120px)" but got "none"
     1250FAIL test unit (computed): rem - circle(at bottom 70rem right) assert_equals: expected "circle(at left 100% bottom 1120px)" but got "none"
     1251FAIL test unit (computed): rem - circle(at right 80rem center) assert_equals: expected "circle(at right 1280px top 50%)" but got "none"
     1252FAIL test unit (computed): rem - circle(at right 80rem bottom) assert_equals: expected "circle(at right 1280px top 100%)" but got "none"
     1253FAIL test unit (computed): rem - circle(at right 80rem top) assert_equals: expected "circle(at right 1280px top 0%)" but got "none"
    12541254PASS test unit (computed): rem - circle(at left 50% top 50rem)
    12551255PASS test unit (computed): rem - circle(at left 50% bottom 70rem)
     
    12861286PASS test unit (computed): vw - circle(at center 60vw)
    12871287PASS test unit (computed): vw - circle(at 60vw center)
    1288 PASS test unit (computed): vw - circle(at center top 50vw)
    1289 PASS test unit (computed): vw - circle(at center left 50vw)
    1290 PASS test unit (computed): vw - circle(at center right 70vw)
    1291 PASS test unit (computed): vw - circle(at center bottom 70vw)
    1292 PASS test unit (computed): vw - circle(at left top 50vw)
    1293 PASS test unit (computed): vw - circle(at left bottom 70vw)
    1294 PASS test unit (computed): vw - circle(at top left 50vw)
    1295 PASS test unit (computed): vw - circle(at top right 70vw)
    1296 PASS test unit (computed): vw - circle(at bottom left 50vw)
    1297 PASS test unit (computed): vw - circle(at bottom right 70vw)
    1298 PASS test unit (computed): vw - circle(at right bottom 70vw)
    1299 PASS test unit (computed): vw - circle(at right top 50vw)
    1300 PASS test unit (computed): vw - circle(at left 50vw center)
    1301 PASS test unit (computed): vw - circle(at left 50vw top)
    1302 PASS test unit (computed): vw - circle(at left 50vw bottom)
    1303 PASS test unit (computed): vw - circle(at top 50vw center)
    1304 PASS test unit (computed): vw - circle(at top 50vw left)
    1305 PASS test unit (computed): vw - circle(at top 50vw right)
    1306 PASS test unit (computed): vw - circle(at bottom 70vw center)
    1307 PASS test unit (computed): vw - circle(at bottom 70vw left)
    1308 PASS test unit (computed): vw - circle(at bottom 70vw right)
    1309 PASS test unit (computed): vw - circle(at right 80vw center)
    1310 PASS test unit (computed): vw - circle(at right 80vw bottom)
    1311 PASS test unit (computed): vw - circle(at right 80vw top)
     1288FAIL test unit (computed): vw - circle(at center top 50vw) assert_equals: expected "circle(at 50% 400px)" but got "none"
     1289FAIL test unit (computed): vw - circle(at center left 50vw) assert_equals: expected "circle(at 400px 50%)" but got "none"
     1290FAIL test unit (computed): vw - circle(at center right 70vw) assert_equals: expected "circle(at right 560px top 50%)" but got "none"
     1291FAIL test unit (computed): vw - circle(at center bottom 70vw) assert_equals: expected "circle(at left 50% bottom 560px)" but got "none"
     1292FAIL test unit (computed): vw - circle(at left top 50vw) assert_equals: expected "circle(at 0% 400px)" but got "none"
     1293FAIL test unit (computed): vw - circle(at left bottom 70vw) assert_equals: expected "circle(at left 0% bottom 560px)" but got "none"
     1294FAIL test unit (computed): vw - circle(at top left 50vw) assert_equals: expected "circle(at 400px 0%)" but got "none"
     1295FAIL test unit (computed): vw - circle(at top right 70vw) assert_equals: expected "circle(at right 560px top 0%)" but got "none"
     1296FAIL test unit (computed): vw - circle(at bottom left 50vw) assert_equals: expected "circle(at 400px 100%)" but got "none"
     1297FAIL test unit (computed): vw - circle(at bottom right 70vw) assert_equals: expected "circle(at right 560px top 100%)" but got "none"
     1298FAIL test unit (computed): vw - circle(at right bottom 70vw) assert_equals: expected "circle(at left 100% bottom 560px)" but got "none"
     1299FAIL test unit (computed): vw - circle(at right top 50vw) assert_equals: expected "circle(at 100% 400px)" but got "none"
     1300FAIL test unit (computed): vw - circle(at left 50vw center) assert_equals: expected "circle(at 400px 50%)" but got "none"
     1301FAIL test unit (computed): vw - circle(at left 50vw top) assert_equals: expected "circle(at 400px 0%)" but got "none"
     1302FAIL test unit (computed): vw - circle(at left 50vw bottom) assert_equals: expected "circle(at 400px 100%)" but got "none"
     1303FAIL test unit (computed): vw - circle(at top 50vw center) assert_equals: expected "circle(at 50% 400px)" but got "none"
     1304FAIL test unit (computed): vw - circle(at top 50vw left) assert_equals: expected "circle(at 0% 400px)" but got "none"
     1305FAIL test unit (computed): vw - circle(at top 50vw right) assert_equals: expected "circle(at 100% 400px)" but got "none"
     1306FAIL test unit (computed): vw - circle(at bottom 70vw center) assert_equals: expected "circle(at left 50% bottom 560px)" but got "none"
     1307FAIL test unit (computed): vw - circle(at bottom 70vw left) assert_equals: expected "circle(at left 0% bottom 560px)" but got "none"
     1308FAIL test unit (computed): vw - circle(at bottom 70vw right) assert_equals: expected "circle(at left 100% bottom 560px)" but got "none"
     1309FAIL test unit (computed): vw - circle(at right 80vw center) assert_equals: expected "circle(at right 640px top 50%)" but got "none"
     1310FAIL test unit (computed): vw - circle(at right 80vw bottom) assert_equals: expected "circle(at right 640px top 100%)" but got "none"
     1311FAIL test unit (computed): vw - circle(at right 80vw top) assert_equals: expected "circle(at right 640px top 0%)" but got "none"
    13121312PASS test unit (computed): vw - circle(at left 50% top 50vw)
    13131313PASS test unit (computed): vw - circle(at left 50% bottom 70vw)
     
    13441344PASS test unit (computed): vh - circle(at center 60vh)
    13451345PASS test unit (computed): vh - circle(at 60vh center)
    1346 PASS test unit (computed): vh - circle(at center top 50vh)
    1347 PASS test unit (computed): vh - circle(at center left 50vh)
    1348 PASS test unit (computed): vh - circle(at center right 70vh)
    1349 PASS test unit (computed): vh - circle(at center bottom 70vh)
    1350 PASS test unit (computed): vh - circle(at left top 50vh)
    1351 PASS test unit (computed): vh - circle(at left bottom 70vh)
    1352 PASS test unit (computed): vh - circle(at top left 50vh)
    1353 PASS test unit (computed): vh - circle(at top right 70vh)
    1354 PASS test unit (computed): vh - circle(at bottom left 50vh)
    1355 PASS test unit (computed): vh - circle(at bottom right 70vh)
    1356 PASS test unit (computed): vh - circle(at right bottom 70vh)
    1357 PASS test unit (computed): vh - circle(at right top 50vh)
    1358 PASS test unit (computed): vh - circle(at left 50vh center)
    1359 PASS test unit (computed): vh - circle(at left 50vh top)
    1360 PASS test unit (computed): vh - circle(at left 50vh bottom)
    1361 PASS test unit (computed): vh - circle(at top 50vh center)
    1362 PASS test unit (computed): vh - circle(at top 50vh left)
    1363 PASS test unit (computed): vh - circle(at top 50vh right)
    1364 PASS test unit (computed): vh - circle(at bottom 70vh center)
    1365 PASS test unit (computed): vh - circle(at bottom 70vh left)
    1366 PASS test unit (computed): vh - circle(at bottom 70vh right)
    1367 PASS test unit (computed): vh - circle(at right 80vh center)
    1368 PASS test unit (computed): vh - circle(at right 80vh bottom)
    1369 PASS test unit (computed): vh - circle(at right 80vh top)
     1346FAIL test unit (computed): vh - circle(at center top 50vh) assert_equals: expected "circle(at 50% 300px)" but got "none"
     1347FAIL test unit (computed): vh - circle(at center left 50vh) assert_equals: expected "circle(at 300px 50%)" but got "none"
     1348FAIL test unit (computed): vh - circle(at center right 70vh) assert_equals: expected "circle(at right 420px top 50%)" but got "none"
     1349FAIL test unit (computed): vh - circle(at center bottom 70vh) assert_equals: expected "circle(at left 50% bottom 420px)" but got "none"
     1350FAIL test unit (computed): vh - circle(at left top 50vh) assert_equals: expected "circle(at 0% 300px)" but got "none"
     1351FAIL test unit (computed): vh - circle(at left bottom 70vh) assert_equals: expected "circle(at left 0% bottom 420px)" but got "none"
     1352FAIL test unit (computed): vh - circle(at top left 50vh) assert_equals: expected "circle(at 300px 0%)" but got "none"
     1353FAIL test unit (computed): vh - circle(at top right 70vh) assert_equals: expected "circle(at right 420px top 0%)" but got "none"
     1354FAIL test unit (computed): vh - circle(at bottom left 50vh) assert_equals: expected "circle(at 300px 100%)" but got "none"
     1355FAIL test unit (computed): vh - circle(at bottom right 70vh) assert_equals: expected "circle(at right 420px top 100%)" but got "none"
     1356FAIL test unit (computed): vh - circle(at right bottom 70vh) assert_equals: expected "circle(at left 100% bottom 420px)" but got "none"
     1357FAIL test unit (computed): vh - circle(at right top 50vh) assert_equals: expected "circle(at 100% 300px)" but got "none"
     1358FAIL test unit (computed): vh - circle(at left 50vh center) assert_equals: expected "circle(at 300px 50%)" but got "none"
     1359FAIL test unit (computed): vh - circle(at left 50vh top) assert_equals: expected "circle(at 300px 0%)" but got "none"
     1360FAIL test unit (computed): vh - circle(at left 50vh bottom) assert_equals: expected "circle(at 300px 100%)" but got "none"
     1361FAIL test unit (computed): vh - circle(at top 50vh center) assert_equals: expected "circle(at 50% 300px)" but got "none"
     1362FAIL test unit (computed): vh - circle(at top 50vh left) assert_equals: expected "circle(at 0% 300px)" but got "none"
     1363FAIL test unit (computed): vh - circle(at top 50vh right) assert_equals: expected "circle(at 100% 300px)" but got "none"
     1364FAIL test unit (computed): vh - circle(at bottom 70vh center) assert_equals: expected "circle(at left 50% bottom 420px)" but got "none"
     1365FAIL test unit (computed): vh - circle(at bottom 70vh left) assert_equals: expected "circle(at left 0% bottom 420px)" but got "none"
     1366FAIL test unit (computed): vh - circle(at bottom 70vh right) assert_equals: expected "circle(at left 100% bottom 420px)" but got "none"
     1367FAIL test unit (computed): vh - circle(at right 80vh center) assert_equals: expected "circle(at right 480px top 50%)" but got "none"
     1368FAIL test unit (computed): vh - circle(at right 80vh bottom) assert_equals: expected "circle(at right 480px top 100%)" but got "none"
     1369FAIL test unit (computed): vh - circle(at right 80vh top) assert_equals: expected "circle(at right 480px top 0%)" but got "none"
    13701370PASS test unit (computed): vh - circle(at left 50% top 50vh)
    13711371PASS test unit (computed): vh - circle(at left 50% bottom 70vh)
     
    14021402PASS test unit (computed): vmin - circle(at center 60vmin)
    14031403PASS test unit (computed): vmin - circle(at 60vmin center)
    1404 PASS test unit (computed): vmin - circle(at center top 50vmin)
    1405 PASS test unit (computed): vmin - circle(at center left 50vmin)
    1406 PASS test unit (computed): vmin - circle(at center right 70vmin)
    1407 PASS test unit (computed): vmin - circle(at center bottom 70vmin)
    1408 PASS test unit (computed): vmin - circle(at left top 50vmin)
    1409 PASS test unit (computed): vmin - circle(at left bottom 70vmin)
    1410 PASS test unit (computed): vmin - circle(at top left 50vmin)
    1411 PASS test unit (computed): vmin - circle(at top right 70vmin)
    1412 PASS test unit (computed): vmin - circle(at bottom left 50vmin)
    1413 PASS test unit (computed): vmin - circle(at bottom right 70vmin)
    1414 PASS test unit (computed): vmin - circle(at right bottom 70vmin)
    1415 PASS test unit (computed): vmin - circle(at right top 50vmin)
    1416 PASS test unit (computed): vmin - circle(at left 50vmin center)
    1417 PASS test unit (computed): vmin - circle(at left 50vmin top)
    1418 PASS test unit (computed): vmin - circle(at left 50vmin bottom)
    1419 PASS test unit (computed): vmin - circle(at top 50vmin center)
    1420 PASS test unit (computed): vmin - circle(at top 50vmin left)
    1421 PASS test unit (computed): vmin - circle(at top 50vmin right)
    1422 PASS test unit (computed): vmin - circle(at bottom 70vmin center)
    1423 PASS test unit (computed): vmin - circle(at bottom 70vmin left)
    1424 PASS test unit (computed): vmin - circle(at bottom 70vmin right)
    1425 PASS test unit (computed): vmin - circle(at right 80vmin center)
    1426 PASS test unit (computed): vmin - circle(at right 80vmin bottom)
    1427 PASS test unit (computed): vmin - circle(at right 80vmin top)
     1404FAIL test unit (computed): vmin - circle(at center top 50vmin) assert_equals: expected "circle(at 50% 300px)" but got "none"
     1405FAIL test unit (computed): vmin - circle(at center left 50vmin) assert_equals: expected "circle(at 300px 50%)" but got "none"
     1406FAIL test unit (computed): vmin - circle(at center right 70vmin) assert_equals: expected "circle(at right 420px top 50%)" but got "none"
     1407FAIL test unit (computed): vmin - circle(at center bottom 70vmin) assert_equals: expected "circle(at left 50% bottom 420px)" but got "none"
     1408FAIL test unit (computed): vmin - circle(at left top 50vmin) assert_equals: expected "circle(at 0% 300px)" but got "none"
     1409FAIL test unit (computed): vmin - circle(at left bottom 70vmin) assert_equals: expected "circle(at left 0% bottom 420px)" but got "none"
     1410FAIL test unit (computed): vmin - circle(at top left 50vmin) assert_equals: expected "circle(at 300px 0%)" but got "none"
     1411FAIL test unit (computed): vmin - circle(at top right 70vmin) assert_equals: expected "circle(at right 420px top 0%)" but got "none"
     1412FAIL test unit (computed): vmin - circle(at bottom left 50vmin) assert_equals: expected "circle(at 300px 100%)" but got "none"
     1413FAIL test unit (computed): vmin - circle(at bottom right 70vmin) assert_equals: expected "circle(at right 420px top 100%)" but got "none"
     1414FAIL test unit (computed): vmin - circle(at right bottom 70vmin) assert_equals: expected "circle(at left 100% bottom 420px)" but got "none"
     1415FAIL test unit (computed): vmin - circle(at right top 50vmin) assert_equals: expected "circle(at 100% 300px)" but got "none"
     1416FAIL test unit (computed): vmin - circle(at left 50vmin center) assert_equals: expected "circle(at 300px 50%)" but got "none"
     1417FAIL test unit (computed): vmin - circle(at left 50vmin top) assert_equals: expected "circle(at 300px 0%)" but got "none"
     1418FAIL test unit (computed): vmin - circle(at left 50vmin bottom) assert_equals: expected "circle(at 300px 100%)" but got "none"
     1419FAIL test unit (computed): vmin - circle(at top 50vmin center) assert_equals: expected "circle(at 50% 300px)" but got "none"
     1420FAIL test unit (computed): vmin - circle(at top 50vmin left) assert_equals: expected "circle(at 0% 300px)" but got "none"
     1421FAIL test unit (computed): vmin - circle(at top 50vmin right) assert_equals: expected "circle(at 100% 300px)" but got "none"
     1422FAIL test unit (computed): vmin - circle(at bottom 70vmin center) assert_equals: expected "circle(at left 50% bottom 420px)" but got "none"
     1423FAIL test unit (computed): vmin - circle(at bottom 70vmin left) assert_equals: expected "circle(at left 0% bottom 420px)" but got "none"
     1424FAIL test unit (computed): vmin - circle(at bottom 70vmin right) assert_equals: expected "circle(at left 100% bottom 420px)" but got "none"
     1425FAIL test unit (computed): vmin - circle(at right 80vmin center) assert_equals: expected "circle(at right 480px top 50%)" but got "none"
     1426FAIL test unit (computed): vmin - circle(at right 80vmin bottom) assert_equals: expected "circle(at right 480px top 100%)" but got "none"
     1427FAIL test unit (computed): vmin - circle(at right 80vmin top) assert_equals: expected "circle(at right 480px top 0%)" but got "none"
    14281428PASS test unit (computed): vmin - circle(at left 50% top 50vmin)
    14291429PASS test unit (computed): vmin - circle(at left 50% bottom 70vmin)
     
    14601460PASS test unit (computed): vmax - circle(at center 60vmax)
    14611461PASS test unit (computed): vmax - circle(at 60vmax center)
    1462 PASS test unit (computed): vmax - circle(at center top 50vmax)
    1463 PASS test unit (computed): vmax - circle(at center left 50vmax)
    1464 PASS test unit (computed): vmax - circle(at center right 70vmax)
    1465 PASS test unit (computed): vmax - circle(at center bottom 70vmax)
    1466 PASS test unit (computed): vmax - circle(at left top 50vmax)
    1467 PASS test unit (computed): vmax - circle(at left bottom 70vmax)
    1468 PASS test unit (computed): vmax - circle(at top left 50vmax)
    1469 PASS test unit (computed): vmax - circle(at top right 70vmax)
    1470 PASS test unit (computed): vmax - circle(at bottom left 50vmax)
    1471 PASS test unit (computed): vmax - circle(at bottom right 70vmax)
    1472 PASS test unit (computed): vmax - circle(at right bottom 70vmax)
    1473 PASS test unit (computed): vmax - circle(at right top 50vmax)
    1474 PASS test unit (computed): vmax - circle(at left 50vmax center)
    1475 PASS test unit (computed): vmax - circle(at left 50vmax top)
    1476 PASS test unit (computed): vmax - circle(at left 50vmax bottom)
    1477 PASS test unit (computed): vmax - circle(at top 50vmax center)
    1478 PASS test unit (computed): vmax - circle(at top 50vmax left)
    1479 PASS test unit (computed): vmax - circle(at top 50vmax right)
    1480 PASS test unit (computed): vmax - circle(at bottom 70vmax center)
    1481 PASS test unit (computed): vmax - circle(at bottom 70vmax left)
    1482 PASS test unit (computed): vmax - circle(at bottom 70vmax right)
    1483 PASS test unit (computed): vmax - circle(at right 80vmax center)
    1484 PASS test unit (computed): vmax - circle(at right 80vmax bottom)
    1485 PASS test unit (computed): vmax - circle(at right 80vmax top)
     1462FAIL test unit (computed): vmax - circle(at center top 50vmax) assert_equals: expected "circle(at 50% 400px)" but got "none"
     1463FAIL test unit (computed): vmax - circle(at center left 50vmax) assert_equals: expected "circle(at 400px 50%)" but got "none"
     1464FAIL test unit (computed): vmax - circle(at center right 70vmax) assert_equals: expected "circle(at right 560px top 50%)" but got "none"
     1465FAIL test unit (computed): vmax - circle(at center bottom 70vmax) assert_equals: expected "circle(at left 50% bottom 560px)" but got "none"
     1466FAIL test unit (computed): vmax - circle(at left top 50vmax) assert_equals: expected "circle(at 0% 400px)" but got "none"
     1467FAIL test unit (computed): vmax - circle(at left bottom 70vmax) assert_equals: expected "circle(at left 0% bottom 560px)" but got "none"
     1468FAIL test unit (computed): vmax - circle(at top left 50vmax) assert_equals: expected "circle(at 400px 0%)" but got "none"
     1469FAIL test unit (computed): vmax - circle(at top right 70vmax) assert_equals: expected "circle(at right 560px top 0%)" but got "none"
     1470FAIL test unit (computed): vmax - circle(at bottom left 50vmax) assert_equals: expected "circle(at 400px 100%)" but got "none"
     1471FAIL test unit (computed): vmax - circle(at bottom right 70vmax) assert_equals: expected "circle(at right 560px top 100%)" but got "none"
     1472FAIL test unit (computed): vmax - circle(at right bottom 70vmax) assert_equals: expected "circle(at left 100% bottom 560px)" but got "none"
     1473FAIL test unit (computed): vmax - circle(at right top 50vmax) assert_equals: expected "circle(at 100% 400px)" but got "none"
     1474FAIL test unit (computed): vmax - circle(at left 50vmax center) assert_equals: expected "circle(at 400px 50%)" but got "none"
     1475FAIL test unit (computed): vmax - circle(at left 50vmax top) assert_equals: expected "circle(at 400px 0%)" but got "none"
     1476FAIL test unit (computed): vmax - circle(at left 50vmax bottom) assert_equals: expected "circle(at 400px 100%)" but got "none"
     1477FAIL test unit (computed): vmax - circle(at top 50vmax center) assert_equals: expected "circle(at 50% 400px)" but got "none"
     1478FAIL test unit (computed): vmax - circle(at top 50vmax left) assert_equals: expected "circle(at 0% 400px)" but got "none"
     1479FAIL test unit (computed): vmax - circle(at top 50vmax right) assert_equals: expected "circle(at 100% 400px)" but got "none"
     1480FAIL test unit (computed): vmax - circle(at bottom 70vmax center) assert_equals: expected "circle(at left 50% bottom 560px)" but got "none"
     1481FAIL test unit (computed): vmax - circle(at bottom 70vmax left) assert_equals: expected "circle(at left 0% bottom 560px)" but got "none"
     1482FAIL test unit (computed): vmax - circle(at bottom 70vmax right) assert_equals: expected "circle(at left 100% bottom 560px)" but got "none"
     1483FAIL test unit (computed): vmax - circle(at right 80vmax center) assert_equals: expected "circle(at right 640px top 50%)" but got "none"
     1484FAIL test unit (computed): vmax - circle(at right 80vmax bottom) assert_equals: expected "circle(at right 640px top 100%)" but got "none"
     1485FAIL test unit (computed): vmax - circle(at right 80vmax top) assert_equals: expected "circle(at right 640px top 0%)" but got "none"
    14861486PASS test unit (computed): vmax - circle(at left 50% top 50vmax)
    14871487PASS test unit (computed): vmax - circle(at left 50% bottom 70vmax)
  • trunk/LayoutTests/css3/shapes/shape-outside/values/shape-outside-ellipse-002-expected.txt

    r172733 r251668  
    4040PASS ellipse(at 60% center) serializes as ellipse(at 60% 50%) - inline
    4141PASS ellipse(at 60px center) serializes as ellipse(at 60px 50%) - inline
    42 PASS ellipse(at center top 50%) serializes as ellipse(at 50% 50%) - inline
    43 PASS ellipse(at center top 50px) serializes as ellipse(at 50% 50px) - inline
    44 PASS ellipse(at center left 50%) serializes as ellipse(at 50% 50%) - inline
    45 PASS ellipse(at center left 50px) serializes as ellipse(at 50px 50%) - inline
    46 PASS ellipse(at center right 70%) serializes as ellipse(at 30% 50%) - inline
    47 PASS ellipse(at center right 70px) serializes as ellipse(at right 70px top 50%) - inline
    48 PASS ellipse(at center bottom 70%) serializes as ellipse(at 50% 30%) - inline
    49 PASS ellipse(at center bottom 70px) serializes as ellipse(at left 50% bottom 70px) - inline
    50 PASS ellipse(at left top 50%) serializes as ellipse(at 0% 50%) - inline
    51 PASS ellipse(at left top 50px) serializes as ellipse(at 0% 50px) - inline
    52 PASS ellipse(at left bottom 70%) serializes as ellipse(at 0% 30%) - inline
    53 PASS ellipse(at left bottom 70px) serializes as ellipse(at left 0% bottom 70px) - inline
    54 PASS ellipse(at top left 50%) serializes as ellipse(at 50% 0%) - inline
    55 PASS ellipse(at top left 50px) serializes as ellipse(at 50px 0%) - inline
    56 PASS ellipse(at top right 70%) serializes as ellipse(at 30% 0%) - inline
    57 PASS ellipse(at top right 70px) serializes as ellipse(at right 70px top 0%) - inline
    58 PASS ellipse(at bottom left 50%) serializes as ellipse(at 50% 100%) - inline
    59 PASS ellipse(at bottom left 50px) serializes as ellipse(at 50px 100%) - inline
    60 PASS ellipse(at bottom right 70%) serializes as ellipse(at 30% 100%) - inline
    61 PASS ellipse(at bottom right 70px) serializes as ellipse(at right 70px top 100%) - inline
    62 PASS ellipse(at right bottom 70%) serializes as ellipse(at 100% 30%) - inline
    63 PASS ellipse(at right bottom 70px) serializes as ellipse(at left 100% bottom 70px) - inline
    64 PASS ellipse(at right top 50%) serializes as ellipse(at 100% 50%) - inline
    65 PASS ellipse(at right top 50px) serializes as ellipse(at 100% 50px) - inline
    66 PASS ellipse(at left 50% center) serializes as ellipse(at 50% 50%) - inline
    67 PASS ellipse(at left 50px center) serializes as ellipse(at 50px 50%) - inline
    68 PASS ellipse(at left 50% top) serializes as ellipse(at 50% 0%) - inline
    69 PASS ellipse(at left 50px top) serializes as ellipse(at 50px 0%) - inline
    70 PASS ellipse(at left 50% bottom) serializes as ellipse(at 50% 100%) - inline
    71 PASS ellipse(at left 50px bottom) serializes as ellipse(at 50px 100%) - inline
    72 PASS ellipse(at top 50% center) serializes as ellipse(at 50% 50%) - inline
    73 PASS ellipse(at top 50px center) serializes as ellipse(at 50% 50px) - inline
    74 PASS ellipse(at top 50% left) serializes as ellipse(at 0% 50%) - inline
    75 PASS ellipse(at top 50px left) serializes as ellipse(at 0% 50px) - inline
    76 PASS ellipse(at top 50% right) serializes as ellipse(at 100% 50%) - inline
    77 PASS ellipse(at top 50px right) serializes as ellipse(at 100% 50px) - inline
    78 PASS ellipse(at bottom 70% center) serializes as ellipse(at 50% 30%) - inline
    79 PASS ellipse(at bottom 70px center) serializes as ellipse(at left 50% bottom 70px) - inline
    80 PASS ellipse(at bottom 70% left) serializes as ellipse(at 0% 30%) - inline
    81 PASS ellipse(at bottom 70px left) serializes as ellipse(at left 0% bottom 70px) - inline
    82 PASS ellipse(at bottom 70% right) serializes as ellipse(at 100% 30%) - inline
    83 PASS ellipse(at bottom 70px right) serializes as ellipse(at left 100% bottom 70px) - inline
    84 PASS ellipse(at right 80% center) serializes as ellipse(at 20% 50%) - inline
    85 PASS ellipse(at right 80px center) serializes as ellipse(at right 80px top 50%) - inline
    86 PASS ellipse(at right 80% bottom) serializes as ellipse(at 20% 100%) - inline
    87 PASS ellipse(at right 80px bottom) serializes as ellipse(at right 80px top 100%) - inline
    88 PASS ellipse(at right 80% top) serializes as ellipse(at 20% 0%) - inline
    89 PASS ellipse(at right 80px top) serializes as ellipse(at right 80px top 0%) - inline
     42FAIL ellipse(at center top 50%) serializes as ellipse(at 50% 50%) - inline assert_equals: expected "ellipse(at 50% 50%)" but got ""
     43FAIL ellipse(at center top 50px) serializes as ellipse(at 50% 50px) - inline assert_equals: expected "ellipse(at 50% 50px)" but got ""
     44FAIL ellipse(at center left 50%) serializes as ellipse(at 50% 50%) - inline assert_equals: expected "ellipse(at 50% 50%)" but got ""
     45FAIL ellipse(at center left 50px) serializes as ellipse(at 50px 50%) - inline assert_equals: expected "ellipse(at 50px 50%)" but got ""
     46FAIL ellipse(at center right 70%) serializes as ellipse(at 30% 50%) - inline assert_equals: expected "ellipse(at 30% 50%)" but got ""
     47FAIL ellipse(at center right 70px) serializes as ellipse(at right 70px top 50%) - inline assert_equals: expected "ellipse(at right 70px top 50%)" but got ""
     48FAIL ellipse(at center bottom 70%) serializes as ellipse(at 50% 30%) - inline assert_equals: expected "ellipse(at 50% 30%)" but got ""
     49FAIL ellipse(at center bottom 70px) serializes as ellipse(at left 50% bottom 70px) - inline assert_equals: expected "ellipse(at left 50% bottom 70px)" but got ""
     50FAIL ellipse(at left top 50%) serializes as ellipse(at 0% 50%) - inline assert_equals: expected "ellipse(at 0% 50%)" but got ""
     51FAIL ellipse(at left top 50px) serializes as ellipse(at 0% 50px) - inline assert_equals: expected "ellipse(at 0% 50px)" but got ""
     52FAIL ellipse(at left bottom 70%) serializes as ellipse(at 0% 30%) - inline assert_equals: expected "ellipse(at 0% 30%)" but got ""
     53FAIL ellipse(at left bottom 70px) serializes as ellipse(at left 0% bottom 70px) - inline assert_equals: expected "ellipse(at left 0% bottom 70px)" but got ""
     54FAIL ellipse(at top left 50%) serializes as ellipse(at 50% 0%) - inline assert_equals: expected "ellipse(at 50% 0%)" but got ""
     55FAIL ellipse(at top left 50px) serializes as ellipse(at 50px 0%) - inline assert_equals: expected "ellipse(at 50px 0%)" but got ""
     56FAIL ellipse(at top right 70%) serializes as ellipse(at 30% 0%) - inline assert_equals: expected "ellipse(at 30% 0%)" but got ""
     57FAIL ellipse(at top right 70px) serializes as ellipse(at right 70px top 0%) - inline assert_equals: expected "ellipse(at right 70px top 0%)" but got ""
     58FAIL ellipse(at bottom left 50%) serializes as ellipse(at 50% 100%) - inline assert_equals: expected "ellipse(at 50% 100%)" but got ""
     59FAIL ellipse(at bottom left 50px) serializes as ellipse(at 50px 100%) - inline assert_equals: expected "ellipse(at 50px 100%)" but got ""
     60FAIL ellipse(at bottom right 70%) serializes as ellipse(at 30% 100%) - inline assert_equals: expected "ellipse(at 30% 100%)" but got ""
     61FAIL ellipse(at bottom right 70px) serializes as ellipse(at right 70px top 100%) - inline assert_equals: expected "ellipse(at right 70px top 100%)" but got ""
     62FAIL ellipse(at right bottom 70%) serializes as ellipse(at 100% 30%) - inline assert_equals: expected "ellipse(at 100% 30%)" but got ""
     63FAIL ellipse(at right bottom 70px) serializes as ellipse(at left 100% bottom 70px) - inline assert_equals: expected "ellipse(at left 100% bottom 70px)" but got ""
     64FAIL ellipse(at right top 50%) serializes as ellipse(at 100% 50%) - inline assert_equals: expected "ellipse(at 100% 50%)" but got ""
     65FAIL ellipse(at right top 50px) serializes as ellipse(at 100% 50px) - inline assert_equals: expected "ellipse(at 100% 50px)" but got ""
     66FAIL ellipse(at left 50% center) serializes as ellipse(at 50% 50%) - inline assert_equals: expected "ellipse(at 50% 50%)" but got ""
     67FAIL ellipse(at left 50px center) serializes as ellipse(at 50px 50%) - inline assert_equals: expected "ellipse(at 50px 50%)" but got ""
     68FAIL ellipse(at left 50% top) serializes as ellipse(at 50% 0%) - inline assert_equals: expected "ellipse(at 50% 0%)" but got ""
     69FAIL ellipse(at left 50px top) serializes as ellipse(at 50px 0%) - inline assert_equals: expected "ellipse(at 50px 0%)" but got ""
     70FAIL ellipse(at left 50% bottom) serializes as ellipse(at 50% 100%) - inline assert_equals: expected "ellipse(at 50% 100%)" but got ""
     71FAIL ellipse(at left 50px bottom) serializes as ellipse(at 50px 100%) - inline assert_equals: expected "ellipse(at 50px 100%)" but got ""
     72FAIL ellipse(at top 50% center) serializes as ellipse(at 50% 50%) - inline assert_equals: expected "ellipse(at 50% 50%)" but got ""
     73FAIL ellipse(at top 50px center) serializes as ellipse(at 50% 50px) - inline assert_equals: expected "ellipse(at 50% 50px)" but got ""
     74FAIL ellipse(at top 50% left) serializes as ellipse(at 0% 50%) - inline assert_equals: expected "ellipse(at 0% 50%)" but got ""
     75FAIL ellipse(at top 50px left) serializes as ellipse(at 0% 50px) - inline assert_equals: expected "ellipse(at 0% 50px)" but got ""
     76FAIL ellipse(at top 50% right) serializes as ellipse(at 100% 50%) - inline assert_equals: expected "ellipse(at 100% 50%)" but got ""
     77FAIL ellipse(at top 50px right) serializes as ellipse(at 100% 50px) - inline assert_equals: expected "ellipse(at 100% 50px)" but got ""
     78FAIL ellipse(at bottom 70% center) serializes as ellipse(at 50% 30%) - inline assert_equals: expected "ellipse(at 50% 30%)" but got ""
     79FAIL ellipse(at bottom 70px center) serializes as ellipse(at left 50% bottom 70px) - inline assert_equals: expected "ellipse(at left 50% bottom 70px)" but got ""
     80FAIL ellipse(at bottom 70% left) serializes as ellipse(at 0% 30%) - inline assert_equals: expected "ellipse(at 0% 30%)" but got ""
     81FAIL ellipse(at bottom 70px left) serializes as ellipse(at left 0% bottom 70px) - inline assert_equals: expected "ellipse(at left 0% bottom 70px)" but got ""
     82FAIL ellipse(at bottom 70% right) serializes as ellipse(at 100% 30%) - inline assert_equals: expected "ellipse(at 100% 30%)" but got ""
     83FAIL ellipse(at bottom 70px right) serializes as ellipse(at left 100% bottom 70px) - inline assert_equals: expected "ellipse(at left 100% bottom 70px)" but got ""
     84FAIL ellipse(at right 80% center) serializes as ellipse(at 20% 50%) - inline assert_equals: expected "ellipse(at 20% 50%)" but got ""
     85FAIL ellipse(at right 80px center) serializes as ellipse(at right 80px top 50%) - inline assert_equals: expected "ellipse(at right 80px top 50%)" but got ""
     86FAIL ellipse(at right 80% bottom) serializes as ellipse(at 20% 100%) - inline assert_equals: expected "ellipse(at 20% 100%)" but got ""
     87FAIL ellipse(at right 80px bottom) serializes as ellipse(at right 80px top 100%) - inline assert_equals: expected "ellipse(at right 80px top 100%)" but got ""
     88FAIL ellipse(at right 80% top) serializes as ellipse(at 20% 0%) - inline assert_equals: expected "ellipse(at 20% 0%)" but got ""
     89FAIL ellipse(at right 80px top) serializes as ellipse(at right 80px top 0%) - inline assert_equals: expected "ellipse(at right 80px top 0%)" but got ""
    9090PASS ellipse(at left 50% top 50%) serializes as ellipse(at 50% 50%) - inline
    9191PASS ellipse(at left 50% top 50px) serializes as ellipse(at 50% 50px) - inline
     
    160160PASS ellipse(at 60% center) serializes as ellipse(at 60% 50%) - computed
    161161PASS ellipse(at 60px center) serializes as ellipse(at 60px 50%) - computed
    162 PASS ellipse(at center top 50%) serializes as ellipse(at 50% 50%) - computed
    163 PASS ellipse(at center top 50px) serializes as ellipse(at 50% 50px) - computed
    164 PASS ellipse(at center left 50%) serializes as ellipse(at 50% 50%) - computed
    165 PASS ellipse(at center left 50px) serializes as ellipse(at 50px 50%) - computed
    166 PASS ellipse(at center right 70%) serializes as ellipse(at 30% 50%) - computed
    167 PASS ellipse(at center right 70px) serializes as ellipse(at right 70px top 50%) - computed
    168 PASS ellipse(at center bottom 70%) serializes as ellipse(at 50% 30%) - computed
    169 PASS ellipse(at center bottom 70px) serializes as ellipse(at left 50% bottom 70px) - computed
    170 PASS ellipse(at left top 50%) serializes as ellipse(at 0% 50%) - computed
    171 PASS ellipse(at left top 50px) serializes as ellipse(at 0% 50px) - computed
    172 PASS ellipse(at left bottom 70%) serializes as ellipse(at 0% 30%) - computed
    173 PASS ellipse(at left bottom 70px) serializes as ellipse(at left 0% bottom 70px) - computed
    174 PASS ellipse(at top left 50%) serializes as ellipse(at 50% 0%) - computed
    175 PASS ellipse(at top left 50px) serializes as ellipse(at 50px 0%) - computed
    176 PASS ellipse(at top right 70%) serializes as ellipse(at 30% 0%) - computed
    177 PASS ellipse(at top right 70px) serializes as ellipse(at right 70px top 0%) - computed
    178 PASS ellipse(at bottom left 50%) serializes as ellipse(at 50% 100%) - computed
    179 PASS ellipse(at bottom left 50px) serializes as ellipse(at 50px 100%) - computed
    180 PASS ellipse(at bottom right 70%) serializes as ellipse(at 30% 100%) - computed
    181 PASS ellipse(at bottom right 70px) serializes as ellipse(at right 70px top 100%) - computed
    182 PASS ellipse(at right bottom 70%) serializes as ellipse(at 100% 30%) - computed
    183 PASS ellipse(at right bottom 70px) serializes as ellipse(at left 100% bottom 70px) - computed
    184 PASS ellipse(at right top 50%) serializes as ellipse(at 100% 50%) - computed
    185 PASS ellipse(at right top 50px) serializes as ellipse(at 100% 50px) - computed
    186 PASS ellipse(at left 50% center) serializes as ellipse(at 50% 50%) - computed
    187 PASS ellipse(at left 50px center) serializes as ellipse(at 50px 50%) - computed
    188 PASS ellipse(at left 50% top) serializes as ellipse(at 50% 0%) - computed
    189 PASS ellipse(at left 50px top) serializes as ellipse(at 50px 0%) - computed
    190 PASS ellipse(at left 50% bottom) serializes as ellipse(at 50% 100%) - computed
    191 PASS ellipse(at left 50px bottom) serializes as ellipse(at 50px 100%) - computed
    192 PASS ellipse(at top 50% center) serializes as ellipse(at 50% 50%) - computed
    193 PASS ellipse(at top 50px center) serializes as ellipse(at 50% 50px) - computed
    194 PASS ellipse(at top 50% left) serializes as ellipse(at 0% 50%) - computed
    195 PASS ellipse(at top 50px left) serializes as ellipse(at 0% 50px) - computed
    196 PASS ellipse(at top 50% right) serializes as ellipse(at 100% 50%) - computed
    197 PASS ellipse(at top 50px right) serializes as ellipse(at 100% 50px) - computed
    198 PASS ellipse(at bottom 70% center) serializes as ellipse(at 50% 30%) - computed
    199 PASS ellipse(at bottom 70px center) serializes as ellipse(at left 50% bottom 70px) - computed
    200 PASS ellipse(at bottom 70% left) serializes as ellipse(at 0% 30%) - computed
    201 PASS ellipse(at bottom 70px left) serializes as ellipse(at left 0% bottom 70px) - computed
    202 PASS ellipse(at bottom 70% right) serializes as ellipse(at 100% 30%) - computed
    203 PASS ellipse(at bottom 70px right) serializes as ellipse(at left 100% bottom 70px) - computed
    204 PASS ellipse(at right 80% center) serializes as ellipse(at 20% 50%) - computed
    205 PASS ellipse(at right 80px center) serializes as ellipse(at right 80px top 50%) - computed
    206 PASS ellipse(at right 80% bottom) serializes as ellipse(at 20% 100%) - computed
    207 PASS ellipse(at right 80px bottom) serializes as ellipse(at right 80px top 100%) - computed
    208 PASS ellipse(at right 80% top) serializes as ellipse(at 20% 0%) - computed
    209 PASS ellipse(at right 80px top) serializes as ellipse(at right 80px top 0%) - computed
     162FAIL ellipse(at center top 50%) serializes as ellipse(at 50% 50%) - computed assert_equals: expected "ellipse(at 50% 50%)" but got "none"
     163FAIL ellipse(at center top 50px) serializes as ellipse(at 50% 50px) - computed assert_equals: expected "ellipse(at 50% 50px)" but got "none"
     164FAIL ellipse(at center left 50%) serializes as ellipse(at 50% 50%) - computed assert_equals: expected "ellipse(at 50% 50%)" but got "none"
     165FAIL ellipse(at center left 50px) serializes as ellipse(at 50px 50%) - computed assert_equals: expected "ellipse(at 50px 50%)" but got "none"
     166FAIL ellipse(at center right 70%) serializes as ellipse(at 30% 50%) - computed assert_equals: expected "ellipse(at 30% 50%)" but got "none"
     167FAIL ellipse(at center right 70px) serializes as ellipse(at right 70px top 50%) - computed assert_equals: expected "ellipse(at right 70px top 50%)" but got "none"
     168FAIL ellipse(at center bottom 70%) serializes as ellipse(at 50% 30%) - computed assert_equals: expected "ellipse(at 50% 30%)" but got "none"
     169FAIL ellipse(at center bottom 70px) serializes as ellipse(at left 50% bottom 70px) - computed assert_equals: expected "ellipse(at left 50% bottom 70px)" but got "none"
     170FAIL ellipse(at left top 50%) serializes as ellipse(at 0% 50%) - computed assert_equals: expected "ellipse(at 0% 50%)" but got "none"
     171FAIL ellipse(at left top 50px) serializes as ellipse(at 0% 50px) - computed assert_equals: expected "ellipse(at 0% 50px)" but got "none"
     172FAIL ellipse(at left bottom 70%) serializes as ellipse(at 0% 30%) - computed assert_equals: expected "ellipse(at 0% 30%)" but got "none"
     173FAIL ellipse(at left bottom 70px) serializes as ellipse(at left 0% bottom 70px) - computed assert_equals: expected "ellipse(at left 0% bottom 70px)" but got "none"
     174FAIL ellipse(at top left 50%) serializes as ellipse(at 50% 0%) - computed assert_equals: expected "ellipse(at 50% 0%)" but got "none"
     175FAIL ellipse(at top left 50px) serializes as ellipse(at 50px 0%) - computed assert_equals: expected "ellipse(at 50px 0%)" but got "none"
     176FAIL ellipse(at top right 70%) serializes as ellipse(at 30% 0%) - computed assert_equals: expected "ellipse(at 30% 0%)" but got "none"
     177FAIL ellipse(at top right 70px) serializes as ellipse(at right 70px top 0%) - computed assert_equals: expected "ellipse(at right 70px top 0%)" but got "none"
     178FAIL ellipse(at bottom left 50%) serializes as ellipse(at 50% 100%) - computed assert_equals: expected "ellipse(at 50% 100%)" but got "none"
     179FAIL ellipse(at bottom left 50px) serializes as ellipse(at 50px 100%) - computed assert_equals: expected "ellipse(at 50px 100%)" but got "none"
     180FAIL ellipse(at bottom right 70%) serializes as ellipse(at 30% 100%) - computed assert_equals: expected "ellipse(at 30% 100%)" but got "none"
     181FAIL ellipse(at bottom right 70px) serializes as ellipse(at right 70px top 100%) - computed assert_equals: expected "ellipse(at right 70px top 100%)" but got "none"
     182FAIL ellipse(at right bottom 70%) serializes as ellipse(at 100% 30%) - computed assert_equals: expected "ellipse(at 100% 30%)" but got "none"
     183FAIL ellipse(at right bottom 70px) serializes as ellipse(at left 100% bottom 70px) - computed assert_equals: expected "ellipse(at left 100% bottom 70px)" but got "none"
     184FAIL ellipse(at right top 50%) serializes as ellipse(at 100% 50%) - computed assert_equals: expected "ellipse(at 100% 50%)" but got "none"
     185FAIL ellipse(at right top 50px) serializes as ellipse(at 100% 50px) - computed assert_equals: expected "ellipse(at 100% 50px)" but got "none"
     186FAIL ellipse(at left 50% center) serializes as ellipse(at 50% 50%) - computed assert_equals: expected "ellipse(at 50% 50%)" but got "none"
     187FAIL ellipse(at left 50px center) serializes as ellipse(at 50px 50%) - computed assert_equals: expected "ellipse(at 50px 50%)" but got "none"
     188FAIL ellipse(at left 50% top) serializes as ellipse(at 50% 0%) - computed assert_equals: expected "ellipse(at 50% 0%)" but got "none"
     189FAIL ellipse(at left 50px top) serializes as ellipse(at 50px 0%) - computed assert_equals: expected "ellipse(at 50px 0%)" but got "none"
     190FAIL ellipse(at left 50% bottom) serializes as ellipse(at 50% 100%) - computed assert_equals: expected "ellipse(at 50% 100%)" but got "none"
     191FAIL ellipse(at left 50px bottom) serializes as ellipse(at 50px 100%) - computed assert_equals: expected "ellipse(at 50px 100%)" but got "none"
     192FAIL ellipse(at top 50% center) serializes as ellipse(at 50% 50%) - computed assert_equals: expected "ellipse(at 50% 50%)" but got "none"
     193FAIL ellipse(at top 50px center) serializes as ellipse(at 50% 50px) - computed assert_equals: expected "ellipse(at 50% 50px)" but got "none"
     194FAIL ellipse(at top 50% left) serializes as ellipse(at 0% 50%) - computed assert_equals: expected "ellipse(at 0% 50%)" but got "none"
     195FAIL ellipse(at top 50px left) serializes as ellipse(at 0% 50px) - computed assert_equals: expected "ellipse(at 0% 50px)" but got "none"
     196FAIL ellipse(at top 50% right) serializes as ellipse(at 100% 50%) - computed assert_equals: expected "ellipse(at 100% 50%)" but got "none"
     197FAIL ellipse(at top 50px right) serializes as ellipse(at 100% 50px) - computed assert_equals: expected "ellipse(at 100% 50px)" but got "none"
     198FAIL ellipse(at bottom 70% center) serializes as ellipse(at 50% 30%) - computed assert_equals: expected "ellipse(at 50% 30%)" but got "none"
     199FAIL ellipse(at bottom 70px center) serializes as ellipse(at left 50% bottom 70px) - computed assert_equals: expected "ellipse(at left 50% bottom 70px)" but got "none"
     200FAIL ellipse(at bottom 70% left) serializes as ellipse(at 0% 30%) - computed assert_equals: expected "ellipse(at 0% 30%)" but got "none"
     201FAIL ellipse(at bottom 70px left) serializes as ellipse(at left 0% bottom 70px) - computed assert_equals: expected "ellipse(at left 0% bottom 70px)" but got "none"
     202FAIL ellipse(at bottom 70% right) serializes as ellipse(at 100% 30%) - computed assert_equals: expected "ellipse(at 100% 30%)" but got "none"
     203FAIL ellipse(at bottom 70px right) serializes as ellipse(at left 100% bottom 70px) - computed assert_equals: expected "ellipse(at left 100% bottom 70px)" but got "none"
     204FAIL ellipse(at right 80% center) serializes as ellipse(at 20% 50%) - computed assert_equals: expected "ellipse(at 20% 50%)" but got "none"
     205FAIL ellipse(at right 80px center) serializes as ellipse(at right 80px top 50%) - computed assert_equals: expected "ellipse(at right 80px top 50%)" but got "none"
     206FAIL ellipse(at right 80% bottom) serializes as ellipse(at 20% 100%) - computed assert_equals: expected "ellipse(at 20% 100%)" but got "none"
     207FAIL ellipse(at right 80px bottom) serializes as ellipse(at right 80px top 100%) - computed assert_equals: expected "ellipse(at right 80px top 100%)" but got "none"
     208FAIL ellipse(at right 80% top) serializes as ellipse(at 20% 0%) - computed assert_equals: expected "ellipse(at 20% 0%)" but got "none"
     209FAIL ellipse(at right 80px top) serializes as ellipse(at right 80px top 0%) - computed assert_equals: expected "ellipse(at right 80px top 0%)" but got "none"
    210210PASS ellipse(at left 50% top 50%) serializes as ellipse(at 50% 50%) - computed
    211211PASS ellipse(at left 50% top 50px) serializes as ellipse(at 50% 50px) - computed
  • trunk/LayoutTests/css3/shapes/shape-outside/values/shape-outside-ellipse-004-expected.txt

    r172733 r251668  
    1010PASS test unit (inline): cm - ellipse(at center 60cm)
    1111PASS test unit (inline): cm - ellipse(at 60cm center)
    12 PASS test unit (inline): cm - ellipse(at center top 50cm)
    13 PASS test unit (inline): cm - ellipse(at center left 50cm)
    14 PASS test unit (inline): cm - ellipse(at center right 70cm)
    15 PASS test unit (inline): cm - ellipse(at center bottom 70cm)
    16 PASS test unit (inline): cm - ellipse(at left top 50cm)
    17 PASS test unit (inline): cm - ellipse(at left bottom 70cm)
    18 PASS test unit (inline): cm - ellipse(at top left 50cm)
    19 PASS test unit (inline): cm - ellipse(at top right 70cm)
    20 PASS test unit (inline): cm - ellipse(at bottom left 50cm)
    21 PASS test unit (inline): cm - ellipse(at bottom right 70cm)
    22 PASS test unit (inline): cm - ellipse(at right bottom 70cm)
    23 PASS test unit (inline): cm - ellipse(at right top 50cm)
    24 PASS test unit (inline): cm - ellipse(at left 50cm center)
    25 PASS test unit (inline): cm - ellipse(at left 50cm top)
    26 PASS test unit (inline): cm - ellipse(at left 50cm bottom)
    27 PASS test unit (inline): cm - ellipse(at top 50cm center)
    28 PASS test unit (inline): cm - ellipse(at top 50cm left)
    29 PASS test unit (inline): cm - ellipse(at top 50cm right)
    30 PASS test unit (inline): cm - ellipse(at bottom 70cm center)
    31 PASS test unit (inline): cm - ellipse(at bottom 70cm left)
    32 PASS test unit (inline): cm - ellipse(at bottom 70cm right)
    33 PASS test unit (inline): cm - ellipse(at right 80cm center)
    34 PASS test unit (inline): cm - ellipse(at right 80cm bottom)
    35 PASS test unit (inline): cm - ellipse(at right 80cm top)
     12FAIL test unit (inline): cm - ellipse(at center top 50cm) assert_equals: expected "ellipse(at 50% 50cm)" but got ""
     13FAIL test unit (inline): cm - ellipse(at center left 50cm) assert_equals: expected "ellipse(at 50cm 50%)" but got ""
     14FAIL test unit (inline): cm - ellipse(at center right 70cm) assert_equals: expected "ellipse(at right 70cm top 50%)" but got ""
     15FAIL test unit (inline): cm - ellipse(at center bottom 70cm) assert_equals: expected "ellipse(at left 50% bottom 70cm)" but got ""
     16FAIL test unit (inline): cm - ellipse(at left top 50cm) assert_equals: expected "ellipse(at 0% 50cm)" but got ""
     17FAIL test unit (inline): cm - ellipse(at left bottom 70cm) assert_equals: expected "ellipse(at left 0% bottom 70cm)" but got ""
     18FAIL test unit (inline): cm - ellipse(at top left 50cm) assert_equals: expected "ellipse(at 50cm 0%)" but got ""
     19FAIL test unit (inline): cm - ellipse(at top right 70cm) assert_equals: expected "ellipse(at right 70cm top 0%)" but got ""
     20FAIL test unit (inline): cm - ellipse(at bottom left 50cm) assert_equals: expected "ellipse(at 50cm 100%)" but got ""
     21FAIL test unit (inline): cm - ellipse(at bottom right 70cm) assert_equals: expected "ellipse(at right 70cm top 100%)" but got ""
     22FAIL test unit (inline): cm - ellipse(at right bottom 70cm) assert_equals: expected "ellipse(at left 100% bottom 70cm)" but got ""
     23FAIL test unit (inline): cm - ellipse(at right top 50cm) assert_equals: expected "ellipse(at 100% 50cm)" but got ""
     24FAIL test unit (inline): cm - ellipse(at left 50cm center) assert_equals: expected "ellipse(at 50cm 50%)" but got ""
     25FAIL test unit (inline): cm - ellipse(at left 50cm top) assert_equals: expected "ellipse(at 50cm 0%)" but got ""
     26FAIL test unit (inline): cm - ellipse(at left 50cm bottom) assert_equals: expected "ellipse(at 50cm 100%)" but got ""
     27FAIL test unit (inline): cm - ellipse(at top 50cm center) assert_equals: expected "ellipse(at 50% 50cm)" but got ""
     28FAIL test unit (inline): cm - ellipse(at top 50cm left) assert_equals: expected "ellipse(at 0% 50cm)" but got ""
     29FAIL test unit (inline): cm - ellipse(at top 50cm right) assert_equals: expected "ellipse(at 100% 50cm)" but got ""
     30FAIL test unit (inline): cm - ellipse(at bottom 70cm center) assert_equals: expected "ellipse(at left 50% bottom 70cm)" but got ""
     31FAIL test unit (inline): cm - ellipse(at bottom 70cm left) assert_equals: expected "ellipse(at left 0% bottom 70cm)" but got ""
     32FAIL test unit (inline): cm - ellipse(at bottom 70cm right) assert_equals: expected "ellipse(at left 100% bottom 70cm)" but got ""
     33FAIL test unit (inline): cm - ellipse(at right 80cm center) assert_equals: expected "ellipse(at right 80cm top 50%)" but got ""
     34FAIL test unit (inline): cm - ellipse(at right 80cm bottom) assert_equals: expected "ellipse(at right 80cm top 100%)" but got ""
     35FAIL test unit (inline): cm - ellipse(at right 80cm top) assert_equals: expected "ellipse(at right 80cm top 0%)" but got ""
    3636PASS test unit (inline): cm - ellipse(at left 50% top 50cm)
    3737PASS test unit (inline): cm - ellipse(at left 50% bottom 70cm)
     
    6868PASS test unit (inline): mm - ellipse(at center 60mm)
    6969PASS test unit (inline): mm - ellipse(at 60mm center)
    70 PASS test unit (inline): mm - ellipse(at center top 50mm)
    71 PASS test unit (inline): mm - ellipse(at center left 50mm)
    72 PASS test unit (inline): mm - ellipse(at center right 70mm)
    73 PASS test unit (inline): mm - ellipse(at center bottom 70mm)
    74 PASS test unit (inline): mm - ellipse(at left top 50mm)
    75 PASS test unit (inline): mm - ellipse(at left bottom 70mm)
    76 PASS test unit (inline): mm - ellipse(at top left 50mm)
    77 PASS test unit (inline): mm - ellipse(at top right 70mm)
    78 PASS test unit (inline): mm - ellipse(at bottom left 50mm)
    79 PASS test unit (inline): mm - ellipse(at bottom right 70mm)
    80 PASS test unit (inline): mm - ellipse(at right bottom 70mm)
    81 PASS test unit (inline): mm - ellipse(at right top 50mm)
    82 PASS test unit (inline): mm - ellipse(at left 50mm center)
    83 PASS test unit (inline): mm - ellipse(at left 50mm top)
    84 PASS test unit (inline): mm - ellipse(at left 50mm bottom)
    85 PASS test unit (inline): mm - ellipse(at top 50mm center)
    86 PASS test unit (inline): mm - ellipse(at top 50mm left)
    87 PASS test unit (inline): mm - ellipse(at top 50mm right)
    88 PASS test unit (inline): mm - ellipse(at bottom 70mm center)
    89 PASS test unit (inline): mm - ellipse(at bottom 70mm left)
    90 PASS test unit (inline): mm - ellipse(at bottom 70mm right)
    91 PASS test unit (inline): mm - ellipse(at right 80mm center)
    92 PASS test unit (inline): mm - ellipse(at right 80mm bottom)
    93 PASS test unit (inline): mm - ellipse(at right 80mm top)
     70FAIL test unit (inline): mm - ellipse(at center top 50mm) assert_equals: expected "ellipse(at 50% 50mm)" but got ""
     71FAIL test unit (inline): mm - ellipse(at center left 50mm) assert_equals: expected "ellipse(at 50mm 50%)" but got ""
     72FAIL test unit (inline): mm - ellipse(at center right 70mm) assert_equals: expected "ellipse(at right 70mm top 50%)" but got ""
     73FAIL test unit (inline): mm - ellipse(at center bottom 70mm) assert_equals: expected "ellipse(at left 50% bottom 70mm)" but got ""
     74FAIL test unit (inline): mm - ellipse(at left top 50mm) assert_equals: expected "ellipse(at 0% 50mm)" but got ""
     75FAIL test unit (inline): mm - ellipse(at left bottom 70mm) assert_equals: expected "ellipse(at left 0% bottom 70mm)" but got ""
     76FAIL test unit (inline): mm - ellipse(at top left 50mm) assert_equals: expected "ellipse(at 50mm 0%)" but got ""
     77FAIL test unit (inline): mm - ellipse(at top right 70mm) assert_equals: expected "ellipse(at right 70mm top 0%)" but got ""
     78FAIL test unit (inline): mm - ellipse(at bottom left 50mm) assert_equals: expected "ellipse(at 50mm 100%)" but got ""
     79FAIL test unit (inline): mm - ellipse(at bottom right 70mm) assert_equals: expected "ellipse(at right 70mm top 100%)" but got ""
     80FAIL test unit (inline): mm - ellipse(at right bottom 70mm) assert_equals: expected "ellipse(at left 100% bottom 70mm)" but got ""
     81FAIL test unit (inline): mm - ellipse(at right top 50mm) assert_equals: expected "ellipse(at 100% 50mm)" but got ""
     82FAIL test unit (inline): mm - ellipse(at left 50mm center) assert_equals: expected "ellipse(at 50mm 50%)" but got ""
     83FAIL test unit (inline): mm - ellipse(at left 50mm top) assert_equals: expected "ellipse(at 50mm 0%)" but got ""
     84FAIL test unit (inline): mm - ellipse(at left 50mm bottom) assert_equals: expected "ellipse(at 50mm 100%)" but got ""
     85FAIL test unit (inline): mm - ellipse(at top 50mm center) assert_equals: expected "ellipse(at 50% 50mm)" but got ""
     86FAIL test unit (inline): mm - ellipse(at top 50mm left) assert_equals: expected "ellipse(at 0% 50mm)" but got ""
     87FAIL test unit (inline): mm - ellipse(at top 50mm right) assert_equals: expected "ellipse(at 100% 50mm)" but got ""
     88FAIL test unit (inline): mm - ellipse(at bottom 70mm center) assert_equals: expected "ellipse(at left 50% bottom 70mm)" but got ""
     89FAIL test unit (inline): mm - ellipse(at bottom 70mm left) assert_equals: expected "ellipse(at left 0% bottom 70mm)" but got ""
     90FAIL test unit (inline): mm - ellipse(at bottom 70mm right) assert_equals: expected "ellipse(at left 100% bottom 70mm)" but got ""
     91FAIL test unit (inline): mm - ellipse(at right 80mm center) assert_equals: expected "ellipse(at right 80mm top 50%)" but got ""
     92FAIL test unit (inline): mm - ellipse(at right 80mm bottom) assert_equals: expected "ellipse(at right 80mm top 100%)" but got ""
     93FAIL test unit (inline): mm - ellipse(at right 80mm top) assert_equals: expected "ellipse(at right 80mm top 0%)" but got ""
    9494PASS test unit (inline): mm - ellipse(at left 50% top 50mm)
    9595PASS test unit (inline): mm - ellipse(at left 50% bottom 70mm)
     
    126126PASS test unit (inline): in - ellipse(at center 60in)
    127127PASS test unit (inline): in - ellipse(at 60in center)
    128 PASS test unit (inline): in - ellipse(at center top 50in)
    129 PASS test unit (inline): in - ellipse(at center left 50in)
    130 PASS test unit (inline): in - ellipse(at center right 70in)
    131 PASS test unit (inline): in - ellipse(at center bottom 70in)
    132 PASS test unit (inline): in - ellipse(at left top 50in)
    133 PASS test unit (inline): in - ellipse(at left bottom 70in)
    134 PASS test unit (inline): in - ellipse(at top left 50in)
    135 PASS test unit (inline): in - ellipse(at top right 70in)
    136 PASS test unit (inline): in - ellipse(at bottom left 50in)
    137 PASS test unit (inline): in - ellipse(at bottom right 70in)
    138 PASS test unit (inline): in - ellipse(at right bottom 70in)
    139 PASS test unit (inline): in - ellipse(at right top 50in)
    140 PASS test unit (inline): in - ellipse(at left 50in center)
    141 PASS test unit (inline): in - ellipse(at left 50in top)
    142 PASS test unit (inline): in - ellipse(at left 50in bottom)
    143 PASS test unit (inline): in - ellipse(at top 50in center)
    144 PASS test unit (inline): in - ellipse(at top 50in left)
    145 PASS test unit (inline): in - ellipse(at top 50in right)
    146 PASS test unit (inline): in - ellipse(at bottom 70in center)
    147 PASS test unit (inline): in - ellipse(at bottom 70in left)
    148 PASS test unit (inline): in - ellipse(at bottom 70in right)
    149 PASS test unit (inline): in - ellipse(at right 80in center)
    150 PASS test unit (inline): in - ellipse(at right 80in bottom)
    151 PASS test unit (inline): in - ellipse(at right 80in top)
     128FAIL test unit (inline): in - ellipse(at center top 50in) assert_equals: expected "ellipse(at 50% 50in)" but got ""
     129FAIL test unit (inline): in - ellipse(at center left 50in) assert_equals: expected "ellipse(at 50in 50%)" but got ""
     130FAIL test unit (inline): in - ellipse(at center right 70in) assert_equals: expected "ellipse(at right 70in top 50%)" but got ""
     131FAIL test unit (inline): in - ellipse(at center bottom 70in) assert_equals: expected "ellipse(at left 50% bottom 70in)" but got ""
     132FAIL test unit (inline): in - ellipse(at left top 50in) assert_equals: expected "ellipse(at 0% 50in)" but got ""
     133FAIL test unit (inline): in - ellipse(at left bottom 70in) assert_equals: expected "ellipse(at left 0% bottom 70in)" but got ""
     134FAIL test unit (inline): in - ellipse(at top left 50in) assert_equals: expected "ellipse(at 50in 0%)" but got ""
     135FAIL test unit (inline): in - ellipse(at top right 70in) assert_equals: expected "ellipse(at right 70in top 0%)" but got ""
     136FAIL test unit (inline): in - ellipse(at bottom left 50in) assert_equals: expected "ellipse(at 50in 100%)" but got ""
     137FAIL test unit (inline): in - ellipse(at bottom right 70in) assert_equals: expected "ellipse(at right 70in top 100%)" but got ""
     138FAIL test unit (inline): in - ellipse(at right bottom 70in) assert_equals: expected "ellipse(at left 100% bottom 70in)" but got ""
     139FAIL test unit (inline): in - ellipse(at right top 50in) assert_equals: expected "ellipse(at 100% 50in)" but got ""
     140FAIL test unit (inline): in - ellipse(at left 50in center) assert_equals: expected "ellipse(at 50in 50%)" but got ""
     141FAIL test unit (inline): in - ellipse(at left 50in top) assert_equals: expected "ellipse(at 50in 0%)" but got ""
     142FAIL test unit (inline): in - ellipse(at left 50in bottom) assert_equals: expected "ellipse(at 50in 100%)" but got ""
     143FAIL test unit (inline): in - ellipse(at top 50in center) assert_equals: expected "ellipse(at 50% 50in)" but got ""
     144FAIL test unit (inline): in - ellipse(at top 50in left) assert_equals: expected "ellipse(at 0% 50in)" but got ""
     145FAIL test unit (inline): in - ellipse(at top 50in right) assert_equals: expected "ellipse(at 100% 50in)" but got ""
     146FAIL test unit (inline): in - ellipse(at bottom 70in center) assert_equals: expected "ellipse(at left 50% bottom 70in)" but got ""
     147FAIL test unit (inline): in - ellipse(at bottom 70in left) assert_equals: expected "ellipse(at left 0% bottom 70in)" but got ""
     148FAIL test unit (inline): in - ellipse(at bottom 70in right) assert_equals: expected "ellipse(at left 100% bottom 70in)" but got ""
     149FAIL test unit (inline): in - ellipse(at right 80in center) assert_equals: expected "ellipse(at right 80in top 50%)" but got ""
     150FAIL test unit (inline): in - ellipse(at right 80in bottom) assert_equals: expected "ellipse(at right 80in top 100%)" but got ""
     151FAIL test unit (inline): in - ellipse(at right 80in top) assert_equals: expected "ellipse(at right 80in top 0%)" but got ""
    152152PASS test unit (inline): in - ellipse(at left 50% top 50in)
    153153PASS test unit (inline): in - ellipse(at left 50% bottom 70in)
     
    184184PASS test unit (inline): pt - ellipse(at center 60pt)
    185185PASS test unit (inline): pt - ellipse(at 60pt center)
    186 PASS test unit (inline): pt - ellipse(at center top 50pt)
    187 PASS test unit (inline): pt - ellipse(at center left 50pt)
    188 PASS test unit (inline): pt - ellipse(at center right 70pt)
    189 PASS test unit (inline): pt - ellipse(at center bottom 70pt)
    190 PASS test unit (inline): pt - ellipse(at left top 50pt)
    191 PASS test unit (inline): pt - ellipse(at left bottom 70pt)
    192 PASS test unit (inline): pt - ellipse(at top left 50pt)
    193 PASS test unit (inline): pt - ellipse(at top right 70pt)
    194 PASS test unit (inline): pt - ellipse(at bottom left 50pt)
    195 PASS test unit (inline): pt - ellipse(at bottom right 70pt)
    196 PASS test unit (inline): pt - ellipse(at right bottom 70pt)
    197 PASS test unit (inline): pt - ellipse(at right top 50pt)
    198 PASS test unit (inline): pt - ellipse(at left 50pt center)
    199 PASS test unit (inline): pt - ellipse(at left 50pt top)
    200 PASS test unit (inline): pt - ellipse(at left 50pt bottom)
    201 PASS test unit (inline): pt - ellipse(at top 50pt center)
    202 PASS test unit (inline): pt - ellipse(at top 50pt left)
    203 PASS test unit (inline): pt - ellipse(at top 50pt right)
    204 PASS test unit (inline): pt - ellipse(at bottom 70pt center)
    205 PASS test unit (inline): pt - ellipse(at bottom 70pt left)
    206 PASS test unit (inline): pt - ellipse(at bottom 70pt right)
    207 PASS test unit (inline): pt - ellipse(at right 80pt center)
    208 PASS test unit (inline): pt - ellipse(at right 80pt bottom)
    209 PASS test unit (inline): pt - ellipse(at right 80pt top)
     186FAIL test unit (inline): pt - ellipse(at center top 50pt) assert_equals: expected "ellipse(at 50% 50pt)" but got ""
     187FAIL test unit (inline): pt - ellipse(at center left 50pt) assert_equals: expected "ellipse(at 50pt 50%)" but got ""
     188FAIL test unit (inline): pt - ellipse(at center right 70pt) assert_equals: expected "ellipse(at right 70pt top 50%)" but got ""
     189FAIL test unit (inline): pt - ellipse(at center bottom 70pt) assert_equals: expected "ellipse(at left 50% bottom 70pt)" but got ""
     190FAIL test unit (inline): pt - ellipse(at left top 50pt) assert_equals: expected "ellipse(at 0% 50pt)" but got ""
     191FAIL test unit (inline): pt - ellipse(at left bottom 70pt) assert_equals: expected "ellipse(at left 0% bottom 70pt)" but got ""
     192FAIL test unit (inline): pt - ellipse(at top left 50pt) assert_equals: expected "ellipse(at 50pt 0%)" but got ""
     193FAIL test unit (inline): pt - ellipse(at top right 70pt) assert_equals: expected "ellipse(at right 70pt top 0%)" but got ""
     194FAIL test unit (inline): pt - ellipse(at bottom left 50pt) assert_equals: expected "ellipse(at 50pt 100%)" but got ""
     195FAIL test unit (inline): pt - ellipse(at bottom right 70pt) assert_equals: expected "ellipse(at right 70pt top 100%)" but got ""
     196FAIL test unit (inline): pt - ellipse(at right bottom 70pt) assert_equals: expected "ellipse(at left 100% bottom 70pt)" but got ""
     197FAIL test unit (inline): pt - ellipse(at right top 50pt) assert_equals: expected "ellipse(at 100% 50pt)" but got ""
     198FAIL test unit (inline): pt - ellipse(at left 50pt center) assert_equals: expected "ellipse(at 50pt 50%)" but got ""
     199FAIL test unit (inline): pt - ellipse(at left 50pt top) assert_equals: expected "ellipse(at 50pt 0%)" but got ""
     200FAIL test unit (inline): pt - ellipse(at left 50pt bottom) assert_equals: expected "ellipse(at 50pt 100%)" but got ""
     201FAIL test unit (inline): pt - ellipse(at top 50pt center) assert_equals: expected "ellipse(at 50% 50pt)" but got ""
     202FAIL test unit (inline): pt - ellipse(at top 50pt left) assert_equals: expected "ellipse(at 0% 50pt)" but got ""
     203FAIL test unit (inline): pt - ellipse(at top 50pt right) assert_equals: expected "ellipse(at 100% 50pt)" but got ""
     204FAIL test unit (inline): pt - ellipse(at bottom 70pt center) assert_equals: expected "ellipse(at left 50% bottom 70pt)" but got ""
     205FAIL test unit (inline): pt - ellipse(at bottom 70pt left) assert_equals: expected "ellipse(at left 0% bottom 70pt)" but got ""
     206FAIL test unit (inline): pt - ellipse(at bottom 70pt right) assert_equals: expected "ellipse(at left 100% bottom 70pt)" but got ""
     207FAIL test unit (inline): pt - ellipse(at right 80pt center) assert_equals: expected "ellipse(at right 80pt top 50%)" but got ""
     208FAIL test unit (inline): pt - ellipse(at right 80pt bottom) assert_equals: expected "ellipse(at right 80pt top 100%)" but got ""
     209FAIL test unit (inline): pt - ellipse(at right 80pt top) assert_equals: expected "ellipse(at right 80pt top 0%)" but got ""
    210210PASS test unit (inline): pt - ellipse(at left 50% top 50pt)
    211211PASS test unit (inline): pt - ellipse(at left 50% bottom 70pt)
     
    242242PASS test unit (inline): pc - ellipse(at center 60pc)
    243243PASS test unit (inline): pc - ellipse(at 60pc center)
    244 PASS test unit (inline): pc - ellipse(at center top 50pc)
    245 PASS test unit (inline): pc - ellipse(at center left 50pc)
    246 PASS test unit (inline): pc - ellipse(at center right 70pc)
    247 PASS test unit (inline): pc - ellipse(at center bottom 70pc)
    248 PASS test unit (inline): pc - ellipse(at left top 50pc)
    249 PASS test unit (inline): pc - ellipse(at left bottom 70pc)
    250 PASS test unit (inline): pc - ellipse(at top left 50pc)
    251 PASS test unit (inline): pc - ellipse(at top right 70pc)
    252 PASS test unit (inline): pc - ellipse(at bottom left 50pc)
    253 PASS test unit (inline): pc - ellipse(at bottom right 70pc)
    254 PASS test unit (inline): pc - ellipse(at right bottom 70pc)
    255 PASS test unit (inline): pc - ellipse(at right top 50pc)
    256 PASS test unit (inline): pc - ellipse(at left 50pc center)
    257 PASS test unit (inline): pc - ellipse(at left 50pc top)
    258 PASS test unit (inline): pc - ellipse(at left 50pc bottom)
    259 PASS test unit (inline): pc - ellipse(at top 50pc center)
    260 PASS test unit (inline): pc - ellipse(at top 50pc left)
    261 PASS test unit (inline): pc - ellipse(at top 50pc right)
    262 PASS test unit (inline): pc - ellipse(at bottom 70pc center)
    263 PASS test unit (inline): pc - ellipse(at bottom 70pc left)
    264 PASS test unit (inline): pc - ellipse(at bottom 70pc right)
    265 PASS test unit (inline): pc - ellipse(at right 80pc center)
    266 PASS test unit (inline): pc - ellipse(at right 80pc bottom)
    267 PASS test unit (inline): pc - ellipse(at right 80pc top)
     244FAIL test unit (inline): pc - ellipse(at center top 50pc) assert_equals: expected "ellipse(at 50% 50pc)" but got ""
     245FAIL test unit (inline): pc - ellipse(at center left 50pc) assert_equals: expected "ellipse(at 50pc 50%)" but got ""
     246FAIL test unit (inline): pc - ellipse(at center right 70pc) assert_equals: expected "ellipse(at right 70pc top 50%)" but got ""
     247FAIL test unit (inline): pc - ellipse(at center bottom 70pc) assert_equals: expected "ellipse(at left 50% bottom 70pc)" but got ""
     248FAIL test unit (inline): pc - ellipse(at left top 50pc) assert_equals: expected "ellipse(at 0% 50pc)" but got ""
     249FAIL test unit (inline): pc - ellipse(at left bottom 70pc) assert_equals: expected "ellipse(at left 0% bottom 70pc)" but got ""
     250FAIL test unit (inline): pc - ellipse(at top left 50pc) assert_equals: expected "ellipse(at 50pc 0%)" but got ""
     251FAIL test unit (inline): pc - ellipse(at top right 70pc) assert_equals: expected "ellipse(at right 70pc top 0%)" but got ""
     252FAIL test unit (inline): pc - ellipse(at bottom left 50pc) assert_equals: expected "ellipse(at 50pc 100%)" but got ""
     253FAIL test unit (inline): pc - ellipse(at bottom right 70pc) assert_equals: expected "ellipse(at right 70pc top 100%)" but got ""
     254FAIL test unit (inline): pc - ellipse(at right bottom 70pc) assert_equals: expected "ellipse(at left 100% bottom 70pc)" but got ""
     255FAIL test unit (inline): pc - ellipse(at right top 50pc) assert_equals: expected "ellipse(at 100% 50pc)" but got ""
     256FAIL test unit (inline): pc - ellipse(at left 50pc center) assert_equals: expected "ellipse(at 50pc 50%)" but got ""
     257FAIL test unit (inline): pc - ellipse(at left 50pc top) assert_equals: expected "ellipse(at 50pc 0%)" but got ""
     258FAIL test unit (inline): pc - ellipse(at left 50pc bottom) assert_equals: expected "ellipse(at 50pc 100%)" but got ""
     259FAIL test unit (inline): pc - ellipse(at top 50pc center) assert_equals: expected "ellipse(at 50% 50pc)" but got ""
     260FAIL test unit (inline): pc - ellipse(at top 50pc left) assert_equals: expected "ellipse(at 0% 50pc)" but got ""
     261FAIL test unit (inline): pc - ellipse(at top 50pc right) assert_equals: expected "ellipse(at 100% 50pc)" but got ""
     262FAIL test unit (inline): pc - ellipse(at bottom 70pc center) assert_equals: expected "ellipse(at left 50% bottom 70pc)" but got ""
     263FAIL test unit (inline): pc - ellipse(at bottom 70pc left) assert_equals: expected "ellipse(at left 0% bottom 70pc)" but got ""
     264FAIL test unit (inline): pc - ellipse(at bottom 70pc right) assert_equals: expected "ellipse(at left 100% bottom 70pc)" but got ""
     265FAIL test unit (inline): pc - ellipse(at right 80pc center) assert_equals: expected "ellipse(at right 80pc top 50%)" but got ""
     266FAIL test unit (inline): pc - ellipse(at right 80pc bottom) assert_equals: expected "ellipse(at right 80pc top 100%)" but got ""
     267FAIL test unit (inline): pc - ellipse(at right 80pc top) assert_equals: expected "ellipse(at right 80pc top 0%)" but got ""
    268268PASS test unit (inline): pc - ellipse(at left 50% top 50pc)
    269269PASS test unit (inline): pc - ellipse(at left 50% bottom 70pc)
     
    300300PASS test unit (inline): em - ellipse(at center 60em)
    301301PASS test unit (inline): em - ellipse(at 60em center)
    302 PASS test unit (inline): em - ellipse(at center top 50em)
    303 PASS test unit (inline): em - ellipse(at center left 50em)
    304 PASS test unit (inline): em - ellipse(at center right 70em)
    305 PASS test unit (inline): em - ellipse(at center bottom 70em)
    306 PASS test unit (inline): em - ellipse(at left top 50em)
    307 PASS test unit (inline): em - ellipse(at left bottom 70em)
    308 PASS test unit (inline): em - ellipse(at top left 50em)
    309 PASS test unit (inline): em - ellipse(at top right 70em)
    310 PASS test unit (inline): em - ellipse(at bottom left 50em)
    311 PASS test unit (inline): em - ellipse(at bottom right 70em)
    312 PASS test unit (inline): em - ellipse(at right bottom 70em)
    313 PASS test unit (inline): em - ellipse(at right top 50em)
    314 PASS test unit (inline): em - ellipse(at left 50em center)
    315 PASS test unit (inline): em - ellipse(at left 50em top)
    316 PASS test unit (inline): em - ellipse(at left 50em bottom)
    317 PASS test unit (inline): em - ellipse(at top 50em center)
    318 PASS test unit (inline): em - ellipse(at top 50em left)
    319 PASS test unit (inline): em - ellipse(at top 50em right)
    320 PASS test unit (inline): em - ellipse(at bottom 70em center)
    321 PASS test unit (inline): em - ellipse(at bottom 70em left)
    322 PASS test unit (inline): em - ellipse(at bottom 70em right)
    323 PASS test unit (inline): em - ellipse(at right 80em center)
    324 PASS test unit (inline): em - ellipse(at right 80em bottom)
    325 PASS test unit (inline): em - ellipse(at right 80em top)
     302FAIL test unit (inline): em - ellipse(at center top 50em) assert_equals: expected "ellipse(at 50% 50em)" but got ""
     303FAIL test unit (inline): em - ellipse(at center left 50em) assert_equals: expected "ellipse(at 50em 50%)" but got ""
     304FAIL test unit (inline): em - ellipse(at center right 70em) assert_equals: expected "ellipse(at right 70em top 50%)" but got ""
     305FAIL test unit (inline): em - ellipse(at center bottom 70em) assert_equals: expected "ellipse(at left 50% bottom 70em)" but got ""
     306FAIL test unit (inline): em - ellipse(at left top 50em) assert_equals: expected "ellipse(at 0% 50em)" but got ""
     307FAIL test unit (inline): em - ellipse(at left bottom 70em) assert_equals: expected "ellipse(at left 0% bottom 70em)" but got ""
     308FAIL test unit (inline): em - ellipse(at top left 50em) assert_equals: expected "ellipse(at 50em 0%)" but got ""
     309FAIL test unit (inline): em - ellipse(at top right 70em) assert_equals: expected "ellipse(at right 70em top 0%)" but got ""
     310FAIL test unit (inline): em - ellipse(at bottom left 50em) assert_equals: expected "ellipse(at 50em 100%)" but got ""
     311FAIL test unit (inline): em - ellipse(at bottom right 70em) assert_equals: expected "ellipse(at right 70em top 100%)" but got ""
     312FAIL test unit (inline): em - ellipse(at right bottom 70em) assert_equals: expected "ellipse(at left 100% bottom 70em)" but got ""
     313FAIL test unit (inline): em - ellipse(at right top 50em) assert_equals: expected "ellipse(at 100% 50em)" but got ""
     314FAIL test unit (inline): em - ellipse(at left 50em center) assert_equals: expected "ellipse(at 50em 50%)" but got ""
     315FAIL test unit (inline): em - ellipse(at left 50em top) assert_equals: expected "ellipse(at 50em 0%)" but got ""
     316FAIL test unit (inline): em - ellipse(at left 50em bottom) assert_equals: expected "ellipse(at 50em 100%)" but got ""
     317FAIL test unit (inline): em - ellipse(at top 50em center) assert_equals: expected "ellipse(at 50% 50em)" but got ""
     318FAIL test unit (inline): em - ellipse(at top 50em left) assert_equals: expected "ellipse(at 0% 50em)" but got ""
     319FAIL test unit (inline): em - ellipse(at top 50em right) assert_equals: expected "ellipse(at 100% 50em)" but got ""
     320FAIL test unit (inline): em - ellipse(at bottom 70em center) assert_equals: expected "ellipse(at left 50% bottom 70em)" but got ""
     321FAIL test unit (inline): em - ellipse(at bottom 70em left) assert_equals: expected "ellipse(at left 0% bottom 70em)" but got ""
     322FAIL test unit (inline): em - ellipse(at bottom 70em right) assert_equals: expected "ellipse(at left 100% bottom 70em)" but got ""
     323FAIL test unit (inline): em - ellipse(at right 80em center) assert_equals: expected "ellipse(at right 80em top 50%)" but got ""
     324FAIL test unit (inline): em - ellipse(at right 80em bottom) assert_equals: expected "ellipse(at right 80em top 100%)" but got ""
     325FAIL test unit (inline): em - ellipse(at right 80em top) assert_equals: expected "ellipse(at right 80em top 0%)" but got ""
    326326PASS test unit (inline): em - ellipse(at left 50% top 50em)
    327327PASS test unit (inline): em - ellipse(at left 50% bottom 70em)
     
    358358PASS test unit (inline): ex - ellipse(at center 60ex)
    359359PASS test unit (inline): ex - ellipse(at 60ex center)
    360 PASS test unit (inline): ex - ellipse(at center top 50ex)
    361 PASS test unit (inline): ex - ellipse(at center left 50ex)
    362 PASS test unit (inline): ex - ellipse(at center right 70ex)
    363 PASS test unit (inline): ex - ellipse(at center bottom 70ex)
    364 PASS test unit (inline): ex - ellipse(at left top 50ex)
    365 PASS test unit (inline): ex - ellipse(at left bottom 70ex)
    366 PASS test unit (inline): ex - ellipse(at top left 50ex)
    367 PASS test unit (inline): ex - ellipse(at top right 70ex)
    368 PASS test unit (inline): ex - ellipse(at bottom left 50ex)
    369 PASS test unit (inline): ex - ellipse(at bottom right 70ex)
    370 PASS test unit (inline): ex - ellipse(at right bottom 70ex)
    371 PASS test unit (inline): ex - ellipse(at right top 50ex)
    372 PASS test unit (inline): ex - ellipse(at left 50ex center)
    373 PASS test unit (inline): ex - ellipse(at left 50ex top)
    374 PASS test unit (inline): ex - ellipse(at left 50ex bottom)
    375 PASS test unit (inline): ex - ellipse(at top 50ex center)
    376 PASS test unit (inline): ex - ellipse(at top 50ex left)
    377 PASS test unit (inline): ex - ellipse(at top 50ex right)
    378 PASS test unit (inline): ex - ellipse(at bottom 70ex center)
    379 PASS test unit (inline): ex - ellipse(at bottom 70ex left)
    380 PASS test unit (inline): ex - ellipse(at bottom 70ex right)
    381 PASS test unit (inline): ex - ellipse(at right 80ex center)
    382 PASS test unit (inline): ex - ellipse(at right 80ex bottom)
    383 PASS test unit (inline): ex - ellipse(at right 80ex top)
     360FAIL test unit (inline): ex - ellipse(at center top 50ex) assert_equals: expected "ellipse(at 50% 50ex)" but got ""
     361FAIL test unit (inline): ex - ellipse(at center left 50ex) assert_equals: expected "ellipse(at 50ex 50%)" but got ""
     362FAIL test unit (inline): ex - ellipse(at center right 70ex) assert_equals: expected "ellipse(at right 70ex top 50%)" but got ""
     363FAIL test unit (inline): ex - ellipse(at center bottom 70ex) assert_equals: expected "ellipse(at left 50% bottom 70ex)" but got ""
     364FAIL test unit (inline): ex - ellipse(at left top 50ex) assert_equals: expected "ellipse(at 0% 50ex)" but got ""
     365FAIL test unit (inline): ex - ellipse(at left bottom 70ex) assert_equals: expected "ellipse(at left 0% bottom 70ex)" but got ""
     366FAIL test unit (inline): ex - ellipse(at top left 50ex) assert_equals: expected "ellipse(at 50ex 0%)" but got ""
     367FAIL test unit (inline): ex - ellipse(at top right 70ex) assert_equals: expected "ellipse(at right 70ex top 0%)" but got ""
     368FAIL test unit (inline): ex - ellipse(at bottom left 50ex) assert_equals: expected "ellipse(at 50ex 100%)" but got ""
     369FAIL test unit (inline): ex - ellipse(at bottom right 70ex) assert_equals: expected "ellipse(at right 70ex top 100%)" but got ""
     370FAIL test unit (inline): ex - ellipse(at right bottom 70ex) assert_equals: expected "ellipse(at left 100% bottom 70ex)" but got ""
     371FAIL test unit (inline): ex - ellipse(at right top 50ex) assert_equals: expected "ellipse(at 100% 50ex)" but got ""
     372FAIL test unit (inline): ex - ellipse(at left 50ex center) assert_equals: expected "ellipse(at 50ex 50%)" but got ""
     373FAIL test unit (inline): ex - ellipse(at left 50ex top) assert_equals: expected "ellipse(at 50ex 0%)" but got ""
     374FAIL test unit (inline): ex - ellipse(at left 50ex bottom) assert_equals: expected "ellipse(at 50ex 100%)" but got ""
     375FAIL test unit (inline): ex - ellipse(at top 50ex center) assert_equals: expected "ellipse(at 50% 50ex)" but got ""
     376FAIL test unit (inline): ex - ellipse(at top 50ex left) assert_equals: expected "ellipse(at 0% 50ex)" but got ""
     377FAIL test unit (inline): ex - ellipse(at top 50ex right) assert_equals: expected "ellipse(at 100% 50ex)" but got ""
     378FAIL test unit (inline): ex - ellipse(at bottom 70ex center) assert_equals: expected "ellipse(at left 50% bottom 70ex)" but got ""
     379FAIL test unit (inline): ex - ellipse(at bottom 70ex left) assert_equals: expected "ellipse(at left 0% bottom 70ex)" but got ""
     380FAIL test unit (inline): ex - ellipse(at bottom 70ex right) assert_equals: expected "ellipse(at left 100% bottom 70ex)" but got ""
     381FAIL test unit (inline): ex - ellipse(at right 80ex center) assert_equals: expected "ellipse(at right 80ex top 50%)" but got ""
     382FAIL test unit (inline): ex - ellipse(at right 80ex bottom) assert_equals: expected "ellipse(at right 80ex top 100%)" but got ""
     383FAIL test unit (inline): ex - ellipse(at right 80ex top) assert_equals: expected "ellipse(at right 80ex top 0%)" but got ""
    384384PASS test unit (inline): ex - ellipse(at left 50% top 50ex)
    385385PASS test unit (inline): ex - ellipse(at left 50% bottom 70ex)
     
    416416PASS test unit (inline): ch - ellipse(at center 60ch)
    417417PASS test unit (inline): ch - ellipse(at 60ch center)
    418 PASS test unit (inline): ch - ellipse(at center top 50ch)
    419 PASS test unit (inline): ch - ellipse(at center left 50ch)
    420 PASS test unit (inline): ch - ellipse(at center right 70ch)
    421 PASS test unit (inline): ch - ellipse(at center bottom 70ch)
    422 PASS test unit (inline): ch - ellipse(at left top 50ch)
    423 PASS test unit (inline): ch - ellipse(at left bottom 70ch)
    424 PASS test unit (inline): ch - ellipse(at top left 50ch)
    425 PASS test unit (inline): ch - ellipse(at top right 70ch)
    426 PASS test unit (inline): ch - ellipse(at bottom left 50ch)
    427 PASS test unit (inline): ch - ellipse(at bottom right 70ch)
    428 PASS test unit (inline): ch - ellipse(at right bottom 70ch)
    429 PASS test unit (inline): ch - ellipse(at right top 50ch)
    430 PASS test unit (inline): ch - ellipse(at left 50ch center)
    431 PASS test unit (inline): ch - ellipse(at left 50ch top)
    432 PASS test unit (inline): ch - ellipse(at left 50ch bottom)
    433 PASS test unit (inline): ch - ellipse(at top 50ch center)
    434 PASS test unit (inline): ch - ellipse(at top 50ch left)
    435 PASS test unit (inline): ch - ellipse(at top 50ch right)
    436 PASS test unit (inline): ch - ellipse(at bottom 70ch center)
    437 PASS test unit (inline): ch - ellipse(at bottom 70ch left)
    438 PASS test unit (inline): ch - ellipse(at bottom 70ch right)
    439 PASS test unit (inline): ch - ellipse(at right 80ch center)
    440 PASS test unit (inline): ch - ellipse(at right 80ch bottom)
    441 PASS test unit (inline): ch - ellipse(at right 80ch top)
     418FAIL test unit (inline): ch - ellipse(at center top 50ch) assert_equals: expected "ellipse(at 50% 50ch)" but got ""
     419FAIL test unit (inline): ch - ellipse(at center left 50ch) assert_equals: expected "ellipse(at 50ch 50%)" but got ""
     420FAIL test unit (inline): ch - ellipse(at center right 70ch) assert_equals: expected "ellipse(at right 70ch top 50%)" but got ""
     421FAIL test unit (inline): ch - ellipse(at center bottom 70ch) assert_equals: expected "ellipse(at left 50% bottom 70ch)" but got ""
     422FAIL test unit (inline): ch - ellipse(at left top 50ch) assert_equals: expected "ellipse(at 0% 50ch)" but got ""
     423FAIL test unit (inline): ch - ellipse(at left bottom 70ch) assert_equals: expected "ellipse(at left 0% bottom 70ch)" but got ""
     424FAIL test unit (inline): ch - ellipse(at top left 50ch) assert_equals: expected "ellipse(at 50ch 0%)" but got ""
     425FAIL test unit (inline): ch - ellipse(at top right 70ch) assert_equals: expected "ellipse(at right 70ch top 0%)" but got ""
     426FAIL test unit (inline): ch - ellipse(at bottom left 50ch) assert_equals: expected "ellipse(at 50ch 100%)" but got ""
     427FAIL test unit (inline): ch - ellipse(at bottom right 70ch) assert_equals: expected "ellipse(at right 70ch top 100%)" but got ""
     428FAIL test unit (inline): ch - ellipse(at right bottom 70ch) assert_equals: expected "ellipse(at left 100% bottom 70ch)" but got ""
     429FAIL test unit (inline): ch - ellipse(at right top 50ch) assert_equals: expected "ellipse(at 100% 50ch)" but got ""
     430FAIL test unit (inline): ch - ellipse(at left 50ch center) assert_equals: expected "ellipse(at 50ch 50%)" but got ""
     431FAIL test unit (inline): ch - ellipse(at left 50ch top) assert_equals: expected "ellipse(at 50ch 0%)" but got ""
     432FAIL test unit (inline): ch - ellipse(at left 50ch bottom) assert_equals: expected "ellipse(at 50ch 100%)" but got ""
     433FAIL test unit (inline): ch - ellipse(at top 50ch center) assert_equals: expected "ellipse(at 50% 50ch)" but got ""
     434FAIL test unit (inline): ch - ellipse(at top 50ch left) assert_equals: expected "ellipse(at 0% 50ch)" but got ""
     435FAIL test unit (inline): ch - ellipse(at top 50ch right) assert_equals: expected "ellipse(at 100% 50ch)" but got ""
     436FAIL test unit (inline): ch - ellipse(at bottom 70ch center) assert_equals: expected "ellipse(at left 50% bottom 70ch)" but got ""
     437FAIL test unit (inline): ch - ellipse(at bottom 70ch left) assert_equals: expected "ellipse(at left 0% bottom 70ch)" but got ""
     438FAIL test unit (inline): ch - ellipse(at bottom 70ch right) assert_equals: expected "ellipse(at left 100% bottom 70ch)" but got ""
     439FAIL test unit (inline): ch - ellipse(at right 80ch center) assert_equals: expected "ellipse(at right 80ch top 50%)" but got ""
     440FAIL test unit (inline): ch - ellipse(at right 80ch bottom) assert_equals: expected "ellipse(at right 80ch top 100%)" but got ""
     441FAIL test unit (inline): ch - ellipse(at right 80ch top) assert_equals: expected "ellipse(at right 80ch top 0%)" but got ""
    442442PASS test unit (inline): ch - ellipse(at left 50% top 50ch)
    443443PASS test unit (inline): ch - ellipse(at left 50% bottom 70ch)
     
    474474PASS test unit (inline): rem - ellipse(at center 60rem)
    475475PASS test unit (inline): rem - ellipse(at 60rem center)
    476 PASS test unit (inline): rem - ellipse(at center top 50rem)
    477 PASS test unit (inline): rem - ellipse(at center left 50rem)
    478 PASS test unit (inline): rem - ellipse(at center right 70rem)
    479 PASS test unit (inline): rem - ellipse(at center bottom 70rem)
    480 PASS test unit (inline): rem - ellipse(at left top 50rem)
    481 PASS test unit (inline): rem - ellipse(at left bottom 70rem)
    482 PASS test unit (inline): rem - ellipse(at top left 50rem)
    483 PASS test unit (inline): rem - ellipse(at top right 70rem)
    484 PASS test unit (inline): rem - ellipse(at bottom left 50rem)
    485 PASS test unit (inline): rem - ellipse(at bottom right 70rem)
    486 PASS test unit (inline): rem - ellipse(at right bottom 70rem)
    487 PASS test unit (inline): rem - ellipse(at right top 50rem)
    488 PASS test unit (inline): rem - ellipse(at left 50rem center)
    489 PASS test unit (inline): rem - ellipse(at left 50rem top)
    490 PASS test unit (inline): rem - ellipse(at left 50rem bottom)
    491 PASS test unit (inline): rem - ellipse(at top 50rem center)
    492 PASS test unit (inline): rem - ellipse(at top 50rem left)
    493 PASS test unit (inline): rem - ellipse(at top 50rem right)
    494 PASS test unit (inline): rem - ellipse(at bottom 70rem center)
    495 PASS test unit (inline): rem - ellipse(at bottom 70rem left)
    496 PASS test unit (inline): rem - ellipse(at bottom 70rem right)
    497 PASS test unit (inline): rem - ellipse(at right 80rem center)
    498 PASS test unit (inline): rem - ellipse(at right 80rem bottom)
    499 PASS test unit (inline): rem - ellipse(at right 80rem top)
     476FAIL test unit (inline): rem - ellipse(at center top 50rem) assert_equals: expected "ellipse(at 50% 50rem)" but got ""
     477FAIL test unit (inline): rem - ellipse(at center left 50rem) assert_equals: expected "ellipse(at 50rem 50%)" but got ""
     478FAIL test unit (inline): rem - ellipse(at center right 70rem) assert_equals: expected "ellipse(at right 70rem top 50%)" but got ""
     479FAIL test unit (inline): rem - ellipse(at center bottom 70rem) assert_equals: expected "ellipse(at left 50% bottom 70rem)" but got ""
     480FAIL test unit (inline): rem - ellipse(at left top 50rem) assert_equals: expected "ellipse(at 0% 50rem)" but got ""
     481FAIL test unit (inline): rem - ellipse(at left bottom 70rem) assert_equals: expected "ellipse(at left 0% bottom 70rem)" but got ""
     482FAIL test unit (inline): rem - ellipse(at top left 50rem) assert_equals: expected "ellipse(at 50rem 0%)" but got ""
     483FAIL test unit (inline): rem - ellipse(at top right 70rem) assert_equals: expected "ellipse(at right 70rem top 0%)" but got ""
     484FAIL test unit (inline): rem - ellipse(at bottom left 50rem) assert_equals: expected "ellipse(at 50rem 100%)" but got ""
     485FAIL test unit (inline): rem - ellipse(at bottom right 70rem) assert_equals: expected "ellipse(at right 70rem top 100%)" but got ""
     486FAIL test unit (inline): rem - ellipse(at right bottom 70rem) assert_equals: expected "ellipse(at left 100% bottom 70rem)" but got ""
     487FAIL test unit (inline): rem - ellipse(at right top 50rem) assert_equals: expected "ellipse(at 100% 50rem)" but got ""
     488FAIL test unit (inline): rem - ellipse(at left 50rem center) assert_equals: expected "ellipse(at 50rem 50%)" but got ""
     489FAIL test unit (inline): rem - ellipse(at left 50rem top) assert_equals: expected "ellipse(at 50rem 0%)" but got ""
     490FAIL test unit (inline): rem - ellipse(at left 50rem bottom) assert_equals: expected "ellipse(at 50rem 100%)" but got ""
     491FAIL test unit (inline): rem - ellipse(at top 50rem center) assert_equals: expected "ellipse(at 50% 50rem)" but got ""
     492FAIL test unit (inline): rem - ellipse(at top 50rem left) assert_equals: expected "ellipse(at 0% 50rem)" but got ""
     493FAIL test unit (inline): rem - ellipse(at top 50rem right) assert_equals: expected "ellipse(at 100% 50rem)" but got ""
     494FAIL test unit (inline): rem - ellipse(at bottom 70rem center) assert_equals: expected "ellipse(at left 50% bottom 70rem)" but got ""
     495FAIL test unit (inline): rem - ellipse(at bottom 70rem left) assert_equals: expected "ellipse(at left 0% bottom 70rem)" but got ""
     496FAIL test unit (inline): rem - ellipse(at bottom 70rem right) assert_equals: expected "ellipse(at left 100% bottom 70rem)" but got ""
     497FAIL test unit (inline): rem - ellipse(at right 80rem center) assert_equals: expected "ellipse(at right 80rem top 50%)" but got ""
     498FAIL test unit (inline): rem - ellipse(at right 80rem bottom) assert_equals: expected "ellipse(at right 80rem top 100%)" but got ""
     499FAIL test unit (inline): rem - ellipse(at right 80rem top) assert_equals: expected "ellipse(at right 80rem top 0%)" but got ""
    500500PASS test unit (inline): rem - ellipse(at left 50% top 50rem)
    501501PASS test unit (inline): rem - ellipse(at left 50% bottom 70rem)
     
    532532PASS test unit (inline): vw - ellipse(at center 60vw)
    533533PASS test unit (inline): vw - ellipse(at 60vw center)
    534 PASS test unit (inline): vw - ellipse(at center top 50vw)
    535 PASS test unit (inline): vw - ellipse(at center left 50vw)
    536 PASS test unit (inline): vw - ellipse(at center right 70vw)
    537 PASS test unit (inline): vw - ellipse(at center bottom 70vw)
    538 PASS test unit (inline): vw - ellipse(at left top 50vw)
    539 PASS test unit (inline): vw - ellipse(at left bottom 70vw)
    540 PASS test unit (inline): vw - ellipse(at top left 50vw)
    541 PASS test unit (inline): vw - ellipse(at top right 70vw)
    542 PASS test unit (inline): vw - ellipse(at bottom left 50vw)
    543 PASS test unit (inline): vw - ellipse(at bottom right 70vw)
    544 PASS test unit (inline): vw - ellipse(at right bottom 70vw)
    545 PASS test unit (inline): vw - ellipse(at right top 50vw)
    546 PASS test unit (inline): vw - ellipse(at left 50vw center)
    547 PASS test unit (inline): vw - ellipse(at left 50vw top)
    548 PASS test unit (inline): vw - ellipse(at left 50vw bottom)
    549 PASS test unit (inline): vw - ellipse(at top 50vw center)
    550 PASS test unit (inline): vw - ellipse(at top 50vw left)
    551 PASS test unit (inline): vw - ellipse(at top 50vw right)
    552 PASS test unit (inline): vw - ellipse(at bottom 70vw center)
    553 PASS test unit (inline): vw - ellipse(at bottom 70vw left)
    554 PASS test unit (inline): vw - ellipse(at bottom 70vw right)
    555 PASS test unit (inline): vw - ellipse(at right 80vw center)
    556 PASS test unit (inline): vw - ellipse(at right 80vw bottom)
    557 PASS test unit (inline): vw - ellipse(at right 80vw top)
     534FAIL test unit (inline): vw - ellipse(at center top 50vw) assert_equals: expected "ellipse(at 50% 50vw)" but got ""
     535FAIL test unit (inline): vw - ellipse(at center left 50vw) assert_equals: expected "ellipse(at 50vw 50%)" but got ""
     536FAIL test unit (inline): vw - ellipse(at center right 70vw) assert_equals: expected "ellipse(at right 70vw top 50%)" but got ""
     537FAIL test unit (inline): vw - ellipse(at center bottom 70vw) assert_equals: expected "ellipse(at left 50% bottom 70vw)" but got ""
     538FAIL test unit (inline): vw - ellipse(at left top 50vw) assert_equals: expected "ellipse(at 0% 50vw)" but got ""
     539FAIL test unit (inline): vw - ellipse(at left bottom 70vw) assert_equals: expected "ellipse(at left 0% bottom 70vw)" but got ""
     540FAIL test unit (inline): vw - ellipse(at top left 50vw) assert_equals: expected "ellipse(at 50vw 0%)" but got ""
     541FAIL test unit (inline): vw - ellipse(at top right 70vw) assert_equals: expected "ellipse(at right 70vw top 0%)" but got ""
     542FAIL test unit (inline): vw - ellipse(at bottom left 50vw) assert_equals: expected "ellipse(at 50vw 100%)" but got ""
     543FAIL test unit (inline): vw - ellipse(at bottom right 70vw) assert_equals: expected "ellipse(at right 70vw top 100%)" but got ""
     544FAIL test unit (inline): vw - ellipse(at right bottom 70vw) assert_equals: expected "ellipse(at left 100% bottom 70vw)" but got ""
     545FAIL test unit (inline): vw - ellipse(at right top 50vw) assert_equals: expected "ellipse(at 100% 50vw)" but got ""
     546FAIL test unit (inline): vw - ellipse(at left 50vw center) assert_equals: expected "ellipse(at 50vw 50%)" but got ""
     547FAIL test unit (inline): vw - ellipse(at left 50vw top) assert_equals: expected "ellipse(at 50vw 0%)" but got ""
     548FAIL test unit (inline): vw - ellipse(at left 50vw bottom) assert_equals: expected "ellipse(at 50vw 100%)" but got ""
     549FAIL test unit (inline): vw - ellipse(at top 50vw center) assert_equals: expected "ellipse(at 50% 50vw)" but got ""
     550FAIL test unit (inline): vw - ellipse(at top 50vw left) assert_equals: expected "ellipse(at 0% 50vw)" but got ""
     551FAIL test unit (inline): vw - ellipse(at top 50vw right) assert_equals: expected "ellipse(at 100% 50vw)" but got ""
     552FAIL test unit (inline): vw - ellipse(at bottom 70vw center) assert_equals: expected "ellipse(at left 50% bottom 70vw)" but got ""
     553FAIL test unit (inline): vw - ellipse(at bottom 70vw left) assert_equals: expected "ellipse(at left 0% bottom 70vw)" but got ""
     554FAIL test unit (inline): vw - ellipse(at bottom 70vw right) assert_equals: expected "ellipse(at left 100% bottom 70vw)" but got ""
     555FAIL test unit (inline): vw - ellipse(at right 80vw center) assert_equals: expected "ellipse(at right 80vw top 50%)" but got ""
     556FAIL test unit (inline): vw - ellipse(at right 80vw bottom) assert_equals: expected "ellipse(at right 80vw top 100%)" but got ""
     557FAIL test unit (inline): vw - ellipse(at right 80vw top) assert_equals: expected "ellipse(at right 80vw top 0%)" but got ""
    558558PASS test unit (inline): vw - ellipse(at left 50% top 50vw)
    559559PASS test unit (inline): vw - ellipse(at left 50% bottom 70vw)
     
    590590PASS test unit (inline): vh - ellipse(at center 60vh)
    591591PASS test unit (inline): vh - ellipse(at 60vh center)
    592 PASS test unit (inline): vh - ellipse(at center top 50vh)
    593 PASS test unit (inline): vh - ellipse(at center left 50vh)
    594 PASS test unit (inline): vh - ellipse(at center right 70vh)
    595 PASS test unit (inline): vh - ellipse(at center bottom 70vh)
    596 PASS test unit (inline): vh - ellipse(at left top 50vh)
    597 PASS test unit (inline): vh - ellipse(at left bottom 70vh)
    598 PASS test unit (inline): vh - ellipse(at top left 50vh)
    599 PASS test unit (inline): vh - ellipse(at top right 70vh)
    600 PASS test unit (inline): vh - ellipse(at bottom left 50vh)
    601 PASS test unit (inline): vh - ellipse(at bottom right 70vh)
    602 PASS test unit (inline): vh - ellipse(at right bottom 70vh)
    603 PASS test unit (inline): vh - ellipse(at right top 50vh)
    604 PASS test unit (inline): vh - ellipse(at left 50vh center)
    605 PASS test unit (inline): vh - ellipse(at left 50vh top)
    606 PASS test unit (inline): vh - ellipse(at left 50vh bottom)
    607 PASS test unit (inline): vh - ellipse(at top 50vh center)
    608 PASS test unit (inline): vh - ellipse(at top 50vh left)
    609 PASS test unit (inline): vh - ellipse(at top 50vh right)
    610 PASS test unit (inline): vh - ellipse(at bottom 70vh center)
    611 PASS test unit (inline): vh - ellipse(at bottom 70vh left)
    612 PASS test unit (inline): vh - ellipse(at bottom 70vh right)
    613 PASS test unit (inline): vh - ellipse(at right 80vh center)
    614 PASS test unit (inline): vh - ellipse(at right 80vh bottom)
    615 PASS test unit (inline): vh - ellipse(at right 80vh top)
     592FAIL test unit (inline): vh - ellipse(at center top 50vh) assert_equals: expected "ellipse(at 50% 50vh)" but got ""
     593FAIL test unit (inline): vh - ellipse(at center left 50vh) assert_equals: expected "ellipse(at 50vh 50%)" but got ""
     594FAIL test unit (inline): vh - ellipse(at center right 70vh) assert_equals: expected "ellipse(at right 70vh top 50%)" but got ""
     595FAIL test unit (inline): vh - ellipse(at center bottom 70vh) assert_equals: expected "ellipse(at left 50% bottom 70vh)" but got ""
     596FAIL test unit (inline): vh - ellipse(at left top 50vh) assert_equals: expected "ellipse(at 0% 50vh)" but got ""
     597FAIL test unit (inline): vh - ellipse(at left bottom 70vh) assert_equals: expected "ellipse(at left 0% bottom 70vh)" but got ""
     598FAIL test unit (inline): vh - ellipse(at top left 50vh) assert_equals: expected "ellipse(at 50vh 0%)" but got ""
     599FAIL test unit (inline): vh - ellipse(at top right 70vh) assert_equals: expected "ellipse(at right 70vh top 0%)" but got ""
     600FAIL test unit (inline): vh - ellipse(at bottom left 50vh) assert_equals: expected "ellipse(at 50vh 100%)" but got ""
     601FAIL test unit (inline): vh - ellipse(at bottom right 70vh) assert_equals: expected "ellipse(at right 70vh top 100%)" but got ""
     602FAIL test unit (inline): vh - ellipse(at right bottom 70vh) assert_equals: expected "ellipse(at left 100% bottom 70vh)" but got ""
     603FAIL test unit (inline): vh - ellipse(at right top 50vh) assert_equals: expected "ellipse(at 100% 50vh)" but got ""
     604FAIL test unit (inline): vh - ellipse(at left 50vh center) assert_equals: expected "ellipse(at 50vh 50%)" but got ""
     605FAIL test unit (inline): vh - ellipse(at left 50vh top) assert_equals: expected "ellipse(at 50vh 0%)" but got ""
     606FAIL test unit (inline): vh - ellipse(at left 50vh bottom) assert_equals: expected "ellipse(at 50vh 100%)" but got ""
     607FAIL test unit (inline): vh - ellipse(at top 50vh center) assert_equals: expected "ellipse(at 50% 50vh)" but got ""
     608FAIL test unit (inline): vh - ellipse(at top 50vh left) assert_equals: expected "ellipse(at 0% 50vh)" but got ""
     609FAIL test unit (inline): vh - ellipse(at top 50vh right) assert_equals: expected "ellipse(at 100% 50vh)" but got ""
     610FAIL test unit (inline): vh - ellipse(at bottom 70vh center) assert_equals: expected "ellipse(at left 50% bottom 70vh)" but got ""
     611FAIL test unit (inline): vh - ellipse(at bottom 70vh left) assert_equals: expected "ellipse(at left 0% bottom 70vh)" but got ""
     612FAIL test unit (inline): vh - ellipse(at bottom 70vh right) assert_equals: expected "ellipse(at left 100% bottom 70vh)" but got ""
     613FAIL test unit (inline): vh - ellipse(at right 80vh center) assert_equals: expected "ellipse(at right 80vh top 50%)" but got ""
     614FAIL test unit (inline): vh - ellipse(at right 80vh bottom) assert_equals: expected "ellipse(at right 80vh top 100%)" but got ""
     615FAIL test unit (inline): vh - ellipse(at right 80vh top) assert_equals: expected "ellipse(at right 80vh top 0%)" but got ""
    616616PASS test unit (inline): vh - ellipse(at left 50% top 50vh)
    617617PASS test unit (inline): vh - ellipse(at left 50% bottom 70vh)
     
    648648PASS test unit (inline): vmin - ellipse(at center 60vmin)
    649649PASS test unit (inline): vmin - ellipse(at 60vmin center)
    650 PASS test unit (inline): vmin - ellipse(at center top 50vmin)
    651 PASS test unit (inline): vmin - ellipse(at center left 50vmin)
    652 PASS test unit (inline): vmin - ellipse(at center right 70vmin)
    653 PASS test unit (inline): vmin - ellipse(at center bottom 70vmin)
    654 PASS test unit (inline): vmin - ellipse(at left top 50vmin)
    655 PASS test unit (inline): vmin - ellipse(at left bottom 70vmin)
    656 PASS test unit (inline): vmin - ellipse(at top left 50vmin)
    657 PASS test unit (inline): vmin - ellipse(at top right 70vmin)
    658 PASS test unit (inline): vmin - ellipse(at bottom left 50vmin)
    659 PASS test unit (inline): vmin - ellipse(at bottom right 70vmin)
    660 PASS test unit (inline): vmin - ellipse(at right bottom 70vmin)
    661 PASS test unit (inline): vmin - ellipse(at right top 50vmin)
    662 PASS test unit (inline): vmin - ellipse(at left 50vmin center)
    663 PASS test unit (inline): vmin - ellipse(at left 50vmin top)
    664 PASS test unit (inline): vmin - ellipse(at left 50vmin bottom)
    665 PASS test unit (inline): vmin - ellipse(at top 50vmin center)
    666 PASS test unit (inline): vmin - ellipse(at top 50vmin left)
    667 PASS test unit (inline): vmin - ellipse(at top 50vmin right)
    668 PASS test unit (inline): vmin - ellipse(at bottom 70vmin center)
    669 PASS test unit (inline): vmin - ellipse(at bottom 70vmin left)
    670 PASS test unit (inline): vmin - ellipse(at bottom 70vmin right)
    671 PASS test unit (inline): vmin - ellipse(at right 80vmin center)
    672 PASS test unit (inline): vmin - ellipse(at right 80vmin bottom)
    673 PASS test unit (inline): vmin - ellipse(at right 80vmin top)
     650FAIL test unit (inline): vmin - ellipse(at center top 50vmin) assert_equals: expected "ellipse(at 50% 50vmin)" but got ""
     651FAIL test unit (inline): vmin - ellipse(at center left 50vmin) assert_equals: expected "ellipse(at 50vmin 50%)" but got ""
     652FAIL test unit (inline): vmin - ellipse(at center right 70vmin) assert_equals: expected "ellipse(at right 70vmin top 50%)" but got ""
     653FAIL test unit (inline): vmin - ellipse(at center bottom 70vmin) assert_equals: expected "ellipse(at left 50% bottom 70vmin)" but got ""
     654FAIL test unit (inline): vmin - ellipse(at left top 50vmin) assert_equals: expected "ellipse(at 0% 50vmin)" but got ""
     655FAIL test unit (inline): vmin - ellipse(at left bottom 70vmin) assert_equals: expected "ellipse(at left 0% bottom 70vmin)" but got ""
     656FAIL test unit (inline): vmin - ellipse(at top left 50vmin) assert_equals: expected "ellipse(at 50vmin 0%)" but got ""
     657FAIL test unit (inline): vmin - ellipse(at top right 70vmin) assert_equals: expected "ellipse(at right 70vmin top 0%)" but got ""
     658FAIL test unit (inline): vmin - ellipse(at bottom left 50vmin) assert_equals: expected "ellipse(at 50vmin 100%)" but got ""
     659FAIL test unit (inline): vmin - ellipse(at bottom right 70vmin) assert_equals: expected "ellipse(at right 70vmin top 100%)" but got ""
     660FAIL test unit (inline): vmin - ellipse(at right bottom 70vmin) assert_equals: expected "ellipse(at left 100% bottom 70vmin)" but got ""
     661FAIL test unit (inline): vmin - ellipse(at right top 50vmin) assert_equals: expected "ellipse(at 100% 50vmin)" but got ""
     662FAIL test unit (inline): vmin - ellipse(at left 50vmin center) assert_equals: expected "ellipse(at 50vmin 50%)" but got ""
     663FAIL test unit (inline): vmin - ellipse(at left 50vmin top) assert_equals: expected "ellipse(at 50vmin 0%)" but got ""
     664FAIL test unit (inline): vmin - ellipse(at left 50vmin bottom) assert_equals: expected "ellipse(at 50vmin 100%)" but got ""
     665FAIL test unit (inline): vmin - ellipse(at top 50vmin center) assert_equals: expected "ellipse(at 50% 50vmin)" but got ""
     666FAIL test unit (inline): vmin - ellipse(at top 50vmin left) assert_equals: expected "ellipse(at 0% 50vmin)" but got ""
     667FAIL test unit (inline): vmin - ellipse(at top 50vmin right) assert_equals: expected "ellipse(at 100% 50vmin)" but got ""
     668FAIL test unit (inline): vmin - ellipse(at bottom 70vmin center) assert_equals: expected "ellipse(at left 50% bottom 70vmin)" but got ""
     669FAIL test unit (inline): vmin - ellipse(at bottom 70vmin left) assert_equals: expected "ellipse(at left 0% bottom 70vmin)" but got ""
     670FAIL test unit (inline): vmin - ellipse(at bottom 70vmin right) assert_equals: expected "ellipse(at left 100% bottom 70vmin)" but got ""
     671FAIL test unit (inline): vmin - ellipse(at right 80vmin center) assert_equals: expected "ellipse(at right 80vmin top 50%)" but got ""
     672FAIL test unit (inline): vmin - ellipse(at right 80vmin bottom) assert_equals: expected "ellipse(at right 80vmin top 100%)" but got ""
     673FAIL test unit (inline): vmin - ellipse(at right 80vmin top) assert_equals: expected "ellipse(at right 80vmin top 0%)" but got ""
    674674PASS test unit (inline): vmin - ellipse(at left 50% top 50vmin)
    675675PASS test unit (inline): vmin - ellipse(at left 50% bottom 70vmin)
     
    706706PASS test unit (inline): vmax - ellipse(at center 60vmax)
    707707PASS test unit (inline): vmax - ellipse(at 60vmax center)
    708 PASS test unit (inline): vmax - ellipse(at center top 50vmax)
    709 PASS test unit (inline): vmax - ellipse(at center left 50vmax)
    710 PASS test unit (inline): vmax - ellipse(at center right 70vmax)
    711 PASS test unit (inline): vmax - ellipse(at center bottom 70vmax)
    712 PASS test unit (inline): vmax - ellipse(at left top 50vmax)
    713 PASS test unit (inline): vmax - ellipse(at left bottom 70vmax)
    714 PASS test unit (inline): vmax - ellipse(at top left 50vmax)
    715 PASS test unit (inline): vmax - ellipse(at top right 70vmax)
    716 PASS test unit (inline): vmax - ellipse(at bottom left 50vmax)
    717 PASS test unit (inline): vmax - ellipse(at bottom right 70vmax)
    718 PASS test unit (inline): vmax - ellipse(at right bottom 70vmax)
    719 PASS test unit (inline): vmax - ellipse(at right top 50vmax)
    720 PASS test unit (inline): vmax - ellipse(at left 50vmax center)
    721 PASS test unit (inline): vmax - ellipse(at left 50vmax top)
    722 PASS test unit (inline): vmax - ellipse(at left 50vmax bottom)
    723 PASS test unit (inline): vmax - ellipse(at top 50vmax center)
    724 PASS test unit (inline): vmax - ellipse(at top 50vmax left)
    725 PASS test unit (inline): vmax - ellipse(at top 50vmax right)
    726 PASS test unit (inline): vmax - ellipse(at bottom 70vmax center)
    727 PASS test unit (inline): vmax - ellipse(at bottom 70vmax left)
    728 PASS test unit (inline): vmax - ellipse(at bottom 70vmax right)
    729 PASS test unit (inline): vmax - ellipse(at right 80vmax center)
    730 PASS test unit (inline): vmax - ellipse(at right 80vmax bottom)
    731 PASS test unit (inline): vmax - ellipse(at right 80vmax top)
     708FAIL test unit (inline): vmax - ellipse(at center top 50vmax) assert_equals: expected "ellipse(at 50% 50vmax)" but got ""
     709FAIL test unit (inline): vmax - ellipse(at center left 50vmax) assert_equals: expected "ellipse(at 50vmax 50%)" but got ""
     710FAIL test unit (inline): vmax - ellipse(at center right 70vmax) assert_equals: expected "ellipse(at right 70vmax top 50%)" but got ""
     711FAIL test unit (inline): vmax - ellipse(at center bottom 70vmax) assert_equals: expected "ellipse(at left 50% bottom 70vmax)" but got ""
     712FAIL test unit (inline): vmax - ellipse(at left top 50vmax) assert_equals: expected "ellipse(at 0% 50vmax)" but got ""
     713FAIL test unit (inline): vmax - ellipse(at left bottom 70vmax) assert_equals: expected "ellipse(at left 0% bottom 70vmax)" but got ""
     714FAIL test unit (inline): vmax - ellipse(at top left 50vmax) assert_equals: expected "ellipse(at 50vmax 0%)" but got ""
     715FAIL test unit (inline): vmax - ellipse(at top right 70vmax) assert_equals: expected "ellipse(at right 70vmax top 0%)" but got ""
     716FAIL test unit (inline): vmax - ellipse(at bottom left 50vmax) assert_equals: expected "ellipse(at 50vmax 100%)" but got ""
     717FAIL test unit (inline): vmax - ellipse(at bottom right 70vmax) assert_equals: expected "ellipse(at right 70vmax top 100%)" but got ""
     718FAIL test unit (inline): vmax - ellipse(at right bottom 70vmax) assert_equals: expected "ellipse(at left 100% bottom 70vmax)" but got ""
     719FAIL test unit (inline): vmax - ellipse(at right top 50vmax) assert_equals: expected "ellipse(at 100% 50vmax)" but got ""
     720FAIL test unit (inline): vmax - ellipse(at left 50vmax center) assert_equals: expected "ellipse(at 50vmax 50%)" but got ""
     721FAIL test unit (inline): vmax - ellipse(at left 50vmax top) assert_equals: expected "ellipse(at 50vmax 0%)" but got ""
     722FAIL test unit (inline): vmax - ellipse(at left 50vmax bottom) assert_equals: expected "ellipse(at 50vmax 100%)" but got ""
     723FAIL test unit (inline): vmax - ellipse(at top 50vmax center) assert_equals: expected "ellipse(at 50% 50vmax)" but got ""
     724FAIL test unit (inline): vmax - ellipse(at top 50vmax left) assert_equals: expected "ellipse(at 0% 50vmax)" but got ""
     725FAIL test unit (inline): vmax - ellipse(at top 50vmax right) assert_equals: expected "ellipse(at 100% 50vmax)" but got ""
     726FAIL test unit (inline): vmax - ellipse(at bottom 70vmax center) assert_equals: expected "ellipse(at left 50% bottom 70vmax)" but got ""
     727FAIL test unit (inline): vmax - ellipse(at bottom 70vmax left) assert_equals: expected "ellipse(at left 0% bottom 70vmax)" but got ""
     728FAIL test unit (inline): vmax - ellipse(at bottom 70vmax right) assert_equals: expected "ellipse(at left 100% bottom 70vmax)" but got ""
     729FAIL test unit (inline): vmax - ellipse(at right 80vmax center) assert_equals: expected "ellipse(at right 80vmax top 50%)" but got ""
     730FAIL test unit (inline): vmax - ellipse(at right 80vmax bottom) assert_equals: expected "ellipse(at right 80vmax top 100%)" but got ""
     731FAIL test unit (inline): vmax - ellipse(at right 80vmax top) assert_equals: expected "ellipse(at right 80vmax top 0%)" but got ""
    732732PASS test unit (inline): vmax - ellipse(at left 50% top 50vmax)
    733733PASS test unit (inline): vmax - ellipse(at left 50% bottom 70vmax)
     
    764764PASS test unit (computed): cm - ellipse(at center 60cm)
    765765PASS test unit (computed): cm - ellipse(at 60cm center)
    766 PASS test unit (computed): cm - ellipse(at center top 50cm)
    767 PASS test unit (computed): cm - ellipse(at center left 50cm)
    768 PASS test unit (computed): cm - ellipse(at center right 70cm)
    769 PASS test unit (computed): cm - ellipse(at center bottom 70cm)
    770 PASS test unit (computed): cm - ellipse(at left top 50cm)
    771 PASS test unit (computed): cm - ellipse(at left bottom 70cm)
    772 PASS test unit (computed): cm - ellipse(at top left 50cm)
    773 PASS test unit (computed): cm - ellipse(at top right 70cm)
    774 PASS test unit (computed): cm - ellipse(at bottom left 50cm)
    775 PASS test unit (computed): cm - ellipse(at bottom right 70cm)
    776 PASS test unit (computed): cm - ellipse(at right bottom 70cm)
    777 PASS test unit (computed): cm - ellipse(at right top 50cm)
    778 PASS test unit (computed): cm - ellipse(at left 50cm center)
    779 PASS test unit (computed): cm - ellipse(at left 50cm top)
    780 PASS test unit (computed): cm - ellipse(at left 50cm bottom)
    781 PASS test unit (computed): cm - ellipse(at top 50cm center)
    782 PASS test unit (computed): cm - ellipse(at top 50cm left)
    783 PASS test unit (computed): cm - ellipse(at top 50cm right)
    784 PASS test unit (computed): cm - ellipse(at bottom 70cm center)
    785 PASS test unit (computed): cm - ellipse(at bottom 70cm left)
    786 PASS test unit (computed): cm - ellipse(at bottom 70cm right)
    787 PASS test unit (computed): cm - ellipse(at right 80cm center)
    788 PASS test unit (computed): cm - ellipse(at right 80cm bottom)
    789 PASS test unit (computed): cm - ellipse(at right 80cm top)
     766FAIL test unit (computed): cm - ellipse(at center top 50cm) assert_equals: expected "ellipse(at 50% 1889.764px)" but got "none"
     767FAIL test unit (computed): cm - ellipse(at center left 50cm) assert_equals: expected "ellipse(at 1889.764px 50%)" but got "none"
     768FAIL test unit (computed): cm - ellipse(at center right 70cm) assert_equals: expected "ellipse(at right 2645.669px top 50%)" but got "none"
     769FAIL test unit (computed): cm - ellipse(at center bottom 70cm) assert_equals: expected "ellipse(at left 50% bottom 2645.669px)" but got "none"
     770FAIL test unit (computed): cm - ellipse(at left top 50cm) assert_equals: expected "ellipse(at 0% 1889.764px)" but got "none"
     771FAIL test unit (computed): cm - ellipse(at left bottom 70cm) assert_equals: expected "ellipse(at left 0% bottom 2645.669px)" but got "none"
     772FAIL test unit (computed): cm - ellipse(at top left 50cm) assert_equals: expected "ellipse(at 1889.764px 0%)" but got "none"
     773FAIL test unit (computed): cm - ellipse(at top right 70cm) assert_equals: expected "ellipse(at right 2645.669px top 0%)" but got "none"
     774FAIL test unit (computed): cm - ellipse(at bottom left 50cm) assert_equals: expected "ellipse(at 1889.764px 100%)" but got "none"
     775FAIL test unit (computed): cm - ellipse(at bottom right 70cm) assert_equals: expected "ellipse(at right 2645.669px top 100%)" but got "none"
     776FAIL test unit (computed): cm - ellipse(at right bottom 70cm) assert_equals: expected "ellipse(at left 100% bottom 2645.669px)" but got "none"
     777FAIL test unit (computed): cm - ellipse(at right top 50cm) assert_equals: expected "ellipse(at 100% 1889.764px)" but got "none"
     778FAIL test unit (computed): cm - ellipse(at left 50cm center) assert_equals: expected "ellipse(at 1889.764px 50%)" but got "none"
     779FAIL test unit (computed): cm - ellipse(at left 50cm top) assert_equals: expected "ellipse(at 1889.764px 0%)" but got "none"
     780FAIL test unit (computed): cm - ellipse(at left 50cm bottom) assert_equals: expected "ellipse(at 1889.764px 100%)" but got "none"
     781FAIL test unit (computed): cm - ellipse(at top 50cm center) assert_equals: expected "ellipse(at 50% 1889.764px)" but got "none"
     782FAIL test unit (computed): cm - ellipse(at top 50cm left) assert_equals: expected "ellipse(at 0% 1889.764px)" but got "none"
     783FAIL test unit (computed): cm - ellipse(at top 50cm right) assert_equals: expected "ellipse(at 100% 1889.764px)" but got "none"
     784FAIL test unit (computed): cm - ellipse(at bottom 70cm center) assert_equals: expected "ellipse(at left 50% bottom 2645.669px)" but got "none"
     785FAIL test unit (computed): cm - ellipse(at bottom 70cm left) assert_equals: expected "ellipse(at left 0% bottom 2645.669px)" but got "none"
     786FAIL test unit (computed): cm - ellipse(at bottom 70cm right) assert_equals: expected "ellipse(at left 100% bottom 2645.669px)" but got "none"
     787FAIL test unit (computed): cm - ellipse(at right 80cm center) assert_equals: expected "ellipse(at right 3023.622px top 50%)" but got "none"
     788FAIL test unit (computed): cm - ellipse(at right 80cm bottom) assert_equals: expected "ellipse(at right 3023.622px top 100%)" but got "none"
     789FAIL test unit (computed): cm - ellipse(at right 80cm top) assert_equals: expected "ellipse(at right 3023.622px top 0%)" but got "none"
    790790PASS test unit (computed): cm - ellipse(at left 50% top 50cm)
    791791PASS test unit (computed): cm - ellipse(at left 50% bottom 70cm)
     
    822822PASS test unit (computed): mm - ellipse(at center 60mm)
    823823PASS test unit (computed): mm - ellipse(at 60mm center)
    824 PASS test unit (computed): mm - ellipse(at center top 50mm)
    825 PASS test unit (computed): mm - ellipse(at center left 50mm)
    826 PASS test unit (computed): mm - ellipse(at center right 70mm)
    827 PASS test unit (computed): mm - ellipse(at center bottom 70mm)
    828 PASS test unit (computed): mm - ellipse(at left top 50mm)
    829 PASS test unit (computed): mm - ellipse(at left bottom 70mm)
    830 PASS test unit (computed): mm - ellipse(at top left 50mm)
    831 PASS test unit (computed): mm - ellipse(at top right 70mm)
    832 PASS test unit (computed): mm - ellipse(at bottom left 50mm)
    833 PASS test unit (computed): mm - ellipse(at bottom right 70mm)
    834 PASS test unit (computed): mm - ellipse(at right bottom 70mm)
    835 PASS test unit (computed): mm - ellipse(at right top 50mm)
    836 PASS test unit (computed): mm - ellipse(at left 50mm center)
    837 PASS test unit (computed): mm - ellipse(at left 50mm top)
    838 PASS test unit (computed): mm - ellipse(at left 50mm bottom)
    839 PASS test unit (computed): mm - ellipse(at top 50mm center)
    840 PASS test unit (computed): mm - ellipse(at top 50mm left)
    841 PASS test unit (computed): mm - ellipse(at top 50mm right)
    842 PASS test unit (computed): mm - ellipse(at bottom 70mm center)
    843 PASS test unit (computed): mm - ellipse(at bottom 70mm left)
    844 PASS test unit (computed): mm - ellipse(at bottom 70mm right)
    845 PASS test unit (computed): mm - ellipse(at right 80mm center)
    846 PASS test unit (computed): mm - ellipse(at right 80mm bottom)
    847 PASS test unit (computed): mm - ellipse(at right 80mm top)
     824FAIL test unit (computed): mm - ellipse(at center top 50mm) assert_equals: expected "ellipse(at 50% 188.976px)" but got "none"
     825FAIL test unit (computed): mm - ellipse(at center left 50mm) assert_equals: expected "ellipse(at 188.976px 50%)" but got "none"
     826FAIL test unit (computed): mm - ellipse(at center right 70mm) assert_equals: expected "ellipse(at right 264.567px top 50%)" but got "none"
     827FAIL test unit (computed): mm - ellipse(at center bottom 70mm) assert_equals: expected "ellipse(at left 50% bottom 264.567px)" but got "none"
     828FAIL test unit (computed): mm - ellipse(at left top 50mm) assert_equals: expected "ellipse(at 0% 188.976px)" but got "none"
     829FAIL test unit (computed): mm - ellipse(at left bottom 70mm) assert_equals: expected "ellipse(at left 0% bottom 264.567px)" but got "none"
     830FAIL test unit (computed): mm - ellipse(at top left 50mm) assert_equals: expected "ellipse(at 188.976px 0%)" but got "none"
     831FAIL test unit (computed): mm - ellipse(at top right 70mm) assert_equals: expected "ellipse(at right 264.567px top 0%)" but got "none"
     832FAIL test unit (computed): mm - ellipse(at bottom left 50mm) assert_equals: expected "ellipse(at 188.976px 100%)" but got "none"
     833FAIL test unit (computed): mm - ellipse(at bottom right 70mm) assert_equals: expected "ellipse(at right 264.567px top 100%)" but got "none"
     834FAIL test unit (computed): mm - ellipse(at right bottom 70mm) assert_equals: expected "ellipse(at left 100% bottom 264.567px)" but got "none"
     835FAIL test unit (computed): mm - ellipse(at right top 50mm) assert_equals: expected "ellipse(at 100% 188.976px)" but got "none"
     836FAIL test unit (computed): mm - ellipse(at left 50mm center) assert_equals: expected "ellipse(at 188.976px 50%)" but got "none"
     837FAIL test unit (computed): mm - ellipse(at left 50mm top) assert_equals: expected "ellipse(at 188.976px 0%)" but got "none"
     838FAIL test unit (computed): mm - ellipse(at left 50mm bottom) assert_equals: expected "ellipse(at 188.976px 100%)" but got "none"
     839FAIL test unit (computed): mm - ellipse(at top 50mm center) assert_equals: expected "ellipse(at 50% 188.976px)" but got "none"
     840FAIL test unit (computed): mm - ellipse(at top 50mm left) assert_equals: expected "ellipse(at 0% 188.976px)" but got "none"
     841FAIL test unit (computed): mm - ellipse(at top 50mm right) assert_equals: expected "ellipse(at 100% 188.976px)" but got "none"
     842FAIL test unit (computed): mm - ellipse(at bottom 70mm center) assert_equals: expected "ellipse(at left 50% bottom 264.567px)" but got "none"
     843FAIL test unit (computed): mm - ellipse(at bottom 70mm left) assert_equals: expected "ellipse(at left 0% bottom 264.567px)" but got "none"
     844FAIL test unit (computed): mm - ellipse(at bottom 70mm right) assert_equals: expected "ellipse(at left 100% bottom 264.567px)" but got "none"
     845FAIL test unit (computed): mm - ellipse(at right 80mm center) assert_equals: expected "ellipse(at right 302.362px top 50%)" but got "none"
     846FAIL test unit (computed): mm - ellipse(at right 80mm bottom) assert_equals: expected "ellipse(at right 302.362px top 100%)" but got "none"
     847FAIL test unit (computed): mm - ellipse(at right 80mm top) assert_equals: expected "ellipse(at right 302.362px top 0%)" but got "none"
    848848PASS test unit (computed): mm - ellipse(at left 50% top 50mm)
    849849PASS test unit (computed): mm - ellipse(at left 50% bottom 70mm)
     
    880880PASS test unit (computed): in - ellipse(at center 60in)
    881881PASS test unit (computed): in - ellipse(at 60in center)
    882 PASS test unit (computed): in - ellipse(at center top 50in)
    883 PASS test unit (computed): in - ellipse(at center left 50in)
    884 PASS test unit (computed): in - ellipse(at center right 70in)
    885 PASS test unit (computed): in - ellipse(at center bottom 70in)
    886 PASS test unit (computed): in - ellipse(at left top 50in)
    887 PASS test unit (computed): in - ellipse(at left bottom 70in)
    888 PASS test unit (computed): in - ellipse(at top left 50in)
    889 PASS test unit (computed): in - ellipse(at top right 70in)
    890 PASS test unit (computed): in - ellipse(at bottom left 50in)
    891 PASS test unit (computed): in - ellipse(at bottom right 70in)
    892 PASS test unit (computed): in - ellipse(at right bottom 70in)
    893 PASS test unit (computed): in - ellipse(at right top 50in)
    894 PASS test unit (computed): in - ellipse(at left 50in center)
    895 PASS test unit (computed): in - ellipse(at left 50in top)
    896 PASS test unit (computed): in - ellipse(at left 50in bottom)
    897 PASS test unit (computed): in - ellipse(at top 50in center)
    898 PASS test unit (computed): in - ellipse(at top 50in left)
    899 PASS test unit (computed): in - ellipse(at top 50in right)
    900 PASS test unit (computed): in - ellipse(at bottom 70in center)
    901 PASS test unit (computed): in - ellipse(at bottom 70in left)
    902 PASS test unit (computed): in - ellipse(at bottom 70in right)
    903 PASS test unit (computed): in - ellipse(at right 80in center)
    904 PASS test unit (computed): in - ellipse(at right 80in bottom)
    905 PASS test unit (computed): in - ellipse(at right 80in top)
     882FAIL test unit (computed): in - ellipse(at center top 50in) assert_equals: expected "ellipse(at 50% 4800px)" but got "none"
     883FAIL test unit (computed): in - ellipse(at center left 50in) assert_equals: expected "ellipse(at 4800px 50%)" but got "none"
     884FAIL test unit (computed): in - ellipse(at center right 70in) assert_equals: expected "ellipse(at right 6720px top 50%)" but got "none"
     885FAIL test unit (computed): in - ellipse(at center bottom 70in) assert_equals: expected "ellipse(at left 50% bottom 6720px)" but got "none"
     886FAIL test unit (computed): in - ellipse(at left top 50in) assert_equals: expected "ellipse(at 0% 4800px)" but got "none"
     887FAIL test unit (computed): in - ellipse(at left bottom 70in) assert_equals: expected "ellipse(at left 0% bottom 6720px)" but got "none"
     888FAIL test unit (computed): in - ellipse(at top left 50in) assert_equals: expected "ellipse(at 4800px 0%)" but got "none"
     889FAIL test unit (computed): in - ellipse(at top right 70in) assert_equals: expected "ellipse(at right 6720px top 0%)" but got "none"
     890FAIL test unit (computed): in - ellipse(at bottom left 50in) assert_equals: expected "ellipse(at 4800px 100%)" but got "none"
     891FAIL test unit (computed): in - ellipse(at bottom right 70in) assert_equals: expected "ellipse(at right 6720px top 100%)" but got "none"
     892FAIL test unit (computed): in - ellipse(at right bottom 70in) assert_equals: expected "ellipse(at left 100% bottom 6720px)" but got "none"
     893FAIL test unit (computed): in - ellipse(at right top 50in) assert_equals: expected "ellipse(at 100% 4800px)" but got "none"
     894FAIL test unit (computed): in - ellipse(at left 50in center) assert_equals: expected "ellipse(at 4800px 50%)" but got "none"
     895FAIL test unit (computed): in - ellipse(at left 50in top) assert_equals: expected "ellipse(at 4800px 0%)" but got "none"
     896FAIL test unit (computed): in - ellipse(at left 50in bottom) assert_equals: expected "ellipse(at 4800px 100%)" but got "none"
     897FAIL test unit (computed): in - ellipse(at top 50in center) assert_equals: expected "ellipse(at 50% 4800px)" but got "none"
     898FAIL test unit (computed): in - ellipse(at top 50in left) assert_equals: expected "ellipse(at 0% 4800px)" but got "none"
     899FAIL test unit (computed): in - ellipse(at top 50in right) assert_equals: expected "ellipse(at 100% 4800px)" but got "none"
     900FAIL test unit (computed): in - ellipse(at bottom 70in center) assert_equals: expected "ellipse(at left 50% bottom 6720px)" but got "none"
     901FAIL test unit (computed): in - ellipse(at bottom 70in left) assert_equals: expected "ellipse(at left 0% bottom 6720px)" but got "none"
     902FAIL test unit (computed): in - ellipse(at bottom 70in right) assert_equals: expected "ellipse(at left 100% bottom 6720px)" but got "none"
     903FAIL test unit (computed): in - ellipse(at right 80in center) assert_equals: expected "ellipse(at right 7680px top 50%)" but got "none"
     904FAIL test unit (computed): in - ellipse(at right 80in bottom) assert_equals: expected "ellipse(at right 7680px top 100%)" but got "none"
     905FAIL test unit (computed): in - ellipse(at right 80in top) assert_equals: expected "ellipse(at right 7680px top 0%)" but got "none"
    906906PASS test unit (computed): in - ellipse(at left 50% top 50in)
    907907PASS test unit (computed): in - ellipse(at left 50% bottom 70in)
     
    938938PASS test unit (computed): pt - ellipse(at center 60pt)
    939939PASS test unit (computed): pt - ellipse(at 60pt center)
    940 PASS test unit (computed): pt - ellipse(at center top 50pt)
    941 PASS test unit (computed): pt - ellipse(at center left 50pt)
    942 PASS test unit (computed): pt - ellipse(at center right 70pt)
    943 PASS test unit (computed): pt - ellipse(at center bottom 70pt)
    944 PASS test unit (computed): pt - ellipse(at left top 50pt)
    945 PASS test unit (computed): pt - ellipse(at left bottom 70pt)
    946 PASS test unit (computed): pt - ellipse(at top left 50pt)
    947 PASS test unit (computed): pt - ellipse(at top right 70pt)
    948 PASS test unit (computed): pt - ellipse(at bottom left 50pt)
    949 PASS test unit (computed): pt - ellipse(at bottom right 70pt)
    950 PASS test unit (computed): pt - ellipse(at right bottom 70pt)
    951 PASS test unit (computed): pt - ellipse(at right top 50pt)
    952 PASS test unit (computed): pt - ellipse(at left 50pt center)
    953 PASS test unit (computed): pt - ellipse(at left 50pt top)
    954 PASS test unit (computed): pt - ellipse(at left 50pt bottom)
    955 PASS test unit (computed): pt - ellipse(at top 50pt center)
    956 PASS test unit (computed): pt - ellipse(at top 50pt left)
    957 PASS test unit (computed): pt - ellipse(at top 50pt right)
    958 PASS test unit (computed): pt - ellipse(at bottom 70pt center)
    959 PASS test unit (computed): pt - ellipse(at bottom 70pt left)
    960 PASS test unit (computed): pt - ellipse(at bottom 70pt right)
    961 PASS test unit (computed): pt - ellipse(at right 80pt center)
    962 PASS test unit (computed): pt - ellipse(at right 80pt bottom)
    963 PASS test unit (computed): pt - ellipse(at right 80pt top)
     940FAIL test unit (computed): pt - ellipse(at center top 50pt) assert_equals: expected "ellipse(at 50% 66.667px)" but got "none"
     941FAIL test unit (computed): pt - ellipse(at center left 50pt) assert_equals: expected "ellipse(at 66.667px 50%)" but got "none"
     942FAIL test unit (computed): pt - ellipse(at center right 70pt) assert_equals: expected "ellipse(at right 93.333px top 50%)" but got "none"
     943FAIL test unit (computed): pt - ellipse(at center bottom 70pt) assert_equals: expected "ellipse(at left 50% bottom 93.333px)" but got "none"
     944FAIL test unit (computed): pt - ellipse(at left top 50pt) assert_equals: expected "ellipse(at 0% 66.667px)" but got "none"
     945FAIL test unit (computed): pt - ellipse(at left bottom 70pt) assert_equals: expected "ellipse(at left 0% bottom 93.333px)" but got "none"
     946FAIL test unit (computed): pt - ellipse(at top left 50pt) assert_equals: expected "ellipse(at 66.667px 0%)" but got "none"
     947FAIL test unit (computed): pt - ellipse(at top right 70pt) assert_equals: expected "ellipse(at right 93.333px top 0%)" but got "none"
     948FAIL test unit (computed): pt - ellipse(at bottom left 50pt) assert_equals: expected "ellipse(at 66.667px 100%)" but got "none"
     949FAIL test unit (computed): pt - ellipse(at bottom right 70pt) assert_equals: expected "ellipse(at right 93.333px top 100%)" but got "none"
     950FAIL test unit (computed): pt - ellipse(at right bottom 70pt) assert_equals: expected "ellipse(at left 100% bottom 93.333px)" but got "none"
     951FAIL test unit (computed): pt - ellipse(at right top 50pt) assert_equals: expected "ellipse(at 100% 66.667px)" but got "none"
     952FAIL test unit (computed): pt - ellipse(at left 50pt center) assert_equals: expected "ellipse(at 66.667px 50%)" but got "none"
     953FAIL test unit (computed): pt - ellipse(at left 50pt top) assert_equals: expected "ellipse(at 66.667px 0%)" but got "none"
     954FAIL test unit (computed): pt - ellipse(at left 50pt bottom) assert_equals: expected "ellipse(at 66.667px 100%)" but got "none"
     955FAIL test unit (computed): pt - ellipse(at top 50pt center) assert_equals: expected "ellipse(at 50% 66.667px)" but got "none"
     956FAIL test unit (computed): pt - ellipse(at top 50pt left) assert_equals: expected "ellipse(at 0% 66.667px)" but got "none"
     957FAIL test unit (computed): pt - ellipse(at top 50pt right) assert_equals: expected "ellipse(at 100% 66.667px)" but got "none"
     958FAIL test unit (computed): pt - ellipse(at bottom 70pt center) assert_equals: expected "ellipse(at left 50% bottom 93.333px)" but got "none"
     959FAIL test unit (computed): pt - ellipse(at bottom 70pt left) assert_equals: expected "ellipse(at left 0% bottom 93.333px)" but got "none"
     960FAIL test unit (computed): pt - ellipse(at bottom 70pt right) assert_equals: expected "ellipse(at left 100% bottom 93.333px)" but got "none"
     961FAIL test unit (computed): pt - ellipse(at right 80pt center) assert_equals: expected "ellipse(at right 106.667px top 50%)" but got "none"
     962FAIL test unit (computed): pt - ellipse(at right 80pt bottom) assert_equals: expected "ellipse(at right 106.667px top 100%)" but got "none"
     963FAIL test unit (computed): pt - ellipse(at right 80pt top) assert_equals: expected "ellipse(at right 106.667px top 0%)" but got "none"
    964964PASS test unit (computed): pt - ellipse(at left 50% top 50pt)
    965965PASS test unit (computed): pt - ellipse(at left 50% bottom 70pt)
     
    996996PASS test unit (computed): pc - ellipse(at center 60pc)
    997997PASS test unit (computed): pc - ellipse(at 60pc center)
    998 PASS test unit (computed): pc - ellipse(at center top 50pc)
    999 PASS test unit (computed): pc - ellipse(at center left 50pc)
    1000 PASS test unit (computed): pc - ellipse(at center right 70pc)
    1001 PASS test unit (computed): pc - ellipse(at center bottom 70pc)
    1002 PASS test unit (computed): pc - ellipse(at left top 50pc)
    1003 PASS test unit (computed): pc - ellipse(at left bottom 70pc)
    1004 PASS test unit (computed): pc - ellipse(at top left 50pc)
    1005 PASS test unit (computed): pc - ellipse(at top right 70pc)
    1006 PASS test unit (computed): pc - ellipse(at bottom left 50pc)
    1007 PASS test unit (computed): pc - ellipse(at bottom right 70pc)
    1008 PASS test unit (computed): pc - ellipse(at right bottom 70pc)
    1009 PASS test unit (computed): pc - ellipse(at right top 50pc)
    1010 PASS test unit (computed): pc - ellipse(at left 50pc center)
    1011 PASS test unit (computed): pc - ellipse(at left 50pc top)
    1012 PASS test unit (computed): pc - ellipse(at left 50pc bottom)
    1013 PASS test unit (computed): pc - ellipse(at top 50pc center)
    1014 PASS test unit (computed): pc - ellipse(at top 50pc left)
    1015 PASS test unit (computed): pc - ellipse(at top 50pc right)
    1016 PASS test unit (computed): pc - ellipse(at bottom 70pc center)
    1017 PASS test unit (computed): pc - ellipse(at bottom 70pc left)
    1018 PASS test unit (computed): pc - ellipse(at bottom 70pc right)
    1019 PASS test unit (computed): pc - ellipse(at right 80pc center)
    1020 PASS test unit (computed): pc - ellipse(at right 80pc bottom)
    1021 PASS test unit (computed): pc - ellipse(at right 80pc top)
     998FAIL test unit (computed): pc - ellipse(at center top 50pc) assert_equals: expected "ellipse(at 50% 800px)" but got "none"
     999FAIL test unit (computed): pc - ellipse(at center left 50pc) assert_equals: expected "ellipse(at 800px 50%)" but got "none"
     1000FAIL test unit (computed): pc - ellipse(at center right 70pc) assert_equals: expected "ellipse(at right 1120px top 50%)" but got "none"
     1001FAIL test unit (computed): pc - ellipse(at center bottom 70pc) assert_equals: expected "ellipse(at left 50% bottom 1120px)" but got "none"
     1002FAIL test unit (computed): pc - ellipse(at left top 50pc) assert_equals: expected "ellipse(at 0% 800px)" but got "none"
     1003FAIL test unit (computed): pc - ellipse(at left bottom 70pc) assert_equals: expected "ellipse(at left 0% bottom 1120px)" but got "none"
     1004FAIL test unit (computed): pc - ellipse(at top left 50pc) assert_equals: expected "ellipse(at 800px 0%)" but got "none"
     1005FAIL test unit (computed): pc - ellipse(at top right 70pc) assert_equals: expected "ellipse(at right 1120px top 0%)" but got "none"
     1006FAIL test unit (computed): pc - ellipse(at bottom left 50pc) assert_equals: expected "ellipse(at 800px 100%)" but got "none"
     1007FAIL test unit (computed): pc - ellipse(at bottom right 70pc) assert_equals: expected "ellipse(at right 1120px top 100%)" but got "none"
     1008FAIL test unit (computed): pc - ellipse(at right bottom 70pc) assert_equals: expected "ellipse(at left 100% bottom 1120px)" but got "none"
     1009FAIL test unit (computed): pc - ellipse(at right top 50pc) assert_equals: expected "ellipse(at 100% 800px)" but got "none"
     1010FAIL test unit (computed): pc - ellipse(at left 50pc center) assert_equals: expected "ellipse(at 800px 50%)" but got "none"
     1011FAIL test unit (computed): pc - ellipse(at left 50pc top) assert_equals: expected "ellipse(at 800px 0%)" but got "none"
     1012FAIL test unit (computed): pc - ellipse(at left 50pc bottom) assert_equals: expected "ellipse(at 800px 100%)" but got "none"
     1013FAIL test unit (computed): pc - ellipse(at top 50pc center) assert_equals: expected "ellipse(at 50% 800px)" but got "none"
     1014FAIL test unit (computed): pc - ellipse(at top 50pc left) assert_equals: expected "ellipse(at 0% 800px)" but got "none"
     1015FAIL test unit (computed): pc - ellipse(at top 50pc right) assert_equals: expected "ellipse(at 100% 800px)" but got "none"
     1016FAIL test unit (computed): pc - ellipse(at bottom 70pc center) assert_equals: expected "ellipse(at left 50% bottom 1120px)" but got "none"
     1017FAIL test unit (computed): pc - ellipse(at bottom 70pc left) assert_equals: expected "ellipse(at left 0% bottom 1120px)" but got "none"
     1018FAIL test unit (computed): pc - ellipse(at bottom 70pc right) assert_equals: expected "ellipse(at left 100% bottom 1120px)" but got "none"
     1019FAIL test unit (computed): pc - ellipse(at right 80pc center) assert_equals: expected "ellipse(at right 1280px top 50%)" but got "none"
     1020FAIL test unit (computed): pc - ellipse(at right 80pc bottom) assert_equals: expected "ellipse(at right 1280px top 100%)" but got "none"
     1021FAIL test unit (computed): pc - ellipse(at right 80pc top) assert_equals: expected "ellipse(at right 1280px top 0%)" but got "none"
    10221022PASS test unit (computed): pc - ellipse(at left 50% top 50pc)
    10231023PASS test unit (computed): pc - ellipse(at left 50% bottom 70pc)
     
    10541054PASS test unit (computed): em - ellipse(at center 60em)
    10551055PASS test unit (computed): em - ellipse(at 60em center)
    1056 PASS test unit (computed): em - ellipse(at center top 50em)
    1057 PASS test unit (computed): em - ellipse(at center left 50em)
    1058 PASS test unit (computed): em - ellipse(at center right 70em)
    1059 PASS test unit (computed): em - ellipse(at center bottom 70em)
    1060 PASS test unit (computed): em - ellipse(at left top 50em)
    1061 PASS test unit (computed): em - ellipse(at left bottom 70em)
    1062 PASS test unit (computed): em - ellipse(at top left 50em)
    1063 PASS test unit (computed): em - ellipse(at top right 70em)
    1064 PASS test unit (computed): em - ellipse(at bottom left 50em)
    1065 PASS test unit (computed): em - ellipse(at bottom right 70em)
    1066 PASS test unit (computed): em - ellipse(at right bottom 70em)
    1067 PASS test unit (computed): em - ellipse(at right top 50em)
    1068 PASS test unit (computed): em - ellipse(at left 50em center)
    1069 PASS test unit (computed): em - ellipse(at left 50em top)
    1070 PASS test unit (computed): em - ellipse(at left 50em bottom)
    1071 PASS test unit (computed): em - ellipse(at top 50em center)
    1072 PASS test unit (computed): em - ellipse(at top 50em left)
    1073 PASS test unit (computed): em - ellipse(at top 50em right)
    1074 PASS test unit (computed): em - ellipse(at bottom 70em center)
    1075 PASS test unit (computed): em - ellipse(at bottom 70em left)
    1076 PASS test unit (computed): em - ellipse(at bottom 70em right)
    1077 PASS test unit (computed): em - ellipse(at right 80em center)
    1078 PASS test unit (computed): em - ellipse(at right 80em bottom)
    1079 PASS test unit (computed): em - ellipse(at right 80em top)
     1056FAIL test unit (computed): em - ellipse(at center top 50em) assert_equals: expected "ellipse(at 50% 800px)" but got "none"
     1057FAIL test unit (computed): em - ellipse(at center left 50em) assert_equals: expected "ellipse(at 800px 50%)" but got "none"
     1058FAIL test unit (computed): em - ellipse(at center right 70em) assert_equals: expected "ellipse(at right 1120px top 50%)" but got "none"
     1059FAIL test unit (computed): em - ellipse(at center bottom 70em) assert_equals: expected "ellipse(at left 50% bottom 1120px)" but got "none"
     1060FAIL test unit (computed): em - ellipse(at left top 50em) assert_equals: expected "ellipse(at 0% 800px)" but got "none"
     1061FAIL test unit (computed): em - ellipse(at left bottom 70em) assert_equals: expected "ellipse(at left 0% bottom 1120px)" but got "none"
     1062FAIL test unit (computed): em - ellipse(at top left 50em) assert_equals: expected "ellipse(at 800px 0%)" but got "none"
     1063FAIL test unit (computed): em - ellipse(at top right 70em) assert_equals: expected "ellipse(at right 1120px top 0%)" but got "none"
     1064FAIL test unit (computed): em - ellipse(at bottom left 50em) assert_equals: expected "ellipse(at 800px 100%)" but got "none"
     1065FAIL test unit (computed): em - ellipse(at bottom right 70em) assert_equals: expected "ellipse(at right 1120px top 100%)" but got "none"
     1066FAIL test unit (computed): em - ellipse(at right bottom 70em) assert_equals: expected "ellipse(at left 100% bottom 1120px)" but got "none"
     1067FAIL test unit (computed): em - ellipse(at right top 50em) assert_equals: expected "ellipse(at 100% 800px)" but got "none"
     1068FAIL test unit (computed): em - ellipse(at left 50em center) assert_equals: expected "ellipse(at 800px 50%)" but got "none"
     1069FAIL test unit (computed): em - ellipse(at left 50em top) assert_equals: expected "ellipse(at 800px 0%)" but got "none"
     1070FAIL test unit (computed): em - ellipse(at left 50em bottom) assert_equals: expected "ellipse(at 800px 100%)" but got "none"
     1071FAIL test unit (computed): em - ellipse(at top 50em center) assert_equals: expected "ellipse(at 50% 800px)" but got "none"
     1072FAIL test unit (computed): em - ellipse(at top 50em left) assert_equals: expected "ellipse(at 0% 800px)" but got "none"
     1073FAIL test unit (computed): em - ellipse(at top 50em right) assert_equals: expected "ellipse(at 100% 800px)" but got "none"
     1074FAIL test unit (computed): em - ellipse(at bottom 70em center) assert_equals: expected "ellipse(at left 50% bottom 1120px)" but got "none"
     1075FAIL test unit (computed): em - ellipse(at bottom 70em left) assert_equals: expected "ellipse(at left 0% bottom 1120px)" but got "none"
     1076FAIL test unit (computed): em - ellipse(at bottom 70em right) assert_equals: expected "ellipse(at left 100% bottom 1120px)" but got "none"
     1077FAIL test unit (computed): em - ellipse(at right 80em center) assert_equals: expected "ellipse(at right 1280px top 50%)" but got "none"
     1078FAIL test unit (computed): em - ellipse(at right 80em bottom) assert_equals: expected "ellipse(at right 1280px top 100%)" but got "none"
     1079FAIL test unit (computed): em - ellipse(at right 80em top) assert_equals: expected "ellipse(at right 1280px top 0%)" but got "none"
    10801080PASS test unit (computed): em - ellipse(at left 50% top 50em)
    10811081PASS test unit (computed): em - ellipse(at left 50% bottom 70em)
     
    11121112PASS test unit (computed): ex - ellipse(at center 60ex)
    11131113PASS test unit (computed): ex - ellipse(at 60ex center)
    1114 PASS test unit (computed): ex - ellipse(at center top 50ex)
    1115 PASS test unit (computed): ex - ellipse(at center left 50ex)
    1116 PASS test unit (computed): ex - ellipse(at center right 70ex)
    1117 PASS test unit (computed): ex - ellipse(at center bottom 70ex)
    1118 PASS test unit (computed): ex - ellipse(at left top 50ex)
    1119 PASS test unit (computed): ex - ellipse(at left bottom 70ex)
    1120 PASS test unit (computed): ex - ellipse(at top left 50ex)
    1121 PASS test unit (computed): ex - ellipse(at top right 70ex)
    1122 PASS test unit (computed): ex - ellipse(at bottom left 50ex)
    1123 PASS test unit (computed): ex - ellipse(at bottom right 70ex)
    1124 PASS test unit (computed): ex - ellipse(at right bottom 70ex)
    1125 PASS test unit (computed): ex - ellipse(at right top 50ex)
    1126 PASS test unit (computed): ex - ellipse(at left 50ex center)
    1127 PASS test unit (computed): ex - ellipse(at left 50ex top)
    1128 PASS test unit (computed): ex - ellipse(at left 50ex bottom)
    1129 PASS test unit (computed): ex - ellipse(at top 50ex center)
    1130 PASS test unit (computed): ex - ellipse(at top 50ex left)
    1131 PASS test unit (computed): ex - ellipse(at top 50ex right)
    1132 PASS test unit (computed): ex - ellipse(at bottom 70ex center)
    1133 PASS test unit (computed): ex - ellipse(at bottom 70ex left)
    1134 PASS test unit (computed): ex - ellipse(at bottom 70ex right)
    1135 PASS test unit (computed): ex - ellipse(at right 80ex center)
    1136 PASS test unit (computed): ex - ellipse(at right 80ex bottom)
    1137 PASS test unit (computed): ex - ellipse(at right 80ex top)
     1114FAIL test unit (computed): ex - ellipse(at center top 50ex) assert_equals: expected "ellipse(at 50% 358.984px)" but got "none"
     1115FAIL test unit (computed): ex - ellipse(at center left 50ex) assert_equals: expected "ellipse(at 358.984px 50%)" but got "none"
     1116FAIL test unit (computed): ex - ellipse(at center right 70ex) assert_equals: expected "ellipse(at right 502.578px top 50%)" but got "none"
     1117FAIL test unit (computed): ex - ellipse(at center bottom 70ex) assert_equals: expected "ellipse(at left 50% bottom 502.578px)" but got "none"
     1118FAIL test unit (computed): ex - ellipse(at left top 50ex) assert_equals: expected "ellipse(at 0% 358.984px)" but got "none"
     1119FAIL test unit (computed): ex - ellipse(at left bottom 70ex) assert_equals: expected "ellipse(at left 0% bottom 502.578px)" but got "none"
     1120FAIL test unit (computed): ex - ellipse(at top left 50ex) assert_equals: expected "ellipse(at 358.984px 0%)" but got "none"
     1121FAIL test unit (computed): ex - ellipse(at top right 70ex) assert_equals: expected "ellipse(at right 502.578px top 0%)" but got "none"
     1122FAIL test unit (computed): ex - ellipse(at bottom left 50ex) assert_equals: expected "ellipse(at 358.984px 100%)" but got "none"
     1123FAIL test unit (computed): ex - ellipse(at bottom right 70ex) assert_equals: expected "ellipse(at right 502.578px top 100%)" but got "none"
     1124FAIL test unit (computed): ex - ellipse(at right bottom 70ex) assert_equals: expected "ellipse(at left 100% bottom 502.578px)" but got "none"
     1125FAIL test unit (computed): ex - ellipse(at right top 50ex) assert_equals: expected "ellipse(at 100% 358.984px)" but got "none"
     1126FAIL test unit (computed): ex - ellipse(at left 50ex center) assert_equals: expected "ellipse(at 358.984px 50%)" but got "none"
     1127FAIL test unit (computed): ex - ellipse(at left 50ex top) assert_equals: expected "ellipse(at 358.984px 0%)" but got "none"
     1128FAIL test unit (computed): ex - ellipse(at left 50ex bottom) assert_equals: expected "ellipse(at 358.984px 100%)" but got "none"
     1129FAIL test unit (computed): ex - ellipse(at top 50ex center) assert_equals: expected "ellipse(at 50% 358.984px)" but got "none"
     1130FAIL test unit (computed): ex - ellipse(at top 50ex left) assert_equals: expected "ellipse(at 0% 358.984px)" but got "none"
     1131FAIL test unit (computed): ex - ellipse(at top 50ex right) assert_equals: expected "ellipse(at 100% 358.984px)" but got "none"
     1132FAIL test unit (computed): ex - ellipse(at bottom 70ex center) assert_equals: expected "ellipse(at left 50% bottom 502.578px)" but got "none"
     1133FAIL test unit (computed): ex - ellipse(at bottom 70ex left) assert_equals: expected "ellipse(at left 0% bottom 502.578px)" but got "none"
     1134FAIL test unit (computed): ex - ellipse(at bottom 70ex right) assert_equals: expected "ellipse(at left 100% bottom 502.578px)" but got "none"
     1135FAIL test unit (computed): ex - ellipse(at right 80ex center) assert_equals: expected "ellipse(at right 574.375px top 50%)" but got "none"
     1136FAIL test unit (computed): ex - ellipse(at right 80ex bottom) assert_equals: expected "ellipse(at right 574.375px top 100%)" but got "none"
     1137FAIL test unit (computed): ex - ellipse(at right 80ex top) assert_equals: expected "ellipse(at right 574.375px top 0%)" but got "none"
    11381138PASS test unit (computed): ex - ellipse(at left 50% top 50ex)
    11391139PASS test unit (computed): ex - ellipse(at left 50% bottom 70ex)
     
    11701170PASS test unit (computed): ch - ellipse(at center 60ch)
    11711171PASS test unit (computed): ch - ellipse(at 60ch center)
    1172 PASS test unit (computed): ch - ellipse(at center top 50ch)
    1173 PASS test unit (computed): ch - ellipse(at center left 50ch)
    1174 PASS test unit (computed): ch - ellipse(at center right 70ch)
    1175 PASS test unit (computed): ch - ellipse(at center bottom 70ch)
    1176 PASS test unit (computed): ch - ellipse(at left top 50ch)
    1177 PASS test unit (computed): ch - ellipse(at left bottom 70ch)
    1178 PASS test unit (computed): ch - ellipse(at top left 50ch)
    1179 PASS test unit (computed): ch - ellipse(at top right 70ch)
    1180 PASS test unit (computed): ch - ellipse(at bottom left 50ch)
    1181 PASS test unit (computed): ch - ellipse(at bottom right 70ch)
    1182 PASS test unit (computed): ch - ellipse(at right bottom 70ch)
    1183 PASS test unit (computed): ch - ellipse(at right top 50ch)
    1184 PASS test unit (computed): ch - ellipse(at left 50ch center)
    1185 PASS test unit (computed): ch - ellipse(at left 50ch top)
    1186 PASS test unit (computed): ch - ellipse(at left 50ch bottom)
    1187 PASS test unit (computed): ch - ellipse(at top 50ch center)
    1188 PASS test unit (computed): ch - ellipse(at top 50ch left)
    1189 PASS test unit (computed): ch - ellipse(at top 50ch right)
    1190 PASS test unit (computed): ch - ellipse(at bottom 70ch center)
    1191 PASS test unit (computed): ch - ellipse(at bottom 70ch left)
    1192 PASS test unit (computed): ch - ellipse(at bottom 70ch right)
    1193 PASS test unit (computed): ch - ellipse(at right 80ch center)
    1194 PASS test unit (computed): ch - ellipse(at right 80ch bottom)
    1195 PASS test unit (computed): ch - ellipse(at right 80ch top)
     1172FAIL test unit (computed): ch - ellipse(at center top 50ch) assert_equals: expected "ellipse(at 50% 400px)" but got "none"
     1173FAIL test unit (computed): ch - ellipse(at center left 50ch) assert_equals: expected "ellipse(at 400px 50%)" but got "none"
     1174FAIL test unit (computed): ch - ellipse(at center right 70ch) assert_equals: expected "ellipse(at right 560px top 50%)" but got "none"
     1175FAIL test unit (computed): ch - ellipse(at center bottom 70ch) assert_equals: expected "ellipse(at left 50% bottom 560px)" but got "none"
     1176FAIL test unit (computed): ch - ellipse(at left top 50ch) assert_equals: expected "ellipse(at 0% 400px)" but got "none"
     1177FAIL test unit (computed): ch - ellipse(at left bottom 70ch) assert_equals: expected "ellipse(at left 0% bottom 560px)" but got "none"
     1178FAIL test unit (computed): ch - ellipse(at top left 50ch) assert_equals: expected "ellipse(at 400px 0%)" but got "none"
     1179FAIL test unit (computed): ch - ellipse(at top right 70ch) assert_equals: expected "ellipse(at right 560px top 0%)" but got "none"
     1180FAIL test unit (computed): ch - ellipse(at bottom left 50ch) assert_equals: expected "ellipse(at 400px 100%)" but got "none"
     1181FAIL test unit (computed): ch - ellipse(at bottom right 70ch) assert_equals: expected "ellipse(at right 560px top 100%)" but got "none"
     1182FAIL test unit (computed): ch - ellipse(at right bottom 70ch) assert_equals: expected "ellipse(at left 100% bottom 560px)" but got "none"
     1183FAIL test unit (computed): ch - ellipse(at right top 50ch) assert_equals: expected "ellipse(at 100% 400px)" but got "none"
     1184FAIL test unit (computed): ch - ellipse(at left 50ch center) assert_equals: expected "ellipse(at 400px 50%)" but got "none"
     1185FAIL test unit (computed): ch - ellipse(at left 50ch top) assert_equals: expected "ellipse(at 400px 0%)" but got "none"
     1186FAIL test unit (computed): ch - ellipse(at left 50ch bottom) assert_equals: expected "ellipse(at 400px 100%)" but got "none"
     1187FAIL test unit (computed): ch - ellipse(at top 50ch center) assert_equals: expected "ellipse(at 50% 400px)" but got "none"
     1188FAIL test unit (computed): ch - ellipse(at top 50ch left) assert_equals: expected "ellipse(at 0% 400px)" but got "none"
     1189FAIL test unit (computed): ch - ellipse(at top 50ch right) assert_equals: expected "ellipse(at 100% 400px)" but got "none"
     1190FAIL test unit (computed): ch - ellipse(at bottom 70ch center) assert_equals: expected "ellipse(at left 50% bottom 560px)" but got "none"
     1191FAIL test unit (computed): ch - ellipse(at bottom 70ch left) assert_equals: expected "ellipse(at left 0% bottom 560px)" but got "none"
     1192FAIL test unit (computed): ch - ellipse(at bottom 70ch right) assert_equals: expected "ellipse(at left 100% bottom 560px)" but got "none"
     1193FAIL test unit (computed): ch - ellipse(at right 80ch center) assert_equals: expected "ellipse(at right 640px top 50%)" but got "none"
     1194FAIL test unit (computed): ch - ellipse(at right 80ch bottom) assert_equals: expected "ellipse(at right 640px top 100%)" but got "none"
     1195FAIL test unit (computed): ch - ellipse(at right 80ch top) assert_equals: expected "ellipse(at right 640px top 0%)" but got "none"
    11961196PASS test unit (computed): ch - ellipse(at left 50% top 50ch)
    11971197PASS test unit (computed): ch - ellipse(at left 50% bottom 70ch)
     
    12281228PASS test unit (computed): rem - ellipse(at center 60rem)
    12291229PASS test unit (computed): rem - ellipse(at 60rem center)
    1230 PASS test unit (computed): rem - ellipse(at center top 50rem)
    1231 PASS test unit (computed): rem - ellipse(at center left 50rem)
    1232 PASS test unit (computed): rem - ellipse(at center right 70rem)
    1233 PASS test unit (computed): rem - ellipse(at center bottom 70rem)
    1234 PASS test unit (computed): rem - ellipse(at left top 50rem)
    1235 PASS test unit (computed): rem - ellipse(at left bottom 70rem)
    1236 PASS test unit (computed): rem - ellipse(at top left 50rem)
    1237 PASS test unit (computed): rem - ellipse(at top right 70rem)
    1238 PASS test unit (computed): rem - ellipse(at bottom left 50rem)
    1239 PASS test unit (computed): rem - ellipse(at bottom right 70rem)
    1240 PASS test unit (computed): rem - ellipse(at right bottom 70rem)
    1241 PASS test unit (computed): rem - ellipse(at right top 50rem)
    1242 PASS test unit (computed): rem - ellipse(at left 50rem center)
    1243 PASS test unit (computed): rem - ellipse(at left 50rem top)
    1244 PASS test unit (computed): rem - ellipse(at left 50rem bottom)
    1245 PASS test unit (computed): rem - ellipse(at top 50rem center)
    1246 PASS test unit (computed): rem - ellipse(at top 50rem left)
    1247 PASS test unit (computed): rem - ellipse(at top 50rem right)
    1248 PASS test unit (computed): rem - ellipse(at bottom 70rem center)
    1249 PASS test unit (computed): rem - ellipse(at bottom 70rem left)
    1250 PASS test unit (computed): rem - ellipse(at bottom 70rem right)
    1251 PASS test unit (computed): rem - ellipse(at right 80rem center)
    1252 PASS test unit (computed): rem - ellipse(at right 80rem bottom)
    1253 PASS test unit (computed): rem - ellipse(at right 80rem top)
     1230FAIL test unit (computed): rem - ellipse(at center top 50rem) assert_equals: expected "ellipse(at 50% 800px)" but got "none"
     1231FAIL test unit (computed): rem - ellipse(at center left 50rem) assert_equals: expected "ellipse(at 800px 50%)" but got "none"
     1232FAIL test unit (computed): rem - ellipse(at center right 70rem) assert_equals: expected "ellipse(at right 1120px top 50%)" but got "none"
     1233FAIL test unit (computed): rem - ellipse(at center bottom 70rem) assert_equals: expected "ellipse(at left 50% bottom 1120px)" but got "none"
     1234FAIL test unit (computed): rem - ellipse(at left top 50rem) assert_equals: expected "ellipse(at 0% 800px)" but got "none"
     1235FAIL test unit (computed): rem - ellipse(at left bottom 70rem) assert_equals: expected "ellipse(at left 0% bottom 1120px)" but got "none"
     1236FAIL test unit (computed): rem - ellipse(at top left 50rem) assert_equals: expected "ellipse(at 800px 0%)" but got "none"
     1237FAIL test unit (computed): rem - ellipse(at top right 70rem) assert_equals: expected "ellipse(at right 1120px top 0%)" but got "none"
     1238FAIL test unit (computed): rem - ellipse(at bottom left 50rem) assert_equals: expected "ellipse(at 800px 100%)" but got "none"
     1239FAIL test unit (computed): rem - ellipse(at bottom right 70rem) assert_equals: expected "ellipse(at right 1120px top 100%)" but got "none"
     1240FAIL test unit (computed): rem - ellipse(at right bottom 70rem) assert_equals: expected "ellipse(at left 100% bottom 1120px)" but got "none"
     1241FAIL test unit (computed): rem - ellipse(at right top 50rem) assert_equals: expected "ellipse(at 100% 800px)" but got "none"
     1242FAIL test unit (computed): rem - ellipse(at left 50rem center) assert_equals: expected "ellipse(at 800px 50%)" but got "none"
     1243FAIL test unit (computed): rem - ellipse(at left 50rem top) assert_equals: expected "ellipse(at 800px 0%)" but got "none"
     1244FAIL test unit (computed): rem - ellipse(at left 50rem bottom) assert_equals: expected "ellipse(at 800px 100%)" but got "none"
     1245FAIL test unit (computed): rem - ellipse(at top 50rem center) assert_equals: expected "ellipse(at 50% 800px)" but got "none"
     1246FAIL test unit (computed): rem - ellipse(at top 50rem left) assert_equals: expected "ellipse(at 0% 800px)" but got "none"
     1247FAIL test unit (computed): rem - ellipse(at top 50rem right) assert_equals: expected "ellipse(at 100% 800px)" but got "none"
     1248FAIL test unit (computed): rem - ellipse(at bottom 70rem center) assert_equals: expected "ellipse(at left 50% bottom 1120px)" but got "none"
     1249FAIL test unit (computed): rem - ellipse(at bottom 70rem left) assert_equals: expected "ellipse(at left 0% bottom 1120px)" but got "none"
     1250FAIL test unit (computed): rem - ellipse(at bottom 70rem right) assert_equals: expected "ellipse(at left 100% bottom 1120px)" but got "none"
     1251FAIL test unit (computed): rem - ellipse(at right 80rem center) assert_equals: expected "ellipse(at right 1280px top 50%)" but got "none"
     1252FAIL test unit (computed): rem - ellipse(at right 80rem bottom) assert_equals: expected "ellipse(at right 1280px top 100%)" but got "none"
     1253FAIL test unit (computed): rem - ellipse(at right 80rem top) assert_equals: expected "ellipse(at right 1280px top 0%)" but got "none"
    12541254PASS test unit (computed): rem - ellipse(at left 50% top 50rem)
    12551255PASS test unit (computed): rem - ellipse(at left 50% bottom 70rem)
     
    12861286PASS test unit (computed): vw - ellipse(at center 60vw)
    12871287PASS test unit (computed): vw - ellipse(at 60vw center)
    1288 PASS test unit (computed): vw - ellipse(at center top 50vw)
    1289 PASS test unit (computed): vw - ellipse(at center left 50vw)
    1290 PASS test unit (computed): vw - ellipse(at center right 70vw)
    1291 PASS test unit (computed): vw - ellipse(at center bottom 70vw)
    1292 PASS test unit (computed): vw - ellipse(at left top 50vw)
    1293 PASS test unit (computed): vw - ellipse(at left bottom 70vw)
    1294 PASS test unit (computed): vw - ellipse(at top left 50vw)
    1295 PASS test unit (computed): vw - ellipse(at top right 70vw)
    1296 PASS test unit (computed): vw - ellipse(at bottom left 50vw)
    1297 PASS test unit (computed): vw - ellipse(at bottom right 70vw)
    1298 PASS test unit (computed): vw - ellipse(at right bottom 70vw)
    1299 PASS test unit (computed): vw - ellipse(at right top 50vw)
    1300 PASS test unit (computed): vw - ellipse(at left 50vw center)
    1301 PASS test unit (computed): vw - ellipse(at left 50vw top)
    1302 PASS test unit (computed): vw - ellipse(at left 50vw bottom)
    1303 PASS test unit (computed): vw - ellipse(at top 50vw center)
    1304 PASS test unit (computed): vw - ellipse(at top 50vw left)
    1305 PASS test unit (computed): vw - ellipse(at top 50vw right)
    1306 PASS test unit (computed): vw - ellipse(at bottom 70vw center)
    1307 PASS test unit (computed): vw - ellipse(at bottom 70vw left)
    1308 PASS test unit (computed): vw - ellipse(at bottom 70vw right)
    1309 PASS test unit (computed): vw - ellipse(at right 80vw center)
    1310 PASS test unit (computed): vw - ellipse(at right 80vw bottom)
    1311 PASS test unit (computed): vw - ellipse(at right 80vw top)
     1288FAIL test unit (computed): vw - ellipse(at center top 50vw) assert_equals: expected "ellipse(at 50% 400px)" but got "none"
     1289FAIL test unit (computed): vw - ellipse(at center left 50vw) assert_equals: expected "ellipse(at 400px 50%)" but got "none"
     1290FAIL test unit (computed): vw - ellipse(at center right 70vw) assert_equals: expected "ellipse(at right 560px top 50%)" but got "none"
     1291FAIL test unit (computed): vw - ellipse(at center bottom 70vw) assert_equals: expected "ellipse(at left 50% bottom 560px)" but got "none"
     1292FAIL test unit (computed): vw - ellipse(at left top 50vw) assert_equals: expected "ellipse(at 0% 400px)" but got "none"
     1293FAIL test unit (computed): vw - ellipse(at left bottom 70vw) assert_equals: expected "ellipse(at left 0% bottom 560px)" but got "none"
     1294FAIL test unit (computed): vw - ellipse(at top left 50vw) assert_equals: expected "ellipse(at 400px 0%)" but got "none"
     1295FAIL test unit (computed): vw - ellipse(at top right 70vw) assert_equals: expected "ellipse(at right 560px top 0%)" but got "none"
     1296FAIL test unit (computed): vw - ellipse(at bottom left 50vw) assert_equals: expected "ellipse(at 400px 100%)" but got "none"
     1297FAIL test unit (computed): vw - ellipse(at bottom right 70vw) assert_equals: expected "ellipse(at right 560px top 100%)" but got "none"
     1298FAIL test unit (computed): vw - ellipse(at right bottom 70vw) assert_equals: expected "ellipse(at left 100% bottom 560px)" but got "none"
     1299FAIL test unit (computed): vw - ellipse(at right top 50vw) assert_equals: expected "ellipse(at 100% 400px)" but got "none"
     1300FAIL test unit (computed): vw - ellipse(at left 50vw center) assert_equals: expected "ellipse(at 400px 50%)" but got "none"
     1301FAIL test unit (computed): vw - ellipse(at left 50vw top) assert_equals: expected "ellipse(at 400px 0%)" but got "none"
     1302FAIL test unit (computed): vw - ellipse(at left 50vw bottom) assert_equals: expected "ellipse(at 400px 100%)" but got "none"
     1303FAIL test unit (computed): vw - ellipse(at top 50vw center) assert_equals: expected "ellipse(at 50% 400px)" but got "none"
     1304FAIL test unit (computed): vw - ellipse(at top 50vw left) assert_equals: expected "ellipse(at 0% 400px)" but got "none"
     1305FAIL test unit (computed): vw - ellipse(at top 50vw right) assert_equals: expected "ellipse(at 100% 400px)" but got "none"
     1306FAIL test unit (computed): vw - ellipse(at bottom 70vw center) assert_equals: expected "ellipse(at left 50% bottom 560px)" but got "none"
     1307FAIL test unit (computed): vw - ellipse(at bottom 70vw left) assert_equals: expected "ellipse(at left 0% bottom 560px)" but got "none"
     1308FAIL test unit (computed): vw - ellipse(at bottom 70vw right) assert_equals: expected "ellipse(at left 100% bottom 560px)" but got "none"
     1309FAIL test unit (computed): vw - ellipse(at right 80vw center) assert_equals: expected "ellipse(at right 640px top 50%)" but got "none"
     1310FAIL test unit (computed): vw - ellipse(at right 80vw bottom) assert_equals: expected "ellipse(at right 640px top 100%)" but got "none"
     1311FAIL test unit (computed): vw - ellipse(at right 80vw top) assert_equals: expected "ellipse(at right 640px top 0%)" but got "none"
    13121312PASS test unit (computed): vw - ellipse(at left 50% top 50vw)
    13131313PASS test unit (computed): vw - ellipse(at left 50% bottom 70vw)
     
    13441344PASS test unit (computed): vh - ellipse(at center 60vh)
    13451345PASS test unit (computed): vh - ellipse(at 60vh center)
    1346 PASS test unit (computed): vh - ellipse(at center top 50vh)
    1347 PASS test unit (computed): vh - ellipse(at center left 50vh)
    1348 PASS test unit (computed): vh - ellipse(at center right 70vh)
    1349 PASS test unit (computed): vh - ellipse(at center bottom 70vh)
    1350 PASS test unit (computed): vh - ellipse(at left top 50vh)
    1351 PASS test unit (computed): vh - ellipse(at left bottom 70vh)
    1352 PASS test unit (computed): vh - ellipse(at top left 50vh)
    1353 PASS test unit (computed): vh - ellipse(at top right 70vh)
    1354 PASS test unit (computed): vh - ellipse(at bottom left 50vh)
    1355 PASS test unit (computed): vh - ellipse(at bottom right 70vh)
    1356 PASS test unit (computed): vh - ellipse(at right bottom 70vh)
    1357 PASS test unit (computed): vh - ellipse(at right top 50vh)
    1358 PASS test unit (computed): vh - ellipse(at left 50vh center)
    1359 PASS test unit (computed): vh - ellipse(at left 50vh top)
    1360 PASS test unit (computed): vh - ellipse(at left 50vh bottom)
    1361 PASS test unit (computed): vh - ellipse(at top 50vh center)
    1362 PASS test unit (computed): vh - ellipse(at top 50vh left)
    1363 PASS test unit (computed): vh - ellipse(at top 50vh right)
    1364 PASS test unit (computed): vh - ellipse(at bottom 70vh center)
    1365 PASS test unit (computed): vh - ellipse(at bottom 70vh left)
    1366 PASS test unit (computed): vh - ellipse(at bottom 70vh right)
    1367 PASS test unit (computed): vh - ellipse(at right 80vh center)
    1368 PASS test unit (computed): vh - ellipse(at right 80vh bottom)
    1369 PASS test unit (computed): vh - ellipse(at right 80vh top)
     1346FAIL test unit (computed): vh - ellipse(at center top 50vh) assert_equals: expected "ellipse(at 50% 300px)" but got "none"
     1347FAIL test unit (computed): vh - ellipse(at center left 50vh) assert_equals: expected "ellipse(at 300px 50%)" but got "none"
     1348FAIL test unit (computed): vh - ellipse(at center right 70vh) assert_equals: expected "ellipse(at right 420px top 50%)" but got "none"
     1349FAIL test unit (computed): vh - ellipse(at center bottom 70vh) assert_equals: expected "ellipse(at left 50% bottom 420px)" but got "none"
     1350FAIL test unit (computed): vh - ellipse(at left top 50vh) assert_equals: expected "ellipse(at 0% 300px)" but got "none"
     1351FAIL test unit (computed): vh - ellipse(at left bottom 70vh) assert_equals: expected "ellipse(at left 0% bottom 420px)" but got "none"
     1352FAIL test unit (computed): vh - ellipse(at top left 50vh) assert_equals: expected "ellipse(at 300px 0%)" but got "none"
     1353FAIL test unit (computed): vh - ellipse(at top right 70vh) assert_equals: expected "ellipse(at right 420px top 0%)" but got "none"
     1354FAIL test unit (computed): vh - ellipse(at bottom left 50vh) assert_equals: expected "ellipse(at 300px 100%)" but got "none"
     1355FAIL test unit (computed): vh - ellipse(at bottom right 70vh) assert_equals: expected "ellipse(at right 420px top 100%)" but got "none"
     1356FAIL test unit (computed): vh - ellipse(at right bottom 70vh) assert_equals: expected "ellipse(at left 100% bottom 420px)" but got "none"
     1357FAIL test unit (computed): vh - ellipse(at right top 50vh) assert_equals: expected "ellipse(at 100% 300px)" but got "none"
     1358FAIL test unit (computed): vh - ellipse(at left 50vh center) assert_equals: expected "ellipse(at 300px 50%)" but got "none"
     1359FAIL test unit (computed): vh - ellipse(at left 50vh top) assert_equals: expected "ellipse(at 300px 0%)" but got "none"
     1360FAIL test unit (computed): vh - ellipse(at left 50vh bottom) assert_equals: expected "ellipse(at 300px 100%)" but got "none"
     1361FAIL test unit (computed): vh - ellipse(at top 50vh center) assert_equals: expected "ellipse(at 50% 300px)" but got "none"
     1362FAIL test unit (computed): vh - ellipse(at top 50vh left) assert_equals: expected "ellipse(at 0% 300px)" but got "none"
     1363FAIL test unit (computed): vh - ellipse(at top 50vh right) assert_equals: expected "ellipse(at 100% 300px)" but got "none"
     1364FAIL test unit (computed): vh - ellipse(at bottom 70vh center) assert_equals: expected "ellipse(at left 50% bottom 420px)" but got "none"
     1365FAIL test unit (computed): vh - ellipse(at bottom 70vh left) assert_equals: expected "ellipse(at left 0% bottom 420px)" but got "none"
     1366FAIL test unit (computed): vh - ellipse(at bottom 70vh right) assert_equals: expected "ellipse(at left 100% bottom 420px)" but got "none"
     1367FAIL test unit (computed): vh - ellipse(at right 80vh center) assert_equals: expected "ellipse(at right 480px top 50%)" but got "none"
     1368FAIL test unit (computed): vh - ellipse(at right 80vh bottom) assert_equals: expected "ellipse(at right 480px top 100%)" but got "none"
     1369FAIL test unit (computed): vh - ellipse(at right 80vh top) assert_equals: expected "ellipse(at right 480px top 0%)" but got "none"
    13701370PASS test unit (computed): vh - ellipse(at left 50% top 50vh)
    13711371PASS test unit (computed): vh - ellipse(at left 50% bottom 70vh)
     
    14021402PASS test unit (computed): vmin - ellipse(at center 60vmin)
    14031403PASS test unit (computed): vmin - ellipse(at 60vmin center)
    1404 PASS test unit (computed): vmin - ellipse(at center top 50vmin)
    1405 PASS test unit (computed): vmin - ellipse(at center left 50vmin)
    1406 PASS test unit (computed): vmin - ellipse(at center right 70vmin)
    1407 PASS test unit (computed): vmin - ellipse(at center bottom 70vmin)
    1408 PASS test unit (computed): vmin - ellipse(at left top 50vmin)
    1409 PASS test unit (computed): vmin - ellipse(at left bottom 70vmin)
    1410 PASS test unit (computed): vmin - ellipse(at top left 50vmin)
    1411 PASS test unit (computed): vmin - ellipse(at top right 70vmin)
    1412 PASS test unit (computed): vmin - ellipse(at bottom left 50vmin)
    1413 PASS test unit (computed): vmin - ellipse(at bottom right 70vmin)
    1414 PASS test unit (computed): vmin - ellipse(at right bottom 70vmin)
    1415 PASS test unit (computed): vmin - ellipse(at right top 50vmin)
    1416 PASS test unit (computed): vmin - ellipse(at left 50vmin center)
    1417 PASS test unit (computed): vmin - ellipse(at left 50vmin top)
    1418 PASS test unit (computed): vmin - ellipse(at left 50vmin bottom)
    1419 PASS test unit (computed): vmin - ellipse(at top 50vmin center)
    1420 PASS test unit (computed): vmin - ellipse(at top 50vmin left)
    1421 PASS test unit (computed): vmin - ellipse(at top 50vmin right)
    1422 PASS test unit (computed): vmin - ellipse(at bottom 70vmin center)
    1423 PASS test unit (computed): vmin - ellipse(at bottom 70vmin left)
    1424 PASS test unit (computed): vmin - ellipse(at bottom 70vmin right)
    1425 PASS test unit (computed): vmin - ellipse(at right 80vmin center)
    1426 PASS test unit (computed): vmin - ellipse(at right 80vmin bottom)
    1427 PASS test unit (computed): vmin - ellipse(at right 80vmin top)
     1404FAIL test unit (computed): vmin - ellipse(at center top 50vmin) assert_equals: expected "ellipse(at 50% 300px)" but got "none"
     1405FAIL test unit (computed): vmin - ellipse(at center left 50vmin) assert_equals: expected "ellipse(at 300px 50%)" but got "none"
     1406FAIL test unit (computed): vmin - ellipse(at center right 70vmin) assert_equals: expected "ellipse(at right 420px top 50%)" but got "none"
     1407FAIL test unit (computed): vmin - ellipse(at center bottom 70vmin) assert_equals: expected "ellipse(at left 50% bottom 420px)" but got "none"
     1408FAIL test unit (computed): vmin - ellipse(at left top 50vmin) assert_equals: expected "ellipse(at 0% 300px)" but got "none"
     1409FAIL test unit (computed): vmin - ellipse(at left bottom 70vmin) assert_equals: expected "ellipse(at left 0% bottom 420px)" but got "none"
     1410FAIL test unit (computed): vmin - ellipse(at top left 50vmin) assert_equals: expected "ellipse(at 300px 0%)" but got "none"
     1411FAIL test unit (computed): vmin - ellipse(at top right 70vmin) assert_equals: expected "ellipse(at right 420px top 0%)" but got "none"
     1412FAIL test unit (computed): vmin - ellipse(at bottom left 50vmin) assert_equals: expected "ellipse(at 300px 100%)" but got "none"
     1413FAIL test unit (computed): vmin - ellipse(at bottom right 70vmin) assert_equals: expected "ellipse(at right 420px top 100%)" but got "none"
     1414FAIL test unit (computed): vmin - ellipse(at right bottom 70vmin) assert_equals: expected "ellipse(at left 100% bottom 420px)" but got "none"
     1415FAIL test unit (computed): vmin - ellipse(at right top 50vmin) assert_equals: expected "ellipse(at 100% 300px)" but got "none"
     1416FAIL test unit (computed): vmin - ellipse(at left 50vmin center) assert_equals: expected "ellipse(at 300px 50%)" but got "none"
     1417FAIL test unit (computed): vmin - ellipse(at left 50vmin top) assert_equals: expected "ellipse(at 300px 0%)" but got "none"
     1418FAIL test unit (computed): vmin - ellipse(at left 50vmin bottom) assert_equals: expected "ellipse(at 300px 100%)" but got "none"
     1419FAIL test unit (computed): vmin - ellipse(at top 50vmin center) assert_equals: expected "ellipse(at 50% 300px)" but got "none"
     1420FAIL test unit (computed): vmin - ellipse(at top 50vmin left) assert_equals: expected "ellipse(at 0% 300px)" but got "none"
     1421FAIL test unit (computed): vmin - ellipse(at top 50vmin right) assert_equals: expected "ellipse(at 100% 300px)" but got "none"
     1422FAIL test unit (computed): vmin - ellipse(at bottom 70vmin center) assert_equals: expected "ellipse(at left 50% bottom 420px)" but got "none"
     1423FAIL test unit (computed): vmin - ellipse(at bottom 70vmin left) assert_equals: expected "ellipse(at left 0% bottom 420px)" but got "none"
     1424FAIL test unit (computed): vmin - ellipse(at bottom 70vmin right) assert_equals: expected "ellipse(at left 100% bottom 420px)" but got "none"
     1425FAIL test unit (computed): vmin - ellipse(at right 80vmin center) assert_equals: expected "ellipse(at right 480px top 50%)" but got "none"
     1426FAIL test unit (computed): vmin - ellipse(at right 80vmin bottom) assert_equals: expected "ellipse(at right 480px top 100%)" but got "none"
     1427FAIL test unit (computed): vmin - ellipse(at right 80vmin top) assert_equals: expected "ellipse(at right 480px top 0%)" but got "none"
    14281428PASS test unit (computed): vmin - ellipse(at left 50% top 50vmin)
    14291429PASS test unit (computed): vmin - ellipse(at left 50% bottom 70vmin)
     
    14601460PASS test unit (computed): vmax - ellipse(at center 60vmax)
    14611461PASS test unit (computed): vmax - ellipse(at 60vmax center)
    1462 PASS test unit (computed): vmax - ellipse(at center top 50vmax)
    1463 PASS test unit (computed): vmax - ellipse(at center left 50vmax)
    1464 PASS test unit (computed): vmax - ellipse(at center right 70vmax)
    1465 PASS test unit (computed): vmax - ellipse(at center bottom 70vmax)
    1466 PASS test unit (computed): vmax - ellipse(at left top 50vmax)
    1467 PASS test unit (computed): vmax - ellipse(at left bottom 70vmax)
    1468 PASS test unit (computed): vmax - ellipse(at top left 50vmax)
    1469 PASS test unit (computed): vmax - ellipse(at top right 70vmax)
    1470 PASS test unit (computed): vmax - ellipse(at bottom left 50vmax)
    1471 PASS test unit (computed): vmax - ellipse(at bottom right 70vmax)
    1472 PASS test unit (computed): vmax - ellipse(at right bottom 70vmax)
    1473 PASS test unit (computed): vmax - ellipse(at right top 50vmax)
    1474 PASS test unit (computed): vmax - ellipse(at left 50vmax center)
    1475 PASS test unit (computed): vmax - ellipse(at left 50vmax top)
    1476 PASS test unit (computed): vmax - ellipse(at left 50vmax bottom)
    1477 PASS test unit (computed): vmax - ellipse(at top 50vmax center)
    1478 PASS test unit (computed): vmax - ellipse(at top 50vmax left)
    1479 PASS test unit (computed): vmax - ellipse(at top 50vmax right)
    1480 PASS test unit (computed): vmax - ellipse(at bottom 70vmax center)
    1481 PASS test unit (computed): vmax - ellipse(at bottom 70vmax left)
    1482 PASS test unit (computed): vmax - ellipse(at bottom 70vmax right)
    1483 PASS test unit (computed): vmax - ellipse(at right 80vmax center)
    1484 PASS test unit (computed): vmax - ellipse(at right 80vmax bottom)
    1485 PASS test unit (computed): vmax - ellipse(at right 80vmax top)
     1462FAIL test unit (computed): vmax - ellipse(at center top 50vmax) assert_equals: expected "ellipse(at 50% 400px)" but got "none"
     1463FAIL test unit (computed): vmax - ellipse(at center left 50vmax) assert_equals: expected "ellipse(at 400px 50%)" but got "none"
     1464FAIL test unit (computed): vmax - ellipse(at center right 70vmax) assert_equals: expected "ellipse(at right 560px top 50%)" but got "none"
     1465FAIL test unit (computed): vmax - ellipse(at center bottom 70vmax) assert_equals: expected "ellipse(at left 50% bottom 560px)" but got "none"
     1466FAIL test unit (computed): vmax - ellipse(at left top 50vmax) assert_equals: expected "ellipse(at 0% 400px)" but got "none"
     1467FAIL test unit (computed): vmax - ellipse(at left bottom 70vmax) assert_equals: expected "ellipse(at left 0% bottom 560px)" but got "none"
     1468FAIL test unit (computed): vmax - ellipse(at top left 50vmax) assert_equals: expected "ellipse(at 400px 0%)" but got "none"
     1469FAIL test unit (computed): vmax - ellipse(at top right 70vmax) assert_equals: expected "ellipse(at right 560px top 0%)" but got "none"
     1470FAIL test unit (computed): vmax - ellipse(at bottom left 50vmax) assert_equals: expected "ellipse(at 400px 100%)" but got "none"
     1471FAIL test unit (computed): vmax - ellipse(at bottom right 70vmax) assert_equals: expected "ellipse(at right 560px top 100%)" but got "none"
     1472FAIL test unit (computed): vmax - ellipse(at right bottom 70vmax) assert_equals: expected "ellipse(at left 100% bottom 560px)" but got "none"
     1473FAIL test unit (computed): vmax - ellipse(at right top 50vmax) assert_equals: expected "ellipse(at 100% 400px)" but got "none"
     1474FAIL test unit (computed): vmax - ellipse(at left 50vmax center) assert_equals: expected "ellipse(at 400px 50%)" but got "none"
     1475FAIL test unit (computed): vmax - ellipse(at left 50vmax top) assert_equals: expected "ellipse(at 400px 0%)" but got "none"
     1476FAIL test unit (computed): vmax - ellipse(at left 50vmax bottom) assert_equals: expected "ellipse(at 400px 100%)" but got "none"
     1477FAIL test unit (computed): vmax - ellipse(at top 50vmax center) assert_equals: expected "ellipse(at 50% 400px)" but got "none"
     1478FAIL test unit (computed): vmax - ellipse(at top 50vmax left) assert_equals: expected "ellipse(at 0% 400px)" but got "none"
     1479FAIL test unit (computed): vmax - ellipse(at top 50vmax right) assert_equals: expected "ellipse(at 100% 400px)" but got "none"
     1480FAIL test unit (computed): vmax - ellipse(at bottom 70vmax center) assert_equals: expected "ellipse(at left 50% bottom 560px)" but got "none"
     1481FAIL test unit (computed): vmax - ellipse(at bottom 70vmax left) assert_equals: expected "ellipse(at left 0% bottom 560px)" but got "none"
     1482FAIL test unit (computed): vmax - ellipse(at bottom 70vmax right) assert_equals: expected "ellipse(at left 100% bottom 560px)" but got "none"
     1483FAIL test unit (computed): vmax - ellipse(at right 80vmax center) assert_equals: expected "ellipse(at right 640px top 50%)" but got "none"
     1484FAIL test unit (computed): vmax - ellipse(at right 80vmax bottom) assert_equals: expected "ellipse(at right 640px top 100%)" but got "none"
     1485FAIL test unit (computed): vmax - ellipse(at right 80vmax top) assert_equals: expected "ellipse(at right 640px top 0%)" but got "none"
    14861486PASS test unit (computed): vmax - ellipse(at left 50% top 50vmax)
    14871487PASS test unit (computed): vmax - ellipse(at left 50% bottom 70vmax)
  • trunk/LayoutTests/fast/css/object-position/parsing-object-position-expected.txt

    r209461 r251668  
    1616PASS testComputedStyle("object-position: right 20%;") is "100% 20%"
    1717PASS testComputedStyle("object-position: right") is "100% 50%"
    18 PASS testComputedStyle("object-position: center bottom 20%;") is "50% 80%"
    1918PASS testComputedStyle("object-position: right bottom") is "100% 100%"
    2019PASS testComputedStyle("object-position: left 10px top 15px;") is "10px 15px"
  • trunk/LayoutTests/fast/css/object-position/parsing-object-position.html

    r209460 r251668  
    4545            shouldBeEqualToString('testComputedStyle("object-position: right 20%;")', '100% 20%');
    4646            shouldBeEqualToString('testComputedStyle("object-position: right")', '100% 50%');
    47             shouldBeEqualToString('testComputedStyle("object-position: center bottom 20%;")', '50% 80%');
    4847            shouldBeEqualToString('testComputedStyle("object-position: right bottom")', '100% 100%');
    4948
  • trunk/LayoutTests/fast/shapes/parsing/parsing-shape-outside-expected.txt

    r250653 r251668  
    9292PASS getCSSText("-webkit-shape-outside", "circle(at right bottom)") is "circle(at 100% 100%)"
    9393PASS getComputedStyleValue("-webkit-shape-outside", "circle(at right bottom)") is "circle(at 100% 100%)"
    94 PASS getCSSText("-webkit-shape-outside", "circle(10px at left top 10px)") is "circle(10px at 0% 10px)"
    95 PASS getComputedStyleValue("-webkit-shape-outside", "circle(10px at left top 10px)") is "circle(10px at 0% 10px)"
    9694PASS getCSSText("-webkit-shape-outside", "circle(10px at top 10px left 10px)") is "circle(10px at 10px 10px)"
    9795PASS getComputedStyleValue("-webkit-shape-outside", "circle(10px at top 10px left 10px)") is "circle(10px at 10px 10px)"
     
    116114PASS getCSSText("-webkit-shape-outside", "ellipse(at right bottom)") is "ellipse(at 100% 100%)"
    117115PASS getComputedStyleValue("-webkit-shape-outside", "ellipse(at right bottom)") is "ellipse(at 100% 100%)"
    118 PASS getCSSText("-webkit-shape-outside", "ellipse(10px 20px at left top 10px)") is "ellipse(10px 20px at 0% 10px)"
    119 PASS getComputedStyleValue("-webkit-shape-outside", "ellipse(10px 20px at left top 10px)") is "ellipse(10px 20px at 0% 10px)"
    120116PASS getCSSText("-webkit-shape-outside", "ellipse(10px 20px at top 10px left 10px)") is "ellipse(10px 20px at 10px 10px)"
    121117PASS getComputedStyleValue("-webkit-shape-outside", "ellipse(10px 20px at top 10px left 10px)") is "ellipse(10px 20px at 10px 10px)"
  • trunk/LayoutTests/fast/shapes/parsing/parsing-test-utils.js

    r250653 r251668  
    5353    ["circle(at top left)", "circle(at 0% 0%)", "circle(at 0% 0%)"],
    5454    ["circle(at right bottom)", "circle(at 100% 100%)", "circle(at 100% 100%)"],
    55     ["circle(10px at left top 10px)", "circle(10px at 0% 10px)", "circle(10px at 0% 10px)"],
    5655    ["circle(10px at top 10px left 10px)", "circle(10px at 10px 10px)", "circle(10px at 10px 10px)"],
    5756    ["circle(10px at right 10% bottom 10%)", "circle(10px at 90% 90%)"],
     
    6766    ["ellipse(at top left)", "ellipse(at 0% 0%)", "ellipse(at 0% 0%)"],
    6867    ["ellipse(at right bottom)", "ellipse(at 100% 100%)", "ellipse(at 100% 100%)"],
    69     ["ellipse(10px 20px at left top 10px)", "ellipse(10px 20px at 0% 10px)", "ellipse(10px 20px at 0% 10px)"],
    7068    ["ellipse(10px 20px at top 10px left 10px)", "ellipse(10px 20px at 10px 10px)", "ellipse(10px 20px at 10px 10px)"],
    7169    ["ellipse(10px 20px at right 10px bottom 10px)", "ellipse(10px 20px at right 10px bottom 10px)"],
  • trunk/LayoutTests/imported/w3c/ChangeLog

    r251664 r251668  
     12019-10-28  Simon Fraser  <simon.fraser@apple.com>
     2
     3        Properties that take <position> should not accept 3 values
     4        https://bugs.webkit.org/show_bug.cgi?id=189142
     5        <rdar://problem/44110851>
     6
     7        Reviewed by Antti Koivisto.
     8       
     9        New PASS results.
     10
     11        * web-platform-tests/css/css-images/parsing/gradient-position-invalid-expected.txt:
     12        * web-platform-tests/css/css-images/parsing/object-position-invalid-expected.txt:
     13        * web-platform-tests/css/css-shapes/parsing/shape-outside-invalid-position-expected.txt:
     14
    1152019-10-28  Simon Fraser  <simon.fraser@apple.com>
    216
  • trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-images/parsing/gradient-position-invalid-expected.txt

    r250993 r251668  
    11
    22PASS e.style['background-image'] = "radial-gradient(at top 0px, red, blue)" should not set the property value
    3 FAIL e.style['background-image'] = "radial-gradient(at center left 1px, red, blue)" should not set the property value assert_equals: expected "" but got "radial-gradient(at left 1px center, red, blue)"
    4 FAIL e.style['background-image'] = "radial-gradient(at center top 2px, red, blue)" should not set the property value assert_equals: expected "" but got "radial-gradient(at center top 2px, red, blue)"
    5 FAIL e.style['background-image'] = "radial-gradient(at right 3% center, red, blue)" should not set the property value assert_equals: expected "" but got "radial-gradient(at right 3% center, red, blue)"
    6 FAIL e.style['background-image'] = "radial-gradient(at left 4px top, red, blue)" should not set the property value assert_equals: expected "" but got "radial-gradient(at left 4px top, red, blue)"
    7 FAIL e.style['background-image'] = "radial-gradient(at right top 5px, red, blue)" should not set the property value assert_equals: expected "" but got "radial-gradient(at right top 5px, red, blue)"
    8 FAIL e.style['background-image'] = "radial-gradient(at bottom 6% center, red, blue)" should not set the property value assert_equals: expected "" but got "radial-gradient(at center bottom 6%, red, blue)"
    9 FAIL e.style['background-image'] = "radial-gradient(at bottom 7% left, red, blue)" should not set the property value assert_equals: expected "" but got "radial-gradient(at left bottom 7%, red, blue)"
    10 FAIL e.style['background-image'] = "radial-gradient(at bottom right 8%, red, blue)" should not set the property value assert_equals: expected "" but got "radial-gradient(at right 8% bottom, red, blue)"
     3PASS e.style['background-image'] = "radial-gradient(at center left 1px, red, blue)" should not set the property value
     4PASS e.style['background-image'] = "radial-gradient(at center top 2px, red, blue)" should not set the property value
     5PASS e.style['background-image'] = "radial-gradient(at right 3% center, red, blue)" should not set the property value
     6PASS e.style['background-image'] = "radial-gradient(at left 4px top, red, blue)" should not set the property value
     7PASS e.style['background-image'] = "radial-gradient(at right top 5px, red, blue)" should not set the property value
     8PASS e.style['background-image'] = "radial-gradient(at bottom 6% center, red, blue)" should not set the property value
     9PASS e.style['background-image'] = "radial-gradient(at bottom 7% left, red, blue)" should not set the property value
     10PASS e.style['background-image'] = "radial-gradient(at bottom right 8%, red, blue)" should not set the property value
    1111
  • trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-images/parsing/object-position-invalid-expected.txt

    r250993 r251668  
    55PASS e.style['object-position'] = "bottom 10%" should not set the property value
    66PASS e.style['object-position'] = "bottom 10% top 20%" should not set the property value
    7 FAIL e.style['object-position'] = "center left 1px" should not set the property value assert_equals: expected "" but got "left 1px center"
    8 FAIL e.style['object-position'] = "center top 2px" should not set the property value assert_equals: expected "" but got "center top 2px"
    9 FAIL e.style['object-position'] = "right 3% center" should not set the property value assert_equals: expected "" but got "right 3% center"
    10 FAIL e.style['object-position'] = "left 4px top" should not set the property value assert_equals: expected "" but got "left 4px top"
    11 FAIL e.style['object-position'] = "right top 5px" should not set the property value assert_equals: expected "" but got "right top 5px"
    12 FAIL e.style['object-position'] = "bottom 6% center" should not set the property value assert_equals: expected "" but got "center bottom 6%"
    13 FAIL e.style['object-position'] = "bottom 7% left" should not set the property value assert_equals: expected "" but got "left bottom 7%"
    14 FAIL e.style['object-position'] = "bottom right 8%" should not set the property value assert_equals: expected "" but got "right 8% bottom"
     7PASS e.style['object-position'] = "center left 1px" should not set the property value
     8PASS e.style['object-position'] = "center top 2px" should not set the property value
     9PASS e.style['object-position'] = "right 3% center" should not set the property value
     10PASS e.style['object-position'] = "left 4px top" should not set the property value
     11PASS e.style['object-position'] = "right top 5px" should not set the property value
     12PASS e.style['object-position'] = "bottom 6% center" should not set the property value
     13PASS e.style['object-position'] = "bottom 7% left" should not set the property value
     14PASS e.style['object-position'] = "bottom right 8%" should not set the property value
    1515
  • trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-shapes/parsing/shape-outside-invalid-position-expected.txt

    r232903 r251668  
    11
    2 FAIL e.style['shape-outside'] = "circle(at center left 1px)" should not set the property value assert_equals: expected "" but got "circle(at 1px 50%)"
    3 FAIL e.style['shape-outside'] = "circle(at center top 2px)" should not set the property value assert_equals: expected "" but got "circle(at 50% 2px)"
    4 FAIL e.style['shape-outside'] = "circle(at right 3% center)" should not set the property value assert_equals: expected "" but got "circle(at 97% 50%)"
    5 FAIL e.style['shape-outside'] = "circle(at left 4px top)" should not set the property value assert_equals: expected "" but got "circle(at 4px 0%)"
    6 FAIL e.style['shape-outside'] = "circle(at right 5px top)" should not set the property value assert_equals: expected "" but got "circle(at right 5px top 0%)"
    7 FAIL e.style['shape-outside'] = "ellipse(at right top 5px)" should not set the property value assert_equals: expected "" but got "ellipse(at 100% 5px)"
    8 FAIL e.style['shape-outside'] = "ellipse(at bottom 6% center)" should not set the property value assert_equals: expected "" but got "ellipse(at 50% 94%)"
    9 FAIL e.style['shape-outside'] = "ellipse(at bottom 7% left)" should not set the property value assert_equals: expected "" but got "ellipse(at 0% 93%)"
    10 FAIL e.style['shape-outside'] = "ellipse(at bottom right 8%)" should not set the property value assert_equals: expected "" but got "ellipse(at 92% 100%)"
    11 FAIL e.style['shape-outside'] = "ellipse(at right 10px top)" should not set the property value assert_equals: expected "" but got "ellipse(at right 10px top 0%)"
     2PASS e.style['shape-outside'] = "circle(at center left 1px)" should not set the property value
     3PASS e.style['shape-outside'] = "circle(at center top 2px)" should not set the property value
     4PASS e.style['shape-outside'] = "circle(at right 3% center)" should not set the property value
     5PASS e.style['shape-outside'] = "circle(at left 4px top)" should not set the property value
     6PASS e.style['shape-outside'] = "circle(at right 5px top)" should not set the property value
     7PASS e.style['shape-outside'] = "ellipse(at right top 5px)" should not set the property value
     8PASS e.style['shape-outside'] = "ellipse(at bottom 6% center)" should not set the property value
     9PASS e.style['shape-outside'] = "ellipse(at bottom 7% left)" should not set the property value
     10PASS e.style['shape-outside'] = "ellipse(at bottom right 8%)" should not set the property value
     11PASS e.style['shape-outside'] = "ellipse(at right 10px top)" should not set the property value
    1212
  • trunk/Source/WebCore/ChangeLog

    r251662 r251668  
     12019-10-28  Simon Fraser  <simon.fraser@apple.com>
     2
     3        Properties that take <position> should not accept 3 values
     4        https://bugs.webkit.org/show_bug.cgi?id=189142
     5
     6        Reviewed by Antti Koivisto.
     7       
     8        The resolution in https://github.com/w3c/csswg-drafts/issues/2140 changed the syntax for <position>,
     9        disallowing the 3-value syntax. This is used in object-position, gradients and shapes. background-position
     10        continues to use the old syntax.
     11       
     12        Fix CSS parsing accordingly.
     13
     14        Tested by css-images WPT, by shapes tests, and object-position tests.
     15
     16        * css/parser/CSSPropertyParser.cpp:
     17        (WebCore::CSSPropertyParser::consumePerspectiveOrigin):
     18        (WebCore::consumeBasicShapeCircle):
     19        (WebCore::consumeBasicShapeEllipse):
     20        (WebCore::CSSPropertyParser::parseSingleValue):
     21        (WebCore::consumeBackgroundPosition):
     22        (WebCore::CSSPropertyParser::consumeBackgroundShorthand):
     23        * css/parser/CSSPropertyParserHelpers.cpp:
     24        (WebCore::CSSPropertyParserHelpers::backgroundPositionFromThreeValues):
     25        (WebCore::CSSPropertyParserHelpers::positionFromFourValues):
     26        (WebCore::CSSPropertyParserHelpers::consumePosition):
     27        (WebCore::CSSPropertyParserHelpers::consumeRadialGradient):
     28        (WebCore::CSSPropertyParserHelpers::consumeConicGradient):
     29        (WebCore::CSSPropertyParserHelpers::positionFromThreeOrFourValues): Deleted.
     30        * css/parser/CSSPropertyParserHelpers.h:
     31
    1322019-10-28  Alex Christensen  <achristensen@webkit.org>
    233
  • trunk/Source/WebCore/css/parser/CSSPropertyParser.cpp

    r251655 r251668  
    401401    RefPtr<CSSPrimitiveValue> resultX;
    402402    RefPtr<CSSPrimitiveValue> resultY;
    403     if (consumePosition(m_range, m_context.mode, UnitlessQuirk::Forbid, resultX, resultY)) {
     403    if (consumePosition(m_range, m_context.mode, UnitlessQuirk::Forbid, PositionSyntax::Position, resultX, resultY)) {
    404404        addProperty(CSSPropertyPerspectiveOriginX, CSSPropertyPerspectiveOrigin, resultX.releaseNonNull(), important);
    405405        addProperty(CSSPropertyPerspectiveOriginY, CSSPropertyPerspectiveOrigin, resultY.releaseNonNull(), important);
     
    23722372        RefPtr<CSSPrimitiveValue> centerX;
    23732373        RefPtr<CSSPrimitiveValue> centerY;
    2374         if (!consumePosition(args, context.mode, UnitlessQuirk::Forbid, centerX, centerY))
     2374        if (!consumePosition(args, context.mode, UnitlessQuirk::Forbid, PositionSyntax::Position, centerX, centerY))
    23752375            return nullptr;
    23762376        shape->setCenterX(centerX.releaseNonNull());
     
    23952395        RefPtr<CSSPrimitiveValue> centerX;
    23962396        RefPtr<CSSPrimitiveValue> centerY;
    2397         if (!consumePosition(args, context.mode, UnitlessQuirk::Forbid, centerX, centerY))
     2397        if (!consumePosition(args, context.mode, UnitlessQuirk::Forbid, PositionSyntax::Position, centerX, centerY))
    23982398            return nullptr;
    23992399        shape->setCenterX(centerX.releaseNonNull());
     
    39303930#endif
    39313931    case CSSPropertyObjectPosition:
    3932         return consumePosition(m_range, m_context.mode, UnitlessQuirk::Forbid);
     3932        return consumePosition(m_range, m_context.mode, UnitlessQuirk::Forbid, PositionSyntax::Position);
    39333933    case CSSPropertyWebkitLineClamp:
    39343934        return consumeLineClamp(m_range);
     
    50905090        RefPtr<CSSPrimitiveValue> positionX;
    50915091        RefPtr<CSSPrimitiveValue> positionY;
    5092         if (!consumePosition(range, context.mode, unitless, positionX, positionY))
     5092        if (!consumePosition(range, context.mode, unitless, PositionSyntax::BackgroundPosition, positionX, positionY))
    50935093            return false;
    50945094        addBackgroundValue(resultX, positionX.releaseNonNull());
     
    51685168                    RefPtr<CSSPrimitiveValue> primitiveValue;
    51695169                    RefPtr<CSSPrimitiveValue> primitiveValueY;
    5170                     if (!consumePosition(rangeCopy, m_context.mode, UnitlessQuirk::Forbid, primitiveValue, primitiveValueY))
     5170                    if (!consumePosition(rangeCopy, m_context.mode, UnitlessQuirk::Forbid, PositionSyntax::BackgroundPosition, primitiveValue, primitiveValueY))
    51715171                        continue;
    51725172                    value = primitiveValue;
  • trunk/Source/WebCore/css/parser/CSSPropertyParserHelpers.cpp

    r251662 r251668  
    845845}
    846846
    847 static bool positionFromThreeOrFourValues(CSSPrimitiveValue** values, RefPtr<CSSPrimitiveValue>& resultX, RefPtr<CSSPrimitiveValue>& resultY)
     847// https://drafts.csswg.org/css-backgrounds-3/#propdef-background-position
     848// background-position has special parsing rules, allowing a 3-value syntax:
     849// <bg-position> =  [ left | center | right | top | bottom | <length-percentage> ]
     850// |
     851//   [ left | center | right | <length-percentage> ]
     852//   [ top | center | bottom | <length-percentage> ]
     853// |
     854//   [ center | [ left | right ] <length-percentage>? ] &&
     855//   [ center | [ top | bottom ] <length-percentage>? ]
     856//
     857static bool backgroundPositionFromThreeValues(const std::array<CSSPrimitiveValue*, 5>& values, RefPtr<CSSPrimitiveValue>& resultX, RefPtr<CSSPrimitiveValue>& resultY)
    848858{
    849859    CSSPrimitiveValue* center = nullptr;
     
    852862        if (!currentValue->isValueID())
    853863            return false;
     864
    854865        CSSValueID id = currentValue->valueID();
    855 
    856866        if (id == CSSValueCenter) {
    857867            if (center)
     
    893903}
    894904
     905// https://drafts.csswg.org/css-values-4/#typedef-position
     906// <position> = [
     907//   [ left | center | right ] || [ top | center | bottom ]
     908// |
     909//   [ left | center | right | <length-percentage> ]
     910//   [ top | center | bottom | <length-percentage> ]?
     911// |
     912//   [ [ left | right ] <length-percentage> ] &&
     913//   [ [ top | bottom ] <length-percentage> ]
     914//
     915static bool positionFromFourValues(const std::array<CSSPrimitiveValue*, 5>& values, RefPtr<CSSPrimitiveValue>& resultX, RefPtr<CSSPrimitiveValue>& resultY)
     916{
     917    for (int i = 0; values[i]; i++) {
     918        CSSPrimitiveValue* currentValue = values[i];
     919        if (!currentValue->isValueID())
     920            return false;
     921
     922        CSSValueID id = currentValue->valueID();
     923        if (id == CSSValueCenter)
     924            return false;
     925
     926        RefPtr<CSSPrimitiveValue> result;
     927        if (values[i + 1] && !values[i + 1]->isValueID())
     928            result = CSSPropertyParserHelpersInternal::createPrimitiveValuePair(currentValue, values[++i]);
     929        else
     930            result = currentValue;
     931
     932        if (id == CSSValueLeft || id == CSSValueRight) {
     933            if (resultX)
     934                return false;
     935            resultX = result;
     936        } else {
     937            ASSERT(id == CSSValueTop || id == CSSValueBottom);
     938            if (resultY)
     939                return false;
     940            resultY = result;
     941        }
     942    }
     943
     944    ASSERT(resultX && resultY);
     945    return true;
     946}
     947
    895948// FIXME: This may consume from the range upon failure. The background
    896949// shorthand works around it, but we should just fix it here.
    897 bool consumePosition(CSSParserTokenRange& range, CSSParserMode cssParserMode, UnitlessQuirk unitless, RefPtr<CSSPrimitiveValue>& resultX, RefPtr<CSSPrimitiveValue>& resultY)
     950bool consumePosition(CSSParserTokenRange& range, CSSParserMode cssParserMode, UnitlessQuirk unitless, PositionSyntax positionSyntax, RefPtr<CSSPrimitiveValue>& resultX, RefPtr<CSSPrimitiveValue>& resultY)
    898951{
    899952    RefPtr<CSSPrimitiveValue> value1 = consumePositionComponent(range, cssParserMode, unitless);
     
    912965
    913966    RefPtr<CSSPrimitiveValue> value4 = consumePositionComponent(range, cssParserMode, unitless);
    914     CSSPrimitiveValue* values[5];
     967   
     968    std::array<CSSPrimitiveValue*, 5> values;
    915969    values[0] = value1.get();
    916970    values[1] = value2.get();
     
    918972    values[3] = value4.get();
    919973    values[4] = nullptr;
    920     return positionFromThreeOrFourValues(values, resultX, resultY);
    921 }
    922 
    923 RefPtr<CSSPrimitiveValue> consumePosition(CSSParserTokenRange& range, CSSParserMode cssParserMode, UnitlessQuirk unitless)
     974   
     975    if (value4)
     976        return positionFromFourValues(values, resultX, resultY);
     977   
     978    if (positionSyntax != PositionSyntax::BackgroundPosition)
     979        return false;
     980   
     981    return backgroundPositionFromThreeValues(values, resultX, resultY);
     982}
     983
     984RefPtr<CSSPrimitiveValue> consumePosition(CSSParserTokenRange& range, CSSParserMode cssParserMode, UnitlessQuirk unitless, PositionSyntax positionSyntax)
    924985{
    925986    RefPtr<CSSPrimitiveValue> resultX;
    926987    RefPtr<CSSPrimitiveValue> resultY;
    927     if (consumePosition(range, cssParserMode, unitless, resultX, resultY))
     988    if (consumePosition(range, cssParserMode, unitless, positionSyntax, resultX, resultY))
    928989        return CSSPropertyParserHelpersInternal::createPrimitiveValuePair(resultX.releaseNonNull(), resultY.releaseNonNull());
    929990    return nullptr;
     
    12201281    if (args.peek().id() == CSSValueAt) {
    12211282        args.consumeIncludingWhitespace();
    1222         consumePosition(args, cssParserMode, UnitlessQuirk::Forbid, centerX, centerY);
     1283        consumePosition(args, cssParserMode, UnitlessQuirk::Forbid, PositionSyntax::Position, centerX, centerY);
    12231284        if (!(centerX && centerY))
    12241285            return nullptr;
     
    12901351            RefPtr<CSSPrimitiveValue> centerX;
    12911352            RefPtr<CSSPrimitiveValue> centerY;
    1292             consumePosition(args, context.mode, UnitlessQuirk::Forbid, centerX, centerY);
     1353            consumePosition(args, context.mode, UnitlessQuirk::Forbid, PositionSyntax::Position, centerX, centerY);
    12931354            if (!(centerX && centerY))
    12941355                return nullptr;
  • trunk/Source/WebCore/css/parser/CSSPropertyParserHelpers.h

    r233877 r251668  
    8282RefPtr<CSSPrimitiveValue> consumeColor(CSSParserTokenRange&, CSSParserMode, bool acceptQuirkyColors = false);
    8383
    84 RefPtr<CSSPrimitiveValue> consumePosition(CSSParserTokenRange&, CSSParserMode, UnitlessQuirk);
    85 bool consumePosition(CSSParserTokenRange&, CSSParserMode, UnitlessQuirk, RefPtr<CSSPrimitiveValue>& resultX, RefPtr<CSSPrimitiveValue>& resultY);
     84enum class PositionSyntax {
     85    Position, // <position>
     86    BackgroundPosition // <bg-position>
     87};
     88
     89RefPtr<CSSPrimitiveValue> consumePosition(CSSParserTokenRange&, CSSParserMode, UnitlessQuirk, PositionSyntax);
     90bool consumePosition(CSSParserTokenRange&, CSSParserMode, UnitlessQuirk, PositionSyntax, RefPtr<CSSPrimitiveValue>& resultX, RefPtr<CSSPrimitiveValue>& resultY);
    8691bool consumeOneOrTwoValuedPosition(CSSParserTokenRange&, CSSParserMode, UnitlessQuirk, RefPtr<CSSPrimitiveValue>& resultX, RefPtr<CSSPrimitiveValue>& resultY);
    8792
Note: See TracChangeset for help on using the changeset viewer.