haikuwebkit/LayoutTests/svg/W3C-SVG-1.1-SE/color-prop-05-t-expected.txt

17 lines
1.1 KiB
Plaintext
Raw Permalink Normal View History

layer at (0,0) size 480x360
RenderView at (0,0) size 480x360
layer at (0,0) size 480x360
RenderSVGRoot {svg} at (0,0) size 480x360
RenderSVGHiddenContainer {defs} at (0,0) size 0x0
RenderSVGContainer {g} at (120,60) size 150x150
RenderSVGContainer {g} at (120,60) size 150x150
RenderSVGRect {rect} at (120,60) size 150x150 [fill={[type=SOLID] [color=#00FF00]}] [x=120.00] [y=60.00] [width=150.00] [height=150.00]
Update baselines for GTK+ after several revisions. * platform/gtk/fast/dom/Window/window-postmessage-clone-expected.txt: Added. * platform/gtk/fast/dom/Window/window-properties-expected.txt: * platform/gtk/fast/events/offsetX-offsetY-expected.txt: * platform/gtk/fast/forms/input-appearance-range-expected.txt: * platform/gtk/fast/multicol/client-rects-expected.txt: * platform/gtk/fast/multicol/float-avoidance-expected.png: * platform/gtk/fast/multicol/float-avoidance-expected.txt: * platform/gtk/fast/multicol/float-multicol-expected.txt: * platform/gtk/fast/multicol/scrolling-overflow-expected.png: * platform/gtk/fast/multicol/scrolling-overflow-expected.txt: * platform/gtk/fast/multicol/single-line-expected.txt: * platform/gtk/fast/multicol/span/anonymous-before-child-parent-crash-expected.png: * platform/gtk/fast/multicol/span/anonymous-before-child-parent-crash-expected.txt: * platform/gtk/fast/multicol/span/anonymous-split-block-crash-expected.png: * platform/gtk/fast/multicol/span/anonymous-split-block-crash-expected.txt: * platform/gtk/fast/multicol/span/anonymous-style-inheritance-expected.txt: * platform/gtk/fast/multicol/span/clone-anonymous-block-non-inline-child-crash-expected.png: * platform/gtk/fast/multicol/span/clone-anonymous-block-non-inline-child-crash-expected.txt: * platform/gtk/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.txt: * platform/gtk/fast/multicol/span/span-as-immediate-child-generated-content-expected.txt: * platform/gtk/fast/multicol/span/span-as-immediate-child-property-removal-expected.txt: * platform/gtk/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.txt: * platform/gtk/fast/multicol/span/span-as-immediate-columns-child-expected.txt: * platform/gtk/fast/multicol/span/span-as-immediate-columns-child-removal-expected.txt: * platform/gtk/fast/multicol/span/span-as-nested-columns-child-dynamic-expected.txt: * platform/gtk/fast/multicol/span/span-as-nested-columns-child-expected.txt: * platform/gtk/fast/multicol/span/span-margin-collapsing-expected.txt: * platform/gtk/fast/multicol/vertical-lr/float-avoidance-expected.png: * platform/gtk/fast/multicol/vertical-lr/float-avoidance-expected.txt: * platform/gtk/fast/multicol/vertical-lr/float-multicol-expected.txt: * platform/gtk/fast/multicol/vertical-rl/float-avoidance-expected.png: * platform/gtk/fast/multicol/vertical-rl/float-avoidance-expected.txt: * platform/gtk/fast/multicol/vertical-rl/float-multicol-expected.txt: * platform/gtk/svg/W3C-SVG-1.1-SE/color-prop-05-t-expected.png: * platform/gtk/svg/W3C-SVG-1.1-SE/color-prop-05-t-expected.txt: * platform/gtk/svg/W3C-SVG-1.1-SE/filters-felem-01-b-expected.txt: * platform/gtk/svg/W3C-SVG-1.1-SE/painting-marker-07-f-expected.png: * platform/gtk/svg/W3C-SVG-1.1-SE/painting-marker-07-f-expected.txt: * platform/gtk/svg/W3C-SVG-1.1-SE/struct-use-14-f-expected.txt: * platform/gtk/svg/W3C-SVG-1.1-SE/styling-css-04-f-expected.png: * platform/gtk/svg/W3C-SVG-1.1-SE/styling-css-04-f-expected.txt: * platform/gtk/svg/W3C-SVG-1.1-SE/svgdom-over-01-f-expected.png: * platform/gtk/svg/W3C-SVG-1.1-SE/svgdom-over-01-f-expected.txt: * platform/gtk/svg/W3C-SVG-1.1-SE/text-intro-02-b-expected.png: * platform/gtk/svg/W3C-SVG-1.1-SE/text-intro-02-b-expected.txt: * platform/gtk/svg/W3C-SVG-1.1-SE/text-intro-05-t-expected.png: * platform/gtk/svg/W3C-SVG-1.1-SE/text-intro-05-t-expected.txt: * platform/gtk/svg/W3C-SVG-1.1-SE/text-intro-09-b-expected.png: * platform/gtk/svg/W3C-SVG-1.1-SE/text-intro-09-b-expected.txt: * platform/gtk/svg/W3C-SVG-1.1-SE/text-tspan-02-b-expected.png: * platform/gtk/svg/W3C-SVG-1.1-SE/text-tspan-02-b-expected.txt: * platform/gtk/svg/custom/zero-path-square-cap-rendering-expected.txt: Added. Canonical link: https://commits.webkit.org/80868@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@91697 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2011-07-25 19:50:14 +00:00
RenderSVGContainer {g} at (10,314) size 227x33
[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: Canonical link: https://commits.webkit.org/126049@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@140728 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2013-01-24 22:48:50 +00:00
RenderSVGText {text} at (10,314) size 227x33 contains 1 chunk(s)
RenderSVGInlineText {#text} at (0,0) size 227x32
Update baselines for GTK+ after several revisions. * platform/gtk/fast/dom/Window/window-postmessage-clone-expected.txt: Added. * platform/gtk/fast/dom/Window/window-properties-expected.txt: * platform/gtk/fast/events/offsetX-offsetY-expected.txt: * platform/gtk/fast/forms/input-appearance-range-expected.txt: * platform/gtk/fast/multicol/client-rects-expected.txt: * platform/gtk/fast/multicol/float-avoidance-expected.png: * platform/gtk/fast/multicol/float-avoidance-expected.txt: * platform/gtk/fast/multicol/float-multicol-expected.txt: * platform/gtk/fast/multicol/scrolling-overflow-expected.png: * platform/gtk/fast/multicol/scrolling-overflow-expected.txt: * platform/gtk/fast/multicol/single-line-expected.txt: * platform/gtk/fast/multicol/span/anonymous-before-child-parent-crash-expected.png: * platform/gtk/fast/multicol/span/anonymous-before-child-parent-crash-expected.txt: * platform/gtk/fast/multicol/span/anonymous-split-block-crash-expected.png: * platform/gtk/fast/multicol/span/anonymous-split-block-crash-expected.txt: * platform/gtk/fast/multicol/span/anonymous-style-inheritance-expected.txt: * platform/gtk/fast/multicol/span/clone-anonymous-block-non-inline-child-crash-expected.png: * platform/gtk/fast/multicol/span/clone-anonymous-block-non-inline-child-crash-expected.txt: * platform/gtk/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.txt: * platform/gtk/fast/multicol/span/span-as-immediate-child-generated-content-expected.txt: * platform/gtk/fast/multicol/span/span-as-immediate-child-property-removal-expected.txt: * platform/gtk/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.txt: * platform/gtk/fast/multicol/span/span-as-immediate-columns-child-expected.txt: * platform/gtk/fast/multicol/span/span-as-immediate-columns-child-removal-expected.txt: * platform/gtk/fast/multicol/span/span-as-nested-columns-child-dynamic-expected.txt: * platform/gtk/fast/multicol/span/span-as-nested-columns-child-expected.txt: * platform/gtk/fast/multicol/span/span-margin-collapsing-expected.txt: * platform/gtk/fast/multicol/vertical-lr/float-avoidance-expected.png: * platform/gtk/fast/multicol/vertical-lr/float-avoidance-expected.txt: * platform/gtk/fast/multicol/vertical-lr/float-multicol-expected.txt: * platform/gtk/fast/multicol/vertical-rl/float-avoidance-expected.png: * platform/gtk/fast/multicol/vertical-rl/float-avoidance-expected.txt: * platform/gtk/fast/multicol/vertical-rl/float-multicol-expected.txt: * platform/gtk/svg/W3C-SVG-1.1-SE/color-prop-05-t-expected.png: * platform/gtk/svg/W3C-SVG-1.1-SE/color-prop-05-t-expected.txt: * platform/gtk/svg/W3C-SVG-1.1-SE/filters-felem-01-b-expected.txt: * platform/gtk/svg/W3C-SVG-1.1-SE/painting-marker-07-f-expected.png: * platform/gtk/svg/W3C-SVG-1.1-SE/painting-marker-07-f-expected.txt: * platform/gtk/svg/W3C-SVG-1.1-SE/struct-use-14-f-expected.txt: * platform/gtk/svg/W3C-SVG-1.1-SE/styling-css-04-f-expected.png: * platform/gtk/svg/W3C-SVG-1.1-SE/styling-css-04-f-expected.txt: * platform/gtk/svg/W3C-SVG-1.1-SE/svgdom-over-01-f-expected.png: * platform/gtk/svg/W3C-SVG-1.1-SE/svgdom-over-01-f-expected.txt: * platform/gtk/svg/W3C-SVG-1.1-SE/text-intro-02-b-expected.png: * platform/gtk/svg/W3C-SVG-1.1-SE/text-intro-02-b-expected.txt: * platform/gtk/svg/W3C-SVG-1.1-SE/text-intro-05-t-expected.png: * platform/gtk/svg/W3C-SVG-1.1-SE/text-intro-05-t-expected.txt: * platform/gtk/svg/W3C-SVG-1.1-SE/text-intro-09-b-expected.png: * platform/gtk/svg/W3C-SVG-1.1-SE/text-intro-09-b-expected.txt: * platform/gtk/svg/W3C-SVG-1.1-SE/text-tspan-02-b-expected.png: * platform/gtk/svg/W3C-SVG-1.1-SE/text-tspan-02-b-expected.txt: * platform/gtk/svg/custom/zero-path-square-cap-rendering-expected.txt: Added. Canonical link: https://commits.webkit.org/80868@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@91697 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2011-07-25 19:50:14 +00:00
chunk 1 text run 1 at (10.00,340.00) startOffset 0 endOffset 2 width 40.90: "$R"
chunk 1 text run 2 at (50.51,340.00) startOffset 2 endOffset 3 width 17.79: "e"
chunk 1 text run 3 at (67.82,340.00) startOffset 3 endOffset 12 width 117.38: "vision: 1"
chunk 1 text run 4 at (182.83,340.00) startOffset 12 endOffset 16 width 53.38: ".8 $"
RenderSVGRect {rect} at (0,0) size 480x360 [stroke={[type=SOLID] [color=#000000]}] [x=1.00] [y=1.00] [width=478.00] [height=358.00]