Changeset 140728 in webkit


Ignore:
Timestamp:
Jan 24, 2013 2:48:50 PM (11 years ago)
Author:
eae@chromium.org
Message:

[svg] Remove unnecessary rounding in SVGRootInlineBox::layoutRootBox
https://bugs.webkit.org/show_bug.cgi?id=107771

Source/WebCore:

Reviewed by Levi Weintraub.

SVGRootInlineBox::layoutRootBox rounds the location and size of
the container to the nearest enclosing integer values. Now that
layout uses subpixel positioning this is no longer needed and
results in undesirable rounding. For high-dpi screens in
particular this is especially noticeable as it is rounded to
"pixels" which can map to two our more device pixels.

Test: svg/text/text-rect-precision.html

  • rendering/svg/SVGRootInlineBox.cpp:

(WebCore::SVGRootInlineBox::layoutRootBox):
Change from enclosingIntRect to enclosingLayoutRect to align to
the closest containing LayoutRect now that layout is done using
subpixel precision.

LayoutTests:

Reviewed by Levi Weintraub.

Add test for svg text subpixel measurement and update
expectations as needed.

  • css3/zoom-coords.xhtml:
  • platform/chromium/TestExpectations:
  • platform/mac/TestExpectations:
  • svg/W3C-SVG-1.1-SE/color-prop-05-t-expected.txt:
  • svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.txt:
  • svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.txt:
  • svg/W3C-SVG-1.1-SE/struct-use-14-f-expected.txt:
  • svg/W3C-SVG-1.1-SE/svgdom-over-01-f-expected.txt:
  • svg/W3C-SVG-1.1-SE/types-dom-05-b-expected.txt:
  • svg/custom/glyph-setting-d-attribute-expected.txt:
  • svg/foreignObject/text-tref-02-b-expected.txt:
  • svg/hixie/viewbox/002-expected.txt:
  • svg/hixie/viewbox/003-expected.txt:
  • svg/text/text-rect-precision.html: Added.
  • svg/text/text-viewbox-rescale-expected.txt:
  • svg/zoom/page/zoom-zoom-coords-expected.txt:
  • svg/zoom/page/zoom-zoom-coords.xhtml:
Location:
trunk
Files:
1 added
19 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r140722 r140728  
     12013-01-24  Emil A Eklund  <eae@chromium.org>
     2
     3        [svg] Remove unnecessary rounding in SVGRootInlineBox::layoutRootBox
     4        https://bugs.webkit.org/show_bug.cgi?id=107771
     5
     6        Reviewed by Levi Weintraub.
     7       
     8        Add test for svg text subpixel measurement and update
     9        expectations as needed.
     10
     11        * css3/zoom-coords.xhtml:
     12        * platform/chromium/TestExpectations:
     13        * platform/mac/TestExpectations:
     14        * svg/W3C-SVG-1.1-SE/color-prop-05-t-expected.txt:
     15        * svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.txt:
     16        * svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.txt:
     17        * svg/W3C-SVG-1.1-SE/struct-use-14-f-expected.txt:
     18        * svg/W3C-SVG-1.1-SE/svgdom-over-01-f-expected.txt:
     19        * svg/W3C-SVG-1.1-SE/types-dom-05-b-expected.txt:
     20        * svg/custom/glyph-setting-d-attribute-expected.txt:
     21        * svg/foreignObject/text-tref-02-b-expected.txt:
     22        * svg/hixie/viewbox/002-expected.txt:
     23        * svg/hixie/viewbox/003-expected.txt:
     24        * svg/text/text-rect-precision.html: Added.
     25        * svg/text/text-viewbox-rescale-expected.txt:
     26        * svg/zoom/page/zoom-zoom-coords-expected.txt:
     27        * svg/zoom/page/zoom-zoom-coords.xhtml:
     28
    1292013-01-24  Philip Rogers  <pdr@google.com>
    230
  • trunk/LayoutTests/css3/zoom-coords.xhtml

    r119990 r140728  
    121121shouldBe('text1.left', '100');
    122122msgDumpRenderTreeRequired();
    123 shouldBe('text1.top', '282.5');
    124 shouldBe('text1.width', '46');
    125 shouldBe('text1.height', '6.5');
    126 shouldBe('text1.right', '146');
    127 shouldBe('text1.bottom', '289');
     123shouldBeCloseTo('text1.top', 282, 1);
     124shouldBeCloseTo('text1.width', 46, 1);
     125shouldBeCloseTo('text1.height', 6, 1);
     126shouldBeCloseTo('text1.right', 146, 1);
     127shouldBeCloseTo('text1.bottom', 289, 1);
    128128debug("");
    129129
     
    152152shouldBe('text2.left', '175');
    153153msgDumpRenderTreeRequired();
    154 shouldBe('text2.top', '132.5');
    155 shouldBe('text2.width', '49');
    156 shouldBe('text2.height', '6.5');
    157 shouldBe('text2.right', '224');
    158 shouldBe('text2.bottom', '139');
     154shouldBeCloseTo('text2.top', 132, 1);
     155shouldBeCloseTo('text2.width', 49, 1);
     156shouldBeCloseTo('text2.height', 6, 1);
     157shouldBeCloseTo('text2.right', 224, 1);
     158shouldBeCloseTo('text2.bottom', 139, 1);
    159159debug("");
    160160
     
    183183shouldBe('text3.left', '1100');
    184184msgDumpRenderTreeRequired();
    185 shouldBe('text3.top', '565');
    186 shouldBe('text3.width', '92');
    187 shouldBe('text3.height', '13');
    188 shouldBe('text3.right', '1192');
    189 shouldBe('text3.bottom', '578');
     185shouldBeCloseTo('text3.top', 565, 1);
     186shouldBeCloseTo('text3.width', 92, 1);
     187shouldBeCloseTo('text3.height', 12, 1);
     188shouldBeCloseTo('text3.right', 1192, 1);
     189shouldBeCloseTo('text3.bottom', 577, 1);
    190190debug("");
    191191
  • trunk/LayoutTests/platform/chromium/TestExpectations

    r140715 r140728  
    12641264webkit.org/b/65939 svg/custom/getBBox-path.svg [ Failure ]
    12651265
    1266 # These files need new expectations after changing the behavior from radiaGradients to SVG2
    1267 webkit.org/b/98569 svg/hixie/perf/006.xml [ ImageOnlyFailure Pass ]
    1268 webkit.org/b/98569 svg/W3C-SVG-1.1-SE/styling-pres-02-f.svg [ ImageOnlyFailure Pass ]
    1269 webkit.org/b/98569 svg/W3C-SVG-1.1-SE/svgdom-over-01-f.svg [ ImageOnlyFailure Pass ]
    1270 webkit.org/b/98569 svg/W3C-SVG-1.1/coords-units-01-b.svg [ ImageOnlyFailure Pass ]
    1271 webkit.org/b/98569 svg/W3C-SVG-1.1/pservers-grad-02-b.svg [ ImageOnlyFailure Pass ]
    1272 webkit.org/b/98569 svg/W3C-SVG-1.1/pservers-grad-04-b.svg [ ImageOnlyFailure Pass ]
    1273 webkit.org/b/98569 svg/W3C-SVG-1.1/pservers-grad-05-b.svg [ ImageOnlyFailure Pass ]
    1274 webkit.org/b/98569 svg/W3C-SVG-1.1/pservers-grad-11-b.svg [ ImageOnlyFailure Pass ]
    1275 webkit.org/b/98569 svg/W3C-SVG-1.1/pservers-grad-12-b.svg [ ImageOnlyFailure Pass ]
    1276 webkit.org/b/98569 svg/W3C-SVG-1.1/pservers-grad-13-b.svg [ ImageOnlyFailure Failure Pass ]
    1277 webkit.org/b/98569 svg/W3C-SVG-1.1/pservers-grad-14-b.svg [ ImageOnlyFailure Pass ]
    1278 webkit.org/b/98569 svg/W3C-SVG-1.1/pservers-grad-15-b.svg [ ImageOnlyFailure Pass ]
    1279 webkit.org/b/98569 svg/W3C-SVG-1.1/struct-use-05-b.svg [ ImageOnlyFailure Pass ]
    1280 webkit.org/b/98569 svg/W3C-SVG-1.1/styling-inherit-01-b.svg [ ImageOnlyFailure Pass ]
    1281 webkit.org/b/98569 svg/batik/paints/gradientLimit.svg [ ImageOnlyFailure Pass ]
    1282 webkit.org/b/98569 svg/batik/paints/patternRegions-positioned-objects.svg [ ImageOnlyFailure Pass ]
    1283 webkit.org/b/98569 svg/batik/paints/patternRegions.svg [ ImageOnlyFailure Pass ]
    1284 webkit.org/b/98569 svg/batik/text/textEffect.svg [ ImageOnlyFailure Pass ]
    1285 webkit.org/b/98569 svg/batik/text/textEffect3.svg [ ImageOnlyFailure Pass ]
    1286 webkit.org/b/98569 svg/custom/relative-sized-content-with-resources.xhtml [ ImageOnlyFailure Pass ]
    1287 webkit.org/b/98569 svg/custom/stroked-pattern.svg [ ImageOnlyFailure Pass ]
    1288 webkit.org/b/98569 svg/custom/gradient-deep-referencing.svg [ ImageOnlyFailure Pass ]
    1289 webkit.org/b/98569 svg/custom/radial-gradient-with-outstanding-focalPoint.svg [ ImageOnlyFailure Failure Pass ]
    1290 webkit.org/b/98569 svg/custom/radialGradient-focal-radius.svg [ ImageOnlyFailure Failure Pass ]
    1291 webkit.org/b/98569 svg/custom/gradient-with-1d-boundingbox.svg [ ImageOnlyFailure Pass ]
    1292 webkit.org/b/98569 svg/custom/recursive-gradient.svg [ ImageOnlyFailure Pass ]
    1293 
    12941266# Failure: drawing a filled shadow for a fill=transparent rectangle.
    12951267webkit.org/b/76557 svg/custom/transform-with-shadow-and-gradient.svg [ ImageOnlyFailure ]
     
    13151287
    13161288webkit.org/b/81217 [ Android ] svg/custom/js-late-pattern-and-object-creation.svg [ ImageOnlyFailure ]
    1317 webkit.org/b/81217 svg/hixie/perf/003.xml [ ImageOnlyFailure Pass ]
     1289#webkit.org/b/81217 svg/hixie/perf/003.xml [ ImageOnlyFailure Pass ]
    13181290
    13191291webkit.org/b/81240 [ SnowLeopard Lion ] svg/text/bidi-reorder-value-lists.svg [ Failure Pass ]
     
    13221294
    13231295# Flaky on Linux after http://trac.webkit.org/changeset/112022
    1324 webkit.org/b/82217 [ Android Linux ] svg/zoom/text/zoom-foreignObject.svg [ ImageOnlyFailure Pass ]
     1296#webkit.org/b/82217 [ Android Linux ] svg/zoom/text/zoom-foreignObject.svg [ ImageOnlyFailure Pass ]
    13251297
    13261298# Flaky since at least r111670
     
    13291301webkit.org/b/82416 svg/custom/pattern-userSpaceOnUse-userToBaseTransform.xhtml [ ImageOnlyFailure Pass ]
    13301302
    1331 webkit.org/b/82509 [ Android Linux ] svg/text/append-text-node-to-tspan.html [ ImageOnlyFailure Pass ]
     1303#webkit.org/b/82509 [ Android Linux ] svg/text/append-text-node-to-tspan.html [ ImageOnlyFailure Pass ]
    13321304
    13331305# Flaky on MAC 10.6
     
    13471319
    13481320# Many WIN and Linux SVG tests containing text are flaky. It seems different fonts are used at different times.
    1349 webkit.org/b/83303 [ Android Linux Win ] svg/zoom/text/zoom-hixie-mixed-009.xml [ ImageOnlyFailure Pass ]
    1350 webkit.org/b/83303 [ Android Linux Win ] svg/zoom/page/zoom-hixie-mixed-009.xml [ ImageOnlyFailure Pass ]
    1351 webkit.org/b/83303 [ Android Linux ] svg/hixie/mixed/009.xml [ ImageOnlyFailure Pass ]
    1352 webkit.org/b/83306 [ Win ] svg/hixie/mixed/009.xml [ ImageOnlyFailure ]
    1353 webkit.org/b/83303 [ Android Linux ] svg/text/scaling-font-with-geometric-precision.html [ ImageOnlyFailure Pass ]
     1321#webkit.org/b/83303 [ Android Linux Win ] svg/zoom/text/zoom-hixie-mixed-009.xml [ ImageOnlyFailure Pass ]
     1322#webkit.org/b/83303 [ Android Linux Win ] svg/zoom/page/zoom-hixie-mixed-009.xml [ ImageOnlyFailure Pass ]
     1323#webkit.org/b/83303 [ Android Linux ] svg/hixie/mixed/009.xml [ ImageOnlyFailure Pass ]
     1324#webkit.org/b/83306 [ Win ] svg/hixie/mixed/009.xml [ ImageOnlyFailure ]
     1325#webkit.org/b/83303 [ Android Linux ] svg/text/scaling-font-with-geometric-precision.html [ ImageOnlyFailure Pass ]
    13541326webkit.org/b/83303 [ Android Linux Win ] svg/text/foreignObject-text-clipping-bug.xml [ ImageOnlyFailure Pass ]
    1355 webkit.org/b/83303 [ Android Linux ] svg/transforms/text-with-mask-with-svg-transform.svg [ ImageOnlyFailure Pass ]
    1356 webkit.org/b/83303 [ Android Linux ] svg/transforms/text-with-pattern-with-svg-transform.svg [ ImageOnlyFailure Pass ]
    1357 webkit.org/b/83303 [ Win ] svg/as-background-image/svg-as-background-1.html [ ImageOnlyFailure Pass ]
    1358 webkit.org/b/83303 [ Win ] svg/as-background-image/svg-as-background-3.html [ ImageOnlyFailure Pass ]
    1359 webkit.org/b/83303 [ Win ] svg/as-background-image/svg-as-background-6.html [ ImageOnlyFailure Pass ]
    1360 webkit.org/b/83303 [ Win ] svg/custom/mouse-move-on-svg-container-standalone.svg [ ImageOnlyFailure Pass ]
    1361 webkit.org/b/83303 [ Win ] svg/custom/mouse-move-on-svg-container.xhtml [ ImageOnlyFailure Pass ]
    1362 webkit.org/b/83303 [ Win ] svg/custom/mouse-move-on-svg-root-standalone.svg [ ImageOnlyFailure Pass ]
    1363 webkit.org/b/83303 [ Win ] svg/custom/mouse-move-on-svg-root.xhtml [ ImageOnlyFailure Pass ]
     1327#webkit.org/b/83303 [ Android Linux ] svg/transforms/text-with-mask-with-svg-transform.svg [ ImageOnlyFailure Pass ]
     1328#webkit.org/b/83303 [ Android Linux ] svg/transforms/text-with-pattern-with-svg-transform.svg [ ImageOnlyFailure Pass ]
     1329#webkit.org/b/83303 [ Win ] svg/as-background-image/svg-as-background-1.html [ ImageOnlyFailure Pass ]
     1330#webkit.org/b/83303 [ Win ] svg/as-background-image/svg-as-background-3.html [ ImageOnlyFailure Pass ]
     1331#webkit.org/b/83303 [ Win ] svg/as-background-image/svg-as-background-6.html [ ImageOnlyFailure Pass ]
     1332#webkit.org/b/83303 [ Win ] svg/custom/mouse-move-on-svg-container-standalone.svg [ ImageOnlyFailure Pass ]
     1333#webkit.org/b/83303 [ Win ] svg/custom/mouse-move-on-svg-container.xhtml [ ImageOnlyFailure Pass ]
     1334#webkit.org/b/83303 [ Win ] svg/custom/mouse-move-on-svg-root-standalone.svg [ ImageOnlyFailure Pass ]
     1335#webkit.org/b/83303 [ Win ] svg/custom/mouse-move-on-svg-root.xhtml [ ImageOnlyFailure Pass ]
    13641336
    13651337# This fails image 5-10% of the time. Probably a race condition on timers.
    1366 webkit.org/b/83471 svg/as-image/animated-svg-as-image-same-image.html [ ImageOnlyFailure Pass ]
     1338#webkit.org/b/83471 svg/as-image/animated-svg-as-image-same-image.html [ ImageOnlyFailure Pass ]
    13671339
    13681340webkit.org/b/83875 [ Android Linux ] svg/text/font-size-below-point-five.svg [ Failure Pass ]
     
    13761348webkit.org/b/84719 [ Win ] svg/text/select-text-svgfont.html [ Failure Pass ]
    13771349
    1378 webkit.org/b/84854 [ Android Linux ] svg/batik/text/textOnPath.svg [ ImageOnlyFailure Pass ]
    1379 webkit.org/b/84854 [ Android Linux ] svg/batik/text/verticalTextOnPath.svg [ ImageOnlyFailure Pass ]
    1380 
    1381 webkit.org/b/85107 svg/as-image/svg-as-relative-image-with-explicit-size.html [ ImageOnlyFailure Pass ]
    1382 webkit.org/b/85107 svg/as-image/animated-svg-as-image.html [ ImageOnlyFailure Pass ]
     1350#webkit.org/b/84854 [ Android Linux ] svg/batik/text/textOnPath.svg [ ImageOnlyFailure Pass ]
     1351#webkit.org/b/84854 [ Android Linux ] svg/batik/text/verticalTextOnPath.svg [ ImageOnlyFailure Pass ]
     1352
     1353#webkit.org/b/85107 svg/as-image/svg-as-relative-image-with-explicit-size.html [ ImageOnlyFailure Pass ]
     1354#webkit.org/b/85107 svg/as-image/animated-svg-as-image.html [ ImageOnlyFailure Pass ]
    13831355
    13841356webkit.org/b/93589 svg/dom/SVGScriptElement/script-change-externalResourcesRequired-while-loading.svg [ Failure Pass Timeout ]
     
    38473819webkit.org/b/98087 [ Linux ] fast/css/lang-mapped-to-webkit-locale-dynamic.xhtml [ Failure Pass ]
    38483820
    3849 webkit.org/b/96833 svg/carto.net/selectionlist.svg [ ImageOnlyFailure Pass ]
    3850 webkit.org/b/96833 svg/carto.net/combobox.svg [ ImageOnlyFailure Pass ]
     3821#webkit.org/b/96833 svg/carto.net/selectionlist.svg [ ImageOnlyFailure Pass ]
     3822#webkit.org/b/96833 svg/carto.net/combobox.svg [ ImageOnlyFailure Pass ]
    38513823
    38523824webkit.org/b/96549 [ Android ] platform/chromium/virtual/gpu/fast/hidpi/focus-rings.html [ ImageOnlyFailure ]
     
    41344106webkit.org/b/102542 [ Linux Mac Win ] compositing/checkerboard.html [ ImageOnlyFailure ]
    41354107
    4136 webkit.org/b/102724 [ Linux ] svg/carto.net/colourpicker.svg [ ImageOnlyFailure Pass ]
     4108#webkit.org/b/102724 [ Linux ] svg/carto.net/colourpicker.svg [ ImageOnlyFailure Pass ]
    41374109
    41384110webkit.org/b/103927 http/tests/w3c/webperf/submission/resource-timing/html/test_resource_frame_initiator_type.html [ Failure ]
     
    43334305webkit.org/b/107579 [ Debug ] media/track/track-css-property-whitelist.html [ Crash ]
    43344306
     4307# Needs rebaselines afyer 107771
     4308webkit.org/b/107771 css3/zoom-coords.xhtml [ Failure ]
     4309webkit.org/b/107771 platform/chromium-linux/svg/text/text-with-geometric-precision.svg [ Failure ]
     4310webkit.org/b/107771 svg/W3C-I18N/g-dirLTR-ubNone.svg [ Failure ]
     4311webkit.org/b/107771 svg/W3C-I18N/g-dirLTR-ubOverride.svg [ Failure ]
     4312webkit.org/b/107771 svg/W3C-I18N/g-dirRTL-ubNone.svg [ Failure ]
     4313webkit.org/b/107771 svg/W3C-I18N/g-dirRTL-ubOverride.svg [ Failure ]
     4314webkit.org/b/107771 svg/W3C-I18N/text-anchor-dirLTR-anchorEnd.svg [ Failure ]
     4315webkit.org/b/107771 svg/W3C-I18N/text-anchor-dirLTR-anchorMiddle.svg [ Failure ]
     4316webkit.org/b/107771 svg/W3C-I18N/text-anchor-dirLTR-anchorStart.svg [ Failure ]
     4317webkit.org/b/107771 svg/W3C-I18N/text-anchor-dirNone-anchorEnd.svg [ Failure ]
     4318webkit.org/b/107771 svg/W3C-I18N/text-anchor-dirNone-anchorMiddle.svg [ Failure ]
     4319webkit.org/b/107771 svg/W3C-I18N/text-anchor-dirNone-anchorStart.svg [ Failure ]
     4320webkit.org/b/107771 svg/W3C-I18N/text-anchor-dirRTL-anchorEnd.svg [ Failure ]
     4321webkit.org/b/107771 svg/W3C-I18N/text-anchor-dirRTL-anchorMiddle.svg [ Failure ]
     4322webkit.org/b/107771 svg/W3C-I18N/text-anchor-dirRTL-anchorStart.svg [ Failure ]
     4323webkit.org/b/107771 svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorEnd.svg [ Failure ]
     4324webkit.org/b/107771 svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorMiddle.svg [ Failure ]
     4325webkit.org/b/107771 svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorStart.svg [ Failure ]
     4326webkit.org/b/107771 svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorEnd.svg [ Failure ]
     4327webkit.org/b/107771 svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorMiddle.svg [ Failure ]
     4328webkit.org/b/107771 svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorStart.svg [ Failure ]
     4329webkit.org/b/107771 svg/W3C-I18N/text-anchor-no-markup.svg [ Failure ]
     4330webkit.org/b/107771 svg/W3C-I18N/text-dirLTR-ubNone.svg [ Failure ]
     4331webkit.org/b/107771 svg/W3C-I18N/text-dirLTR-ubOverride.svg [ Failure ]
     4332webkit.org/b/107771 svg/W3C-I18N/text-dirRTL-ubNone.svg [ Failure ]
     4333webkit.org/b/107771 svg/W3C-I18N/text-dirRTL-ubOverride.svg [ Failure ]
     4334webkit.org/b/107771 svg/W3C-I18N/tspan-dirLTR-ubEmbed-in-rtl-context.svg [ Failure ]
     4335webkit.org/b/107771 svg/W3C-I18N/tspan-dirLTR-ubNone-in-rtl-context.svg [ Failure ]
     4336webkit.org/b/107771 svg/W3C-I18N/tspan-dirLTR-ubOverride-in-default-context.svg [ Failure ]
     4337webkit.org/b/107771 svg/W3C-I18N/tspan-dirLTR-ubOverride-in-ltr-context.svg [ Failure ]
     4338webkit.org/b/107771 svg/W3C-I18N/tspan-dirLTR-ubOverride-in-rtl-context.svg [ Failure ]
     4339webkit.org/b/107771 svg/W3C-I18N/tspan-dirNone-ubOverride-in-default-context.svg [ Failure ]
     4340webkit.org/b/107771 svg/W3C-I18N/tspan-dirNone-ubOverride-in-ltr-context.svg [ Failure ]
     4341webkit.org/b/107771 svg/W3C-I18N/tspan-dirNone-ubOverride-in-rtl-context.svg [ Failure ]
     4342webkit.org/b/107771 svg/W3C-I18N/tspan-dirRTL-ubEmbed-in-default-context.svg [ Failure ]
     4343webkit.org/b/107771 svg/W3C-I18N/tspan-dirRTL-ubEmbed-in-ltr-context.svg [ Failure ]
     4344webkit.org/b/107771 svg/W3C-I18N/tspan-dirRTL-ubNone-in-default-context.svg [ Failure ]
     4345webkit.org/b/107771 svg/W3C-I18N/tspan-dirRTL-ubNone-in-ltr-context.svg [ Failure ]
     4346webkit.org/b/107771 svg/W3C-I18N/tspan-dirRTL-ubOverride-in-default-context.svg [ Failure ]
     4347webkit.org/b/107771 svg/W3C-I18N/tspan-dirRTL-ubOverride-in-ltr-context.svg [ Failure ]
     4348webkit.org/b/107771 svg/W3C-I18N/tspan-dirRTL-ubOverride-in-rtl-context.svg [ Failure ]
     4349webkit.org/b/107771 svg/W3C-I18N/tspan-direction-ltr.svg [ Failure ]
     4350webkit.org/b/107771 svg/W3C-I18N/tspan-direction-rtl.svg [ Failure ]
     4351webkit.org/b/107771 svg/W3C-SVG-1.1-SE/coords-dom-01-f.svg [ Failure ]
     4352webkit.org/b/107771 svg/W3C-SVG-1.1-SE/coords-dom-02-f.svg [ Failure ]
     4353webkit.org/b/107771 svg/W3C-SVG-1.1-SE/coords-dom-03-f.svg [ Failure ]
     4354webkit.org/b/107771 svg/W3C-SVG-1.1-SE/coords-dom-04-f.svg [ Failure ]
     4355webkit.org/b/107771 svg/W3C-SVG-1.1-SE/coords-units-03-b.svg [ Failure ]
     4356webkit.org/b/107771 svg/W3C-SVG-1.1-SE/filters-felem-01-b.svg [ Failure ]
     4357webkit.org/b/107771 svg/W3C-SVG-1.1-SE/filters-image-05-f.svg [ Failure ]
     4358webkit.org/b/107771 svg/W3C-SVG-1.1-SE/interact-pointer-03-t.svg [ Failure ]
     4359webkit.org/b/107771 svg/W3C-SVG-1.1-SE/linking-uri-01-b.svg [ Failure ]
     4360webkit.org/b/107771 svg/W3C-SVG-1.1-SE/painting-control-04-f.svg [ Failure ]
     4361webkit.org/b/107771 svg/W3C-SVG-1.1-SE/painting-marker-07-f.svg [ Failure ]
     4362webkit.org/b/107771 svg/W3C-SVG-1.1-SE/paths-dom-02-f.svg [ Failure ]
     4363webkit.org/b/107771 svg/W3C-SVG-1.1-SE/pservers-grad-17-b.svg [ Failure ]
     4364webkit.org/b/107771 svg/W3C-SVG-1.1-SE/pservers-grad-20-b.svg [ Failure ]
     4365webkit.org/b/107771 svg/W3C-SVG-1.1-SE/pservers-pattern-04-f.svg [ Failure ]
     4366webkit.org/b/107771 svg/W3C-SVG-1.1-SE/styling-css-04-f.svg [ Failure ]
     4367webkit.org/b/107771 svg/W3C-SVG-1.1-SE/styling-pres-02-f.svg [ Failure ]
     4368webkit.org/b/107771 svg/W3C-SVG-1.1-SE/text-intro-02-b.svg [ Failure ]
     4369webkit.org/b/107771 svg/W3C-SVG-1.1-SE/text-intro-05-t.svg [ Failure ]
     4370webkit.org/b/107771 svg/W3C-SVG-1.1-SE/text-intro-09-b.svg [ Failure ]
     4371webkit.org/b/107771 svg/W3C-SVG-1.1-SE/text-tref-03-b.svg [ Failure ]
     4372webkit.org/b/107771 svg/W3C-SVG-1.1-SE/text-tspan-02-b.svg [ Failure ]
     4373webkit.org/b/107771 svg/W3C-SVG-1.1-SE/types-dom-01-b.svg [ Failure ]
     4374webkit.org/b/107771 svg/W3C-SVG-1.1-SE/types-dom-02-f.svg [ Failure ]
     4375webkit.org/b/107771 svg/W3C-SVG-1.1-SE/types-dom-03-b.svg [ Failure ]
     4376webkit.org/b/107771 svg/W3C-SVG-1.1-SE/types-dom-04-b.svg [ Failure ]
     4377webkit.org/b/107771 svg/W3C-SVG-1.1-SE/types-dom-06-f.svg [ Failure ]
     4378webkit.org/b/107771 svg/W3C-SVG-1.1-SE/types-dom-07-f.svg [ Failure ]
     4379webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-04-t.svg [ Failure ]
     4380webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-05-t.svg [ Failure ]
     4381webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-06-t.svg [ Failure ]
     4382webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-07-t.svg [ Failure ]
     4383webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-08-t.svg [ Failure ]
     4384webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-11-t.svg [ Failure ]
     4385webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-22-b.svg [ Failure ]
     4386webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-24-t.svg [ Failure ]
     4387webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-27-t.svg [ Failure ]
     4388webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-36-t.svg [ Failure ]
     4389webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-37-t.svg [ Failure ]
     4390webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-39-t.svg [ Failure ]
     4391webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-40-t.svg [ Failure ]
     4392webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-41-t.svg [ Failure ]
     4393webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-46-t.svg [ Failure ]
     4394webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-60-t.svg [ Failure ]
     4395webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-61-t.svg [ Failure ]
     4396webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-62-t.svg [ Failure ]
     4397webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-63-t.svg [ Failure ]
     4398webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-64-t.svg [ Failure ]
     4399webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-65-t.svg [ Failure ]
     4400webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-66-t.svg [ Failure ]
     4401webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-67-t.svg [ Failure ]
     4402webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-68-t.svg [ Failure ]
     4403webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-69-t.svg [ Failure ]
     4404webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-70-t.svg [ Failure ]
     4405webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-77-t.svg [ Failure ]
     4406webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-78-t.svg [ Failure ]
     4407webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-80-t.svg [ Failure ]
     4408webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-81-t.svg [ Failure ]
     4409webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-82-t.svg [ Failure ]
     4410webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-83-t.svg [ Failure ]
     4411webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-84-t.svg [ Failure ]
     4412webkit.org/b/107771 svg/W3C-SVG-1.1/coords-trans-02-t.svg [ Failure ]
     4413webkit.org/b/107771 svg/W3C-SVG-1.1/coords-trans-03-t.svg [ Failure ]
     4414webkit.org/b/107771 svg/W3C-SVG-1.1/coords-trans-04-t.svg [ Failure ]
     4415webkit.org/b/107771 svg/W3C-SVG-1.1/coords-trans-05-t.svg [ Failure ]
     4416webkit.org/b/107771 svg/W3C-SVG-1.1/coords-trans-06-t.svg [ Failure ]
     4417webkit.org/b/107771 svg/W3C-SVG-1.1/coords-viewattr-03-b.svg [ Failure ]
     4418webkit.org/b/107771 svg/W3C-SVG-1.1/extend-namespace-01-f.svg [ Failure ]
     4419webkit.org/b/107771 svg/W3C-SVG-1.1/filters-composite-02-b.svg [ Failure ]
     4420webkit.org/b/107771 svg/W3C-SVG-1.1/filters-comptran-01-b.svg [ Failure ]
     4421webkit.org/b/107771 svg/W3C-SVG-1.1/filters-displace-01-f.svg [ Failure ]
     4422webkit.org/b/107771 svg/W3C-SVG-1.1/filters-example-01-b.svg [ Failure ]
     4423webkit.org/b/107771 svg/W3C-SVG-1.1/filters-felem-01-b.svg [ Failure ]
     4424webkit.org/b/107771 svg/W3C-SVG-1.1/filters-image-01-b.svg [ Failure ]
     4425webkit.org/b/107771 svg/W3C-SVG-1.1/filters-light-01-f.svg [ Failure ]
     4426webkit.org/b/107771 svg/W3C-SVG-1.1/filters-light-04-f.svg [ Failure ]
     4427webkit.org/b/107771 svg/W3C-SVG-1.1/filters-morph-01-f.svg [ Failure ]
     4428webkit.org/b/107771 svg/W3C-SVG-1.1/filters-specular-01-f.svg [ Failure ]
     4429webkit.org/b/107771 svg/W3C-SVG-1.1/filters-tile-01-b.svg [ Failure ]
     4430webkit.org/b/107771 svg/W3C-SVG-1.1/filters-turb-01-f.svg [ Failure ]
     4431webkit.org/b/107771 svg/W3C-SVG-1.1/filters-turb-02-f.svg [ Failure ]
     4432webkit.org/b/107771 svg/W3C-SVG-1.1/fonts-elem-01-t.svg [ Failure ]
     4433webkit.org/b/107771 svg/W3C-SVG-1.1/fonts-elem-02-t.svg [ Failure ]
     4434webkit.org/b/107771 svg/W3C-SVG-1.1/fonts-elem-03-b.svg [ Failure ]
     4435webkit.org/b/107771 svg/W3C-SVG-1.1/fonts-elem-04-b.svg [ Failure ]
     4436webkit.org/b/107771 svg/W3C-SVG-1.1/fonts-elem-07-b.svg [ Failure ]
     4437webkit.org/b/107771 svg/W3C-SVG-1.1/fonts-kern-01-t.svg [ Failure ]
     4438webkit.org/b/107771 svg/W3C-SVG-1.1/interact-zoom-01-t.svg [ Failure ]
     4439webkit.org/b/107771 svg/W3C-SVG-1.1/masking-intro-01-f.svg [ Failure ]
     4440webkit.org/b/107771 svg/W3C-SVG-1.1/painting-marker-03-f.svg [ Failure ]
     4441webkit.org/b/107771 svg/W3C-SVG-1.1/paths-data-04-t.svg [ Failure ]
     4442webkit.org/b/107771 svg/W3C-SVG-1.1/paths-data-05-t.svg [ Failure ]
     4443webkit.org/b/107771 svg/W3C-SVG-1.1/paths-data-06-t.svg [ Failure ]
     4444webkit.org/b/107771 svg/W3C-SVG-1.1/paths-data-07-t.svg [ Failure ]
     4445webkit.org/b/107771 svg/W3C-SVG-1.1/paths-data-08-t.svg [ Failure ]
     4446webkit.org/b/107771 svg/W3C-SVG-1.1/pservers-grad-14-b.svg [ Failure ]
     4447webkit.org/b/107771 svg/W3C-SVG-1.1/pservers-grad-17-b.svg [ Failure ]
     4448webkit.org/b/107771 svg/W3C-SVG-1.1/render-elems-06-t.svg [ Failure ]
     4449webkit.org/b/107771 svg/W3C-SVG-1.1/render-elems-07-t.svg [ Failure ]
     4450webkit.org/b/107771 svg/W3C-SVG-1.1/render-elems-08-t.svg [ Failure ]
     4451webkit.org/b/107771 svg/W3C-SVG-1.1/render-groups-01-b.svg [ Failure ]
     4452webkit.org/b/107771 svg/W3C-SVG-1.1/render-groups-03-t.svg [ Failure ]
     4453webkit.org/b/107771 svg/W3C-SVG-1.1/struct-frag-05-t.svg [ Failure ]
     4454webkit.org/b/107771 svg/W3C-SVG-1.1/struct-frag-06-t.svg [ Failure ]
     4455webkit.org/b/107771 svg/W3C-SVG-1.1/struct-group-03-t.svg [ Failure ]
     4456webkit.org/b/107771 svg/W3C-SVG-1.1/struct-image-07-t.svg [ Failure ]
     4457webkit.org/b/107771 svg/W3C-SVG-1.1/struct-use-03-t.svg [ Failure ]
     4458webkit.org/b/107771 svg/W3C-SVG-1.1/struct-use-05-b.svg [ Failure ]
     4459webkit.org/b/107771 svg/W3C-SVG-1.1/styling-css-04-f.svg [ Failure ]
     4460webkit.org/b/107771 svg/W3C-SVG-1.1/styling-css-05-b.svg [ Failure ]
     4461webkit.org/b/107771 svg/W3C-SVG-1.1/text-align-02-b.svg [ Failure ]
     4462webkit.org/b/107771 svg/W3C-SVG-1.1/text-align-04-b.svg [ Failure ]
     4463webkit.org/b/107771 svg/W3C-SVG-1.1/text-align-05-b.svg [ Failure ]
     4464webkit.org/b/107771 svg/W3C-SVG-1.1/text-align-08-b.svg [ Failure ]
     4465webkit.org/b/107771 svg/W3C-SVG-1.1/text-intro-01-t.svg [ Failure ]
     4466webkit.org/b/107771 svg/W3C-SVG-1.1/text-intro-03-b.svg [ Failure ]
     4467webkit.org/b/107771 svg/W3C-SVG-1.1/text-intro-04-t.svg [ Failure ]
     4468webkit.org/b/107771 svg/W3C-SVG-1.1/text-path-01-b.svg [ Failure ]
     4469webkit.org/b/107771 svg/W3C-SVG-1.1/text-spacing-01-b.svg [ Failure ]
     4470webkit.org/b/107771 svg/W3C-SVG-1.1/text-text-01-b.svg [ Failure ]
     4471webkit.org/b/107771 svg/W3C-SVG-1.1/text-text-05-t.svg [ Failure ]
     4472webkit.org/b/107771 svg/W3C-SVG-1.1/text-text-06-t.svg [ Failure ]
     4473webkit.org/b/107771 svg/W3C-SVG-1.1/text-tselect-02-f.svg [ Failure ]
     4474webkit.org/b/107771 svg/W3C-SVG-1.1/text-tspan-01-b.svg [ Failure ]
     4475webkit.org/b/107771 svg/W3C-SVG-1.1/types-basicDOM-01-b.svg [ Failure ]
     4476webkit.org/b/107771 svg/W3C-SVG-1.2-Tiny/struct-use-recursion-01-t.svg [ Failure ]
     4477webkit.org/b/107771 svg/W3C-SVG-1.2-Tiny/struct-use-recursion-02-t.svg [ Failure ]
     4478webkit.org/b/107771 svg/W3C-SVG-1.2-Tiny/struct-use-recursion-03-t.svg [ Failure ]
     4479webkit.org/b/107771 svg/batik/filters/feTile.svg [ Failure ]
     4480webkit.org/b/107771 svg/batik/filters/filterRegions.svg [ Failure ]
     4481webkit.org/b/107771 svg/batik/masking/maskRegions.svg [ Failure ]
     4482webkit.org/b/107771 svg/batik/paints/gradientLimit.svg [ Failure ]
     4483webkit.org/b/107771 svg/batik/paints/patternPreserveAspectRatioA.svg [ Failure ]
     4484webkit.org/b/107771 svg/batik/text/textAnchor.svg [ Failure ]
     4485webkit.org/b/107771 svg/batik/text/textAnchor2.svg [ Failure ]
     4486webkit.org/b/107771 svg/batik/text/textAnchor3.svg [ Failure ]
     4487webkit.org/b/107771 svg/batik/text/textLayout.svg [ Failure ]
     4488webkit.org/b/107771 svg/batik/text/textLength.svg [ Failure ]
     4489webkit.org/b/107771 svg/batik/text/textOnPath2.svg [ Failure ]
     4490webkit.org/b/107771 svg/batik/text/textOnPath3.svg [ Failure ]
     4491webkit.org/b/107771 svg/batik/text/textOnPathSpaces.svg [ Failure ]
     4492webkit.org/b/107771 svg/batik/text/textPCDATA.svg [ Failure ]
     4493webkit.org/b/107771 svg/batik/text/textProperties.svg [ Failure ]
     4494webkit.org/b/107771 svg/batik/text/textStyles.svg [ Failure ]
     4495webkit.org/b/107771 svg/batik/text/verticalText.svg [ Failure ]
     4496webkit.org/b/107771 svg/carto.net/button.svg [ Failure ]
     4497webkit.org/b/107771 svg/carto.net/scrollbar.svg [ Failure ]
     4498webkit.org/b/107771 svg/carto.net/selectionlist.svg [ Failure ]
     4499webkit.org/b/107771 svg/carto.net/slider.svg [ Failure ]
     4500webkit.org/b/107771 svg/carto.net/textbox.svg [ Failure ]
     4501webkit.org/b/107771 svg/carto.net/window.svg [ Failure ]
     4502webkit.org/b/107771 svg/clip-path/deep-nested-clip-in-mask-different-unitTypes.svg [ Failure ]
     4503webkit.org/b/107771 svg/clip-path/deep-nested-clip-in-mask-panning.svg [ Failure ]
     4504webkit.org/b/107771 svg/clip-path/deep-nested-clip-in-mask.svg [ Failure ]
     4505webkit.org/b/107771 svg/css/text-shadow-multiple.xhtml [ Failure ]
     4506webkit.org/b/107771 svg/custom/clip-mask-negative-scale.svg [ Failure ]
     4507webkit.org/b/107771 svg/custom/dominant-baseline-hanging.svg [ Failure ]
     4508webkit.org/b/107771 svg/custom/dominant-baseline-modes.svg [ Failure ]
     4509webkit.org/b/107771 svg/custom/font-face-cascade-order.svg [ Failure ]
     4510webkit.org/b/107771 svg/custom/font-face-simple.svg [ Failure ]
     4511webkit.org/b/107771 svg/custom/getscreenctm-in-scrollable-div-area-nested.xhtml [ Failure ]
     4512webkit.org/b/107771 svg/custom/getscreenctm-in-scrollable-div-area.xhtml [ Failure ]
     4513webkit.org/b/107771 svg/custom/getscreenctm-in-scrollable-svg-area.xhtml [ Failure ]
     4514webkit.org/b/107771 svg/custom/image-small-width-height.svg [ Failure ]
     4515webkit.org/b/107771 svg/custom/invalid-css.svg [ Failure ]
     4516webkit.org/b/107771 svg/custom/js-late-clipPath-and-object-creation.svg [ Failure ]
     4517webkit.org/b/107771 svg/custom/js-late-clipPath-creation.svg [ Failure ]
     4518webkit.org/b/107771 svg/custom/linking-uri-01-b.svg [ Failure ]
     4519webkit.org/b/107771 svg/custom/marker-default-width-height.svg [ Failure ]
     4520webkit.org/b/107771 svg/custom/mouse-move-on-svg-root-standalone.svg [ Failure ]
     4521webkit.org/b/107771 svg/custom/mouse-move-on-svg-root.xhtml [ Failure ]
     4522webkit.org/b/107771 svg/custom/path-textPath-simulation.svg [ Failure ]
     4523webkit.org/b/107771 svg/custom/pointer-events-text-css-transform.svg [ Failure ]
     4524webkit.org/b/107771 svg/custom/scrolling-embedded-svg-file-image-repaint-problem.html [ Failure ]
     4525webkit.org/b/107771 svg/custom/shapes-supporting-markers.svg [ Failure ]
     4526webkit.org/b/107771 svg/custom/stroked-pattern.svg [ Failure ]
     4527webkit.org/b/107771 svg/custom/text-letter-spacing.svg [ Failure ]
     4528webkit.org/b/107771 svg/custom/text-tref-03-b-change-href-dom.svg [ Failure ]
     4529webkit.org/b/107771 svg/custom/text-tref-03-b-change-href.svg [ Failure ]
     4530webkit.org/b/107771 svg/custom/text-tref-03-b-referenced-element-removal.svg [ Failure ]
     4531webkit.org/b/107771 svg/custom/text-tref-03-b-tref-removal.svg [ Failure ]
     4532webkit.org/b/107771 svg/custom/text-x-dx-lists.svg [ Failure ]
     4533webkit.org/b/107771 svg/custom/text-x-override-in-tspan-child.svg [ Failure ]
     4534webkit.org/b/107771 svg/custom/tref-own-content-removal.svg [ Failure ]
     4535webkit.org/b/107771 svg/custom/tref-update.svg [ Failure ]
     4536webkit.org/b/107771 svg/custom/use-detach.svg [ Failure ]
     4537webkit.org/b/107771 svg/custom/use-modify-container-in-target.svg [ Failure ]
     4538webkit.org/b/107771 svg/custom/use-modify-target-container.svg [ Failure ]
     4539webkit.org/b/107771 svg/custom/use-modify-target-symbol.svg [ Failure ]
     4540webkit.org/b/107771 svg/custom/use-on-g-containing-symbol.svg [ Failure ]
     4541webkit.org/b/107771 svg/custom/use-on-g-containing-use.svg [ Failure ]
     4542webkit.org/b/107771 svg/custom/use-on-g.svg [ Failure ]
     4543webkit.org/b/107771 svg/custom/use-on-rect.svg [ Failure ]
     4544webkit.org/b/107771 svg/custom/use-on-symbol.svg [ Failure ]
     4545webkit.org/b/107771 svg/custom/use-on-text.svg [ Failure ]
     4546webkit.org/b/107771 svg/custom/use-on-use.svg [ Failure ]
     4547webkit.org/b/107771 svg/custom/use-recursion-1.svg [ Failure ]
     4548webkit.org/b/107771 svg/custom/use-recursion-2.svg [ Failure ]
     4549webkit.org/b/107771 svg/custom/use-recursion-3.svg [ Failure ]
     4550webkit.org/b/107771 svg/custom/use-recursion-4.svg [ Failure ]
     4551webkit.org/b/107771 svg/custom/use-referencing-nonexisting-symbol.svg [ Failure ]
     4552webkit.org/b/107771 svg/custom/use-transform.svg [ Failure ]
     4553webkit.org/b/107771 svg/hixie/perf/003.xml [ Failure ]
     4554webkit.org/b/107771 svg/hixie/perf/004.xml [ Failure ]
     4555webkit.org/b/107771 svg/hixie/perf/005.xml [ Failure ]
     4556webkit.org/b/107771 svg/hixie/perf/006.xml [ Failure ]
     4557webkit.org/b/107771 svg/hixie/text/001.xml [ Failure ]
     4558webkit.org/b/107771 svg/hixie/text/003.html [ Failure ]
     4559webkit.org/b/107771 svg/hixie/text/003a.xml [ Failure ]
     4560webkit.org/b/107771 svg/hixie/text/003b.xml [ Failure ]
     4561webkit.org/b/107771 svg/hixie/viewbox/preserveAspectRatio/001.xml [ Failure ]
     4562webkit.org/b/107771 svg/hixie/viewbox/preserveAspectRatio/002.xml [ Failure ]
     4563webkit.org/b/107771 svg/text/bidi-reorder-value-lists.svg [ Failure ]
     4564webkit.org/b/107771 svg/text/bidi-text-anchor-direction.svg [ Failure ]
     4565webkit.org/b/107771 svg/text/bidi-text-query.svg [ Failure ]
     4566webkit.org/b/107771 svg/text/bidi-tspans.svg [ Failure ]
     4567webkit.org/b/107771 svg/text/font-size-below-point-five-2.svg [ Failure ]
     4568webkit.org/b/107771 svg/text/scaled-font.svg [ Failure ]
     4569webkit.org/b/107771 svg/text/select-textLength-spacing-squeeze-1.svg [ Failure ]
     4570webkit.org/b/107771 svg/text/select-textLength-spacing-squeeze-2.svg [ Failure ]
     4571webkit.org/b/107771 svg/text/select-textLength-spacing-squeeze-3.svg [ Failure ]
     4572webkit.org/b/107771 svg/text/select-textLength-spacing-squeeze-4.svg [ Failure ]
     4573webkit.org/b/107771 svg/text/select-textLength-spacing-stretch-1.svg [ Failure ]
     4574webkit.org/b/107771 svg/text/select-textLength-spacing-stretch-2.svg [ Failure ]
     4575webkit.org/b/107771 svg/text/select-textLength-spacing-stretch-3.svg [ Failure ]
     4576webkit.org/b/107771 svg/text/select-textLength-spacing-stretch-4.svg [ Failure ]
     4577webkit.org/b/107771 svg/text/select-textLength-spacingAndGlyphs-squeeze-1.svg [ Failure ]
     4578webkit.org/b/107771 svg/text/select-textLength-spacingAndGlyphs-squeeze-2.svg [ Failure ]
     4579webkit.org/b/107771 svg/text/select-textLength-spacingAndGlyphs-squeeze-3.svg [ Failure ]
     4580webkit.org/b/107771 svg/text/select-textLength-spacingAndGlyphs-squeeze-4.svg [ Failure ]
     4581webkit.org/b/107771 svg/text/select-textLength-spacingAndGlyphs-stretch-1.svg [ Failure ]
     4582webkit.org/b/107771 svg/text/select-textLength-spacingAndGlyphs-stretch-2.svg [ Failure ]
     4583webkit.org/b/107771 svg/text/select-textLength-spacingAndGlyphs-stretch-3.svg [ Failure ]
     4584webkit.org/b/107771 svg/text/select-textLength-spacingAndGlyphs-stretch-4.svg [ Failure ]
     4585webkit.org/b/107771 svg/text/select-x-list-1.svg [ Failure ]
     4586webkit.org/b/107771 svg/text/select-x-list-2.svg [ Failure ]
     4587webkit.org/b/107771 svg/text/select-x-list-3.svg [ Failure ]
     4588webkit.org/b/107771 svg/text/select-x-list-4.svg [ Failure ]
     4589webkit.org/b/107771 svg/text/select-x-list-with-tspans-1.svg [ Failure ]
     4590webkit.org/b/107771 svg/text/select-x-list-with-tspans-2.svg [ Failure ]
     4591webkit.org/b/107771 svg/text/select-x-list-with-tspans-3.svg [ Failure ]
     4592webkit.org/b/107771 svg/text/select-x-list-with-tspans-4.svg [ Failure ]
     4593webkit.org/b/107771 svg/text/selection-doubleclick.svg [ Failure ]
     4594webkit.org/b/107771 svg/text/selection-tripleclick.svg [ Failure ]
     4595webkit.org/b/107771 svg/text/small-fonts-2.svg [ Failure ]
     4596webkit.org/b/107771 svg/text/small-fonts-3.svg [ Failure ]
     4597webkit.org/b/107771 svg/text/small-fonts-in-html5.html [ Failure ]
     4598webkit.org/b/107771 svg/text/small-fonts.svg [ Failure ]
     4599webkit.org/b/107771 svg/text/text-align-01-b.svg [ Failure ]
     4600webkit.org/b/107771 svg/text/text-align-02-b.svg [ Failure ]
     4601webkit.org/b/107771 svg/text/text-align-03-b.svg [ Failure ]
     4602webkit.org/b/107771 svg/text/text-align-04-b.svg [ Failure ]
     4603webkit.org/b/107771 svg/text/text-align-05-b.svg [ Failure ]
     4604webkit.org/b/107771 svg/text/text-align-06-b.svg [ Failure ]
     4605webkit.org/b/107771 svg/text/text-altglyph-01-b.svg [ Failure ]
     4606webkit.org/b/107771 svg/text/text-deco-01-b.svg [ Failure ]
     4607webkit.org/b/107771 svg/text/text-fonts-01-t.svg [ Failure ]
     4608webkit.org/b/107771 svg/text/text-fonts-02-t.svg [ Failure ]
     4609webkit.org/b/107771 svg/text/text-hkern.svg [ Failure ]
     4610webkit.org/b/107771 svg/text/text-intro-05-t.svg [ Failure ]
     4611webkit.org/b/107771 svg/text/text-path-01-b.svg [ Failure ]
     4612webkit.org/b/107771 svg/text/text-path-middle-align.svg [ Failure ]
     4613webkit.org/b/107771 svg/text/text-spacing-01-b.svg [ Failure ]
     4614webkit.org/b/107771 svg/text/text-text-01-b.svg [ Failure ]
     4615webkit.org/b/107771 svg/text/text-text-03-b.svg [ Failure ]
     4616webkit.org/b/107771 svg/text/text-text-04-t.svg [ Failure ]
     4617webkit.org/b/107771 svg/text/text-text-05-t.svg [ Failure ]
     4618webkit.org/b/107771 svg/text/text-text-06-t.svg [ Failure ]
     4619webkit.org/b/107771 svg/text/text-text-07-t.svg [ Failure ]
     4620webkit.org/b/107771 svg/text/text-text-08-b.svg [ Failure ]
     4621webkit.org/b/107771 svg/text/text-tref-01-b.svg [ Failure ]
     4622webkit.org/b/107771 svg/text/text-tselect-01-b.svg [ Failure ]
     4623webkit.org/b/107771 svg/text/text-tselect-02-f.svg [ Failure ]
     4624webkit.org/b/107771 svg/text/text-tspan-01-b.svg [ Failure ]
     4625webkit.org/b/107771 svg/text/text-ws-01-t.svg [ Failure ]
     4626webkit.org/b/107771 svg/text/text-ws-02-t.svg [ Failure ]
     4627webkit.org/b/107771 svg/wicd/rightsizing-grid.xhtml [ Failure ]
     4628webkit.org/b/107771 svg/wicd/sizing-flakiness.html [ Failure ]
     4629webkit.org/b/107771 svg/wicd/test-rightsizing-a.xhtml [ Failure ]
     4630webkit.org/b/107771 svg/wicd/test-rightsizing-b.xhtml [ Failure ]
     4631webkit.org/b/107771 svg/zoom/page/zoom-foreignObject.svg [ Failure ]
     4632webkit.org/b/107771 svg/zoom/page/zoom-svg-through-object-with-absolute-size-2.xhtml [ Failure ]
     4633webkit.org/b/107771 svg/zoom/page/zoom-svg-through-object-with-absolute-size.xhtml [ Failure ]
     4634webkit.org/b/107771 svg/zoom/page/zoom-svg-through-object-with-percentage-size.xhtml [ Failure ]
     4635webkit.org/b/107771 svg/batik/text/textEffect.svg [ Failure ]
     4636webkit.org/b/107771 svg/batik/text/textEffect3.svg [ Failure ]
     4637webkit.org/b/107771 svg/batik/text/textFeatures.svg [ Failure ]
     4638webkit.org/b/107771 svg/carto.net/tabgroup.svg [ Failure ]
     4639webkit.org/b/107771 svg/custom/js-late-gradient-and-object-creation.svg [ Failure ]
     4640webkit.org/b/107771 svg/custom/js-late-gradient-creation.svg [ Failure ]
     4641webkit.org/b/107771 svg/custom/js-late-pattern-and-object-creation.svg [ Failure ]
     4642webkit.org/b/107771 svg/custom/js-late-pattern-creation.svg [ Failure ]
     4643webkit.org/b/107771 svg/text/append-text-node-to-tspan.html [ Failure ]
     4644webkit.org/b/107771 svg/text/modify-text-node-in-tspan.html [ Failure ]
     4645webkit.org/b/107771 svg/text/remove-text-node-from-tspan.html [ Failure ]
     4646webkit.org/b/107771 svg/text/remove-tspan-from-text.html [ Failure ]
     4647webkit.org/b/107771 svg/transforms/text-with-mask-with-svg-transform.svg [ Failure ]
     4648webkit.org/b/107771 svg/transforms/text-with-pattern-inside-transformed-html.xhtml [ Failure ]
     4649webkit.org/b/107771 svg/transforms/text-with-pattern-with-svg-transform.svg [ Failure ]
     4650webkit.org/b/107771 svg/batik/text/smallFonts.svg [ Failure ]
     4651webkit.org/b/107771 svg/batik/text/textLayout2.svg [ Failure ]
     4652webkit.org/b/107771 svg/batik/text/textOnPath.svg [ Failure ]
     4653webkit.org/b/107771 svg/batik/text/verticalTextOnPath.svg [ Failure ]
     4654webkit.org/b/107771 svg/carto.net/colourpicker.svg [ Failure ]
     4655webkit.org/b/107771 svg/zoom/text/zoom-foreignObject.svg [ Failure ]
     4656webkit.org/b/107771 svg/text/scaling-font-with-geometric-precision.html [ Failure ]
     4657
    43354658# Rebaseline required after https://webkit.org/b/31397
    43364659webkit.org/b/107567 svg/batik/text/xmlSpace.svg [ Failure ]
  • trunk/LayoutTests/platform/mac/TestExpectations

    r140693 r140728  
    12891289webkit.org/b/107208 fast/regions/overflow-size-change-with-stacking-context.html [ Pass Failure ImageOnlyFailure ]
    12901290
     1291# Needs rebaselines afyer 107771
     1292webkit.org/b/107771 css3/zoom-coords.xhtml [ Failure ]
     1293webkit.org/b/107771 platform/chromium-linux/svg/text/text-with-geometric-precision.svg [ Failure ]
     1294webkit.org/b/107771 svg/batik/filters/feTile.svg [ Failure ]
     1295webkit.org/b/107771 svg/batik/filters/filterRegions.svg [ Failure ]
     1296webkit.org/b/107771 svg/batik/masking/maskRegions.svg [ Failure ]
     1297webkit.org/b/107771 svg/batik/paints/gradientLimit.svg [ Failure ]
     1298webkit.org/b/107771 svg/batik/paints/patternPreserveAspectRatioA.svg [ Failure ]
     1299webkit.org/b/107771 svg/batik/text/smallFonts.svg [ Failure ]
     1300webkit.org/b/107771 svg/batik/text/textAnchor2.svg [ Failure ]
     1301webkit.org/b/107771 svg/batik/text/textAnchor3.svg [ Failure ]
     1302webkit.org/b/107771 svg/batik/text/textAnchor.svg [ Failure ]
     1303webkit.org/b/107771 svg/batik/text/textEffect3.svg [ Failure ]
     1304webkit.org/b/107771 svg/batik/text/textEffect.svg [ Failure ]
     1305webkit.org/b/107771 svg/batik/text/textFeatures.svg [ Failure ]
     1306webkit.org/b/107771 svg/batik/text/textLayout2.svg [ Failure ]
     1307webkit.org/b/107771 svg/batik/text/textLayout.svg [ Failure ]
     1308webkit.org/b/107771 svg/batik/text/textLength.svg [ Failure ]
     1309webkit.org/b/107771 svg/batik/text/textOnPath2.svg [ Failure ]
     1310webkit.org/b/107771 svg/batik/text/textOnPath3.svg [ Failure ]
     1311webkit.org/b/107771 svg/batik/text/textOnPathSpaces.svg [ Failure ]
     1312webkit.org/b/107771 svg/batik/text/textOnPath.svg [ Failure ]
     1313webkit.org/b/107771 svg/batik/text/textPCDATA.svg [ Failure ]
     1314webkit.org/b/107771 svg/batik/text/textProperties.svg [ Failure ]
     1315webkit.org/b/107771 svg/batik/text/textStyles.svg [ Failure ]
     1316webkit.org/b/107771 svg/batik/text/verticalTextOnPath.svg [ Failure ]
     1317webkit.org/b/107771 svg/batik/text/verticalText.svg [ Failure ]
     1318webkit.org/b/107771 svg/carto.net/button.svg [ Failure ]
     1319webkit.org/b/107771 svg/carto.net/colourpicker.svg [ Failure ]
     1320webkit.org/b/107771 svg/carto.net/scrollbar.svg [ Failure ]
     1321webkit.org/b/107771 svg/carto.net/selectionlist.svg [ Failure ]
     1322webkit.org/b/107771 svg/carto.net/slider.svg [ Failure ]
     1323webkit.org/b/107771 svg/carto.net/tabgroup.svg [ Failure ]
     1324webkit.org/b/107771 svg/carto.net/textbox.svg [ Failure ]
     1325webkit.org/b/107771 svg/carto.net/window.svg [ Failure ]
     1326webkit.org/b/107771 svg/clip-path/deep-nested-clip-in-mask-different-unitTypes.svg [ Failure ]
     1327webkit.org/b/107771 svg/clip-path/deep-nested-clip-in-mask-panning.svg [ Failure ]
     1328webkit.org/b/107771 svg/clip-path/deep-nested-clip-in-mask.svg [ Failure ]
     1329webkit.org/b/107771 svg/css/text-shadow-multiple.xhtml [ Failure ]
     1330webkit.org/b/107771 svg/custom/clip-mask-negative-scale.svg [ Failure ]
     1331webkit.org/b/107771 svg/custom/dominant-baseline-hanging.svg [ Failure ]
     1332webkit.org/b/107771 svg/custom/dominant-baseline-modes.svg [ Failure ]
     1333webkit.org/b/107771 svg/custom/font-face-cascade-order.svg [ Failure ]
     1334webkit.org/b/107771 svg/custom/font-face-simple.svg [ Failure ]
     1335webkit.org/b/107771 svg/custom/getscreenctm-in-scrollable-div-area-nested.xhtml [ Failure ]
     1336webkit.org/b/107771 svg/custom/getscreenctm-in-scrollable-div-area.xhtml [ Failure ]
     1337webkit.org/b/107771 svg/custom/getscreenctm-in-scrollable-svg-area.xhtml [ Failure ]
     1338webkit.org/b/107771 svg/custom/image-small-width-height.svg [ Failure ]
     1339webkit.org/b/107771 svg/custom/invalid-css.svg [ Failure ]
     1340webkit.org/b/107771 svg/custom/js-late-clipPath-and-object-creation.svg [ Failure ]
     1341webkit.org/b/107771 svg/custom/js-late-clipPath-creation.svg [ Failure ]
     1342webkit.org/b/107771 svg/custom/js-late-gradient-and-object-creation.svg [ Failure ]
     1343webkit.org/b/107771 svg/custom/js-late-gradient-creation.svg [ Failure ]
     1344webkit.org/b/107771 svg/custom/js-late-pattern-and-object-creation.svg [ Failure ]
     1345webkit.org/b/107771 svg/custom/js-late-pattern-creation.svg [ Failure ]
     1346webkit.org/b/107771 svg/custom/linking-uri-01-b.svg [ Failure ]
     1347webkit.org/b/107771 svg/custom/marker-default-width-height.svg [ Failure ]
     1348webkit.org/b/107771 svg/custom/mouse-move-on-svg-root-standalone.svg [ Failure ]
     1349webkit.org/b/107771 svg/custom/mouse-move-on-svg-root.xhtml [ Failure ]
     1350webkit.org/b/107771 svg/custom/path-textPath-simulation.svg [ Failure ]
     1351webkit.org/b/107771 svg/custom/pointer-events-text-css-transform.svg [ Failure ]
     1352webkit.org/b/107771 svg/custom/scrolling-embedded-svg-file-image-repaint-problem.html [ Failure ]
     1353webkit.org/b/107771 svg/custom/shapes-supporting-markers.svg [ Failure ]
     1354webkit.org/b/107771 svg/custom/stroked-pattern.svg [ Failure ]
     1355webkit.org/b/107771 svg/custom/text-letter-spacing.svg [ Failure ]
     1356webkit.org/b/107771 svg/custom/text-tref-03-b-change-href-dom.svg [ Failure ]
     1357webkit.org/b/107771 svg/custom/text-tref-03-b-change-href.svg [ Failure ]
     1358webkit.org/b/107771 svg/custom/text-tref-03-b-referenced-element-removal.svg [ Failure ]
     1359webkit.org/b/107771 svg/custom/text-tref-03-b-tref-removal.svg [ Failure ]
     1360webkit.org/b/107771 svg/custom/text-x-dx-lists.svg [ Failure ]
     1361webkit.org/b/107771 svg/custom/text-x-override-in-tspan-child.svg [ Failure ]
     1362webkit.org/b/107771 svg/custom/tref-own-content-removal.svg [ Failure ]
     1363webkit.org/b/107771 svg/custom/tref-update.svg [ Failure ]
     1364webkit.org/b/107771 svg/custom/use-detach.svg [ Failure ]
     1365webkit.org/b/107771 svg/custom/use-modify-container-in-target.svg [ Failure ]
     1366webkit.org/b/107771 svg/custom/use-modify-target-container.svg [ Failure ]
     1367webkit.org/b/107771 svg/custom/use-modify-target-symbol.svg [ Failure ]
     1368webkit.org/b/107771 svg/custom/use-on-g-containing-symbol.svg [ Failure ]
     1369webkit.org/b/107771 svg/custom/use-on-g-containing-use.svg [ Failure ]
     1370webkit.org/b/107771 svg/custom/use-on-g.svg [ Failure ]
     1371webkit.org/b/107771 svg/custom/use-on-rect.svg [ Failure ]
     1372webkit.org/b/107771 svg/custom/use-on-symbol.svg [ Failure ]
     1373webkit.org/b/107771 svg/custom/use-on-text.svg [ Failure ]
     1374webkit.org/b/107771 svg/custom/use-on-use.svg [ Failure ]
     1375webkit.org/b/107771 svg/custom/use-recursion-1.svg [ Failure ]
     1376webkit.org/b/107771 svg/custom/use-recursion-2.svg [ Failure ]
     1377webkit.org/b/107771 svg/custom/use-recursion-3.svg [ Failure ]
     1378webkit.org/b/107771 svg/custom/use-recursion-4.svg [ Failure ]
     1379webkit.org/b/107771 svg/custom/use-referencing-nonexisting-symbol.svg [ Failure ]
     1380webkit.org/b/107771 svg/custom/use-transform.svg [ Failure ]
     1381webkit.org/b/107771 svg/hixie/perf/003.xml [ Failure ]
     1382webkit.org/b/107771 svg/hixie/perf/004.xml [ Failure ]
     1383webkit.org/b/107771 svg/hixie/perf/005.xml [ Failure ]
     1384webkit.org/b/107771 svg/hixie/perf/006.xml [ Failure ]
     1385webkit.org/b/107771 svg/hixie/text/001.xml [ Failure ]
     1386webkit.org/b/107771 svg/hixie/text/003a.xml [ Failure ]
     1387webkit.org/b/107771 svg/hixie/text/003b.xml [ Failure ]
     1388webkit.org/b/107771 svg/hixie/text/003.html [ Failure ]
     1389webkit.org/b/107771 svg/hixie/viewbox/preserveAspectRatio/001.xml [ Failure ]
     1390webkit.org/b/107771 svg/hixie/viewbox/preserveAspectRatio/002.xml [ Failure ]
     1391webkit.org/b/107771 svg/text/append-text-node-to-tspan.html [ Failure ]
     1392webkit.org/b/107771 svg/text/bidi-reorder-value-lists.svg [ Failure ]
     1393webkit.org/b/107771 svg/text/bidi-text-anchor-direction.svg [ Failure ]
     1394webkit.org/b/107771 svg/text/bidi-text-query.svg [ Failure ]
     1395webkit.org/b/107771 svg/text/bidi-tspans.svg [ Failure ]
     1396webkit.org/b/107771 svg/text/font-size-below-point-five-2.svg [ Failure ]
     1397webkit.org/b/107771 svg/text/modify-text-node-in-tspan.html [ Failure ]
     1398webkit.org/b/107771 svg/text/remove-text-node-from-tspan.html [ Failure ]
     1399webkit.org/b/107771 svg/text/remove-tspan-from-text.html [ Failure ]
     1400webkit.org/b/107771 svg/text/scaled-font.svg [ Failure ]
     1401webkit.org/b/107771 svg/text/selection-doubleclick.svg [ Failure ]
     1402webkit.org/b/107771 svg/text/selection-tripleclick.svg [ Failure ]
     1403webkit.org/b/107771 svg/text/select-textLength-spacingAndGlyphs-squeeze-1.svg [ Failure ]
     1404webkit.org/b/107771 svg/text/select-textLength-spacingAndGlyphs-squeeze-2.svg [ Failure ]
     1405webkit.org/b/107771 svg/text/select-textLength-spacingAndGlyphs-squeeze-3.svg [ Failure ]
     1406webkit.org/b/107771 svg/text/select-textLength-spacingAndGlyphs-squeeze-4.svg [ Failure ]
     1407webkit.org/b/107771 svg/text/select-textLength-spacingAndGlyphs-stretch-1.svg [ Failure ]
     1408webkit.org/b/107771 svg/text/select-textLength-spacingAndGlyphs-stretch-2.svg [ Failure ]
     1409webkit.org/b/107771 svg/text/select-textLength-spacingAndGlyphs-stretch-3.svg [ Failure ]
     1410webkit.org/b/107771 svg/text/select-textLength-spacingAndGlyphs-stretch-4.svg [ Failure ]
     1411webkit.org/b/107771 svg/text/select-textLength-spacing-squeeze-1.svg [ Failure ]
     1412webkit.org/b/107771 svg/text/select-textLength-spacing-squeeze-2.svg [ Failure ]
     1413webkit.org/b/107771 svg/text/select-textLength-spacing-squeeze-3.svg [ Failure ]
     1414webkit.org/b/107771 svg/text/select-textLength-spacing-squeeze-4.svg [ Failure ]
     1415webkit.org/b/107771 svg/text/select-textLength-spacing-stretch-1.svg [ Failure ]
     1416webkit.org/b/107771 svg/text/select-textLength-spacing-stretch-2.svg [ Failure ]
     1417webkit.org/b/107771 svg/text/select-textLength-spacing-stretch-3.svg [ Failure ]
     1418webkit.org/b/107771 svg/text/select-textLength-spacing-stretch-4.svg [ Failure ]
     1419webkit.org/b/107771 svg/text/select-x-list-1.svg [ Failure ]
     1420webkit.org/b/107771 svg/text/select-x-list-2.svg [ Failure ]
     1421webkit.org/b/107771 svg/text/select-x-list-3.svg [ Failure ]
     1422webkit.org/b/107771 svg/text/select-x-list-4.svg [ Failure ]
     1423webkit.org/b/107771 svg/text/select-x-list-with-tspans-1.svg [ Failure ]
     1424webkit.org/b/107771 svg/text/select-x-list-with-tspans-2.svg [ Failure ]
     1425webkit.org/b/107771 svg/text/select-x-list-with-tspans-3.svg [ Failure ]
     1426webkit.org/b/107771 svg/text/select-x-list-with-tspans-4.svg [ Failure ]
     1427webkit.org/b/107771 svg/text/small-fonts-2.svg [ Failure ]
     1428webkit.org/b/107771 svg/text/small-fonts-3.svg [ Failure ]
     1429webkit.org/b/107771 svg/text/small-fonts-in-html5.html [ Failure ]
     1430webkit.org/b/107771 svg/text/small-fonts.svg [ Failure ]
     1431webkit.org/b/107771 svg/text/text-align-01-b.svg [ Failure ]
     1432webkit.org/b/107771 svg/text/text-align-02-b.svg [ Failure ]
     1433webkit.org/b/107771 svg/text/text-align-03-b.svg [ Failure ]
     1434webkit.org/b/107771 svg/text/text-align-04-b.svg [ Failure ]
     1435webkit.org/b/107771 svg/text/text-align-05-b.svg [ Failure ]
     1436webkit.org/b/107771 svg/text/text-align-06-b.svg [ Failure ]
     1437webkit.org/b/107771 svg/text/text-altglyph-01-b.svg [ Failure ]
     1438webkit.org/b/107771 svg/text/text-deco-01-b.svg [ Failure ]
     1439webkit.org/b/107771 svg/text/text-fonts-01-t.svg [ Failure ]
     1440webkit.org/b/107771 svg/text/text-fonts-02-t.svg [ Failure ]
     1441webkit.org/b/107771 svg/text/text-hkern.svg [ Failure ]
     1442webkit.org/b/107771 svg/text/text-intro-05-t.svg [ Failure ]
     1443webkit.org/b/107771 svg/text/text-path-01-b.svg [ Failure ]
     1444webkit.org/b/107771 svg/text/text-path-middle-align.svg [ Failure ]
     1445webkit.org/b/107771 svg/text/text-spacing-01-b.svg [ Failure ]
     1446webkit.org/b/107771 svg/text/text-text-01-b.svg [ Failure ]
     1447webkit.org/b/107771 svg/text/text-text-03-b.svg [ Failure ]
     1448webkit.org/b/107771 svg/text/text-text-04-t.svg [ Failure ]
     1449webkit.org/b/107771 svg/text/text-text-05-t.svg [ Failure ]
     1450webkit.org/b/107771 svg/text/text-text-06-t.svg [ Failure ]
     1451webkit.org/b/107771 svg/text/text-text-07-t.svg [ Failure ]
     1452webkit.org/b/107771 svg/text/text-text-08-b.svg [ Failure ]
     1453webkit.org/b/107771 svg/text/text-tref-01-b.svg [ Failure ]
     1454webkit.org/b/107771 svg/text/text-tselect-01-b.svg [ Failure ]
     1455webkit.org/b/107771 svg/text/text-tselect-02-f.svg [ Failure ]
     1456webkit.org/b/107771 svg/text/text-tspan-01-b.svg [ Failure ]
     1457webkit.org/b/107771 svg/text/text-ws-01-t.svg [ Failure ]
     1458webkit.org/b/107771 svg/text/text-ws-02-t.svg [ Failure ]
     1459webkit.org/b/107771 svg/transforms/text-with-mask-with-svg-transform.svg [ Failure ]
     1460webkit.org/b/107771 svg/transforms/text-with-pattern-inside-transformed-html.xhtml [ Failure ]
     1461webkit.org/b/107771 svg/transforms/text-with-pattern-with-svg-transform.svg [ Failure ]
     1462webkit.org/b/107771 svg/W3C-I18N/g-dirLTR-ubNone.svg [ Failure ]
     1463webkit.org/b/107771 svg/W3C-I18N/g-dirLTR-ubOverride.svg [ Failure ]
     1464webkit.org/b/107771 svg/W3C-I18N/g-dirRTL-ubNone.svg [ Failure ]
     1465webkit.org/b/107771 svg/W3C-I18N/g-dirRTL-ubOverride.svg [ Failure ]
     1466webkit.org/b/107771 svg/W3C-I18N/text-anchor-dirLTR-anchorEnd.svg [ Failure ]
     1467webkit.org/b/107771 svg/W3C-I18N/text-anchor-dirLTR-anchorMiddle.svg [ Failure ]
     1468webkit.org/b/107771 svg/W3C-I18N/text-anchor-dirLTR-anchorStart.svg [ Failure ]
     1469webkit.org/b/107771 svg/W3C-I18N/text-anchor-dirNone-anchorEnd.svg [ Failure ]
     1470webkit.org/b/107771 svg/W3C-I18N/text-anchor-dirNone-anchorMiddle.svg [ Failure ]
     1471webkit.org/b/107771 svg/W3C-I18N/text-anchor-dirNone-anchorStart.svg [ Failure ]
     1472webkit.org/b/107771 svg/W3C-I18N/text-anchor-dirRTL-anchorEnd.svg [ Failure ]
     1473webkit.org/b/107771 svg/W3C-I18N/text-anchor-dirRTL-anchorMiddle.svg [ Failure ]
     1474webkit.org/b/107771 svg/W3C-I18N/text-anchor-dirRTL-anchorStart.svg [ Failure ]
     1475webkit.org/b/107771 svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorEnd.svg [ Failure ]
     1476webkit.org/b/107771 svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorMiddle.svg [ Failure ]
     1477webkit.org/b/107771 svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorStart.svg [ Failure ]
     1478webkit.org/b/107771 svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorEnd.svg [ Failure ]
     1479webkit.org/b/107771 svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorMiddle.svg [ Failure ]
     1480webkit.org/b/107771 svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorStart.svg [ Failure ]
     1481webkit.org/b/107771 svg/W3C-I18N/text-anchor-no-markup.svg [ Failure ]
     1482webkit.org/b/107771 svg/W3C-I18N/text-dirLTR-ubNone.svg [ Failure ]
     1483webkit.org/b/107771 svg/W3C-I18N/text-dirLTR-ubOverride.svg [ Failure ]
     1484webkit.org/b/107771 svg/W3C-I18N/text-dirRTL-ubNone.svg [ Failure ]
     1485webkit.org/b/107771 svg/W3C-I18N/text-dirRTL-ubOverride.svg [ Failure ]
     1486webkit.org/b/107771 svg/W3C-I18N/tspan-direction-ltr.svg [ Failure ]
     1487webkit.org/b/107771 svg/W3C-I18N/tspan-direction-rtl.svg [ Failure ]
     1488webkit.org/b/107771 svg/W3C-I18N/tspan-dirLTR-ubEmbed-in-rtl-context.svg [ Failure ]
     1489webkit.org/b/107771 svg/W3C-I18N/tspan-dirLTR-ubNone-in-rtl-context.svg [ Failure ]
     1490webkit.org/b/107771 svg/W3C-I18N/tspan-dirLTR-ubOverride-in-default-context.svg [ Failure ]
     1491webkit.org/b/107771 svg/W3C-I18N/tspan-dirLTR-ubOverride-in-ltr-context.svg [ Failure ]
     1492webkit.org/b/107771 svg/W3C-I18N/tspan-dirLTR-ubOverride-in-rtl-context.svg [ Failure ]
     1493webkit.org/b/107771 svg/W3C-I18N/tspan-dirNone-ubOverride-in-default-context.svg [ Failure ]
     1494webkit.org/b/107771 svg/W3C-I18N/tspan-dirNone-ubOverride-in-ltr-context.svg [ Failure ]
     1495webkit.org/b/107771 svg/W3C-I18N/tspan-dirNone-ubOverride-in-rtl-context.svg [ Failure ]
     1496webkit.org/b/107771 svg/W3C-I18N/tspan-dirRTL-ubEmbed-in-default-context.svg [ Failure ]
     1497webkit.org/b/107771 svg/W3C-I18N/tspan-dirRTL-ubEmbed-in-ltr-context.svg [ Failure ]
     1498webkit.org/b/107771 svg/W3C-I18N/tspan-dirRTL-ubNone-in-default-context.svg [ Failure ]
     1499webkit.org/b/107771 svg/W3C-I18N/tspan-dirRTL-ubNone-in-ltr-context.svg [ Failure ]
     1500webkit.org/b/107771 svg/W3C-I18N/tspan-dirRTL-ubOverride-in-default-context.svg [ Failure ]
     1501webkit.org/b/107771 svg/W3C-I18N/tspan-dirRTL-ubOverride-in-ltr-context.svg [ Failure ]
     1502webkit.org/b/107771 svg/W3C-I18N/tspan-dirRTL-ubOverride-in-rtl-context.svg [ Failure ]
     1503webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-04-t.svg [ Failure ]
     1504webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-05-t.svg [ Failure ]
     1505webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-06-t.svg [ Failure ]
     1506webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-07-t.svg [ Failure ]
     1507webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-08-t.svg [ Failure ]
     1508webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-11-t.svg [ Failure ]
     1509webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-22-b.svg [ Failure ]
     1510webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-24-t.svg [ Failure ]
     1511webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-27-t.svg [ Failure ]
     1512webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-36-t.svg [ Failure ]
     1513webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-37-t.svg [ Failure ]
     1514webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-39-t.svg [ Failure ]
     1515webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-40-t.svg [ Failure ]
     1516webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-41-t.svg [ Failure ]
     1517webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-46-t.svg [ Failure ]
     1518webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-60-t.svg [ Failure ]
     1519webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-61-t.svg [ Failure ]
     1520webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-62-t.svg [ Failure ]
     1521webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-63-t.svg [ Failure ]
     1522webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-64-t.svg [ Failure ]
     1523webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-65-t.svg [ Failure ]
     1524webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-66-t.svg [ Failure ]
     1525webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-67-t.svg [ Failure ]
     1526webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-68-t.svg [ Failure ]
     1527webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-69-t.svg [ Failure ]
     1528webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-70-t.svg [ Failure ]
     1529webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-77-t.svg [ Failure ]
     1530webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-78-t.svg [ Failure ]
     1531webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-80-t.svg [ Failure ]
     1532webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-81-t.svg [ Failure ]
     1533webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-82-t.svg [ Failure ]
     1534webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-83-t.svg [ Failure ]
     1535webkit.org/b/107771 svg/W3C-SVG-1.1/animate-elem-84-t.svg [ Failure ]
     1536webkit.org/b/107771 svg/W3C-SVG-1.1/coords-trans-02-t.svg [ Failure ]
     1537webkit.org/b/107771 svg/W3C-SVG-1.1/coords-trans-03-t.svg [ Failure ]
     1538webkit.org/b/107771 svg/W3C-SVG-1.1/coords-trans-04-t.svg [ Failure ]
     1539webkit.org/b/107771 svg/W3C-SVG-1.1/coords-trans-05-t.svg [ Failure ]
     1540webkit.org/b/107771 svg/W3C-SVG-1.1/coords-trans-06-t.svg [ Failure ]
     1541webkit.org/b/107771 svg/W3C-SVG-1.1/coords-viewattr-03-b.svg [ Failure ]
     1542webkit.org/b/107771 svg/W3C-SVG-1.1/extend-namespace-01-f.svg [ Failure ]
     1543webkit.org/b/107771 svg/W3C-SVG-1.1/filters-composite-02-b.svg [ Failure ]
     1544webkit.org/b/107771 svg/W3C-SVG-1.1/filters-comptran-01-b.svg [ Failure ]
     1545webkit.org/b/107771 svg/W3C-SVG-1.1/filters-displace-01-f.svg [ Failure ]
     1546webkit.org/b/107771 svg/W3C-SVG-1.1/filters-example-01-b.svg [ Failure ]
     1547webkit.org/b/107771 svg/W3C-SVG-1.1/filters-felem-01-b.svg [ Failure ]
     1548webkit.org/b/107771 svg/W3C-SVG-1.1/filters-image-01-b.svg [ Failure ]
     1549webkit.org/b/107771 svg/W3C-SVG-1.1/filters-light-01-f.svg [ Failure ]
     1550webkit.org/b/107771 svg/W3C-SVG-1.1/filters-light-04-f.svg [ Failure ]
     1551webkit.org/b/107771 svg/W3C-SVG-1.1/filters-morph-01-f.svg [ Failure ]
     1552webkit.org/b/107771 svg/W3C-SVG-1.1/filters-specular-01-f.svg [ Failure ]
     1553webkit.org/b/107771 svg/W3C-SVG-1.1/filters-tile-01-b.svg [ Failure ]
     1554webkit.org/b/107771 svg/W3C-SVG-1.1/filters-turb-01-f.svg [ Failure ]
     1555webkit.org/b/107771 svg/W3C-SVG-1.1/filters-turb-02-f.svg [ Failure ]
     1556webkit.org/b/107771 svg/W3C-SVG-1.1/fonts-elem-01-t.svg [ Failure ]
     1557webkit.org/b/107771 svg/W3C-SVG-1.1/fonts-elem-02-t.svg [ Failure ]
     1558webkit.org/b/107771 svg/W3C-SVG-1.1/fonts-elem-03-b.svg [ Failure ]
     1559webkit.org/b/107771 svg/W3C-SVG-1.1/fonts-elem-04-b.svg [ Failure ]
     1560webkit.org/b/107771 svg/W3C-SVG-1.1/fonts-elem-07-b.svg [ Failure ]
     1561webkit.org/b/107771 svg/W3C-SVG-1.1/fonts-kern-01-t.svg [ Failure ]
     1562webkit.org/b/107771 svg/W3C-SVG-1.1/interact-zoom-01-t.svg [ Failure ]
     1563webkit.org/b/107771 svg/W3C-SVG-1.1/masking-intro-01-f.svg [ Failure ]
     1564webkit.org/b/107771 svg/W3C-SVG-1.1/painting-marker-03-f.svg [ Failure ]
     1565webkit.org/b/107771 svg/W3C-SVG-1.1/paths-data-04-t.svg [ Failure ]
     1566webkit.org/b/107771 svg/W3C-SVG-1.1/paths-data-05-t.svg [ Failure ]
     1567webkit.org/b/107771 svg/W3C-SVG-1.1/paths-data-06-t.svg [ Failure ]
     1568webkit.org/b/107771 svg/W3C-SVG-1.1/paths-data-07-t.svg [ Failure ]
     1569webkit.org/b/107771 svg/W3C-SVG-1.1/paths-data-08-t.svg [ Failure ]
     1570webkit.org/b/107771 svg/W3C-SVG-1.1/pservers-grad-14-b.svg [ Failure ]
     1571webkit.org/b/107771 svg/W3C-SVG-1.1/pservers-grad-17-b.svg [ Failure ]
     1572webkit.org/b/107771 svg/W3C-SVG-1.1/render-elems-06-t.svg [ Failure ]
     1573webkit.org/b/107771 svg/W3C-SVG-1.1/render-elems-07-t.svg [ Failure ]
     1574webkit.org/b/107771 svg/W3C-SVG-1.1/render-elems-08-t.svg [ Failure ]
     1575webkit.org/b/107771 svg/W3C-SVG-1.1/render-groups-01-b.svg [ Failure ]
     1576webkit.org/b/107771 svg/W3C-SVG-1.1/render-groups-03-t.svg [ Failure ]
     1577webkit.org/b/107771 svg/W3C-SVG-1.1-SE/coords-dom-01-f.svg [ Failure ]
     1578webkit.org/b/107771 svg/W3C-SVG-1.1-SE/coords-dom-02-f.svg [ Failure ]
     1579webkit.org/b/107771 svg/W3C-SVG-1.1-SE/coords-dom-03-f.svg [ Failure ]
     1580webkit.org/b/107771 svg/W3C-SVG-1.1-SE/coords-dom-04-f.svg [ Failure ]
     1581webkit.org/b/107771 svg/W3C-SVG-1.1-SE/coords-units-03-b.svg [ Failure ]
     1582webkit.org/b/107771 svg/W3C-SVG-1.1-SE/filters-felem-01-b.svg [ Failure ]
     1583webkit.org/b/107771 svg/W3C-SVG-1.1-SE/filters-image-05-f.svg [ Failure ]
     1584webkit.org/b/107771 svg/W3C-SVG-1.1-SE/interact-pointer-03-t.svg [ Failure ]
     1585webkit.org/b/107771 svg/W3C-SVG-1.1-SE/linking-uri-01-b.svg [ Failure ]
     1586webkit.org/b/107771 svg/W3C-SVG-1.1-SE/painting-control-04-f.svg [ Failure ]
     1587webkit.org/b/107771 svg/W3C-SVG-1.1-SE/painting-marker-07-f.svg [ Failure ]
     1588webkit.org/b/107771 svg/W3C-SVG-1.1-SE/paths-dom-02-f.svg [ Failure ]
     1589webkit.org/b/107771 svg/W3C-SVG-1.1-SE/pservers-grad-17-b.svg [ Failure ]
     1590webkit.org/b/107771 svg/W3C-SVG-1.1-SE/pservers-grad-20-b.svg [ Failure ]
     1591webkit.org/b/107771 svg/W3C-SVG-1.1-SE/pservers-pattern-04-f.svg [ Failure ]
     1592webkit.org/b/107771 svg/W3C-SVG-1.1-SE/styling-css-04-f.svg [ Failure ]
     1593webkit.org/b/107771 svg/W3C-SVG-1.1-SE/styling-pres-02-f.svg [ Failure ]
     1594webkit.org/b/107771 svg/W3C-SVG-1.1-SE/text-intro-02-b.svg [ Failure ]
     1595webkit.org/b/107771 svg/W3C-SVG-1.1-SE/text-intro-05-t.svg [ Failure ]
     1596webkit.org/b/107771 svg/W3C-SVG-1.1-SE/text-intro-09-b.svg [ Failure ]
     1597webkit.org/b/107771 svg/W3C-SVG-1.1-SE/text-tref-03-b.svg [ Failure ]
     1598webkit.org/b/107771 svg/W3C-SVG-1.1-SE/text-tspan-02-b.svg [ Failure ]
     1599webkit.org/b/107771 svg/W3C-SVG-1.1-SE/types-dom-01-b.svg [ Failure ]
     1600webkit.org/b/107771 svg/W3C-SVG-1.1-SE/types-dom-02-f.svg [ Failure ]
     1601webkit.org/b/107771 svg/W3C-SVG-1.1-SE/types-dom-03-b.svg [ Failure ]
     1602webkit.org/b/107771 svg/W3C-SVG-1.1-SE/types-dom-04-b.svg [ Failure ]
     1603webkit.org/b/107771 svg/W3C-SVG-1.1-SE/types-dom-06-f.svg [ Failure ]
     1604webkit.org/b/107771 svg/W3C-SVG-1.1-SE/types-dom-07-f.svg [ Failure ]
     1605webkit.org/b/107771 svg/W3C-SVG-1.1/struct-frag-05-t.svg [ Failure ]
     1606webkit.org/b/107771 svg/W3C-SVG-1.1/struct-frag-06-t.svg [ Failure ]
     1607webkit.org/b/107771 svg/W3C-SVG-1.1/struct-group-03-t.svg [ Failure ]
     1608webkit.org/b/107771 svg/W3C-SVG-1.1/struct-image-07-t.svg [ Failure ]
     1609webkit.org/b/107771 svg/W3C-SVG-1.1/struct-use-03-t.svg [ Failure ]
     1610webkit.org/b/107771 svg/W3C-SVG-1.1/struct-use-05-b.svg [ Failure ]
     1611webkit.org/b/107771 svg/W3C-SVG-1.1/styling-css-04-f.svg [ Failure ]
     1612webkit.org/b/107771 svg/W3C-SVG-1.1/styling-css-05-b.svg [ Failure ]
     1613webkit.org/b/107771 svg/W3C-SVG-1.1/text-align-02-b.svg [ Failure ]
     1614webkit.org/b/107771 svg/W3C-SVG-1.1/text-align-04-b.svg [ Failure ]
     1615webkit.org/b/107771 svg/W3C-SVG-1.1/text-align-05-b.svg [ Failure ]
     1616webkit.org/b/107771 svg/W3C-SVG-1.1/text-align-08-b.svg [ Failure ]
     1617webkit.org/b/107771 svg/W3C-SVG-1.1/text-intro-01-t.svg [ Failure ]
     1618webkit.org/b/107771 svg/W3C-SVG-1.1/text-intro-03-b.svg [ Failure ]
     1619webkit.org/b/107771 svg/W3C-SVG-1.1/text-intro-04-t.svg [ Failure ]
     1620webkit.org/b/107771 svg/W3C-SVG-1.1/text-path-01-b.svg [ Failure ]
     1621webkit.org/b/107771 svg/W3C-SVG-1.1/text-spacing-01-b.svg [ Failure ]
     1622webkit.org/b/107771 svg/W3C-SVG-1.1/text-text-01-b.svg [ Failure ]
     1623webkit.org/b/107771 svg/W3C-SVG-1.1/text-text-05-t.svg [ Failure ]
     1624webkit.org/b/107771 svg/W3C-SVG-1.1/text-text-06-t.svg [ Failure ]
     1625webkit.org/b/107771 svg/W3C-SVG-1.1/text-tselect-02-f.svg [ Failure ]
     1626webkit.org/b/107771 svg/W3C-SVG-1.1/text-tspan-01-b.svg [ Failure ]
     1627webkit.org/b/107771 svg/W3C-SVG-1.1/types-basicDOM-01-b.svg [ Failure ]
     1628webkit.org/b/107771 svg/W3C-SVG-1.2-Tiny/struct-use-recursion-01-t.svg [ Failure ]
     1629webkit.org/b/107771 svg/W3C-SVG-1.2-Tiny/struct-use-recursion-02-t.svg [ Failure ]
     1630webkit.org/b/107771 svg/W3C-SVG-1.2-Tiny/struct-use-recursion-03-t.svg [ Failure ]
     1631webkit.org/b/107771 svg/wicd/rightsizing-grid.xhtml [ Failure ]
     1632webkit.org/b/107771 svg/wicd/sizing-flakiness.html [ Failure ]
     1633webkit.org/b/107771 svg/wicd/test-rightsizing-a.xhtml [ Failure ]
     1634webkit.org/b/107771 svg/wicd/test-rightsizing-b.xhtml [ Failure ]
     1635webkit.org/b/107771 svg/zoom/page/zoom-foreignObject.svg [ Failure ]
     1636webkit.org/b/107771 svg/zoom/page/zoom-svg-through-object-with-absolute-size-2.xhtml [ Failure ]
     1637webkit.org/b/107771 svg/zoom/page/zoom-svg-through-object-with-absolute-size.xhtml [ Failure ]
     1638webkit.org/b/107771 svg/zoom/page/zoom-svg-through-object-with-percentage-size.xhtml [ Failure ]
     1639webkit.org/b/107771 svg/zoom/text/zoom-foreignObject.svg [ Failure ]
     1640
    12911641# Rebaseline required after https://webkit.org/b/31397
    12921642webkit.org/b/107567 svg/batik/text/xmlSpace.svg [ Failure ]
  • trunk/LayoutTests/svg/W3C-SVG-1.1-SE/color-prop-05-t-expected.txt

    r107370 r140728  
    88        RenderSVGRect {rect} at (120,60) size 150x150 [fill={[type=SOLID] [color=#00FF00]}] [x=120.00] [y=60.00] [width=150.00] [height=150.00]
    99    RenderSVGContainer {g} at (10,314) size 227x33
    10       RenderSVGText {text} at (10,314) size 227x32 contains 1 chunk(s)
     10      RenderSVGText {text} at (10,314) size 227x33 contains 1 chunk(s)
    1111        RenderSVGInlineText {#text} at (0,0) size 227x32
    1212          chunk 1 text run 1 at (10.00,340.00) startOffset 0 endOffset 2 width 40.90: "$R"
  • trunk/LayoutTests/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.txt

    r107370 r140728  
    5151          RenderSVGRect {rect} at (359,199) size 52x52 [stroke={[type=SOLID] [color=#0000FF]}] [x=300.00] [y=100.00] [width=50.00] [height=50.00]
    5252    RenderSVGContainer {g} at (10,314) size 223x33
    53       RenderSVGText {text} at (10,314) size 223x32 contains 1 chunk(s)
     53      RenderSVGText {text} at (10,314) size 223x33 contains 1 chunk(s)
    5454        RenderSVGInlineText {#text} at (0,0) size 223x32
    5555          chunk 1 text run 1 at (10.00,340.00) startOffset 0 endOffset 2 width 40.90: "$R"
     
    6161    RenderSVGContainer {g} at (0,0) size 480x23
    6262      RenderSVGRect {rect} at (0,0) size 480x22 [stroke={[type=SOLID] [color=#000000]}] [fill={[type=SOLID] [color=#FF0000]}] [x=1.00] [y=1.00] [width=478.00] [height=20.00]
    63       RenderSVGText {text} at (206,2) size 67x20 contains 1 chunk(s)
     63      RenderSVGText {text} at (206,2) size 68x20 contains 1 chunk(s)
    6464        RenderSVGInlineText {#text} at (0,0) size 67x20
    6565          chunk 1 (middle anchor) text run 1 at (206.67,18.00) startOffset 0 endOffset 5 width 66.66: "DRAFT"
  • trunk/LayoutTests/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.txt

    r107370 r140728  
    3030        RenderSVGRect {rect} at (339,159) size 102x102 [stroke={[type=SOLID] [color=#000000]}] [fill={[type=SOLID] [color=#00FF00]}] [x=300.00] [y=100.00] [width=100.00] [height=100.00]
    3131    RenderSVGContainer {g} at (10,314) size 223x33
    32       RenderSVGText {text} at (10,314) size 223x32 contains 1 chunk(s)
     32      RenderSVGText {text} at (10,314) size 223x33 contains 1 chunk(s)
    3333        RenderSVGInlineText {#text} at (0,0) size 223x32
    3434          chunk 1 text run 1 at (10.00,340.00) startOffset 0 endOffset 2 width 40.90: "$R"
     
    4040    RenderSVGContainer {g} at (0,0) size 480x23
    4141      RenderSVGRect {rect} at (0,0) size 480x22 [stroke={[type=SOLID] [color=#000000]}] [fill={[type=SOLID] [color=#FF0000]}] [x=1.00] [y=1.00] [width=478.00] [height=20.00]
    42       RenderSVGText {text} at (206,2) size 67x20 contains 1 chunk(s)
     42      RenderSVGText {text} at (206,2) size 68x20 contains 1 chunk(s)
    4343        RenderSVGInlineText {#text} at (0,0) size 67x20
    4444          chunk 1 (middle anchor) text run 1 at (206.67,18.00) startOffset 0 endOffset 5 width 66.66: "DRAFT"
  • trunk/LayoutTests/svg/W3C-SVG-1.1-SE/struct-use-14-f-expected.txt

    r109097 r140728  
    1212        RenderSVGRect {rect} at (0,0) size 100x100 [fill={[type=SOLID] [color=#008000]}] [x=0.00] [y=0.00] [width=100.00] [height=100.00]
    1313    RenderSVGContainer {g} at (10,314) size 227x33
    14       RenderSVGText {text} at (10,314) size 227x32 contains 1 chunk(s)
     14      RenderSVGText {text} at (10,314) size 227x33 contains 1 chunk(s)
    1515        RenderSVGInlineText {#text} at (0,0) size 227x32
    1616          chunk 1 text run 1 at (10.00,340.00) startOffset 0 endOffset 2 width 40.90: "$R"
     
    2121    RenderSVGContainer {g} at (0,0) size 480x23
    2222      RenderSVGRect {rect} at (0,0) size 480x22 [stroke={[type=SOLID] [color=#000000]}] [fill={[type=SOLID] [color=#FF0000]}] [x=1.00] [y=1.00] [width=478.00] [height=20.00]
    23       RenderSVGText {text} at (206,2) size 67x20 contains 1 chunk(s)
     23      RenderSVGText {text} at (206,2) size 68x20 contains 1 chunk(s)
    2424        RenderSVGInlineText {#text} at (0,0) size 67x20
    2525          chunk 1 (middle anchor) text run 1 at (206.67,18.00) startOffset 0 endOffset 5 width 66.66: "DRAFT"
  • trunk/LayoutTests/svg/W3C-SVG-1.1-SE/svgdom-over-01-f-expected.txt

    r130599 r140728  
    1212        RenderSVGResourceRadialGradient {radialGradient} [id="g"] [gradientUnits=objectBoundingBox] [center=(0.50,0.50)] [focal=(0.50,0.50)] [radius=0.50] [focalRadius=0.00]
    1313        RenderSVGText {text}
    14         RenderSVGText {text} at (0,-15) size 73x18 contains 1 chunk(s)
     14        RenderSVGText {text} at (0,-15) size 73x19 contains 1 chunk(s)
    1515          RenderSVGInlineText {#text} at (0,0) size 73x18
    1616            chunk 1 text run 1 at (0.00,0.00) startOffset 0 endOffset 4 width 44.01: "some"
     
    2424      RenderSVGContainer {g} at (10,49) size 140x10 [transform={m=((1.00,0.00)(0.00,1.00)) t=(10.00,50.00)}]
    2525        RenderSVGRect {rect} at (10,51) size 5x5 [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=1.00] [width=5.00] [height=5.00]
    26         RenderSVGText {text} at (10,-1) size 130x9 contains 1 chunk(s)
     26        RenderSVGText {text} at (10,-1) size 130x10 contains 1 chunk(s)
    2727          RenderSVGInlineText {#text} at (0,0) size 130x9
    2828            chunk 1 text run 1 at (10.00,7.00) startOffset 0 endOffset 1 width 3.00: "r"
     
    3333      RenderSVGContainer {g} at (10,59) size 287x10 [transform={m=((1.00,0.00)(0.00,1.00)) t=(10.00,60.00)}]
    3434        RenderSVGRect {rect} at (10,61) size 5x5 [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=1.00] [width=5.00] [height=5.00]
    35         RenderSVGText {text} at (10,-1) size 277x9 contains 1 chunk(s)
     35        RenderSVGText {text} at (10,-1) size 277x10 contains 1 chunk(s)
    3636          RenderSVGInlineText {#text} at (0,0) size 277x9
    3737            chunk 1 text run 1 at (10.00,7.00) startOffset 0 endOffset 1 width 3.00: "r"
     
    4747      RenderSVGContainer {g} at (10,69) size 232x10 [transform={m=((1.00,0.00)(0.00,1.00)) t=(10.00,70.00)}]
    4848        RenderSVGRect {rect} at (10,71) size 5x5 [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=1.00] [width=5.00] [height=5.00]
    49         RenderSVGText {text} at (10,-1) size 222x9 contains 1 chunk(s)
     49        RenderSVGText {text} at (10,-1) size 222x10 contains 1 chunk(s)
    5050          RenderSVGInlineText {#text} at (0,0) size 222x9
    5151            chunk 1 text run 1 at (10.00,7.00) startOffset 0 endOffset 1 width 4.50: "v"
     
    6060      RenderSVGContainer {g} at (10,79) size 327x10 [transform={m=((1.00,0.00)(0.00,1.00)) t=(10.00,80.00)}]
    6161        RenderSVGRect {rect} at (10,81) size 5x5 [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=1.00] [width=5.00] [height=5.00]
    62         RenderSVGText {text} at (10,-1) size 317x9 contains 1 chunk(s)
     62        RenderSVGText {text} at (10,-1) size 317x10 contains 1 chunk(s)
    6363          RenderSVGInlineText {#text} at (0,0) size 317x9
    6464            chunk 1 text run 1 at (10.00,7.00) startOffset 0 endOffset 1 width 4.50: "v"
     
    7878      RenderSVGContainer {g} at (10,89) size 286x10 [transform={m=((1.00,0.00)(0.00,1.00)) t=(10.00,90.00)}]
    7979        RenderSVGRect {rect} at (10,91) size 5x5 [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=1.00] [width=5.00] [height=5.00]
    80         RenderSVGText {text} at (10,-1) size 276x9 contains 1 chunk(s)
     80        RenderSVGText {text} at (10,-1) size 276x10 contains 1 chunk(s)
    8181          RenderSVGInlineText {#text} at (0,0) size 276x9
    8282            chunk 1 text run 1 at (10.00,7.00) startOffset 0 endOffset 4 width 10.01: "tt.t"
     
    9595      RenderSVGContainer {g} at (10,99) size 135x10 [transform={m=((1.00,0.00)(0.00,1.00)) t=(10.00,100.00)}]
    9696        RenderSVGRect {rect} at (10,101) size 5x5 [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=1.00] [width=5.00] [height=5.00]
    97         RenderSVGText {text} at (10,-1) size 125x9 contains 1 chunk(s)
     97        RenderSVGText {text} at (10,-1) size 125x10 contains 1 chunk(s)
    9898          RenderSVGInlineText {#text} at (0,0) size 125x9
    9999            chunk 1 text run 1 at (10.00,7.00) startOffset 0 endOffset 4 width 14.51: "s.of"
     
    104104      RenderSVGContainer {g} at (10,109) size 185x10 [transform={m=((1.00,0.00)(0.00,1.00)) t=(10.00,110.00)}]
    105105        RenderSVGRect {rect} at (10,111) size 5x5 [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=1.00] [width=5.00] [height=5.00]
    106         RenderSVGText {text} at (10,-1) size 175x9 contains 1 chunk(s)
     106        RenderSVGText {text} at (10,-1) size 175x10 contains 1 chunk(s)
    107107          RenderSVGInlineText {#text} at (0,0) size 175x9
    108108            chunk 1 text run 1 at (10.00,7.00) startOffset 0 endOffset 4 width 15.00: "c.pr"
     
    115115      RenderSVGContainer {g} at (10,119) size 159x10 [transform={m=((1.00,0.00)(0.00,1.00)) t=(10.00,120.00)}]
    116116        RenderSVGRect {rect} at (10,121) size 5x5 [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=1.00] [width=5.00] [height=5.00]
    117         RenderSVGText {text} at (10,-1) size 149x9 contains 1 chunk(s)
     117        RenderSVGText {text} at (10,-1) size 149x10 contains 1 chunk(s)
    118118          RenderSVGInlineText {#text} at (0,0) size 149x9
    119119            chunk 1 text run 1 at (10.00,7.00) startOffset 0 endOffset 8 width 34.00: "c.classN"
     
    123123      RenderSVGContainer {g} at (10,129) size 128x10 [transform={m=((1.00,0.00)(0.00,1.00)) t=(10.00,130.00)}]
    124124        RenderSVGRect {rect} at (10,131) size 5x5 [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=1.00] [width=5.00] [height=5.00]
    125         RenderSVGText {text} at (10,-1) size 118x9 contains 1 chunk(s)
     125        RenderSVGText {text} at (10,-1) size 118x10 contains 1 chunk(s)
    126126          RenderSVGInlineText {#text} at (0,0) size 118x9
    127127            chunk 1 text run 1 at (10.00,7.00) startOffset 0 endOffset 4 width 12.50: "i.hr"
     
    131131      RenderSVGContainer {g} at (10,139) size 209x10 [transform={m=((1.00,0.00)(0.00,1.00)) t=(10.00,140.00)}]
    132132        RenderSVGRect {rect} at (10,141) size 5x5 [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=1.00] [width=5.00] [height=5.00]
    133         RenderSVGText {text} at (10,-1) size 199x9 contains 1 chunk(s)
     133        RenderSVGText {text} at (10,-1) size 199x10 contains 1 chunk(s)
    134134          RenderSVGInlineText {#text} at (0,0) size 199x9
    135135            chunk 1 text run 1 at (10.00,7.00) startOffset 0 endOffset 3 width 7.50: "i.r"
     
    143143      RenderSVGContainer {g} at (10,149) size 227x10 [transform={m=((1.00,0.00)(0.00,1.00)) t=(10.00,150.00)}]
    144144        RenderSVGRect {rect} at (10,151) size 5x5 [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=1.00] [width=5.00] [height=5.00]
    145         RenderSVGText {text} at (10,-1) size 217x9 contains 1 chunk(s)
     145        RenderSVGText {text} at (10,-1) size 217x10 contains 1 chunk(s)
    146146          RenderSVGInlineText {#text} at (0,0) size 217x9
    147147            chunk 1 text run 1 at (10.00,7.00) startOffset 0 endOffset 3 width 11.50: "c.k"
     
    153153      RenderSVGContainer {g} at (10,159) size 180x10 [transform={m=((1.00,0.00)(0.00,1.00)) t=(10.00,160.00)}]
    154154        RenderSVGRect {rect} at (10,161) size 5x5 [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=1.00] [width=5.00] [height=5.00]
    155         RenderSVGText {text} at (10,-1) size 170x9 contains 1 chunk(s)
     155        RenderSVGText {text} at (10,-1) size 170x10 contains 1 chunk(s)
    156156          RenderSVGInlineText {#text} at (0,0) size 170x9
    157157            chunk 1 text run 1 at (10.00,7.00) startOffset 0 endOffset 9 width 37.52: "t.x.baseV"
     
    161161      RenderSVGContainer {g} at (10,169) size 168x10 [transform={m=((1.00,0.00)(0.00,1.00)) t=(10.00,170.00)}]
    162162        RenderSVGRect {rect} at (10,171) size 5x5 [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=1.00] [width=5.00] [height=5.00]
    163         RenderSVGText {text} at (10,-1) size 158x9 contains 1 chunk(s)
     163        RenderSVGText {text} at (10,-1) size 158x10 contains 1 chunk(s)
    164164          RenderSVGInlineText {#text} at (0,0) size 158x9
    165165            chunk 1 text run 1 at (10.00,7.00) startOffset 0 endOffset 19 width 79.04: "p.points.numberOfIt"
     
    168168      RenderSVGContainer {g} at (10,179) size 356x10 [transform={m=((1.00,0.00)(0.00,1.00)) t=(10.00,180.00)}]
    169169        RenderSVGRect {rect} at (10,181) size 5x5 [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=1.00] [width=5.00] [height=5.00]
    170         RenderSVGText {text} at (10,-1) size 346x9 contains 1 chunk(s)
     170        RenderSVGText {text} at (10,-1) size 346x10 contains 1 chunk(s)
    171171          RenderSVGInlineText {#text} at (0,0) size 346x9
    172172            chunk 1 text run 1 at (10.00,7.00) startOffset 0 endOffset 4 width 15.51: "g.gr"
     
    184184      RenderSVGContainer {g} at (10,189) size 150x10 [transform={m=((1.00,0.00)(0.00,1.00)) t=(10.00,190.00)}]
    185185        RenderSVGRect {rect} at (10,191) size 5x5 [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=1.00] [width=5.00] [height=5.00]
    186         RenderSVGText {text} at (10,-1) size 140x9 contains 1 chunk(s)
     186        RenderSVGText {text} at (10,-1) size 140x10 contains 1 chunk(s)
    187187          RenderSVGInlineText {#text} at (0,0) size 140x9
    188188            chunk 1 text run 1 at (10.00,7.00) startOffset 0 endOffset 3 width 7.51: "f.f"
     
    194194      RenderSVGContainer {g} at (10,199) size 186x10 [transform={m=((1.00,0.00)(0.00,1.00)) t=(10.00,200.00)}]
    195195        RenderSVGRect {rect} at (10,201) size 5x5 [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=1.00] [width=5.00] [height=5.00]
    196         RenderSVGText {text} at (10,-1) size 176x9 contains 1 chunk(s)
     196        RenderSVGText {text} at (10,-1) size 176x10 contains 1 chunk(s)
    197197          RenderSVGInlineText {#text} at (0,0) size 176x9
    198198            chunk 1 text run 1 at (10.00,7.00) startOffset 0 endOffset 4 width 18.00: "m.or"
     
    203203      RenderSVGContainer {g} at (10,209) size 349x10 [transform={m=((1.00,0.00)(0.00,1.00)) t=(10.00,210.00)}]
    204204        RenderSVGRect {rect} at (10,211) size 5x5 [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=1.00] [width=5.00] [height=5.00]
    205         RenderSVGText {text} at (10,-1) size 339x9 contains 1 chunk(s)
     205        RenderSVGText {text} at (10,-1) size 339x10 contains 1 chunk(s)
    206206          RenderSVGInlineText {#text} at (0,0) size 339x9
    207207            chunk 1 text run 1 at (10.00,7.00) startOffset 0 endOffset 4 width 18.00: "m.or"
     
    216216      RenderSVGContainer {g} at (10,219) size 215x10 [transform={m=((1.00,0.00)(0.00,1.00)) t=(10.00,220.00)}]
    217217        RenderSVGRect {rect} at (10,221) size 5x5 [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=1.00] [width=5.00] [height=5.00]
    218         RenderSVGText {text} at (10,-1) size 205x9 contains 1 chunk(s)
     218        RenderSVGText {text} at (10,-1) size 205x10 contains 1 chunk(s)
    219219          RenderSVGInlineText {#text} at (0,0) size 205x9
    220220            chunk 1 text run 1 at (10.00,7.00) startOffset 0 endOffset 1 width 4.50: "v"
     
    228228      RenderSVGContainer {g} at (10,229) size 214x10 [transform={m=((1.00,0.00)(0.00,1.00)) t=(10.00,230.00)}]
    229229        RenderSVGRect {rect} at (10,231) size 5x5 [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=1.00] [width=5.00] [height=5.00]
    230         RenderSVGText {text} at (10,-1) size 204x9 contains 1 chunk(s)
     230        RenderSVGText {text} at (10,-1) size 204x10 contains 1 chunk(s)
    231231          RenderSVGInlineText {#text} at (0,0) size 204x9
    232232            chunk 1 text run 1 at (10.00,7.00) startOffset 0 endOffset 4 width 10.50: "t.tr"
     
    238238      RenderSVGContainer {g} at (10,239) size 410x10 [transform={m=((1.00,0.00)(0.00,1.00)) t=(10.00,240.00)}]
    239239        RenderSVGRect {rect} at (10,241) size 5x5 [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=1.00] [width=5.00] [height=5.00]
    240         RenderSVGText {text} at (10,-1) size 400x9 contains 1 chunk(s)
     240        RenderSVGText {text} at (10,-1) size 400x10 contains 1 chunk(s)
    241241          RenderSVGInlineText {#text} at (0,0) size 400x9
    242242            chunk 1 text run 1 at (10.00,7.00) startOffset 0 endOffset 1 width 4.50: "v"
     
    255255      RenderSVGContainer {g} at (10,249) size 374x10 [transform={m=((1.00,0.00)(0.00,1.00)) t=(10.00,250.00)}]
    256256        RenderSVGRect {rect} at (10,251) size 5x5 [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=1.00] [width=5.00] [height=5.00]
    257         RenderSVGText {text} at (10,-1) size 364x9 contains 1 chunk(s)
     257        RenderSVGText {text} at (10,-1) size 364x10 contains 1 chunk(s)
    258258          RenderSVGInlineText {#text} at (0,0) size 364x9
    259259            chunk 1 text run 1 at (10.00,7.00) startOffset 0 endOffset 1 width 4.50: "v"
     
    271271      RenderSVGContainer {g} at (10,259) size 273x10 [transform={m=((1.00,0.00)(0.00,1.00)) t=(10.00,260.00)}]
    272272        RenderSVGRect {rect} at (10,261) size 5x5 [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=1.00] [width=5.00] [height=5.00]
    273         RenderSVGText {text} at (10,-1) size 263x9 contains 1 chunk(s)
     273        RenderSVGText {text} at (10,-1) size 263x10 contains 1 chunk(s)
    274274          RenderSVGInlineText {#text} at (0,0) size 263x9
    275275            chunk 1 text run 1 at (10.00,7.00) startOffset 0 endOffset 1 width 4.50: "v"
     
    283283      RenderSVGContainer {g} at (10,269) size 94x10 [transform={m=((1.00,0.00)(0.00,1.00)) t=(10.00,270.00)}]
    284284        RenderSVGRect {rect} at (10,271) size 5x5 [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=1.00] [width=5.00] [height=5.00]
    285         RenderSVGText {text} at (10,-1) size 84x9 contains 1 chunk(s)
     285        RenderSVGText {text} at (10,-1) size 84x10 contains 1 chunk(s)
    286286          RenderSVGInlineText {#text} at (0,0) size 84x9
    287287            chunk 1 text run 1 at (10.00,7.00) startOffset 0 endOffset 1 width 5.50: "T"
     
    292292            chunk 1 text run 6 at (63.41,7.00) startOffset 14 endOffset 19 width 30.51: "ASSED"
    293293    RenderSVGContainer {g} at (10,314) size 227x33
    294       RenderSVGText {text} at (10,314) size 227x32 contains 1 chunk(s)
     294      RenderSVGText {text} at (10,314) size 227x33 contains 1 chunk(s)
    295295        RenderSVGInlineText {#text} at (0,0) size 227x32
    296296          chunk 1 text run 1 at (10.00,340.00) startOffset 0 endOffset 2 width 40.90: "$R"
     
    301301    RenderSVGContainer {g} at (0,0) size 480x23
    302302      RenderSVGRect {rect} at (0,0) size 480x22 [stroke={[type=SOLID] [color=#000000]}] [fill={[type=SOLID] [color=#FF0000]}] [x=1.00] [y=1.00] [width=478.00] [height=20.00]
    303       RenderSVGText {text} at (206,2) size 67x20 contains 1 chunk(s)
     303      RenderSVGText {text} at (206,2) size 68x20 contains 1 chunk(s)
    304304        RenderSVGInlineText {#text} at (0,0) size 67x20
    305305          chunk 1 (middle anchor) text run 1 at (206.67,18.00) startOffset 0 endOffset 5 width 66.66: "DRAFT"
  • trunk/LayoutTests/svg/W3C-SVG-1.1-SE/types-dom-05-b-expected.txt

    r103407 r140728  
    55    RenderSVGHiddenContainer {defs} at (0,0) size 0x0
    66    RenderSVGContainer {g} at (10,15) size 366x175
    7       RenderSVGText {text} at (10,15) size 366x18 contains 1 chunk(s)
     7      RenderSVGText {text} at (10,15) size 366x19 contains 1 chunk(s)
    88        RenderSVGInlineText {#text} at (0,0) size 366x18
    99          chunk 1 text run 1 at (10.00,30.00) startOffset 0 endOffset 1 width 11.00: "T"
     
    6161      RenderSVGResourceMarker {marker} [id="m"] [markerUnits=strokeWidth] [ref at (0,0)] [angle=1.80]
    6262    RenderSVGContainer {g} at (10,314) size 227x33
    63       RenderSVGText {text} at (10,314) size 227x32 contains 1 chunk(s)
     63      RenderSVGText {text} at (10,314) size 227x33 contains 1 chunk(s)
    6464        RenderSVGInlineText {#text} at (0,0) size 227x32
    6565          chunk 1 text run 1 at (10.00,340.00) startOffset 0 endOffset 2 width 40.90: "$R"
  • trunk/LayoutTests/svg/custom/glyph-setting-d-attribute-expected.txt

    r101342 r140728  
    44  RenderSVGRoot {svg} at (10,54) size 75x151
    55    RenderSVGHiddenContainer {defs} at (0,0) size 0x0
    6     RenderSVGText {text} at (10,54) size 75x150 contains 1 chunk(s)
     6    RenderSVGText {text} at (10,54) size 75x151 contains 1 chunk(s)
    77      RenderSVGInlineText {#text} at (0,0) size 75x150
    88        chunk 1 text run 1 at (10.00,160.00) startOffset 0 endOffset 1 width 75.00: "a"
  • trunk/LayoutTests/svg/foreignObject/text-tref-02-b-expected.txt

    r133521 r140728  
    44  RenderSVGRoot {svg} at (0,0) size 800x600
    55    RenderSVGHiddenContainer {defs} at (0,0) size 0x0
    6     RenderSVGContainer {g} at (125,25) size 565x322
    7       RenderSVGText {text} at (75,15) size 339x12 contains 1 chunk(s)
     6    RenderSVGContainer {g} at (125,25) size 564x321
     7      RenderSVGText {text} at (75,15) size 339x13 contains 1 chunk(s)
    88        RenderSVGInlineText {#text} at (0,0) size 339x12
    99          chunk 1 text run 1 at (75.00,25.00) startOffset 0 endOffset 1 width 7.33: "T"
     
    1515          chunk 1 text run 7 at (294.01,25.00) startOffset 43 endOffset 56 width 76.03: "G document fr"
    1616          chunk 1 text run 8 at (369.98,25.00) startOffset 56 endOffset 63 width 43.36: "agment."
    17       RenderSVGText {text} at (75,171) size 83x36 contains 1 chunk(s)
     17      RenderSVGText {text} at (75,171) size 83x37 contains 1 chunk(s)
    1818        RenderSVGInline {tref} at (0,0) size 83x36
    1919          RenderSVGInlineText {#text} at (0,0) size 83x36
     
    2323        RenderSVGInlineText {#text} at (0,0) size 0x0
    2424      RenderSVGHiddenContainer {defs} at (0,0) size 0x0
    25     RenderSVGContainer {g} at (16,523) size 376x56
    26       RenderSVGText {text} at (10,314) size 225x32 contains 1 chunk(s)
     25    RenderSVGContainer {g} at (16,524) size 376x54
     26      RenderSVGText {text} at (10,314) size 225x33 contains 1 chunk(s)
    2727        RenderSVGInlineText {#text} at (0,0) size 225x32
    2828          chunk 1 text run 1 at (10.00,340.00) startOffset 0 endOffset 2 width 40.64: "$R"
  • trunk/LayoutTests/svg/hixie/viewbox/002-expected.txt

    r103407 r140728  
    44  RenderSVGRoot {svg} at (50,0) size 250x200
    55    RenderSVGRect {rect} at (50,0) size 200x200 [fill={[type=SOLID] [color=#008000]}] [x=0.00] [y=0.00] [width=1.00] [height=1.00]
    6     RenderSVGText {text} at (10,12) size 45x23 contains 1 chunk(s)
     6    RenderSVGText {text} at (10,12) size 45x24 contains 1 chunk(s)
    77      RenderSVGInlineText {#text} at (0,0) size 45x23
    88        chunk 1 text run 1 at (10.00,30.00) startOffset 0 endOffset 4 width 44.44: "FAIL"
  • trunk/LayoutTests/svg/hixie/viewbox/003-expected.txt

    r103407 r140728  
    44  RenderSVGRoot {svg} at (50,0) size 250x200
    55    RenderSVGRect {rect} at (50,0) size 200x200 [fill={[type=SOLID] [color=#008000]}] [x=0.00] [y=0.00] [width=1.00] [height=1.00]
    6     RenderSVGText {text} at (10,12) size 45x23 contains 1 chunk(s)
     6    RenderSVGText {text} at (10,12) size 45x24 contains 1 chunk(s)
    77      RenderSVGInlineText {#text} at (0,0) size 45x23
    88        chunk 1 text run 1 at (10.00,30.00) startOffset 0 endOffset 4 width 44.44: "FAIL"
  • trunk/LayoutTests/svg/text/text-viewbox-rescale-expected.txt

    r108699 r140728  
    55    RenderBody {BODY} at (8,8) size 784x584
    66layer at (0,0) size 200x200
    7   RenderSVGRoot {svg} at (0,0) size 200x200
    8     RenderSVGViewportContainer {svg} at (0,0) size 200x200
     7  RenderSVGRoot {svg} at (59,40) size 101x126
     8    RenderSVGViewportContainer {svg} at (59,40) size 101x26
    99      RenderSVGText {text} at (0,0) size 1x1 contains 1 chunk(s)
    1010        RenderSVGInlineText {#text} at (0,0) size 1x1
     
    1414            chunk 1 text run 1 at (0.56,0.30) startOffset 0 endOffset 4 width 0.24: "PASS"
    1515        RenderSVGInlineText {#text} at (0,0) size 0x0
    16     RenderSVGViewportContainer {svg} at (0,100) size 200x100
     16    RenderSVGViewportContainer {svg} at (59,140) size 101x26
    1717      RenderSVGText {text} at (0,0) size 1x1 contains 1 chunk(s)
    1818        RenderSVGInlineText {#text} at (0,0) size 1x1
  • trunk/LayoutTests/svg/zoom/page/zoom-zoom-coords-expected.txt

    r77485 r140728  
    5454PASS image1.bottom.toFixed(2) is "275.00"
    5555PASS text1.left.toFixed(2) is "100.00"
    56 PASS text1.top.toFixed(2) is "282.50"
    57 PASS text1.width.toFixed(2) is "50.00"
    58 PASS text1.height.toFixed(2) is "6.50"
    59 PASS text1.right.toFixed(2) is "150.00"
    60 PASS text1.bottom.toFixed(2) is "289.00"
     56PASS text1.top.toFixed(2) is "282.66"
     57PASS text1.width.toFixed(2) is "49.20"
     58PASS text1.height.toFixed(2) is "6.16"
     59PASS text1.right.toFixed(2) is "149.20"
     60PASS text1.bottom.toFixed(2) is "288.82"
    6161
    6262PASS svg2.left.toFixed(2) is "75.00"
     
    7979PASS image2.bottom.toFixed(2) is "125.00"
    8080PASS text2.left.toFixed(2) is "175.00"
    81 PASS text2.top.toFixed(2) is "132.50"
    82 PASS text2.width.toFixed(2) is "48.00"
    83 PASS text2.height.toFixed(2) is "6.50"
    84 PASS text2.right.toFixed(2) is "223.00"
    85 PASS text2.bottom.toFixed(2) is "139.00"
     81PASS text2.top.toFixed(2) is "132.66"
     82PASS text2.width.toFixed(2) is "47.44"
     83PASS text2.height.toFixed(2) is "5.94"
     84PASS text2.right.toFixed(2) is "222.44"
     85PASS text2.bottom.toFixed(2) is "138.60"
    8686
    8787PASS svg3.left.toFixed(2) is "900.00"
     
    104104PASS image3.bottom.toFixed(2) is "550.00"
    105105PASS text3.left.toFixed(2) is "1100.00"
    106 PASS text3.top.toFixed(2) is "565.00"
    107 PASS text3.width.toFixed(2) is "100.00"
    108 PASS text3.height.toFixed(2) is "13.00"
    109 PASS text3.right.toFixed(2) is "1200.00"
    110 PASS text3.bottom.toFixed(2) is "578.00"
     106PASS text3.top.toFixed(2) is "565.33"
     107PASS text3.width.toFixed(2) is "98.41"
     108PASS text3.height.toFixed(2) is "12.31"
     109PASS text3.right.toFixed(2) is "1198.41"
     110PASS text3.bottom.toFixed(2) is "577.64"
    111111
    112112PASS successfullyParsed is true
  • trunk/LayoutTests/svg/zoom/page/zoom-zoom-coords.xhtml

    r124380 r140728  
    113113    text1 = document.getElementById("text1").getBoundingClientRect();
    114114    shouldBeEqualToString('text1.left.toFixed(2)', '100.00');
    115     shouldBeEqualToString('text1.top.toFixed(2)', '282.50');
    116     shouldBeEqualToString('text1.width.toFixed(2)', '50.00');
    117     shouldBeEqualToString('text1.height.toFixed(2)', '6.50');
    118     shouldBeEqualToString('text1.right.toFixed(2)', '150.00');
    119     shouldBeEqualToString('text1.bottom.toFixed(2)', '289.00');
     115    shouldBeEqualToString('text1.top.toFixed(2)', '282.66');
     116    shouldBeEqualToString('text1.width.toFixed(2)', '49.20');
     117    shouldBeEqualToString('text1.height.toFixed(2)', '6.16');
     118    shouldBeEqualToString('text1.right.toFixed(2)', '149.20');
     119    shouldBeEqualToString('text1.bottom.toFixed(2)', '288.82');
    120120    debug("");
    121121
     
    143143    text2 = document.getElementById("text2").getBoundingClientRect();
    144144    shouldBeEqualToString('text2.left.toFixed(2)', '175.00');
    145     shouldBeEqualToString('text2.top.toFixed(2)', '132.50');
    146     shouldBeEqualToString('text2.width.toFixed(2)', '48.00');
    147     shouldBeEqualToString('text2.height.toFixed(2)', '6.50');
    148     shouldBeEqualToString('text2.right.toFixed(2)', '223.00');
    149     shouldBeEqualToString('text2.bottom.toFixed(2)', '139.00');
     145    shouldBeEqualToString('text2.top.toFixed(2)', '132.66');
     146    shouldBeEqualToString('text2.width.toFixed(2)', '47.44');
     147    shouldBeEqualToString('text2.height.toFixed(2)', '5.94');
     148    shouldBeEqualToString('text2.right.toFixed(2)', '222.44');
     149    shouldBeEqualToString('text2.bottom.toFixed(2)', '138.60');
    150150    debug("");
    151151
     
    173173    text3 = document.getElementById("text3").getBoundingClientRect();
    174174    shouldBeEqualToString('text3.left.toFixed(2)', '1100.00');
    175     shouldBeEqualToString('text3.top.toFixed(2)', '565.00');
    176     shouldBeEqualToString('text3.width.toFixed(2)', '100.00');
    177     shouldBeEqualToString('text3.height.toFixed(2)', '13.00');
    178     shouldBeEqualToString('text3.right.toFixed(2)', '1200.00');
    179     shouldBeEqualToString('text3.bottom.toFixed(2)', '578.00');
     175    shouldBeEqualToString('text3.top.toFixed(2)', '565.33');
     176    shouldBeEqualToString('text3.width.toFixed(2)', '98.41');
     177    shouldBeEqualToString('text3.height.toFixed(2)', '12.31');
     178    shouldBeEqualToString('text3.right.toFixed(2)', '1198.41');
     179    shouldBeEqualToString('text3.bottom.toFixed(2)', '577.64');
    180180    debug("");
    181181}
  • trunk/Source/WebCore/ChangeLog

    r140722 r140728  
     12013-01-24  Emil A Eklund  <eae@chromium.org>
     2
     3        [svg] Remove unnecessary rounding in SVGRootInlineBox::layoutRootBox
     4        https://bugs.webkit.org/show_bug.cgi?id=107771
     5
     6        Reviewed by Levi Weintraub.
     7       
     8        SVGRootInlineBox::layoutRootBox rounds the location and size of
     9        the container to the nearest enclosing integer values. Now that
     10        layout uses subpixel positioning this is no longer needed and
     11        results in undesirable rounding. For high-dpi screens in
     12        particular this is especially noticeable as it is rounded to
     13        "pixels" which can map to two our more device pixels.
     14
     15        Test: svg/text/text-rect-precision.html
     16
     17        * rendering/svg/SVGRootInlineBox.cpp:
     18        (WebCore::SVGRootInlineBox::layoutRootBox):
     19        Change from enclosingIntRect to enclosingLayoutRect to align to
     20        the closest containing LayoutRect now that layout is done using
     21        subpixel precision.
     22
    1232013-01-24  Philip Rogers  <pdr@google.com>
    224
  • trunk/Source/WebCore/rendering/svg/SVGRootInlineBox.cpp

    r130612 r140728  
    172172
    173173    // Finally, assign the root block position, now that all content is laid out.
    174     IntRect roundedChildRect = enclosingIntRect(childRect);
    175     parentBlock->setLocation(roundedChildRect.location());
    176     parentBlock->setSize(roundedChildRect.size());
     174    LayoutRect boundingRect = enclosingLayoutRect(childRect);
     175    parentBlock->setLocation(boundingRect.location());
     176    parentBlock->setSize(boundingRect.size());
    177177
    178178    // Position all children relative to the parent block.
     
    189189    setLogicalWidth(childRect.width());
    190190    setLogicalHeight(childRect.height());
    191     setLineTopBottomPositions(0, roundedChildRect.height(), 0, roundedChildRect.height());
     191    setLineTopBottomPositions(0, boundingRect.height(), 0, boundingRect.height());
    192192}
    193193
Note: See TracChangeset for help on using the changeset viewer.