Changeset 196244 in webkit


Ignore:
Timestamp:
Feb 7, 2016 4:33:40 PM (8 years ago)
Author:
Alan Bujtas
Message:

Outline does not clip when ancestor has overflow: hidden and requires layer.
https://bugs.webkit.org/show_bug.cgi?id=153901

Now that outline is part of visual overflow, we no longer need the special outline cliprect.
PaintPhaseChildOutlines drawing will switch to foreground cliprect. It ensures proper overflow clipping
at parent level. PaintPhaseSelfOutline drawing will start using the visual overflow inflated background cliprect.
With this change, outline will be using the same cliprects as the other visual overflow properties (box-shadow etc).

Reviewed by David Hyatt.

Source/WebCore:

Test: fast/repaint/outline-with-overflow-hidden-ancestor.html

  • rendering/LayerFragment.h:

(WebCore::LayerFragment::setRects):
(WebCore::LayerFragment::moveBy): Deleted.
(WebCore::LayerFragment::intersect): Deleted.

  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::collectFragments):
(WebCore::RenderLayer::paintOutlineForFragments):
(WebCore::RenderLayer::calculateClipRects):
(WebCore::RenderLayer::paintForegroundForFragments): Deleted.

  • rendering/RenderLayer.h:
  • rendering/RenderTreeAsText.cpp:

(WebCore::write):
(WebCore::writeLayers):

LayoutTests:

  • compositing/geometry/limit-layer-bounds-overflow-repaint-expected.txt:
  • compositing/masks/mask-of-clipped-layer-expected.txt:
  • css2.1/20110323/abspos-non-replaced-width-margin-000-expected.txt:
  • css2.1/20110323/abspos-replaced-width-margin-000-expected.txt:
  • css3/blending/blend-mode-isolation-turn-off-self-painting-layer2-expected.txt:
  • css3/blending/blend-mode-isolation-turn-on-self-painting-layer-expected.txt:
  • fast/block/positioning/negative-rel-position-expected.txt:
  • fast/dynamic/staticY-expected.txt:
  • fast/inline/absolute-positioned-block-in-centred-block-expected.txt:
  • fast/multicol/flipped-blocks-border-after-expected.txt:
  • fast/multicol/pagination-h-horizontal-bt-expected.txt:
  • fast/multicol/pagination-h-horizontal-tb-expected.txt:
  • fast/multicol/pagination-h-vertical-rl-expected.txt:
  • fast/multicol/pagination-v-horizontal-bt-expected.txt:
  • fast/multicol/pagination-v-vertical-lr-expected.txt:
  • fast/multicol/pagination-v-vertical-rl-expected.txt:
  • fast/multicol/pagination/LeftToRight-tb-hittest-expected.txt:
  • fast/multicol/pagination/RightToLeft-rl-hittest-expected.txt:
  • fast/multicol/progression-reverse-expected.txt:
  • fast/multicol/vertical-rl/rules-with-border-before-expected.txt:
  • fast/overflow/overflow-update-transform-expected.txt:
  • fast/overflow/position-relative-expected.txt:
  • fast/repaint/focus-ring-expected.txt:
  • fast/repaint/focus-ring-repaint.html:
  • fast/repaint/outline-with-overflow-hidden-ancestor-expected.html: Added.
  • fast/repaint/outline-with-overflow-hidden-ancestor.html: Added.
  • fast/table/overflow-table-collapsed-borders-cell-painting-expected.txt:
  • fast/table/overflow-table-collapsed-borders-cell-painting-table-self-painting-layer-expected.txt:
  • fast/table/overflow-table-collapsed-borders-section-layer-painting-expected.txt:
  • fast/table/overflow-table-collapsed-borders-section-layer-table-self-painting-layer-expected.txt:
  • fast/table/overflow-table-collapsed-borders-section-self-painting-layer-painting-expected.txt:
  • fast/table/overflow-table-collapsed-borders-section-self-painting-layer-table-self-painting-layer-expected.txt:
  • platform/mac/compositing/geometry/clipping-foreground-expected.txt:
  • platform/mac/compositing/geometry/root-layer-update-expected.txt:
  • platform/mac/compositing/overflow/ancestor-overflow-expected.txt:
  • platform/mac/compositing/overflow/nested-scrolling-expected.txt:
  • platform/mac/compositing/overflow/overflow-scroll-expected.txt:
  • platform/mac/compositing/overflow/parent-overflow-expected.txt:
  • platform/mac/compositing/overflow/scrollbar-painting-expected.txt:
  • platform/mac/compositing/reflections/nested-reflection-on-overflow-expected.txt:
  • platform/mac/compositing/sibling-positioning-expected.txt:
  • platform/mac/css3/blending/blend-mode-overflow-expected.txt:
  • platform/mac/css3/unicode-bidi-isolate-basic-expected.txt:
  • platform/mac/fast/block/float/overhanging-tall-block-expected.txt:
  • platform/mac/fast/block/positioning/auto/vertical-rl/007-expected.txt:
  • platform/mac/fast/block/positioning/vertical-rl/fixed-positioning-expected.txt:
  • platform/mac/fast/borders/border-antialiasing-expected.txt:
  • platform/mac/fast/clip/001-expected.txt:
  • platform/mac/fast/clip/013-expected.txt:
  • platform/mac/fast/clip/014-expected.txt:
  • platform/mac/fast/clip/016-expected.txt:
  • platform/mac/fast/clip/outline-overflowClip-expected.txt:
  • platform/mac/fast/css/clip-zooming-expected.txt:
  • platform/mac/fast/forms/validation-message-appearance-expected.txt:
  • platform/mac/fast/inline/left-right-center-inline-alignment-in-ltr-and-rtl-blocks-expected.txt:
  • platform/mac/fast/line-grid/line-grid-inside-columns-expected.txt:
  • platform/mac/fast/line-grid/line-grid-into-columns-expected.txt:
  • platform/mac/fast/lists/scrolled-marker-paint-expected.txt:
  • platform/mac/fast/multicol/client-rects-expected.txt:
  • platform/mac/fast/multicol/column-break-with-balancing-expected.txt:
  • platform/mac/fast/multicol/column-rules-expected.txt:
  • platform/mac/fast/multicol/column-rules-stacking-expected.txt:
  • platform/mac/fast/multicol/columns-shorthand-parsing-expected.txt:
  • platform/mac/fast/multicol/float-paginate-complex-expected.txt:
  • platform/mac/fast/multicol/float-paginate-empty-lines-expected.txt:
  • platform/mac/fast/multicol/float-paginate-expected.txt:
  • platform/mac/fast/multicol/layers-in-multicol-expected.txt:
  • platform/mac/fast/multicol/layers-split-across-columns-expected.txt:
  • platform/mac/fast/multicol/max-height-columns-block-expected.txt:
  • platform/mac/fast/multicol/nested-columns-expected.txt:
  • platform/mac/fast/multicol/newmulticol/client-rects-expected.txt:
  • platform/mac/fast/multicol/overflow-across-columns-expected.txt:
  • platform/mac/fast/multicol/overflow-across-columns-percent-height-expected.txt:
  • platform/mac/fast/multicol/overflow-unsplittable-expected.txt:
  • platform/mac/fast/multicol/paginate-block-replaced-expected.txt:
  • platform/mac/fast/multicol/pagination/BottomToTop-bt-expected.txt:
  • platform/mac/fast/multicol/pagination/BottomToTop-lr-expected.txt:
  • platform/mac/fast/multicol/pagination/BottomToTop-rl-expected.txt:
  • platform/mac/fast/multicol/pagination/BottomToTop-tb-expected.txt:
  • platform/mac/fast/multicol/pagination/LeftToRight-bt-expected.txt:
  • platform/mac/fast/multicol/pagination/LeftToRight-rl-expected.txt:
  • platform/mac/fast/multicol/pagination/LeftToRight-tb-expected.txt:
  • platform/mac/fast/multicol/pagination/RightToLeft-bt-expected.txt:
  • platform/mac/fast/multicol/pagination/RightToLeft-lr-expected.txt:
  • platform/mac/fast/multicol/pagination/RightToLeft-rl-dynamic-expected.txt:
  • platform/mac/fast/multicol/pagination/RightToLeft-rl-expected.txt:
  • platform/mac/fast/multicol/pagination/RightToLeft-tb-expected.txt:
  • platform/mac/fast/multicol/pagination/TopToBottom-bt-expected.txt:
  • platform/mac/fast/multicol/pagination/TopToBottom-lr-expected.txt:
  • platform/mac/fast/multicol/pagination/TopToBottom-rl-expected.txt:
  • platform/mac/fast/multicol/positive-leading-expected.txt:
  • platform/mac/fast/multicol/scrolling-column-rules-expected.txt:
  • platform/mac/fast/multicol/scrolling-overflow-expected.txt:
  • platform/mac/fast/multicol/span/anonymous-style-inheritance-expected.txt:
  • platform/mac/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.txt:
  • platform/mac/fast/multicol/span/span-as-immediate-child-generated-content-expected.txt:
  • platform/mac/fast/multicol/span/span-as-immediate-child-property-removal-expected.txt:
  • platform/mac/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.txt:
  • platform/mac/fast/multicol/span/span-as-immediate-columns-child-expected.txt:
  • platform/mac/fast/multicol/span/span-as-immediate-columns-child-removal-expected.txt:
  • platform/mac/fast/multicol/span/span-as-nested-columns-child-dynamic-expected.txt:
  • platform/mac/fast/multicol/span/span-as-nested-columns-child-expected.txt:
  • platform/mac/fast/multicol/span/span-margin-collapsing-expected.txt:
  • platform/mac/fast/multicol/table-vertical-align-expected.txt:
  • platform/mac/fast/multicol/tall-image-behavior-expected.txt:
  • platform/mac/fast/multicol/vertical-lr/column-break-with-balancing-expected.txt:
  • platform/mac/fast/multicol/vertical-lr/column-rules-expected.txt:
  • platform/mac/fast/multicol/vertical-lr/float-multicol-expected.txt:
  • platform/mac/fast/multicol/vertical-lr/float-paginate-complex-expected.txt:
  • platform/mac/fast/multicol/vertical-lr/float-paginate-expected.txt:
  • platform/mac/fast/multicol/vertical-lr/nested-columns-expected.txt:
  • platform/mac/fast/multicol/vertical-rl/column-break-with-balancing-expected.txt:
  • platform/mac/fast/multicol/vertical-rl/column-rules-expected.txt:
  • platform/mac/fast/multicol/vertical-rl/float-multicol-expected.txt:
  • platform/mac/fast/multicol/vertical-rl/float-paginate-complex-expected.txt:
  • platform/mac/fast/multicol/vertical-rl/float-paginate-expected.txt:
  • platform/mac/fast/multicol/vertical-rl/nested-columns-expected.txt:
  • platform/mac/fast/overflow/clip-rects-fixed-ancestor-expected.txt:
  • platform/mac/fast/overflow/float-in-relpositioned-expected.txt:
  • platform/mac/fast/overflow/overflow-auto-position-absolute-expected.txt:
  • platform/mac/fast/overflow/overflow-rtl-expected.txt:
  • platform/mac/fast/overflow/paged-x-div-expected.txt:
  • platform/mac/fast/overflow/paged-x-div-with-column-gap-expected.txt:
  • platform/mac/fast/overflow/paged-x-on-root-expected.txt:
  • platform/mac/fast/overflow/paged-x-with-column-gap-expected.txt:
  • platform/mac/fast/overflow/paged-y-div-expected.txt:
  • platform/mac/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.txt:
  • platform/mac/fast/regions/repaint/region-painting-via-layout-expected.txt:
  • platform/mac/fast/repaint/box-shadow-h-expected.txt:
  • platform/mac/fast/repaint/box-shadow-v-expected.txt:
  • platform/mac/fast/repaint/layer-outline-expected.txt:
  • platform/mac/fast/repaint/layer-outline-horizontal-expected.txt:
  • platform/mac/fast/table/edge-offsets-expected.txt:
  • platform/mac/fast/transforms/overflow-with-transform-expected.txt:
  • platform/mac/fast/transforms/rotated-transform-affects-scrolling-1-expected.txt:
  • platform/mac/fast/transforms/rotated-transform-affects-scrolling-2-expected.txt:
  • platform/mac/fast/writing-mode/Kusa-Makura-background-canvas-expected.txt:
  • platform/mac/printing/single-line-must-not-be-split-into-two-pages-expected.txt:
  • platform/mac/scrollbars/scrollbars-on-positioned-content-expected.txt:
  • platform/mac/svg/custom/getscreenctm-in-scrollable-div-area-nested-expected.txt:
  • platform/mac/svg/custom/image-rescale-clip-expected.txt:
  • svg/overflow/overflow-on-foreignObject-expected.txt:
Location:
trunk
Files:
2 added
145 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r196243 r196244  
     12016-02-07  Zalan Bujtas  <zalan@apple.com>
     2
     3        Outline does not clip when ancestor has overflow: hidden and requires layer.
     4        https://bugs.webkit.org/show_bug.cgi?id=153901
     5
     6        Now that outline is part of visual overflow, we no longer need the special outline cliprect.
     7        PaintPhaseChildOutlines drawing will switch to foreground cliprect. It ensures proper overflow clipping
     8        at parent level. PaintPhaseSelfOutline drawing will start using the visual overflow inflated background cliprect.
     9        With this change, outline will be using the same cliprects as the other visual overflow properties (box-shadow etc).
     10
     11        Reviewed by David Hyatt.
     12
     13        * compositing/geometry/limit-layer-bounds-overflow-repaint-expected.txt:
     14        * compositing/masks/mask-of-clipped-layer-expected.txt:
     15        * css2.1/20110323/abspos-non-replaced-width-margin-000-expected.txt:
     16        * css2.1/20110323/abspos-replaced-width-margin-000-expected.txt:
     17        * css3/blending/blend-mode-isolation-turn-off-self-painting-layer2-expected.txt:
     18        * css3/blending/blend-mode-isolation-turn-on-self-painting-layer-expected.txt:
     19        * fast/block/positioning/negative-rel-position-expected.txt:
     20        * fast/dynamic/staticY-expected.txt:
     21        * fast/inline/absolute-positioned-block-in-centred-block-expected.txt:
     22        * fast/multicol/flipped-blocks-border-after-expected.txt:
     23        * fast/multicol/pagination-h-horizontal-bt-expected.txt:
     24        * fast/multicol/pagination-h-horizontal-tb-expected.txt:
     25        * fast/multicol/pagination-h-vertical-rl-expected.txt:
     26        * fast/multicol/pagination-v-horizontal-bt-expected.txt:
     27        * fast/multicol/pagination-v-vertical-lr-expected.txt:
     28        * fast/multicol/pagination-v-vertical-rl-expected.txt:
     29        * fast/multicol/pagination/LeftToRight-tb-hittest-expected.txt:
     30        * fast/multicol/pagination/RightToLeft-rl-hittest-expected.txt:
     31        * fast/multicol/progression-reverse-expected.txt:
     32        * fast/multicol/vertical-rl/rules-with-border-before-expected.txt:
     33        * fast/overflow/overflow-update-transform-expected.txt:
     34        * fast/overflow/position-relative-expected.txt:
     35        * fast/repaint/focus-ring-expected.txt:
     36        * fast/repaint/focus-ring-repaint.html:
     37        * fast/repaint/outline-with-overflow-hidden-ancestor-expected.html: Added.
     38        * fast/repaint/outline-with-overflow-hidden-ancestor.html: Added.
     39        * fast/table/overflow-table-collapsed-borders-cell-painting-expected.txt:
     40        * fast/table/overflow-table-collapsed-borders-cell-painting-table-self-painting-layer-expected.txt:
     41        * fast/table/overflow-table-collapsed-borders-section-layer-painting-expected.txt:
     42        * fast/table/overflow-table-collapsed-borders-section-layer-table-self-painting-layer-expected.txt:
     43        * fast/table/overflow-table-collapsed-borders-section-self-painting-layer-painting-expected.txt:
     44        * fast/table/overflow-table-collapsed-borders-section-self-painting-layer-table-self-painting-layer-expected.txt:
     45        * platform/mac/compositing/geometry/clipping-foreground-expected.txt:
     46        * platform/mac/compositing/geometry/root-layer-update-expected.txt:
     47        * platform/mac/compositing/overflow/ancestor-overflow-expected.txt:
     48        * platform/mac/compositing/overflow/nested-scrolling-expected.txt:
     49        * platform/mac/compositing/overflow/overflow-scroll-expected.txt:
     50        * platform/mac/compositing/overflow/parent-overflow-expected.txt:
     51        * platform/mac/compositing/overflow/scrollbar-painting-expected.txt:
     52        * platform/mac/compositing/reflections/nested-reflection-on-overflow-expected.txt:
     53        * platform/mac/compositing/sibling-positioning-expected.txt:
     54        * platform/mac/css3/blending/blend-mode-overflow-expected.txt:
     55        * platform/mac/css3/unicode-bidi-isolate-basic-expected.txt:
     56        * platform/mac/fast/block/float/overhanging-tall-block-expected.txt:
     57        * platform/mac/fast/block/positioning/auto/vertical-rl/007-expected.txt:
     58        * platform/mac/fast/block/positioning/vertical-rl/fixed-positioning-expected.txt:
     59        * platform/mac/fast/borders/border-antialiasing-expected.txt:
     60        * platform/mac/fast/clip/001-expected.txt:
     61        * platform/mac/fast/clip/013-expected.txt:
     62        * platform/mac/fast/clip/014-expected.txt:
     63        * platform/mac/fast/clip/016-expected.txt:
     64        * platform/mac/fast/clip/outline-overflowClip-expected.txt:
     65        * platform/mac/fast/css/clip-zooming-expected.txt:
     66        * platform/mac/fast/forms/validation-message-appearance-expected.txt:
     67        * platform/mac/fast/inline/left-right-center-inline-alignment-in-ltr-and-rtl-blocks-expected.txt:
     68        * platform/mac/fast/line-grid/line-grid-inside-columns-expected.txt:
     69        * platform/mac/fast/line-grid/line-grid-into-columns-expected.txt:
     70        * platform/mac/fast/lists/scrolled-marker-paint-expected.txt:
     71        * platform/mac/fast/multicol/client-rects-expected.txt:
     72        * platform/mac/fast/multicol/column-break-with-balancing-expected.txt:
     73        * platform/mac/fast/multicol/column-rules-expected.txt:
     74        * platform/mac/fast/multicol/column-rules-stacking-expected.txt:
     75        * platform/mac/fast/multicol/columns-shorthand-parsing-expected.txt:
     76        * platform/mac/fast/multicol/float-paginate-complex-expected.txt:
     77        * platform/mac/fast/multicol/float-paginate-empty-lines-expected.txt:
     78        * platform/mac/fast/multicol/float-paginate-expected.txt:
     79        * platform/mac/fast/multicol/layers-in-multicol-expected.txt:
     80        * platform/mac/fast/multicol/layers-split-across-columns-expected.txt:
     81        * platform/mac/fast/multicol/max-height-columns-block-expected.txt:
     82        * platform/mac/fast/multicol/nested-columns-expected.txt:
     83        * platform/mac/fast/multicol/newmulticol/client-rects-expected.txt:
     84        * platform/mac/fast/multicol/overflow-across-columns-expected.txt:
     85        * platform/mac/fast/multicol/overflow-across-columns-percent-height-expected.txt:
     86        * platform/mac/fast/multicol/overflow-unsplittable-expected.txt:
     87        * platform/mac/fast/multicol/paginate-block-replaced-expected.txt:
     88        * platform/mac/fast/multicol/pagination/BottomToTop-bt-expected.txt:
     89        * platform/mac/fast/multicol/pagination/BottomToTop-lr-expected.txt:
     90        * platform/mac/fast/multicol/pagination/BottomToTop-rl-expected.txt:
     91        * platform/mac/fast/multicol/pagination/BottomToTop-tb-expected.txt:
     92        * platform/mac/fast/multicol/pagination/LeftToRight-bt-expected.txt:
     93        * platform/mac/fast/multicol/pagination/LeftToRight-rl-expected.txt:
     94        * platform/mac/fast/multicol/pagination/LeftToRight-tb-expected.txt:
     95        * platform/mac/fast/multicol/pagination/RightToLeft-bt-expected.txt:
     96        * platform/mac/fast/multicol/pagination/RightToLeft-lr-expected.txt:
     97        * platform/mac/fast/multicol/pagination/RightToLeft-rl-dynamic-expected.txt:
     98        * platform/mac/fast/multicol/pagination/RightToLeft-rl-expected.txt:
     99        * platform/mac/fast/multicol/pagination/RightToLeft-tb-expected.txt:
     100        * platform/mac/fast/multicol/pagination/TopToBottom-bt-expected.txt:
     101        * platform/mac/fast/multicol/pagination/TopToBottom-lr-expected.txt:
     102        * platform/mac/fast/multicol/pagination/TopToBottom-rl-expected.txt:
     103        * platform/mac/fast/multicol/positive-leading-expected.txt:
     104        * platform/mac/fast/multicol/scrolling-column-rules-expected.txt:
     105        * platform/mac/fast/multicol/scrolling-overflow-expected.txt:
     106        * platform/mac/fast/multicol/span/anonymous-style-inheritance-expected.txt:
     107        * platform/mac/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.txt:
     108        * platform/mac/fast/multicol/span/span-as-immediate-child-generated-content-expected.txt:
     109        * platform/mac/fast/multicol/span/span-as-immediate-child-property-removal-expected.txt:
     110        * platform/mac/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.txt:
     111        * platform/mac/fast/multicol/span/span-as-immediate-columns-child-expected.txt:
     112        * platform/mac/fast/multicol/span/span-as-immediate-columns-child-removal-expected.txt:
     113        * platform/mac/fast/multicol/span/span-as-nested-columns-child-dynamic-expected.txt:
     114        * platform/mac/fast/multicol/span/span-as-nested-columns-child-expected.txt:
     115        * platform/mac/fast/multicol/span/span-margin-collapsing-expected.txt:
     116        * platform/mac/fast/multicol/table-vertical-align-expected.txt:
     117        * platform/mac/fast/multicol/tall-image-behavior-expected.txt:
     118        * platform/mac/fast/multicol/vertical-lr/column-break-with-balancing-expected.txt:
     119        * platform/mac/fast/multicol/vertical-lr/column-rules-expected.txt:
     120        * platform/mac/fast/multicol/vertical-lr/float-multicol-expected.txt:
     121        * platform/mac/fast/multicol/vertical-lr/float-paginate-complex-expected.txt:
     122        * platform/mac/fast/multicol/vertical-lr/float-paginate-expected.txt:
     123        * platform/mac/fast/multicol/vertical-lr/nested-columns-expected.txt:
     124        * platform/mac/fast/multicol/vertical-rl/column-break-with-balancing-expected.txt:
     125        * platform/mac/fast/multicol/vertical-rl/column-rules-expected.txt:
     126        * platform/mac/fast/multicol/vertical-rl/float-multicol-expected.txt:
     127        * platform/mac/fast/multicol/vertical-rl/float-paginate-complex-expected.txt:
     128        * platform/mac/fast/multicol/vertical-rl/float-paginate-expected.txt:
     129        * platform/mac/fast/multicol/vertical-rl/nested-columns-expected.txt:
     130        * platform/mac/fast/overflow/clip-rects-fixed-ancestor-expected.txt:
     131        * platform/mac/fast/overflow/float-in-relpositioned-expected.txt:
     132        * platform/mac/fast/overflow/overflow-auto-position-absolute-expected.txt:
     133        * platform/mac/fast/overflow/overflow-rtl-expected.txt:
     134        * platform/mac/fast/overflow/paged-x-div-expected.txt:
     135        * platform/mac/fast/overflow/paged-x-div-with-column-gap-expected.txt:
     136        * platform/mac/fast/overflow/paged-x-on-root-expected.txt:
     137        * platform/mac/fast/overflow/paged-x-with-column-gap-expected.txt:
     138        * platform/mac/fast/overflow/paged-y-div-expected.txt:
     139        * platform/mac/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.txt:
     140        * platform/mac/fast/regions/repaint/region-painting-via-layout-expected.txt:
     141        * platform/mac/fast/repaint/box-shadow-h-expected.txt:
     142        * platform/mac/fast/repaint/box-shadow-v-expected.txt:
     143        * platform/mac/fast/repaint/layer-outline-expected.txt:
     144        * platform/mac/fast/repaint/layer-outline-horizontal-expected.txt:
     145        * platform/mac/fast/table/edge-offsets-expected.txt:
     146        * platform/mac/fast/transforms/overflow-with-transform-expected.txt:
     147        * platform/mac/fast/transforms/rotated-transform-affects-scrolling-1-expected.txt:
     148        * platform/mac/fast/transforms/rotated-transform-affects-scrolling-2-expected.txt:
     149        * platform/mac/fast/writing-mode/Kusa-Makura-background-canvas-expected.txt:
     150        * platform/mac/printing/single-line-must-not-be-split-into-two-pages-expected.txt:
     151        * platform/mac/scrollbars/scrollbars-on-positioned-content-expected.txt:
     152        * platform/mac/svg/custom/getscreenctm-in-scrollable-div-area-nested-expected.txt:
     153        * platform/mac/svg/custom/image-rescale-clip-expected.txt:
     154        * svg/overflow/overflow-on-foreignObject-expected.txt:
     155
    11562016-02-07  Saam barati  <sbarati@apple.com>
    2157
  • trunk/LayoutTests/compositing/geometry/limit-layer-bounds-overflow-repaint-expected.txt

    r149088 r196244  
    99layer at (18,18) size 202x202 clip at (19,19) size 200x200 scrollY 500 scrollHeight 1000
    1010  RenderBlock (relative positioned) {DIV} at (10,10) size 202x202 [border: (1px solid #000000)]
    11 layer at (19,-481) size 200x1000 backgroundClip at (19,19) size 200x200 clip at (19,19) size 200x200 outlineClip at (19,19) size 200x200
     11layer at (19,-481) size 200x1000 backgroundClip at (19,19) size 200x200 clip at (19,19) size 200x200
    1212  RenderBlock (relative positioned) {DIV} at (1,1) size 200x1000 [bgcolor=#0000FF]
    1313    RenderBlock {DIV} at (0,0) size 200x500 [bgcolor=#FF0000]
  • trunk/LayoutTests/compositing/masks/mask-of-clipped-layer-expected.txt

    r125193 r196244  
    77  RenderBlock {DIV} at (0,0) size 200x200 [bgcolor=#0000FF]
    88    RenderBlock {DIV} at (0,0) size 140x140 [bgcolor=#FF0000]
    9 layer at (8,8) size 300x300 backgroundClip at (8,8) size 200x200 clip at (8,8) size 200x200 outlineClip at (8,8) size 200x200
     9layer at (8,8) size 300x300 backgroundClip at (8,8) size 200x200 clip at (8,8) size 200x200
    1010  RenderBlock {DIV} at (0,0) size 300x300 [bgcolor=#00FF00]
  • trunk/LayoutTests/css2.1/20110323/abspos-non-replaced-width-margin-000-expected.txt

    r127052 r196244  
    15491549  RenderBlock (relative positioned) {DIV} at (21,257) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    15501550    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1551 layer at (-11,257) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1551layer at (-11,257) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    15521552  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    15531553    RenderBlock {DIV} at (7,0) size 72x1
     
    15611561  RenderBlock (relative positioned) {DIV} at (21,259) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    15621562    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1563 layer at (-11,259) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1563layer at (-11,259) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    15641564  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    15651565    RenderBlock {DIV} at (7,0) size 72x1
     
    15731573  RenderBlock (relative positioned) {DIV} at (21,261) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    15741574    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1575 layer at (-11,261) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1575layer at (-11,261) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    15761576  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    15771577    RenderBlock {DIV} at (595,0) size 72x1
     
    15851585  RenderBlock (relative positioned) {DIV} at (21,263) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    15861586    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1587 layer at (-11,263) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1587layer at (-11,263) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    15881588  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    15891589    RenderBlock {DIV} at (595,0) size 72x1
     
    15911591  RenderBlock (relative positioned) {DIV} at (21,264) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    15921592    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1593 layer at (-11,264) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1593layer at (-11,264) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    15941594  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    15951595    RenderBlock {DIV} at (7,0) size 72x1
     
    15971597  RenderBlock (relative positioned) {DIV} at (21,265) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    15981598    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1599 layer at (-11,265) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1599layer at (-11,265) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    16001600  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    16011601    RenderBlock {DIV} at (7,0) size 72x1
     
    16031603  RenderBlock (relative positioned) {DIV} at (21,266) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    16041604    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1605 layer at (-11,266) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1605layer at (-11,266) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    16061606  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    16071607    RenderBlock {DIV} at (7,0) size 72x1
     
    16091609  RenderBlock (relative positioned) {DIV} at (21,267) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    16101610    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1611 layer at (-11,267) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1611layer at (-11,267) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    16121612  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    16131613    RenderBlock {DIV} at (7,0) size 72x1
     
    16151615  RenderBlock (relative positioned) {DIV} at (21,268) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    16161616    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1617 layer at (-11,268) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1617layer at (-11,268) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    16181618  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    16191619    RenderBlock {DIV} at (595,0) size 72x1
     
    16211621  RenderBlock (relative positioned) {DIV} at (21,269) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    16221622    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1623 layer at (-11,269) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1623layer at (-11,269) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    16241624  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    16251625    RenderBlock {DIV} at (595,0) size 72x1
     
    16271627  RenderBlock (relative positioned) {DIV} at (21,270) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    16281628    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1629 layer at (-11,270) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1629layer at (-11,270) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    16301630  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    16311631    RenderBlock {DIV} at (595,0) size 72x1
     
    16331633  RenderBlock (relative positioned) {DIV} at (21,271) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    16341634    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1635 layer at (-11,271) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1635layer at (-11,271) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    16361636  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    16371637    RenderBlock {DIV} at (595,0) size 72x1
     
    16991699  RenderBlock (relative positioned) {DIV} at (21,282) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    17001700    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1701 layer at (-53,282) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1701layer at (-53,282) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    17021702  RenderBlock (positioned) {DIV} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    17031703    RenderBlock {DIV} at (7,0) size 72x1
     
    17051705  RenderBlock (relative positioned) {DIV} at (21,283) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    17061706    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1707 layer at (-53,283) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1707layer at (-53,283) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    17081708  RenderBlock (positioned) {DIV} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    17091709    RenderBlock {DIV} at (7,0) size 72x1
     
    17231723  RenderBlock (relative positioned) {DIV} at (21,286) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    17241724    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1725 layer at (-53,286) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1725layer at (-53,286) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    17261726  RenderBlock (positioned) {DIV} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    17271727    RenderBlock {DIV} at (595,0) size 72x1
     
    17291729  RenderBlock (relative positioned) {DIV} at (21,287) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    17301730    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1731 layer at (-53,287) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1731layer at (-53,287) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    17321732  RenderBlock (positioned) {DIV} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    17331733    RenderBlock {DIV} at (595,0) size 72x1
     
    17351735  RenderBlock (relative positioned) {DIV} at (21,288) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    17361736    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1737 layer at (-11,288) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1737layer at (-11,288) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    17381738  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    17391739    RenderBlock {DIV} at (7,0) size 72x1
     
    17411741  RenderBlock (relative positioned) {DIV} at (21,289) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    17421742    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1743 layer at (-11,289) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1743layer at (-11,289) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    17441744  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    17451745    RenderBlock {DIV} at (7,0) size 72x1
     
    17471747  RenderBlock (relative positioned) {DIV} at (21,290) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    17481748    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1749 layer at (-11,290) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1749layer at (-11,290) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    17501750  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    17511751    RenderBlock {DIV} at (7,0) size 72x1
     
    17531753  RenderBlock (relative positioned) {DIV} at (21,291) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    17541754    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1755 layer at (-11,291) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1755layer at (-11,291) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    17561756  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    17571757    RenderBlock {DIV} at (7,0) size 72x1
     
    17591759  RenderBlock (relative positioned) {DIV} at (21,292) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    17601760    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1761 layer at (-11,292) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1761layer at (-11,292) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    17621762  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    17631763    RenderBlock {DIV} at (595,0) size 72x1
     
    17651765  RenderBlock (relative positioned) {DIV} at (21,293) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    17661766    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1767 layer at (-11,293) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1767layer at (-11,293) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    17681768  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    17691769    RenderBlock {DIV} at (595,0) size 72x1
     
    17711771  RenderBlock (relative positioned) {DIV} at (21,294) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    17721772    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1773 layer at (-11,294) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1773layer at (-11,294) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    17741774  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    17751775    RenderBlock {DIV} at (595,0) size 72x1
     
    17771777  RenderBlock (relative positioned) {DIV} at (21,295) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    17781778    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1779 layer at (-11,295) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1779layer at (-11,295) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    17801780  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    17811781    RenderBlock {DIV} at (595,0) size 72x1
     
    17831783  RenderBlock (relative positioned) {DIV} at (21,296) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    17841784    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1785 layer at (-11,296) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1785layer at (-11,296) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    17861786  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    17871787    RenderBlock {DIV} at (7,0) size 72x1
     
    17891789  RenderBlock (relative positioned) {DIV} at (21,297) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    17901790    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1791 layer at (-11,297) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1791layer at (-11,297) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    17921792  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    17931793    RenderBlock {DIV} at (7,0) size 72x1
     
    17951795  RenderBlock (relative positioned) {DIV} at (21,298) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    17961796    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1797 layer at (-11,298) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1797layer at (-11,298) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    17981798  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    17991799    RenderBlock {DIV} at (7,0) size 72x1
     
    18011801  RenderBlock (relative positioned) {DIV} at (21,299) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    18021802    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1803 layer at (-11,299) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1803layer at (-11,299) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    18041804  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    18051805    RenderBlock {DIV} at (7,0) size 72x1
     
    18071807  RenderBlock (relative positioned) {DIV} at (21,300) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    18081808    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1809 layer at (-11,300) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1809layer at (-11,300) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    18101810  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    18111811    RenderBlock {DIV} at (595,0) size 72x1
     
    18131813  RenderBlock (relative positioned) {DIV} at (21,301) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    18141814    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1815 layer at (-11,301) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1815layer at (-11,301) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    18161816  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    18171817    RenderBlock {DIV} at (595,0) size 72x1
     
    18191819  RenderBlock (relative positioned) {DIV} at (21,302) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    18201820    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1821 layer at (-11,302) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1821layer at (-11,302) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    18221822  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    18231823    RenderBlock {DIV} at (595,0) size 72x1
     
    18251825  RenderBlock (relative positioned) {DIV} at (21,303) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    18261826    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1827 layer at (-11,303) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1827layer at (-11,303) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    18281828  RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    18291829    RenderBlock {DIV} at (595,0) size 72x1
     
    18911891  RenderBlock (relative positioned) {DIV} at (21,314) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    18921892    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1893 layer at (-53,314) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1893layer at (-53,314) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    18941894  RenderBlock (positioned) {DIV} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    18951895    RenderBlock {DIV} at (7,0) size 72x1
     
    18971897  RenderBlock (relative positioned) {DIV} at (21,315) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    18981898    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1899 layer at (-53,315) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1899layer at (-53,315) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    19001900  RenderBlock (positioned) {DIV} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    19011901    RenderBlock {DIV} at (7,0) size 72x1
     
    19151915  RenderBlock (relative positioned) {DIV} at (21,318) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    19161916    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1917 layer at (-53,318) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1917layer at (-53,318) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    19181918  RenderBlock (positioned) {DIV} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    19191919    RenderBlock {DIV} at (595,0) size 72x1
     
    19211921  RenderBlock (relative positioned) {DIV} at (21,319) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    19221922    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1923 layer at (-53,319) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1923layer at (-53,319) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    19241924  RenderBlock (positioned) {DIV} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    19251925    RenderBlock {DIV} at (595,0) size 72x1
     
    20832083  RenderBlock (relative positioned) {DIV} at (21,346) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    20842084    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2085 layer at (-34,346) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2085layer at (-34,346) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    20862086  RenderBlock (positioned) {DIV} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    20872087    RenderBlock {DIV} at (7,0) size 72x1
     
    20892089  RenderBlock (relative positioned) {DIV} at (21,347) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    20902090    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2091 layer at (-34,347) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2091layer at (-34,347) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    20922092  RenderBlock (positioned) {DIV} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    20932093    RenderBlock {DIV} at (7,0) size 72x1
     
    21072107  RenderBlock (relative positioned) {DIV} at (21,350) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    21082108    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2109 layer at (-34,350) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2109layer at (-34,350) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    21102110  RenderBlock (positioned) {DIV} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    21112111    RenderBlock {DIV} at (595,0) size 72x1
     
    21132113  RenderBlock (relative positioned) {DIV} at (21,351) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    21142114    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2115 layer at (-34,351) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2115layer at (-34,351) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    21162116  RenderBlock (positioned) {DIV} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    21172117    RenderBlock {DIV} at (595,0) size 72x1
     
    22752275  RenderBlock (relative positioned) {DIV} at (21,378) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    22762276    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2277 layer at (-34,378) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2277layer at (-34,378) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    22782278  RenderBlock (positioned) {DIV} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    22792279    RenderBlock {DIV} at (7,0) size 72x1
     
    22812281  RenderBlock (relative positioned) {DIV} at (21,379) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    22822282    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2283 layer at (-34,379) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2283layer at (-34,379) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    22842284  RenderBlock (positioned) {DIV} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    22852285    RenderBlock {DIV} at (7,0) size 72x1
     
    22992299  RenderBlock (relative positioned) {DIV} at (21,382) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    23002300    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2301 layer at (-34,382) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2301layer at (-34,382) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    23022302  RenderBlock (positioned) {DIV} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    23032303    RenderBlock {DIV} at (595,0) size 72x1
     
    23052305  RenderBlock (relative positioned) {DIV} at (21,383) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    23062306    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2307 layer at (-34,383) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2307layer at (-34,383) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    23082308  RenderBlock (positioned) {DIV} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    23092309    RenderBlock {DIV} at (595,0) size 72x1
  • trunk/LayoutTests/css2.1/20110323/abspos-replaced-width-margin-000-expected.txt

    r127052 r196244  
    1212  RenderBlock (relative positioned) {DIV} at (21,1) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    1313    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    14 layer at (-11,1) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     14layer at (-11,1) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    1515  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    1616layer at (41,2) size 686x1
     
    2222  RenderBlock (relative positioned) {DIV} at (21,3) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    2323    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    24 layer at (-11,3) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     24layer at (-11,3) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    2525  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    2626layer at (41,4) size 686x1
     
    3232  RenderBlock (relative positioned) {DIV} at (21,5) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    3333    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    34 layer at (-11,5) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     34layer at (-11,5) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    3535  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    3636layer at (41,6) size 686x1
     
    4242  RenderBlock (relative positioned) {DIV} at (21,7) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    4343    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    44 layer at (-11,7) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     44layer at (-11,7) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    4545  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    4646layer at (41,8) size 686x1
    4747  RenderBlock (relative positioned) {DIV} at (21,8) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    4848    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    49 layer at (-11,8) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     49layer at (-11,8) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    5050  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    5151layer at (41,9) size 686x1
    5252  RenderBlock (relative positioned) {DIV} at (21,9) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    5353    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    54 layer at (-11,9) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     54layer at (-11,9) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    5555  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    5656layer at (41,10) size 686x1
    5757  RenderBlock (relative positioned) {DIV} at (21,10) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    5858    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    59 layer at (-11,10) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     59layer at (-11,10) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    6060  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    6161layer at (41,11) size 686x1
    6262  RenderBlock (relative positioned) {DIV} at (21,11) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    6363    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    64 layer at (-11,11) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     64layer at (-11,11) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    6565  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    6666layer at (41,12) size 686x1
    6767  RenderBlock (relative positioned) {DIV} at (21,12) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    6868    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    69 layer at (-11,12) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     69layer at (-11,12) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    7070  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    7171layer at (41,13) size 686x1
    7272  RenderBlock (relative positioned) {DIV} at (21,13) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    7373    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    74 layer at (-11,13) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     74layer at (-11,13) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    7575  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    7676layer at (41,14) size 686x1
    7777  RenderBlock (relative positioned) {DIV} at (21,14) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    7878    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    79 layer at (-11,14) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     79layer at (-11,14) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    8080  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    8181layer at (41,15) size 686x1
    8282  RenderBlock (relative positioned) {DIV} at (21,15) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    8383    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    84 layer at (-11,15) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     84layer at (-11,15) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    8585  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    8686layer at (41,16) size 686x1
     
    137137  RenderBlock (relative positioned) {DIV} at (21,26) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    138138    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    139 layer at (-53,26) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     139layer at (-53,26) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    140140  RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    141141layer at (41,27) size 686x1
    142142  RenderBlock (relative positioned) {DIV} at (21,27) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    143143    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    144 layer at (-53,27) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     144layer at (-53,27) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    145145  RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    146146layer at (41,28) size 686x1
     
    157157  RenderBlock (relative positioned) {DIV} at (21,30) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    158158    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    159 layer at (-53,30) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     159layer at (-53,30) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    160160  RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    161161layer at (41,31) size 686x1
    162162  RenderBlock (relative positioned) {DIV} at (21,31) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    163163    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    164 layer at (-53,31) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     164layer at (-53,31) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    165165  RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    166166layer at (41,32) size 686x1
    167167  RenderBlock (relative positioned) {DIV} at (21,32) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    168168    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    169 layer at (-11,32) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     169layer at (-11,32) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    170170  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    171171layer at (41,33) size 686x1
    172172  RenderBlock (relative positioned) {DIV} at (21,33) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    173173    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    174 layer at (-11,33) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     174layer at (-11,33) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    175175  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    176176layer at (41,34) size 686x1
    177177  RenderBlock (relative positioned) {DIV} at (21,34) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    178178    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    179 layer at (-11,34) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     179layer at (-11,34) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    180180  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    181181layer at (41,35) size 686x1
    182182  RenderBlock (relative positioned) {DIV} at (21,35) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    183183    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    184 layer at (-11,35) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     184layer at (-11,35) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    185185  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    186186layer at (41,36) size 686x1
    187187  RenderBlock (relative positioned) {DIV} at (21,36) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    188188    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    189 layer at (-11,36) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     189layer at (-11,36) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    190190  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    191191layer at (41,37) size 686x1
    192192  RenderBlock (relative positioned) {DIV} at (21,37) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    193193    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    194 layer at (-11,37) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     194layer at (-11,37) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    195195  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    196196layer at (41,38) size 686x1
    197197  RenderBlock (relative positioned) {DIV} at (21,38) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    198198    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    199 layer at (-11,38) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     199layer at (-11,38) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    200200  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    201201layer at (41,39) size 686x1
    202202  RenderBlock (relative positioned) {DIV} at (21,39) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    203203    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    204 layer at (-11,39) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     204layer at (-11,39) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    205205  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    206206layer at (41,40) size 686x1
    207207  RenderBlock (relative positioned) {DIV} at (21,40) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    208208    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    209 layer at (-11,40) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     209layer at (-11,40) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    210210  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    211211layer at (41,41) size 686x1
    212212  RenderBlock (relative positioned) {DIV} at (21,41) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    213213    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    214 layer at (-11,41) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     214layer at (-11,41) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    215215  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    216216layer at (41,42) size 686x1
    217217  RenderBlock (relative positioned) {DIV} at (21,42) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    218218    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    219 layer at (-11,42) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     219layer at (-11,42) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    220220  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    221221layer at (41,43) size 686x1
    222222  RenderBlock (relative positioned) {DIV} at (21,43) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    223223    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    224 layer at (-11,43) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     224layer at (-11,43) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    225225  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    226226layer at (41,44) size 686x1
    227227  RenderBlock (relative positioned) {DIV} at (21,44) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    228228    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    229 layer at (-11,44) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     229layer at (-11,44) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    230230  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    231231layer at (41,45) size 686x1
    232232  RenderBlock (relative positioned) {DIV} at (21,45) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    233233    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    234 layer at (-11,45) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     234layer at (-11,45) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    235235  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    236236layer at (41,46) size 686x1
    237237  RenderBlock (relative positioned) {DIV} at (21,46) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    238238    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    239 layer at (-11,46) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     239layer at (-11,46) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    240240  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    241241layer at (41,47) size 686x1
    242242  RenderBlock (relative positioned) {DIV} at (21,47) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    243243    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    244 layer at (-11,47) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     244layer at (-11,47) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    245245  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    246246layer at (41,48) size 686x1
     
    297297  RenderBlock (relative positioned) {DIV} at (21,58) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    298298    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    299 layer at (-53,58) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     299layer at (-53,58) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    300300  RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    301301layer at (41,59) size 686x1
    302302  RenderBlock (relative positioned) {DIV} at (21,59) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    303303    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    304 layer at (-53,59) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     304layer at (-53,59) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    305305  RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    306306layer at (41,60) size 686x1
     
    317317  RenderBlock (relative positioned) {DIV} at (21,62) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    318318    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    319 layer at (-53,62) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     319layer at (-53,62) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    320320  RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    321321layer at (41,63) size 686x1
    322322  RenderBlock (relative positioned) {DIV} at (21,63) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    323323    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    324 layer at (-53,63) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     324layer at (-53,63) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    325325  RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    326326layer at (41,64) size 686x1
     
    457457  RenderBlock (relative positioned) {DIV} at (21,90) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    458458    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    459 layer at (-34,90) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     459layer at (-34,90) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    460460  RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    461461layer at (41,91) size 686x1
    462462  RenderBlock (relative positioned) {DIV} at (21,91) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    463463    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    464 layer at (-34,91) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     464layer at (-34,91) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    465465  RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    466466layer at (41,92) size 686x1
     
    477477  RenderBlock (relative positioned) {DIV} at (21,94) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    478478    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    479 layer at (-34,94) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     479layer at (-34,94) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    480480  RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    481481layer at (41,95) size 686x1
    482482  RenderBlock (relative positioned) {DIV} at (21,95) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    483483    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    484 layer at (-34,95) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     484layer at (-34,95) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    485485  RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    486486layer at (41,96) size 686x1
     
    617617  RenderBlock (relative positioned) {DIV} at (21,122) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    618618    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    619 layer at (-34,122) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     619layer at (-34,122) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    620620  RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    621621layer at (41,123) size 686x1
    622622  RenderBlock (relative positioned) {DIV} at (21,123) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    623623    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    624 layer at (-34,123) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     624layer at (-34,123) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    625625  RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    626626layer at (41,124) size 686x1
     
    637637  RenderBlock (relative positioned) {DIV} at (21,126) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    638638    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    639 layer at (-34,126) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     639layer at (-34,126) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    640640  RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    641641layer at (41,127) size 686x1
    642642  RenderBlock (relative positioned) {DIV} at (21,127) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    643643    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    644 layer at (-34,127) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     644layer at (-34,127) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    645645  RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    646646layer at (41,128) size 686x1
     
    19321932  RenderBlock (relative positioned) {DIV} at (21,385) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    19331933    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1934 layer at (-11,385) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1934layer at (-11,385) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    19351935  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    19361936layer at (41,386) size 686x1
     
    19421942  RenderBlock (relative positioned) {DIV} at (21,387) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    19431943    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1944 layer at (-11,387) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1944layer at (-11,387) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    19451945  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    19461946layer at (41,388) size 686x1
     
    19521952  RenderBlock (relative positioned) {DIV} at (21,389) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    19531953    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1954 layer at (-11,389) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1954layer at (-11,389) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    19551955  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    19561956layer at (41,390) size 686x1
     
    19621962  RenderBlock (relative positioned) {DIV} at (21,391) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    19631963    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1964 layer at (-11,391) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1964layer at (-11,391) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    19651965  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    19661966layer at (41,392) size 686x1
    19671967  RenderBlock (relative positioned) {DIV} at (21,392) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    19681968    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1969 layer at (-11,392) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1969layer at (-11,392) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    19701970  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    19711971layer at (41,393) size 686x1
    19721972  RenderBlock (relative positioned) {DIV} at (21,393) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    19731973    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1974 layer at (-11,393) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1974layer at (-11,393) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    19751975  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    19761976layer at (41,394) size 686x1
    19771977  RenderBlock (relative positioned) {DIV} at (21,394) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    19781978    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1979 layer at (-11,394) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1979layer at (-11,394) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    19801980  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    19811981layer at (41,395) size 686x1
    19821982  RenderBlock (relative positioned) {DIV} at (21,395) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    19831983    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1984 layer at (-11,395) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1984layer at (-11,395) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    19851985  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    19861986layer at (41,396) size 686x1
    19871987  RenderBlock (relative positioned) {DIV} at (21,396) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    19881988    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1989 layer at (-11,396) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1989layer at (-11,396) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    19901990  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    19911991layer at (41,397) size 686x1
    19921992  RenderBlock (relative positioned) {DIV} at (21,397) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    19931993    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1994 layer at (-11,397) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1994layer at (-11,397) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    19951995  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    19961996layer at (41,398) size 686x1
    19971997  RenderBlock (relative positioned) {DIV} at (21,398) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    19981998    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    1999 layer at (-11,398) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     1999layer at (-11,398) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    20002000  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    20012001layer at (41,399) size 686x1
    20022002  RenderBlock (relative positioned) {DIV} at (21,399) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    20032003    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2004 layer at (-11,399) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2004layer at (-11,399) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    20052005  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    20062006layer at (41,400) size 686x1
     
    20572057  RenderBlock (relative positioned) {DIV} at (21,410) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    20582058    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2059 layer at (-53,410) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2059layer at (-53,410) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    20602060  RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    20612061layer at (41,411) size 686x1
    20622062  RenderBlock (relative positioned) {DIV} at (21,411) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    20632063    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2064 layer at (-53,411) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2064layer at (-53,411) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    20652065  RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    20662066layer at (41,412) size 686x1
     
    20772077  RenderBlock (relative positioned) {DIV} at (21,414) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    20782078    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2079 layer at (-53,414) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2079layer at (-53,414) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    20802080  RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    20812081layer at (41,415) size 686x1
    20822082  RenderBlock (relative positioned) {DIV} at (21,415) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    20832083    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2084 layer at (-53,415) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2084layer at (-53,415) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    20852085  RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    20862086layer at (41,416) size 686x1
    20872087  RenderBlock (relative positioned) {DIV} at (21,416) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    20882088    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2089 layer at (-11,416) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2089layer at (-11,416) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    20902090  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    20912091layer at (41,417) size 686x1
    20922092  RenderBlock (relative positioned) {DIV} at (21,417) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    20932093    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2094 layer at (-11,417) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2094layer at (-11,417) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    20952095  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    20962096layer at (41,418) size 686x1
    20972097  RenderBlock (relative positioned) {DIV} at (21,418) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    20982098    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2099 layer at (-11,418) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2099layer at (-11,418) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    21002100  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    21012101layer at (41,419) size 686x1
    21022102  RenderBlock (relative positioned) {DIV} at (21,419) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    21032103    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2104 layer at (-11,419) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2104layer at (-11,419) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    21052105  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    21062106layer at (41,420) size 686x1
    21072107  RenderBlock (relative positioned) {DIV} at (21,420) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    21082108    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2109 layer at (-11,420) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2109layer at (-11,420) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    21102110  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    21112111layer at (41,421) size 686x1
    21122112  RenderBlock (relative positioned) {DIV} at (21,421) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    21132113    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2114 layer at (-11,421) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2114layer at (-11,421) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    21152115  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    21162116layer at (41,422) size 686x1
    21172117  RenderBlock (relative positioned) {DIV} at (21,422) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    21182118    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2119 layer at (-11,422) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2119layer at (-11,422) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    21202120  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    21212121layer at (41,423) size 686x1
    21222122  RenderBlock (relative positioned) {DIV} at (21,423) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    21232123    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2124 layer at (-11,423) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2124layer at (-11,423) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    21252125  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    21262126layer at (41,424) size 686x1
    21272127  RenderBlock (relative positioned) {DIV} at (21,424) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    21282128    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2129 layer at (-11,424) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2129layer at (-11,424) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    21302130  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    21312131layer at (41,425) size 686x1
    21322132  RenderBlock (relative positioned) {DIV} at (21,425) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    21332133    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2134 layer at (-11,425) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2134layer at (-11,425) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    21352135  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    21362136layer at (41,426) size 686x1
    21372137  RenderBlock (relative positioned) {DIV} at (21,426) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    21382138    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2139 layer at (-11,426) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2139layer at (-11,426) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    21402140  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    21412141layer at (41,427) size 686x1
    21422142  RenderBlock (relative positioned) {DIV} at (21,427) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    21432143    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2144 layer at (-11,427) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2144layer at (-11,427) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    21452145  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    21462146layer at (41,428) size 686x1
    21472147  RenderBlock (relative positioned) {DIV} at (21,428) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    21482148    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2149 layer at (-11,428) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2149layer at (-11,428) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    21502150  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    21512151layer at (41,429) size 686x1
    21522152  RenderBlock (relative positioned) {DIV} at (21,429) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    21532153    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2154 layer at (-11,429) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2154layer at (-11,429) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    21552155  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    21562156layer at (41,430) size 686x1
    21572157  RenderBlock (relative positioned) {DIV} at (21,430) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    21582158    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2159 layer at (-11,430) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2159layer at (-11,430) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    21602160  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    21612161layer at (41,431) size 686x1
    21622162  RenderBlock (relative positioned) {DIV} at (21,431) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    21632163    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2164 layer at (-11,431) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2164layer at (-11,431) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    21652165  RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    21662166layer at (41,432) size 686x1
     
    22172217  RenderBlock (relative positioned) {DIV} at (21,442) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    22182218    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2219 layer at (-53,442) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2219layer at (-53,442) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    22202220  RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    22212221layer at (41,443) size 686x1
    22222222  RenderBlock (relative positioned) {DIV} at (21,443) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    22232223    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2224 layer at (-53,443) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2224layer at (-53,443) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    22252225  RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    22262226layer at (41,444) size 686x1
     
    22372237  RenderBlock (relative positioned) {DIV} at (21,446) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    22382238    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2239 layer at (-53,446) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2239layer at (-53,446) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    22402240  RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    22412241layer at (41,447) size 686x1
    22422242  RenderBlock (relative positioned) {DIV} at (21,447) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    22432243    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2244 layer at (-53,447) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2244layer at (-53,447) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    22452245  RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    22462246layer at (41,448) size 686x1
     
    23772377  RenderBlock (relative positioned) {DIV} at (21,474) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    23782378    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2379 layer at (-34,474) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2379layer at (-34,474) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    23802380  RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    23812381layer at (41,475) size 686x1
    23822382  RenderBlock (relative positioned) {DIV} at (21,475) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    23832383    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2384 layer at (-34,475) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2384layer at (-34,475) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    23852385  RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    23862386layer at (41,476) size 686x1
     
    23972397  RenderBlock (relative positioned) {DIV} at (21,478) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    23982398    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2399 layer at (-34,478) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2399layer at (-34,478) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    24002400  RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    24012401layer at (41,479) size 686x1
    24022402  RenderBlock (relative positioned) {DIV} at (21,479) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    24032403    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2404 layer at (-34,479) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2404layer at (-34,479) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    24052405  RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    24062406layer at (41,480) size 686x1
     
    25372537  RenderBlock (relative positioned) {DIV} at (21,506) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    25382538    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2539 layer at (-34,506) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2539layer at (-34,506) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    25402540  RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    25412541layer at (41,507) size 686x1
    25422542  RenderBlock (relative positioned) {DIV} at (21,507) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    25432543    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2544 layer at (-34,507) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2544layer at (-34,507) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    25452545  RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    25462546layer at (41,508) size 686x1
     
    25572557  RenderBlock (relative positioned) {DIV} at (21,510) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    25582558    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2559 layer at (-34,510) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2559layer at (-34,510) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    25602560  RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
    25612561layer at (41,511) size 686x1
    25622562  RenderBlock (relative positioned) {DIV} at (21,511) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
    25632563    RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
    2564 layer at (-34,511) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
     2564layer at (-34,511) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
    25652565  RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
  • trunk/LayoutTests/css3/blending/blend-mode-isolation-turn-off-self-painting-layer2-expected.txt

    r177774 r196244  
    99layer at (8,50) size 100x100 scrollWidth 400
    1010  RenderBlock {DIV} at (0,34) size 100x100
    11 layer at (8,50) size 400x20 backgroundClip at (8,50) size 100x100 clip at (8,50) size 100x100 outlineClip at (8,50) size 100x100
     11layer at (8,50) size 400x20 backgroundClip at (8,50) size 100x100 clip at (8,50) size 100x100
    1212  RenderBlock (relative positioned) {DIV} at (0,0) size 400x20 [bgcolor=#00FF00]
  • trunk/LayoutTests/css3/blending/blend-mode-isolation-turn-on-self-painting-layer-expected.txt

    r177774 r196244  
    99layer at (8,50) size 100x100 scrollWidth 400 isolatesBlending
    1010  RenderBlock {DIV} at (0,34) size 100x100
    11 layer at (8,50) size 400x20 backgroundClip at (8,50) size 100x100 clip at (8,50) size 100x100 outlineClip at (8,50) size 100x100 blendMode: difference
     11layer at (8,50) size 400x20 backgroundClip at (8,50) size 100x100 clip at (8,50) size 100x100 blendMode: difference
    1212  RenderBlock {DIV} at (0,0) size 400x20 [bgcolor=#00FF00]
  • trunk/LayoutTests/fast/block/positioning/negative-rel-position-expected.txt

    r149088 r196244  
    44  RenderBlock {HTML} at (0,0) size 800x136
    55    RenderBody {BODY} at (8,8) size 784x120
    6 layer at (-30,8) size 880x120 backgroundClip at (0,0) size 850x585 clip at (0,0) size 850x585 outlineClip at (0,0) size 850x585
     6layer at (-30,8) size 880x120 backgroundClip at (0,0) size 850x585 clip at (0,0) size 850x585
    77  RenderBlock (relative positioned) {DIV} at (392,0) size 880x120 [bgcolor=#00FF00]
  • trunk/LayoutTests/fast/dynamic/staticY-expected.txt

    r149088 r196244  
    44  RenderBlock {HTML} at (0,0) size 800x508
    55    RenderBody {BODY} at (8,8) size 784x475
    6 layer at (8,-43) size 784x100 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
     6layer at (8,-43) size 784x100 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
    77  RenderBlock (relative positioned) {DIV} at (0,0) size 784x100
    88    RenderBlock {DIV} at (0,0) size 784x1
  • trunk/LayoutTests/fast/inline/absolute-positioned-block-in-centred-block-expected.txt

    r94492 r196244  
    55    RenderBody {BODY} at (8,8) size 784x584
    66      RenderBlock {DIV} at (0,0) size 784x0
    7 layer at (-142,540) size 200x50 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
     7layer at (-142,540) size 200x50 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
    88  RenderBlock (positioned) {DIV} at (-142,540) size 200x50 [bgcolor=#0000FF]
  • trunk/LayoutTests/fast/multicol/flipped-blocks-border-after-expected.txt

    r168076 r196244  
    77  RenderBlock {DIV} at (0,0) size 100x150 [bgcolor=#FF0000] [border: (50px solid #008000) none]
    88    RenderMultiColumnSet at (0,0) size 100x100
    9 layer at (8,-42) size 50x200 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
     9layer at (8,-42) size 50x200 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
    1010  RenderMultiColumnFlowThread at (0,0) size 50x200
    1111    RenderBlock {DIV} at (0,0) size 50x100 [bgcolor=#008000]
     
    2121  RenderBlock {DIV} at (0,300) size 150x100 [bgcolor=#FF0000] [border: none (50px solid #008000)]
    2222    RenderMultiColumnSet at (0,0) size 100x100
    23 layer at (-42,308) size 200x50 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
     23layer at (-42,308) size 200x50 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
    2424  RenderMultiColumnFlowThread at (0,0) size 200x50
    2525    RenderBlock {DIV} at (0,0) size 100x50 [bgcolor=#008000]
  • trunk/LayoutTests/fast/multicol/pagination-h-horizontal-bt-expected.txt

    r168046 r196244  
    22  RenderView at (0,0) size 800x585
    33    RenderMultiColumnSet at (0,0) size 800x585
    4 layer at (0,-337) size 800x922 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585 outlineClip at (0,0) size 1600x585
     4layer at (0,-337) size 800x922 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585
    55  RenderMultiColumnFlowThread at (0,0) size 800x922
    6 layer at (0,-337) size 800x922 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585 outlineClip at (0,0) size 1600x585
     6layer at (0,-337) size 800x922 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585
    77  RenderBlock {HTML} at (0,0) size 800x922
    88    RenderBody {BODY} at (8,8) size 784x906
  • trunk/LayoutTests/fast/multicol/pagination-h-horizontal-tb-expected.txt

    r168046 r196244  
    22  RenderView at (0,0) size 800x585
    33    RenderMultiColumnSet at (0,0) size 800x585
    4 layer at (0,0) size 800x922 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585 outlineClip at (0,0) size 1600x585
     4layer at (0,0) size 800x922 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585
    55  RenderMultiColumnFlowThread at (0,0) size 800x922
    6 layer at (0,0) size 800x922 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585 outlineClip at (0,0) size 1600x585
     6layer at (0,0) size 800x922 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585
    77  RenderBlock {HTML} at (0,0) size 800x922
    88    RenderBody {BODY} at (8,8) size 784x906
  • trunk/LayoutTests/fast/multicol/pagination-h-vertical-rl-expected.txt

    r168046 r196244  
    22  RenderView at (0,0) size 800x585
    33    RenderMultiColumnSet at (0,0) size 800x585
    4 layer at (-422,0) size 1222x585 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585 outlineClip at (0,0) size 1600x585
     4layer at (-422,0) size 1222x585 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585
    55  RenderMultiColumnFlowThread at (0,0) size 1222x585
    6 layer at (-422,0) size 1222x585 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585 outlineClip at (0,0) size 1600x585
     6layer at (-422,0) size 1222x585 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585
    77  RenderBlock {HTML} at (0,0) size 1222x585
    88    RenderBody {BODY} at (8,8) size 1206x569
  • trunk/LayoutTests/fast/multicol/pagination-v-horizontal-bt-expected.txt

    r168046 r196244  
    22  RenderView at (0,0) size 785x600
    33    RenderMultiColumnSet at (0,0) size 785x600
    4 layer at (0,-322) size 785x922 backgroundClip at (0,0) size 785x1200 clip at (0,0) size 785x1200 outlineClip at (0,0) size 785x1200
     4layer at (0,-322) size 785x922 backgroundClip at (0,0) size 785x1200 clip at (0,0) size 785x1200
    55  RenderMultiColumnFlowThread at (0,0) size 785x922
    6 layer at (0,-322) size 785x922 backgroundClip at (0,0) size 785x1200 clip at (0,0) size 785x1200 outlineClip at (0,0) size 785x1200
     6layer at (0,-322) size 785x922 backgroundClip at (0,0) size 785x1200 clip at (0,0) size 785x1200
    77  RenderBlock {HTML} at (0,0) size 785x922
    88    RenderBody {BODY} at (8,8) size 769x906
  • trunk/LayoutTests/fast/multicol/pagination-v-vertical-lr-expected.txt

    r168046 r196244  
    22  RenderView at (0,0) size 785x600
    33    RenderMultiColumnSet at (0,0) size 785x600
    4 layer at (0,0) size 1222x600 backgroundClip at (0,0) size 785x1200 clip at (0,0) size 785x1200 outlineClip at (0,0) size 785x1200
     4layer at (0,0) size 1222x600 backgroundClip at (0,0) size 785x1200 clip at (0,0) size 785x1200
    55  RenderMultiColumnFlowThread at (0,0) size 1222x600
    6 layer at (0,0) size 1222x600 backgroundClip at (0,0) size 785x1200 clip at (0,0) size 785x1200 outlineClip at (0,0) size 785x1200
     6layer at (0,0) size 1222x600 backgroundClip at (0,0) size 785x1200 clip at (0,0) size 785x1200
    77  RenderBlock {HTML} at (0,0) size 1222x600
    88    RenderBody {BODY} at (8,8) size 1206x584
  • trunk/LayoutTests/fast/multicol/pagination-v-vertical-rl-expected.txt

    r168046 r196244  
    22  RenderView at (0,0) size 785x600
    33    RenderMultiColumnSet at (0,0) size 785x600
    4 layer at (-437,0) size 1222x600 backgroundClip at (0,0) size 785x1200 clip at (0,0) size 785x1200 outlineClip at (0,0) size 785x1200
     4layer at (-437,0) size 1222x600 backgroundClip at (0,0) size 785x1200 clip at (0,0) size 785x1200
    55  RenderMultiColumnFlowThread at (0,0) size 1222x600
    6 layer at (-437,0) size 1222x600 backgroundClip at (0,0) size 785x1200 clip at (0,0) size 785x1200 outlineClip at (0,0) size 785x1200
     6layer at (-437,0) size 1222x600 backgroundClip at (0,0) size 785x1200 clip at (0,0) size 785x1200
    77  RenderBlock {HTML} at (0,0) size 1222x600
    88    RenderBody {BODY} at (8,8) size 1206x584
  • trunk/LayoutTests/fast/multicol/pagination/LeftToRight-tb-hittest-expected.txt

    r179027 r196244  
    22  RenderView at (0,0) size 800x585
    33    RenderMultiColumnSet at (0,0) size 800x585
    4 layer at (0,0) size 385x3122 backgroundClip at (0,0) size 2460x585 clip at (0,0) size 2460x585 outlineClip at (0,0) size 2460x585
     4layer at (0,0) size 385x3122 backgroundClip at (0,0) size 2460x585 clip at (0,0) size 2460x585
    55  RenderMultiColumnFlowThread at (0,0) size 385x3122
    6 layer at (0,0) size 385x3122 backgroundClip at (0,0) size 2460x585 clip at (0,0) size 2460x585 outlineClip at (0,0) size 2460x585
     6layer at (0,0) size 385x3122 backgroundClip at (0,0) size 2460x585 clip at (0,0) size 2460x585
    77  RenderBlock {HTML} at (0,0) size 385x3122 [border: (1px solid #008000)]
    88    RenderBody {BODY} at (4,4) size 377x3114 [border: (1px solid #000000)]
  • trunk/LayoutTests/fast/multicol/pagination/RightToLeft-rl-hittest-expected.txt

    r179027 r196244  
    22  RenderView at (0,0) size 800x585
    33    RenderMultiColumnSet at (0,0) size 800x585
    4 layer at (-1294,0) size 2094x585 backgroundClip at (0,0) size 2460x585 clip at (0,0) size 2460x585 outlineClip at (0,0) size 2460x585
     4layer at (-1294,0) size 2094x585 backgroundClip at (0,0) size 2460x585 clip at (0,0) size 2460x585
    55  RenderMultiColumnFlowThread at (0,0) size 2094x585
    6 layer at (-1294,0) size 2094x585 backgroundClip at (0,0) size 2460x585 clip at (0,0) size 2460x585 outlineClip at (0,0) size 2460x585
     6layer at (-1294,0) size 2094x585 backgroundClip at (0,0) size 2460x585 clip at (0,0) size 2460x585
    77  RenderBlock {HTML} at (0,0) size 2094x585 [border: (1px solid #008000)]
    88    RenderBody {BODY} at (4,4) size 2086x577 [border: (1px solid #000000)]
  • trunk/LayoutTests/fast/multicol/progression-reverse-expected.txt

    r168076 r196244  
    6565  RenderBlock {DIV} at (16,0) size 35x71 [border: (3px solid #C0C0C0) (2px solid #C0C0C0) (4px solid #C0C0C0) (1px solid #C0C0C0)]
    6666    RenderMultiColumnSet at (2,3) size 32x64
    67 layer at (-39,653) size 96x64 backgroundClip at (0,0) size 785x856 clip at (0,0) size 785x856 outlineClip at (0,0) size 785x856
     67layer at (-39,653) size 96x64 backgroundClip at (0,0) size 785x856 clip at (0,0) size 785x856
    6868  RenderMultiColumnFlowThread at (2,3) size 96x64
    6969    RenderBlock {DIV} at (0,0) size 24x64 [bgcolor=#770077] [border: (2px dotted #FFFFFF) (4px dotted #000000) none]
     
    7474  RenderBlock {DIV} at (0,119) size 35x71 [border: (3px solid #C0C0C0) (2px solid #C0C0C0) (4px solid #C0C0C0) (1px solid #C0C0C0)]
    7575    RenderMultiColumnSet at (2,3) size 32x64
    76 layer at (-55,772) size 96x30 backgroundClip at (0,0) size 785x856 clip at (0,0) size 785x856 outlineClip at (0,0) size 785x856
     76layer at (-55,772) size 96x30 backgroundClip at (0,0) size 785x856 clip at (0,0) size 785x856
    7777  RenderMultiColumnFlowThread at (2,3) size 96x30
    7878    RenderBlock {DIV} at (0,0) size 24x30 [bgcolor=#770077] [border: (2px dotted #FFFFFF) (4px dotted #000000) none]
  • trunk/LayoutTests/fast/multicol/vertical-rl/rules-with-border-before-expected.txt

    r168076 r196244  
    77  RenderBlock {DIV} at (0,0) size 150x100 [border: none (50px solid #0000FF) none]
    88    RenderMultiColumnSet at (50,0) size 100x100
    9 layer at (-92,8) size 200x25 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
     9layer at (-92,8) size 200x25 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
    1010  RenderMultiColumnFlowThread at (50,0) size 200x25
    1111    RenderBlock {DIV} at (0,0) size 200x25
     
    1313  RenderBlock {DIV} at (0,100) size 150x100 [border: none (50px solid #0000FF)]
    1414    RenderMultiColumnSet at (0,0) size 100x100
    15 layer at (-42,108) size 200x25 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
     15layer at (-42,108) size 200x25 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
    1616  RenderMultiColumnFlowThread at (0,0) size 200x25
    1717    RenderBlock {DIV} at (0,0) size 200x25
  • trunk/LayoutTests/fast/overflow/overflow-update-transform-expected.txt

    r149088 r196244  
    99  RenderBlock {DIV} at (10,262) size 252x252 [border: (1px solid #000000)]
    1010    RenderText {#text} at (0,0) size 0x0
    11 layer at (19,11) size 250x250 backgroundClip at (19,11) size 235x235 clip at (19,11) size 235x235 outlineClip at (19,11) size 235x235
     11layer at (19,11) size 250x250 backgroundClip at (19,11) size 235x235 clip at (19,11) size 235x235
    1212  RenderBlock {DIV} at (1,1) size 250x250 [bgcolor=#C0C0C0]
    13 layer at (19,273) size 250x250 backgroundClip at (19,273) size 235x235 clip at (19,273) size 235x235 outlineClip at (19,273) size 235x235
     13layer at (19,273) size 250x250 backgroundClip at (19,273) size 235x235 clip at (19,273) size 235x235
    1414  RenderImage {IMG} at (1,1) size 250x250 [bgcolor=#C0C0C0]
  • trunk/LayoutTests/fast/overflow/position-relative-expected.txt

    r149088 r196244  
    44  RenderBlock {HTML} at (0,0) size 800x600
    55    RenderBody {BODY} at (8,8) size 784x584
    6 layer at (-92,8) size 784x100 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
     6layer at (-92,8) size 784x100 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
    77  RenderBlock (relative positioned) {DIV} at (0,0) size 784x100
    88layer at (8,8) size 100x100
  • trunk/LayoutTests/fast/repaint/focus-ring-expected.txt

    r196222 r196244  
    55    RenderBody {BODY} at (8,20) size 784x560
    66      RenderBlock {DIV} at (20,0) size 100x100 [bgcolor=#FFFFE0]
    7 layer at (28,148) size 100x100 backgroundClip at (18,138) size 60x60 clip at (18,138) size 60x60 outlineClip at (18,138) size 60x60
     7layer at (28,148) size 100x100 backgroundClip at (18,138) size 60x60 clip at (18,138) size 60x60
    88  RenderBlock (positioned) {DIV} at (28,148) size 100x100 [bgcolor=#FFFFE0]
  • trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-cell-painting-expected.txt

    r153089 r196244  
    5656      RenderText {#text} at (10,10) size 70x10
    5757        text run at (10,10) width 70: "XXXXXXX"
    58 layer at (18,198) size 70x10 backgroundClip at (18,198) size 50x40 clip at (18,198) size 50x40 outlineClip at (18,198) size 50x40
     58layer at (18,198) size 70x10 backgroundClip at (18,198) size 50x40 clip at (18,198) size 50x40
    5959  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    6060    RenderText {#text} at (10,10) size 70x10
    6161      text run at (10,10) width 70: "XXXXXXX"
    62 layer at (18,258) size 70x10 backgroundClip at (18,258) size 50x40 clip at (18,258) size 50x40 outlineClip at (18,258) size 50x40
     62layer at (18,258) size 70x10 backgroundClip at (18,258) size 50x40 clip at (18,258) size 50x40
    6363  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    6464    RenderText {#text} at (10,10) size 70x10
     
    6666layer at (18,318) size 50x40
    6767  RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    68 layer at (18,318) size 70x10 backgroundClip at (18,318) size 50x40 clip at (18,318) size 50x40 outlineClip at (18,318) size 50x40
     68layer at (18,318) size 70x10 backgroundClip at (18,318) size 50x40 clip at (18,318) size 50x40
    6969  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    7070    RenderText {#text} at (10,10) size 70x10
     
    7272layer at (18,378) size 50x40
    7373  RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    74 layer at (18,378) size 70x10 backgroundClip at (18,378) size 50x40 clip at (18,378) size 50x40 outlineClip at (18,378) size 50x40
     74layer at (18,378) size 70x10 backgroundClip at (18,378) size 50x40 clip at (18,378) size 50x40
    7575  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    7676    RenderText {#text} at (10,10) size 70x10
     
    7878layer at (18,438) size 50x40
    7979  RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    80 layer at (18,438) size 70x10 backgroundClip at (18,438) size 50x40 clip at (18,438) size 50x40 outlineClip at (18,438) size 50x40
     80layer at (18,438) size 70x10 backgroundClip at (18,438) size 50x40 clip at (18,438) size 50x40
    8181  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    8282    RenderText {#text} at (10,10) size 70x10
     
    8484layer at (18,498) size 50x40
    8585  RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    86 layer at (18,498) size 70x10 backgroundClip at (18,498) size 50x40 clip at (18,498) size 50x40 outlineClip at (18,498) size 50x40
     86layer at (18,498) size 70x10 backgroundClip at (18,498) size 50x40 clip at (18,498) size 50x40
    8787  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    8888    RenderText {#text} at (10,10) size 70x10
  • trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-cell-painting-table-self-painting-layer-expected.txt

    r153089 r196244  
    3535      RenderTableRow {DIV} at (0,0) size 50x40
    3636        RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    37 layer at (18,198) size 70x10 backgroundClip at (18,198) size 50x40 clip at (18,198) size 50x40 outlineClip at (18,198) size 50x40
     37layer at (18,198) size 70x10 backgroundClip at (18,198) size 50x40 clip at (18,198) size 50x40
    3838  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    3939    RenderText {#text} at (10,10) size 70x10
     
    4444      RenderTableRow {DIV} at (0,0) size 50x40
    4545        RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    46 layer at (18,258) size 70x10 backgroundClip at (18,258) size 50x40 clip at (18,258) size 50x40 outlineClip at (18,258) size 50x40
     46layer at (18,258) size 70x10 backgroundClip at (18,258) size 50x40 clip at (18,258) size 50x40
    4747  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    4848    RenderText {#text} at (10,10) size 70x10
     
    5454layer at (18,318) size 50x40
    5555  RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    56 layer at (18,318) size 70x10 backgroundClip at (18,318) size 50x40 clip at (18,318) size 50x40 outlineClip at (18,318) size 50x40
     56layer at (18,318) size 70x10 backgroundClip at (18,318) size 50x40 clip at (18,318) size 50x40
    5757  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    5858    RenderText {#text} at (10,10) size 70x10
     
    6464layer at (18,378) size 50x40
    6565  RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    66 layer at (18,378) size 70x10 backgroundClip at (18,378) size 50x40 clip at (18,378) size 50x40 outlineClip at (18,378) size 50x40
     66layer at (18,378) size 70x10 backgroundClip at (18,378) size 50x40 clip at (18,378) size 50x40
    6767  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    6868    RenderText {#text} at (10,10) size 70x10
     
    7474layer at (18,438) size 50x40
    7575  RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    76 layer at (18,438) size 70x10 backgroundClip at (18,438) size 50x40 clip at (18,438) size 50x40 outlineClip at (18,438) size 50x40
     76layer at (18,438) size 70x10 backgroundClip at (18,438) size 50x40 clip at (18,438) size 50x40
    7777  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    7878    RenderText {#text} at (10,10) size 70x10
     
    8484layer at (18,498) size 50x40
    8585  RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    86 layer at (18,498) size 70x10 backgroundClip at (18,498) size 50x40 clip at (18,498) size 50x40 outlineClip at (18,498) size 50x40
     86layer at (18,498) size 70x10 backgroundClip at (18,498) size 50x40 clip at (18,498) size 50x40
    8787  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    8888    RenderText {#text} at (10,10) size 70x10
  • trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-section-layer-painting-expected.txt

    r153089 r196244  
    4949    RenderTableRow {DIV} at (0,0) size 50x40
    5050      RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    51 layer at (18,198) size 70x10 backgroundClip at (18,198) size 50x40 clip at (18,198) size 50x40 outlineClip at (18,198) size 50x40
     51layer at (18,198) size 70x10 backgroundClip at (18,198) size 50x40 clip at (18,198) size 50x40
    5252  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    5353    RenderText {#text} at (10,10) size 70x10
     
    5757    RenderTableRow {DIV} at (0,0) size 50x40
    5858      RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    59 layer at (18,258) size 70x10 backgroundClip at (18,258) size 50x40 clip at (18,258) size 50x40 outlineClip at (18,258) size 50x40
     59layer at (18,258) size 70x10 backgroundClip at (18,258) size 50x40 clip at (18,258) size 50x40
    6060  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    6161    RenderText {#text} at (10,10) size 70x10
     
    6666layer at (18,318) size 50x40
    6767  RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    68 layer at (18,318) size 70x10 backgroundClip at (18,318) size 50x40 clip at (18,318) size 50x40 outlineClip at (18,318) size 50x40
     68layer at (18,318) size 70x10 backgroundClip at (18,318) size 50x40 clip at (18,318) size 50x40
    6969  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    7070    RenderText {#text} at (10,10) size 70x10
     
    7575layer at (18,378) size 50x40
    7676  RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    77 layer at (18,378) size 70x10 backgroundClip at (18,378) size 50x40 clip at (18,378) size 50x40 outlineClip at (18,378) size 50x40
     77layer at (18,378) size 70x10 backgroundClip at (18,378) size 50x40 clip at (18,378) size 50x40
    7878  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    7979    RenderText {#text} at (10,10) size 70x10
     
    8484layer at (18,438) size 50x40
    8585  RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    86 layer at (18,438) size 70x10 backgroundClip at (18,438) size 50x40 clip at (18,438) size 50x40 outlineClip at (18,438) size 50x40
     86layer at (18,438) size 70x10 backgroundClip at (18,438) size 50x40 clip at (18,438) size 50x40
    8787  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    8888    RenderText {#text} at (10,10) size 70x10
     
    9393layer at (18,498) size 50x40
    9494  RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    95 layer at (18,498) size 70x10 backgroundClip at (18,498) size 50x40 clip at (18,498) size 50x40 outlineClip at (18,498) size 50x40
     95layer at (18,498) size 70x10 backgroundClip at (18,498) size 50x40 clip at (18,498) size 50x40
    9696  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    9797    RenderText {#text} at (10,10) size 70x10
  • trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-section-layer-table-self-painting-layer-expected.txt

    r153089 r196244  
    3939    RenderTableRow {DIV} at (0,0) size 50x40
    4040      RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    41 layer at (18,198) size 70x10 backgroundClip at (18,198) size 50x40 clip at (18,198) size 50x40 outlineClip at (18,198) size 50x40
     41layer at (18,198) size 70x10 backgroundClip at (18,198) size 50x40 clip at (18,198) size 50x40
    4242  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    4343    RenderText {#text} at (10,10) size 70x10
     
    4949    RenderTableRow {DIV} at (0,0) size 50x40
    5050      RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    51 layer at (18,258) size 70x10 backgroundClip at (18,258) size 50x40 clip at (18,258) size 50x40 outlineClip at (18,258) size 50x40
     51layer at (18,258) size 70x10 backgroundClip at (18,258) size 50x40 clip at (18,258) size 50x40
    5252  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    5353    RenderText {#text} at (10,10) size 70x10
     
    6060layer at (18,318) size 50x40
    6161  RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    62 layer at (18,318) size 70x10 backgroundClip at (18,318) size 50x40 clip at (18,318) size 50x40 outlineClip at (18,318) size 50x40
     62layer at (18,318) size 70x10 backgroundClip at (18,318) size 50x40 clip at (18,318) size 50x40
    6363  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    6464    RenderText {#text} at (10,10) size 70x10
     
    7171layer at (18,378) size 50x40
    7272  RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    73 layer at (18,378) size 70x10 backgroundClip at (18,378) size 50x40 clip at (18,378) size 50x40 outlineClip at (18,378) size 50x40
     73layer at (18,378) size 70x10 backgroundClip at (18,378) size 50x40 clip at (18,378) size 50x40
    7474  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    7575    RenderText {#text} at (10,10) size 70x10
     
    8282layer at (18,438) size 50x40
    8383  RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    84 layer at (18,438) size 70x10 backgroundClip at (18,438) size 50x40 clip at (18,438) size 50x40 outlineClip at (18,438) size 50x40
     84layer at (18,438) size 70x10 backgroundClip at (18,438) size 50x40 clip at (18,438) size 50x40
    8585  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    8686    RenderText {#text} at (10,10) size 70x10
     
    9393layer at (18,498) size 50x40
    9494  RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    95 layer at (18,498) size 70x10 backgroundClip at (18,498) size 50x40 clip at (18,498) size 50x40 outlineClip at (18,498) size 50x40
     95layer at (18,498) size 70x10 backgroundClip at (18,498) size 50x40 clip at (18,498) size 50x40
    9696  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    9797    RenderText {#text} at (10,10) size 70x10
  • trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-section-self-painting-layer-painting-expected.txt

    r153089 r196244  
    4848    RenderTableRow {DIV} at (0,0) size 50x40
    4949      RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    50 layer at (18,258) size 70x10 backgroundClip at (18,258) size 50x40 clip at (18,258) size 50x40 outlineClip at (18,258) size 50x40
     50layer at (18,258) size 70x10 backgroundClip at (18,258) size 50x40 clip at (18,258) size 50x40
    5151  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    5252    RenderText {#text} at (10,10) size 70x10
     
    5959layer at (18,318) size 50x40
    6060  RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    61 layer at (18,318) size 70x10 backgroundClip at (18,318) size 50x40 clip at (18,318) size 50x40 outlineClip at (18,318) size 50x40
     61layer at (18,318) size 70x10 backgroundClip at (18,318) size 50x40 clip at (18,318) size 50x40
    6262  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    6363    RenderText {#text} at (10,10) size 70x10
     
    9090layer at (18,498) size 50x40
    9191  RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    92 layer at (18,498) size 70x10 backgroundClip at (18,498) size 50x40 clip at (18,498) size 50x40 outlineClip at (18,498) size 50x40
     92layer at (18,498) size 70x10 backgroundClip at (18,498) size 50x40 clip at (18,498) size 50x40
    9393  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    9494    RenderText {#text} at (10,10) size 70x10
  • trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-section-self-painting-layer-table-self-painting-layer-expected.txt

    r153089 r196244  
    4848    RenderTableRow {DIV} at (0,0) size 50x40
    4949      RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    50 layer at (18,258) size 70x10 backgroundClip at (18,258) size 50x40 clip at (18,258) size 50x40 outlineClip at (18,258) size 50x40
     50layer at (18,258) size 70x10 backgroundClip at (18,258) size 50x40 clip at (18,258) size 50x40
    5151  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    5252    RenderText {#text} at (10,10) size 70x10
     
    5959layer at (18,318) size 50x40
    6060  RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    61 layer at (18,318) size 70x10 backgroundClip at (18,318) size 50x40 clip at (18,318) size 50x40 outlineClip at (18,318) size 50x40
     61layer at (18,318) size 70x10 backgroundClip at (18,318) size 50x40 clip at (18,318) size 50x40
    6262  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    6363    RenderText {#text} at (10,10) size 70x10
     
    9090layer at (18,498) size 50x40
    9191  RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
    92 layer at (18,498) size 70x10 backgroundClip at (18,498) size 50x40 clip at (18,498) size 50x40 outlineClip at (18,498) size 50x40
     92layer at (18,498) size 70x10 backgroundClip at (18,498) size 50x40 clip at (18,498) size 50x40
    9393  RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
    9494    RenderText {#text} at (10,10) size 70x10
  • trunk/LayoutTests/platform/mac/compositing/geometry/clipping-foreground-expected.txt

    r177774 r196244  
    3535      text run at (22,62) width 85: "Front"
    3636layer at (392,102) size 200x200 clip at (402,112) size 180x180 scrollWidth 230 scrollHeight 230 layerType: background only
    37 layer at (352,62) size 150x150 backgroundClip at (402,112) size 180x180 clip at (402,112) size 180x180 outlineClip at (402,112) size 180x180
     37layer at (352,62) size 150x150 backgroundClip at (402,112) size 180x180 clip at (402,112) size 180x180
    3838  RenderBlock (positioned) zI: -1 {DIV} at (-40,-40) size 150x150 [color=#808080] [bgcolor=#C86464] [border: (2px solid #000000)]
    3939    RenderText zI: -1 {#text} at (22,22) size 107x40
    4040      text run at (22,22) width 107: "Behind"
    4141    RenderText zI: -1 {#text} at (0,0) size 0x0
    42 layer at (374,144) size 100x100 backgroundClip at (402,112) size 180x180 clip at (402,112) size 180x180 outlineClip at (402,112) size 180x180
     42layer at (374,144) size 100x100 backgroundClip at (402,112) size 180x180 clip at (402,112) size 180x180
    4343  RenderBlock (positioned) {DIV} at (22,82) size 100x100 [bgcolor=#008000] [border: (2px solid #000000)]
    4444    RenderText {#text} at (22,22) size 56x44
     
    5252    RenderText {#text} at (0,0) size 0x0
    5353    RenderText {#text} at (0,0) size 0x0
    54 layer at (482,192) size 150x150 backgroundClip at (402,112) size 180x180 clip at (402,112) size 180x180 outlineClip at (402,112) size 180x180
     54layer at (482,192) size 150x150 backgroundClip at (402,112) size 180x180 clip at (402,112) size 180x180
    5555  RenderBlock (positioned) zI: 1 {DIV} at (90,90) size 150x150 [color=#808080] [bgcolor=#C8C880] [border: (2px solid #000000)]
    5656    RenderText zI: 1 {#text} at (22,22) size 85x80
  • trunk/LayoutTests/platform/mac/compositing/geometry/root-layer-update-expected.txt

    r177774 r196244  
    1313layer at (350,1) size 100x100
    1414  RenderBlock (positioned) {DIV} at (350,1) size 100x100 [bgcolor=#FF0000]
    15 layer at (-100,0) size 300x100 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
     15layer at (-100,0) size 300x100 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
    1616  RenderBlock (positioned) {DIV} at (-100,0) size 300x100 [bgcolor=#808080]
    1717layer at (100,0) size 600x102
  • trunk/LayoutTests/platform/mac/compositing/overflow/ancestor-overflow-expected.txt

    r177774 r196244  
    3030layer at (214,256) size 142x142 clip at (215,257) size 140x140
    3131  RenderBlock {DIV} at (206,206) size 142x142 [border: (1px solid #000000)]
    32 layer at (50,92) size 100x150 backgroundClip at (29,71) size 140x140 clip at (29,71) size 140x140 outlineClip at (29,71) size 140x140
     32layer at (50,92) size 100x150 backgroundClip at (29,71) size 140x140 clip at (29,71) size 140x140
    3333  RenderBlock {DIV} at (11,11) size 100x150 [bgcolor=#808080]
    3434layer at (225,81) size 122x122
     
    4040layer at (411,81) size 122x122
    4141  RenderBlock (positioned) {DIV} at (11,11) size 122x122 [border: (1px solid #0000FF)]
    42 layer at (422,92) size 100x150 backgroundClip at (401,71) size 140x140 clip at (401,71) size 140x140 outlineClip at (401,71) size 140x140
     42layer at (422,92) size 100x150 backgroundClip at (401,71) size 140x140 clip at (401,71) size 140x140
    4343  RenderBlock {DIV} at (11,11) size 100x150 [bgcolor=#808080]
    44 layer at (50,278) size 100x150 backgroundClip at (29,257) size 140x140 clip at (29,257) size 140x140 outlineClip at (29,257) size 140x140
     44layer at (50,278) size 100x150 backgroundClip at (29,257) size 140x140 clip at (29,257) size 140x140
    4545  RenderBlock {DIV} at (11,11) size 100x150 [bgcolor=#808080]
    4646layer at (225,267) size 122x122
     
    5252layer at (411,267) size 122x122
    5353  RenderBlock (positioned) {DIV} at (11,11) size 122x122 [border: (1px solid #0000FF)]
    54 layer at (422,278) size 100x150 backgroundClip at (401,257) size 140x140 clip at (401,257) size 140x140 outlineClip at (401,257) size 140x140
     54layer at (422,278) size 100x150 backgroundClip at (401,257) size 140x140 clip at (401,257) size 140x140
    5555  RenderBlock {DIV} at (11,11) size 100x150 [bgcolor=#808080]
  • trunk/LayoutTests/platform/mac/compositing/overflow/nested-scrolling-expected.txt

    r177774 r196244  
    3737        text run at (0,106) width 651: "fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt"
    3838        text run at (0,139) width 174: "mollit anim id est laborum."
    39 layer at (19,469) size 602x402 backgroundClip at (19,469) size 602x343 clip at (20,470) size 585x342 outlineClip at (9,27) size 685x785 scrollHeight 508
     39layer at (19,469) size 602x402 backgroundClip at (19,469) size 602x343 clip at (20,470) size 585x342 scrollHeight 508
    4040  RenderBlock {DIV} at (11,443) size 602x402 [border: (1px solid #000000)]
    4141    RenderBlock {P} at (1,17) size 585x198
  • trunk/LayoutTests/platform/mac/compositing/overflow/overflow-scroll-expected.txt

    r177774 r196244  
    3737layer at (194,60) size 152x152 clip at (195,61) size 135x135 scrollY 50 scrollWidth 210 scrollHeight 510
    3838  RenderBlock {DIV} at (186,10) size 152x152 [border: (1px solid #000000)]
    39 layer at (19,11) size 210x510 backgroundClip at (19,61) size 135x135 clip at (19,61) size 135x135 outlineClip at (19,61) size 135x135
     39layer at (19,11) size 210x510 backgroundClip at (19,61) size 135x135 clip at (19,61) size 135x135
    4040  RenderBlock {DIV} at (1,1) size 210x510 [bgcolor=#808080]
    4141    RenderBlock {P} at (5,29) size 200x56
     
    4343        text run at (0,0) width 192: "This is the inner div"
    4444        text run at (0,28) width 111: "that scrolls."
    45 layer at (195,11) size 210x510 backgroundClip at (195,61) size 135x135 clip at (195,61) size 135x135 outlineClip at (195,61) size 135x135
     45layer at (195,11) size 210x510 backgroundClip at (195,61) size 135x135 clip at (195,61) size 135x135
    4646  RenderBlock (relative positioned) {DIV} at (1,1) size 210x510 [bgcolor=#808080]
    4747    RenderBlock {P} at (5,29) size 200x56
     
    5151layer at (370,60) size 152x152 clip at (371,61) size 135x135 scrollY 50 scrollWidth 210 scrollHeight 510
    5252  RenderBlock (relative positioned) {DIV} at (362,10) size 152x152 [border: (1px solid #000000)]
    53 layer at (371,11) size 210x510 backgroundClip at (371,61) size 135x135 clip at (371,61) size 135x135 outlineClip at (371,61) size 135x135
     53layer at (371,11) size 210x510 backgroundClip at (371,61) size 135x135 clip at (371,61) size 135x135
    5454  RenderBlock {DIV} at (1,1) size 210x510 [bgcolor=#808080]
    5555    RenderBlock {P} at (5,29) size 200x56
     
    5959layer at (546,60) size 152x152 clip at (547,61) size 135x135 scrollY 50 scrollWidth 210 scrollHeight 510
    6060  RenderBlock (relative positioned) {DIV} at (538,10) size 152x152 [border: (1px solid #000000)]
    61 layer at (547,11) size 210x510 backgroundClip at (547,61) size 135x135 clip at (547,61) size 135x135 outlineClip at (547,61) size 135x135
     61layer at (547,11) size 210x510 backgroundClip at (547,61) size 135x135 clip at (547,61) size 135x135
    6262  RenderBlock (relative positioned) {DIV} at (1,1) size 210x510 [bgcolor=#808080]
    6363    RenderBlock {P} at (5,29) size 200x56
     
    7474layer at (194,236) size 152x152 clip at (195,237) size 135x135 scrollY 50 scrollWidth 210 scrollHeight 510
    7575  RenderBlock {DIV} at (186,186) size 152x152 [border: (1px solid #000000)]
    76 layer at (195,187) size 210x510 backgroundClip at (195,237) size 135x135 clip at (195,237) size 135x135 outlineClip at (195,237) size 135x135
     76layer at (195,187) size 210x510 backgroundClip at (195,237) size 135x135 clip at (195,237) size 135x135
    7777  RenderBlock (relative positioned) {DIV} at (1,1) size 210x510 [bgcolor=#808080]
    7878    RenderBlock {P} at (5,29) size 200x56
     
    8282layer at (370,236) size 152x152 clip at (371,237) size 135x135 scrollY 50 scrollWidth 210 scrollHeight 510
    8383  RenderBlock {DIV} at (362,186) size 152x152 [border: (1px solid #000000)]
    84 layer at (371,187) size 210x510 backgroundClip at (371,237) size 135x135 clip at (371,237) size 135x135 outlineClip at (371,237) size 135x135
     84layer at (371,187) size 210x510 backgroundClip at (371,237) size 135x135 clip at (371,237) size 135x135
    8585  RenderBlock {DIV} at (1,1) size 210x510 [bgcolor=#808080]
    8686    RenderBlock {P} at (5,29) size 200x56
     
    9090layer at (546,236) size 152x152 clip at (547,237) size 135x135 scrollY 50 scrollWidth 210 scrollHeight 510
    9191  RenderBlock {DIV} at (538,186) size 152x152 [border: (1px solid #000000)]
    92 layer at (547,187) size 210x510 backgroundClip at (547,237) size 135x135 clip at (547,237) size 135x135 outlineClip at (547,237) size 135x135
     92layer at (547,187) size 210x510 backgroundClip at (547,237) size 135x135 clip at (547,237) size 135x135
    9393  RenderBlock (relative positioned) {DIV} at (1,1) size 210x510 [bgcolor=#808080]
    9494    RenderBlock {P} at (5,29) size 200x56
     
    105105layer at (194,412) size 152x152 clip at (195,413) size 135x135 scrollY 50 scrollWidth 210 scrollHeight 510
    106106  RenderBlock (relative positioned) {DIV} at (186,362) size 152x152 [border: (1px solid #000000)]
    107 layer at (195,363) size 210x510 backgroundClip at (195,413) size 135x135 clip at (195,413) size 135x135 outlineClip at (195,413) size 135x135
     107layer at (195,363) size 210x510 backgroundClip at (195,413) size 135x135 clip at (195,413) size 135x135
    108108  RenderBlock (relative positioned) {DIV} at (1,1) size 210x510 [bgcolor=#808080]
    109109    RenderBlock {P} at (5,29) size 200x56
     
    113113layer at (370,412) size 152x152 clip at (371,413) size 135x135 scrollY 50 scrollWidth 210 scrollHeight 510
    114114  RenderBlock (relative positioned) {DIV} at (362,362) size 152x152 [border: (1px solid #000000)]
    115 layer at (371,363) size 210x510 backgroundClip at (371,413) size 135x135 clip at (371,413) size 135x135 outlineClip at (371,413) size 135x135
     115layer at (371,363) size 210x510 backgroundClip at (371,413) size 135x135 clip at (371,413) size 135x135
    116116  RenderBlock {DIV} at (1,1) size 210x510 [bgcolor=#808080]
    117117    RenderBlock {P} at (5,29) size 200x56
     
    121121layer at (546,412) size 152x152 clip at (547,413) size 135x135 scrollY 50 scrollWidth 210 scrollHeight 510
    122122  RenderBlock (relative positioned) {DIV} at (538,362) size 152x152 [border: (1px solid #000000)]
    123 layer at (547,363) size 210x510 backgroundClip at (547,413) size 135x135 clip at (547,413) size 135x135 outlineClip at (547,413) size 135x135
     123layer at (547,363) size 210x510 backgroundClip at (547,413) size 135x135 clip at (547,413) size 135x135
    124124  RenderBlock (relative positioned) {DIV} at (1,1) size 210x510 [bgcolor=#808080]
    125125    RenderBlock {P} at (5,29) size 200x56
  • trunk/LayoutTests/platform/mac/compositing/overflow/parent-overflow-expected.txt

    r177774 r196244  
    1515layer at (28,70) size 122x122 clip at (29,71) size 120x120 scrollHeight 320
    1616  RenderBlock {DIV} at (20,20) size 122x122 [border: (1px solid #000000)]
    17 layer at (39,81) size 100x300 backgroundClip at (29,71) size 120x120 clip at (29,71) size 120x120 outlineClip at (29,71) size 120x120
     17layer at (39,81) size 100x300 backgroundClip at (29,71) size 120x120 clip at (29,71) size 120x120
    1818  RenderBlock {DIV} at (11,11) size 100x300 [bgcolor=#808080]
    1919layer at (194,70) size 122x122 clip at (195,71) size 120x120 scrollHeight 320
    2020  RenderBlock (relative positioned) {DIV} at (186,20) size 122x122 [border: (1px solid #000000)]
    21 layer at (205,81) size 100x300 backgroundClip at (195,71) size 120x120 clip at (195,71) size 120x120 outlineClip at (195,71) size 120x120
     21layer at (205,81) size 100x300 backgroundClip at (195,71) size 120x120 clip at (195,71) size 120x120
    2222  RenderBlock {DIV} at (11,11) size 100x300 [bgcolor=#808080]
    2323layer at (360,70) size 122x122 clip at (361,71) size 120x120 scrollHeight 320
    2424  RenderBlock (relative positioned) {DIV} at (352,20) size 122x122 [border: (1px solid #000000)]
    25 layer at (371,81) size 100x300 backgroundClip at (361,71) size 120x120 clip at (361,71) size 120x120 outlineClip at (361,71) size 120x120
     25layer at (371,81) size 100x300 backgroundClip at (361,71) size 120x120 clip at (361,71) size 120x120
    2626  RenderBlock {DIV} at (11,11) size 100x300 [bgcolor=#808080]
  • trunk/LayoutTests/platform/mac/compositing/overflow/scrollbar-painting-expected.txt

    r177774 r196244  
    99layer at (18,50) size 100x100 clip at (18,50) size 85x85 scrollWidth 500 scrollHeight 500
    1010  RenderBlock (relative positioned) {DIV} at (10,34) size 100x100
    11 layer at (18,50) size 500x500 backgroundClip at (18,50) size 85x85 clip at (18,50) size 85x85 outlineClip at (18,50) size 85x85
     11layer at (18,50) size 500x500 backgroundClip at (18,50) size 85x85 clip at (18,50) size 85x85
    1212  RenderBlock {DIV} at (0,0) size 500x500 [bgcolor=#808080]
    1313layer at (18,160) size 100x100
  • trunk/LayoutTests/platform/mac/compositing/reflections/nested-reflection-on-overflow-expected.txt

    r177774 r196244  
    1313layer at (39,65) size 100x100 clip at (39,65) size 85x85 scrollHeight 500
    1414  RenderBlock (relative positioned) {DIV} at (0,0) size 100x100
    15 layer at (39,65) size 85x500 backgroundClip at (39,65) size 85x85 clip at (39,65) size 85x85 outlineClip at (39,65) size 85x85
     15layer at (39,65) size 85x500 backgroundClip at (39,65) size 85x85 clip at (39,65) size 85x85
    1616  RenderBlock {DIV} at (0,0) size 85x500
    1717    RenderText {#text} at (0,0) size 83x414
  • trunk/LayoutTests/platform/mac/compositing/sibling-positioning-expected.txt

    r177774 r196244  
    1515layer at (59,59) size 60x60
    1616  RenderBlock (positioned) {DIV} at (51,51) size 60x60 [bgcolor=#008000]
    17 layer at (-41,-41) size 100x100 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
     17layer at (-41,-41) size 100x100 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
    1818  RenderBlock (positioned) {DIV} at (-49,-49) size 100x100 [bgcolor=#808080]
  • trunk/LayoutTests/platform/mac/css3/blending/blend-mode-overflow-expected.txt

    r177774 r196244  
    8282layer at (242,386) size 150x150 scrollWidth 170 scrollHeight 170
    8383  RenderBlock (positioned) {DIV} at (10,10) size 150x150
    84 layer at (262,406) size 150x150 backgroundClip at (242,386) size 150x150 clip at (242,386) size 150x150 outlineClip at (242,386) size 150x150 blendMode: difference
     84layer at (262,406) size 150x150 backgroundClip at (242,386) size 150x150 clip at (242,386) size 150x150 blendMode: difference
    8585  RenderImage {IMG} at (20,20) size 150x150
  • trunk/LayoutTests/platform/mac/css3/unicode-bidi-isolate-basic-expected.txt

    r177774 r196244  
    1414  RenderBlock (positioned) {DIV} at (0,0) size 29x400 [color=#FF0000]
    1515    RenderMultiColumnSet at (0,0) size 29x400
    16 layer at (8,62) size 28x2055 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
     16layer at (8,62) size 28x2055 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
    1717  RenderMultiColumnFlowThread at (0,0) size 29x2055
    1818    RenderBlock {DIV} at (0,0) size 29x18
     
    883883  RenderBlock (positioned) {DIV} at (0,0) size 29x400 [color=#008000]
    884884    RenderMultiColumnSet at (0,0) size 29x400
    885 layer at (8,62) size 28x2055 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
     885layer at (8,62) size 28x2055 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
    886886  RenderMultiColumnFlowThread at (0,0) size 29x2055
    887887    RenderBlock {DIV} at (0,0) size 29x18
  • trunk/LayoutTests/platform/mac/fast/block/float/overhanging-tall-block-expected.txt

    r193511 r196244  
    77      RenderBlock {DIV} at (0,33554431) size 784x0
    88      RenderBlock {DIV} at (0,33554431) size 784x0
    9 layer at (10,11) size 152x33554431 backgroundClip at (10,11) size 152x33554421 clip at (11,12) size 150x33554420 outlineClip at (0,0) size 800x33554431
     9layer at (10,11) size 152x33554431 backgroundClip at (10,11) size 152x33554421 clip at (11,12) size 150x33554420
    1010  RenderTextControl {TEXTAREA} at (2,3) size 152x33554428 [bgcolor=#FFFFFF] [border: (1px solid #000000)]
    1111    RenderBlock {DIV} at (3,3) size 146x13
  • trunk/LayoutTests/platform/mac/fast/block/positioning/auto/vertical-rl/007-expected.txt

    r177774 r196244  
    44  RenderBlock {HTML} at (0,0) size 800x585
    55    RenderBody {BODY} at (8,8) size 784x569
    6 layer at (-830,8) size 1622x202 backgroundClip at (0,0) size 1630x585 clip at (0,0) size 1630x585 outlineClip at (0,0) size 1630x585
     6layer at (-830,8) size 1622x202 backgroundClip at (0,0) size 1630x585 clip at (0,0) size 1630x585
    77  RenderBlock (positioned) {DIV} at (8,8) size 1622x203
    88    RenderBlock {P} at (72,0) size 83x203
  • trunk/LayoutTests/platform/mac/fast/block/positioning/vertical-rl/fixed-positioning-expected.txt

    r84655 r196244  
    11layer at (0,0) size 2016x600
    22  RenderView at (0,0) size 800x600
    3 layer at (-1216,0) size 2016x600 backgroundClip at (0,0) size 2016x600 clip at (0,0) size 2016x600 outlineClip at (0,0) size 2016x600
     3layer at (-1216,0) size 2016x600 backgroundClip at (0,0) size 2016x600 clip at (0,0) size 2016x600
    44  RenderBlock {HTML} at (0,0) size 2016x600
    55    RenderBody {BODY} at (8,8) size 2000x584
  • trunk/LayoutTests/platform/mac/fast/borders/border-antialiasing-expected.txt

    r195740 r196244  
    165165  RenderBlock {DIV} at (10,159) size 600x100
    166166    RenderMultiColumnSet at (0,0) size 600x100
    167 layer at (28,179) size 11x1190 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
     167layer at (28,179) size 11x1190 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
    168168  RenderMultiColumnFlowThread at (0,0) size 11x1190
    169169    RenderText {#text} at (0,0) size 8x1190
  • trunk/LayoutTests/platform/mac/fast/clip/001-expected.txt

    r177774 r196244  
    77        text run at (0,0) width 304: "You should see a 100x100 green square below. "
    88        text run at (303,0) width 239: "If you see any red, the test has failed."
    9 layer at (8,26) size 200x200 backgroundClip at (108,126) size 100x100 clip at (108,126) size 100x100 outlineClip at (108,126) size 100x100
     9layer at (8,26) size 200x200 backgroundClip at (108,126) size 100x100 clip at (108,126) size 100x100
    1010  RenderBlock (positioned) {DIV} at (8,26) size 200x200 [bgcolor=#008000]
    1111    RenderBlock {DIV} at (0,0) size 100x100 [bgcolor=#FF0000]
  • trunk/LayoutTests/platform/mac/fast/clip/013-expected.txt

    r177774 r196244  
    1010        text run at (0,18) width 412: "clip applies to the element itself and starts from the border edge."
    1111      RenderText {#text} at (0,0) size 0x0
    12 layer at (8,44) size 120x120 backgroundClip at (18,54) size 100x100 clip at (18,54) size 100x100 outlineClip at (18,54) size 100x100
     12layer at (8,44) size 120x120 backgroundClip at (18,54) size 100x100 clip at (18,54) size 100x100
    1313  RenderBlock (positioned) {DIV} at (8,44) size 120x120 [bgcolor=#008000] [border: (10px solid #FF0000)]
  • trunk/LayoutTests/platform/mac/fast/clip/014-expected.txt

    r177774 r196244  
    1212        text run at (0,36) width 254: "scrolling mechanism should be clipped."
    1313      RenderText {#text} at (0,0) size 0x0
    14 layer at (8,62) size 120x220 backgroundClip at (18,72) size 100x100 clip at (18,72) size 85x100 outlineClip at (18,72) size 100x100 scrollHeight 1000
     14layer at (8,62) size 120x220 backgroundClip at (18,72) size 100x100 clip at (18,72) size 85x100 scrollHeight 1000
    1515  RenderBlock (positioned) {DIV} at (8,62) size 120x220 [bgcolor=#008000] [border: (10px solid #FF0000)]
    1616    RenderBlock {DIV} at (10,10) size 85x1000
  • trunk/LayoutTests/platform/mac/fast/clip/016-expected.txt

    r63403 r196244  
    77        text run at (0,0) width 300: "You should see a 100x100 green square below."
    88      RenderText {#text} at (0,0) size 0x0
    9 layer at (50,50) size 100x500 backgroundClip at (50,50) size 100x100 clip at (50,50) size 100x100 outlineClip at (50,50) size 100x100
     9layer at (50,50) size 100x500 backgroundClip at (50,50) size 100x100 clip at (50,50) size 100x100
    1010  RenderBlock (positioned) {DIV} at (50,50) size 100x500 [bgcolor=#008000]
  • trunk/LayoutTests/platform/mac/fast/clip/outline-overflowClip-expected.txt

    r196222 r196244  
    1010        text run at (0,18) width 45: "border."
    1111      RenderText {#text} at (0,0) size 0x0
    12 layer at (8,44) size 304x204 backgroundClip at (83,44) size 229x204 clip at (83,44) size 229x204 outlineClip at (83,44) size 229x204
     12layer at (8,44) size 304x204 backgroundClip at (83,44) size 229x204 clip at (83,44) size 229x204
    1313  RenderBlock (positioned) {DIV} at (8,44) size 304x204 [border: (2px solid #0000FF)]
    1414    RenderText {#text} at (2,2) size 102x18
    1515      text run at (2,2) width 102: "text in outer div"
    1616    RenderText {#text} at (0,0) size 0x0
    17 layer at (60,64) size 108x24 backgroundClip at (83,61) size 88x30 clip at (83,67) size 82x18 outlineClip at (83,44) size 229x204 scrollWidth 103
     17layer at (60,64) size 108x24 backgroundClip at (83,61) size 88x30 clip at (83,67) size 82x18 scrollWidth 103
    1818  RenderBlock (positioned) {DIV} at (52,20) size 108x24 [bgcolor=#EEEEEE] [border: (3px solid #FF0000)]
    1919    RenderText {#text} at (3,3) size 102x18
  • trunk/LayoutTests/platform/mac/fast/css/clip-zooming-expected.txt

    r177774 r196244  
    1313layer at (75,150) size 150x150
    1414  RenderBlock (positioned) {DIV} at (75,150) size 150x150 [bgcolor=#FF0000]
    15 layer at (0,75) size 300x300 backgroundClip at (75,150) size 150x150 clip at (75,150) size 150x150 outlineClip at (75,150) size 150x150
     15layer at (0,75) size 300x300 backgroundClip at (75,150) size 150x150 clip at (75,150) size 150x150
    1616  RenderBlock (positioned) {DIV} at (0,75) size 300x300 [bgcolor=#008000]
  • trunk/LayoutTests/platform/mac/fast/forms/validation-message-appearance-expected.txt

    r184353 r196244  
    3535          text run at (0,16) width 195: "Should not be identical with the"
    3636          text run at (0,32) width 112: "current password."
    37 layer at (42,29) size 18x18 backgroundClip at (10,29) size 220x16 clip at (10,29) size 220x16 outlineClip at (10,29) size 220x16
     37layer at (42,29) size 18x18 backgroundClip at (10,29) size 220x16 clip at (10,29) size 220x16
    3838  RenderBlock (relative positioned) zI: 2147483645 {DIV} at (0,0) size 18x18 [bgcolor=#F8ECEC] [border: (2px solid #440000) none (2px solid #440000)]
    3939caret: position 0 of child 0 {DIV} of child 0 {DIV} of child 0 {DIV} of {#document-fragment} of child 1 {INPUT} of child 0 {FORM} of body
  • trunk/LayoutTests/platform/mac/fast/inline/left-right-center-inline-alignment-in-ltr-and-rtl-blocks-expected.txt

    r180441 r196244  
    1616    RenderText {#text} at (0,0) size 246x28
    1717      text run at (0,0) width 246: "RTL-Center-Aligned"
    18 layer at (-86,451) size 94x84 backgroundClip at (0,0) size 902x585 clip at (0,0) size 902x585 outlineClip at (0,0) size 902x585
     18layer at (-86,451) size 94x84 backgroundClip at (0,0) size 902x585 clip at (0,0) size 902x585
    1919  RenderBlock (positioned) {FONT} at (-86,451) size 94x84
    2020    RenderText {#text} at (0,0) size 94x84
  • trunk/LayoutTests/platform/mac/fast/line-grid/line-grid-inside-columns-expected.txt

    r177774 r196244  
    77  RenderBlock {DIV} at (0,0) size 784x504 [border: (2px solid #FF0000)]
    88    RenderMultiColumnSet at (2,2) size 780x500
    9 layer at (10,10) size 382x1488 backgroundClip at (0,0) size 1188x585 clip at (0,0) size 1188x585 outlineClip at (0,0) size 1188x585
     9layer at (10,10) size 382x1488 backgroundClip at (0,0) size 1188x585 clip at (0,0) size 1188x585
    1010  RenderMultiColumnFlowThread at (2,2) size 382x1488
    1111    RenderBlock {DIV} at (0,0) size 382x1488
  • trunk/LayoutTests/platform/mac/fast/line-grid/line-grid-into-columns-expected.txt

    r177774 r196244  
    5151  RenderBlock {DIV} at (0,0) size 800x540
    5252    RenderMultiColumnSet at (20,20) size 760x500
    53 layer at (20,20) size 362x966 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
     53layer at (20,20) size 362x966 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
    5454  RenderMultiColumnFlowThread at (20,20) size 362x966
    5555    RenderBlock {DIV} at (0,0) size 362x385
  • trunk/LayoutTests/platform/mac/fast/lists/scrolled-marker-paint-expected.txt

    r177774 r196244  
    1515        RenderText {#text} at (618,0) size 5x18
    1616          text run at (618,0) width 5: "."
    17 layer at (8,-4) size 409x18 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
     17layer at (8,-4) size 409x18 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
    1818  RenderBlock (positioned) {UL} at (8,-4) size 409x18
    1919    RenderListItem {LI} at (40,0) size 369x18
  • trunk/LayoutTests/platform/mac/fast/multicol/client-rects-expected.txt

    r177774 r196244  
    212212  RenderBlock {DIV} at (10,237) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
    213213    RenderMultiColumnSet at (8,8) size 50x100
    214 layer at (-24,298) size 100x48 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
     214layer at (-24,298) size 100x48 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
    215215  RenderMultiColumnFlowThread at (8,8) size 100x48
    216216    RenderBR {BR} at (0,0) size 25x0
  • trunk/LayoutTests/platform/mac/fast/multicol/column-break-with-balancing-expected.txt

    r177774 r196244  
    8989  RenderBlock {DIV} at (0,404) size 769x388 [border: (5px solid #0000FF)]
    9090    RenderMultiColumnSet at (5,5) size 759x378
    91 layer at (13,417) size 372x756 backgroundClip at (0,0) size 785x808 clip at (0,0) size 785x808 outlineClip at (0,0) size 785x808
     91layer at (13,417) size 372x756 backgroundClip at (0,0) size 785x808 clip at (0,0) size 785x808
    9292  RenderMultiColumnFlowThread at (5,5) size 372x756
    9393    RenderBlock (anonymous) at (0,0) size 372x72
  • trunk/LayoutTests/platform/mac/fast/multicol/column-rules-expected.txt

    r177774 r196244  
    77  RenderBlock {DIV} at (0,0) size 784x550 [border: (5px solid #000000)]
    88    RenderMultiColumnSet at (15,5) size 754x540
    9 layer at (23,13) size 241x1584 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
     9layer at (23,13) size 241x1584 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
    1010  RenderMultiColumnFlowThread at (15,5) size 241x1584
    1111    RenderText {#text} at (0,0) size 241x1584
  • trunk/LayoutTests/platform/mac/fast/multicol/column-rules-stacking-expected.txt

    r177774 r196244  
    1515  RenderBlock (relative positioned) {DIV} at (0,36) size 769x586 [bgcolor=#FF0000] [border: (5px solid #000000)]
    1616    RenderMultiColumnSet at (35,5) size 699x576
    17 layer at (43,49) size 222x1728 backgroundClip at (0,0) size 785x638 clip at (0,0) size 785x638 outlineClip at (0,0) size 785x638
     17layer at (43,49) size 222x1728 backgroundClip at (0,0) size 785x638 clip at (0,0) size 785x638
    1818  RenderMultiColumnFlowThread at (35,5) size 223x1728
    1919    RenderText {#text} at (0,0) size 223x1728
  • trunk/LayoutTests/platform/mac/fast/multicol/columns-shorthand-parsing-expected.txt

    r177774 r196244  
    77  RenderBlock {DIV} at (0,0) size 769x702
    88    RenderMultiColumnSet at (0,0) size 769x702
    9 layer at (8,8) size 377x1404 backgroundClip at (0,0) size 785x718 clip at (0,0) size 785x718 outlineClip at (0,0) size 785x718
     9layer at (8,8) size 377x1404 backgroundClip at (0,0) size 785x718 clip at (0,0) size 785x718
    1010  RenderMultiColumnFlowThread at (0,0) size 377x1404
    1111    RenderText {#text} at (0,0) size 362x1404
  • trunk/LayoutTests/platform/mac/fast/multicol/float-paginate-complex-expected.txt

    r177774 r196244  
    297297  RenderBlock {DIV} at (0,1260) size 769x404 [border: (2px solid #000000)]
    298298    RenderMultiColumnSet at (2,2) size 765x400
    299 layer at (10,1270) size 375x652 backgroundClip at (0,0) size 1166x1680 clip at (0,0) size 1166x1680 outlineClip at (0,0) size 1166x1680
     299layer at (10,1270) size 375x652 backgroundClip at (0,0) size 1166x1680 clip at (0,0) size 1166x1680
    300300  RenderMultiColumnFlowThread at (2,2) size 375x652
    301301    RenderImage {IMG} at (0,0) size 375x380 [bgcolor=#0000FF]
  • trunk/LayoutTests/platform/mac/fast/multicol/float-paginate-empty-lines-expected.txt

    r177774 r196244  
    1212  RenderBlock {DIV} at (0,70) size 784x400
    1313    RenderMultiColumnSet at (0,0) size 784x400
    14 layer at (8,78) size 384x600 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
     14layer at (8,78) size 384x600 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
    1515  RenderMultiColumnFlowThread at (0,0) size 384x600
    1616    RenderBlock {DIV} at (0,0) size 384x236 [border: (10px dashed #800000)]
  • trunk/LayoutTests/platform/mac/fast/multicol/float-paginate-expected.txt

    r177774 r196244  
    77  RenderBlock {DIV} at (0,0) size 784x404 [border: (2px solid #000000)]
    88    RenderMultiColumnSet at (2,2) size 780x400
    9 layer at (10,10) size 382x944 backgroundClip at (0,0) size 1188x585 clip at (0,0) size 1188x585 outlineClip at (0,0) size 1188x585
     9layer at (10,10) size 382x944 backgroundClip at (0,0) size 1188x585 clip at (0,0) size 1188x585
    1010  RenderMultiColumnFlowThread at (2,2) size 382x944
    1111    RenderText {#text} at (0,0) size 113x18
  • trunk/LayoutTests/platform/mac/fast/multicol/layers-in-multicol-expected.txt

    r177774 r196244  
    1313  RenderBlock {DIV} at (0,18) size 769x310 [border: (5px solid #800000)]
    1414    RenderMultiColumnSet at (5,5) size 759x300
    15 layer at (13,31) size 242x1380 backgroundClip at (0,0) size 1289x672 clip at (0,0) size 1289x672 outlineClip at (0,0) size 1289x672
     15layer at (13,31) size 242x1380 backgroundClip at (0,0) size 1289x672 clip at (0,0) size 1289x672
    1616  RenderMultiColumnFlowThread at (5,5) size 243x1380
    1717    RenderBlock (anonymous) at (0,0) size 243x234
     
    186186  RenderBlock {DIV} at (0,346) size 769x310 [border: (5px solid #800000)]
    187187    RenderMultiColumnSet at (5,5) size 759x300
    188 layer at (530,359) size 242x1380 backgroundClip at (0,0) size 1289x672 clip at (0,0) size 1289x672 outlineClip at (0,0) size 1289x672
     188layer at (530,359) size 242x1380 backgroundClip at (0,0) size 1289x672 clip at (0,0) size 1289x672
    189189  RenderMultiColumnFlowThread at (521,5) size 243x1380
    190190    RenderBlock (anonymous) at (0,0) size 243x234
     
    358358layer at (13,331) size 100x270
    359359  RenderBlock (relative positioned) {DIV} at (0,0) size 100x270 [bgcolor=#008000]
    360 layer at (672,659) size 100x270 backgroundClip at (0,0) size 1289x672 clip at (0,0) size 1289x672 outlineClip at (0,0) size 1289x672
     360layer at (672,659) size 100x270 backgroundClip at (0,0) size 1289x672 clip at (0,0) size 1289x672
    361361  RenderBlock (relative positioned) {DIV} at (142,0) size 101x270 [bgcolor=#008000]
  • trunk/LayoutTests/platform/mac/fast/multicol/layers-split-across-columns-expected.txt

    r177774 r196244  
    6767  RenderBlock {DIV} at (0,18) size 220x310 [border: (5px solid #000000)]
    6868    RenderMultiColumnSet at (5,5) size 210x300
    69 layer at (13,658) size 100x600 backgroundClip at (0,0) size 785x971 clip at (0,0) size 785x971 outlineClip at (0,0) size 785x971
     69layer at (13,658) size 100x600 backgroundClip at (0,0) size 785x971 clip at (0,0) size 785x971
    7070  RenderMultiColumnFlowThread at (5,5) size 100x600
    7171    RenderBlock (anonymous) at (0,0) size 100x100
     
    8787    RenderBlock {DIV} at (0,200) size 100x100 [bgcolor=#0000B0]
    8888    RenderBlock {DIV} at (0,300) size 100x100 [bgcolor=#000090]
    89 layer at (13,758) size 100x400 backgroundClip at (0,0) size 785x971 clip at (0,0) size 785x971 outlineClip at (0,0) size 785x971
     89layer at (13,758) size 100x400 backgroundClip at (0,0) size 785x971 clip at (0,0) size 785x971
    9090  RenderBlock {DIV} at (0,100) size 100x400
    9191    RenderBlock {DIV} at (0,0) size 100x100 [bgcolor=#0000F0]
  • trunk/LayoutTests/platform/mac/fast/multicol/max-height-columns-block-expected.txt

    r177774 r196244  
    1717  RenderBlock {DIV} at (0,72) size 404x64 [border: (2px solid #000000)]
    1818    RenderMultiColumnSet at (2,2) size 400x60
    19 layer at (10,82) size 61x596 backgroundClip at (0,0) size 834x585 clip at (0,0) size 834x585 outlineClip at (0,0) size 834x585
     19layer at (10,82) size 61x596 backgroundClip at (0,0) size 834x585 clip at (0,0) size 834x585
    2020  RenderMultiColumnFlowThread at (2,2) size 61x596
    2121    RenderText {#text} at (0,0) size 51x116
  • trunk/LayoutTests/platform/mac/fast/multicol/nested-columns-expected.txt

    r177774 r196244  
    66  RenderBody {BODY} at (8,8) size 750x500
    77    RenderMultiColumnSet at (0,0) size 750x500
    8 layer at (8,8) size 367x1018 backgroundClip at (0,0) size 1141x585 clip at (0,0) size 1141x585 outlineClip at (0,0) size 1141x585
     8layer at (8,8) size 367x1018 backgroundClip at (0,0) size 1141x585 clip at (0,0) size 1141x585
    99  RenderMultiColumnFlowThread at (0,0) size 367x1018
    1010    RenderBlock {H1} at (0,21) size 367x38
  • trunk/LayoutTests/platform/mac/fast/multicol/newmulticol/client-rects-expected.txt

    r177774 r196244  
    212212  RenderBlock {DIV} at (10,237) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
    213213    RenderMultiColumnSet at (8,8) size 50x100
    214 layer at (-24,298) size 100x48 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
     214layer at (-24,298) size 100x48 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
    215215  RenderMultiColumnFlowThread at (8,8) size 100x48
    216216    RenderBR {BR} at (0,0) size 25x0
  • trunk/LayoutTests/platform/mac/fast/multicol/overflow-across-columns-expected.txt

    r177774 r196244  
    77  RenderBlock {DIV} at (0,0) size 506x505 [border: (3px solid #000000)]
    88    RenderMultiColumnSet at (3,3) size 500x499
    9 layer at (11,11) size 159x1478 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
     9layer at (11,11) size 159x1478 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
    1010  RenderMultiColumnFlowThread at (3,3) size 159x1478
    11 layer at (11,11) size 159x1478 backgroundClip at (11,11) size 159x589 clip at (11,11) size 159x589 outlineClip at (0,0) size 800x600
     11layer at (11,11) size 159x1478 backgroundClip at (11,11) size 159x589 clip at (11,11) size 159x589
    1212  RenderBlock {DIV} at (0,0) size 159x1478
    1313    RenderText {#text} at (0,5) size 159x1468
  • trunk/LayoutTests/platform/mac/fast/multicol/overflow-across-columns-percent-height-expected.txt

    r177774 r196244  
    77  RenderBlock {DIV} at (0,0) size 506x505 [border: (3px solid #000000)]
    88    RenderMultiColumnSet at (3,3) size 500x499
    9 layer at (11,11) size 159x1478 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
     9layer at (11,11) size 159x1478 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
    1010  RenderMultiColumnFlowThread at (3,3) size 159x1478
    1111    RenderBlock {DIV} at (0,0) size 159x1478
    12 layer at (11,11) size 159x1478 backgroundClip at (11,11) size 159x589 clip at (11,11) size 159x589 outlineClip at (0,0) size 800x600
     12layer at (11,11) size 159x1478 backgroundClip at (11,11) size 159x589 clip at (11,11) size 159x589
    1313  RenderBlock {DIV} at (0,0) size 159x1478
    1414    RenderText {#text} at (0,5) size 159x1468
  • trunk/LayoutTests/platform/mac/fast/multicol/overflow-unsplittable-expected.txt

    r177774 r196244  
    77  RenderBlock {DIV} at (0,0) size 506x505 [border: (3px solid #000000)]
    88    RenderMultiColumnSet at (3,3) size 500x499
    9 layer at (11,11) size 159x1521 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
     9layer at (11,11) size 159x1521 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
    1010  RenderMultiColumnFlowThread at (3,3) size 159x1521
    1111    RenderBlock (anonymous) at (0,0) size 159x360
     
    5757        text run at (0,656) width 159: "porttitor sit amet id felis. Integer"
    5858        text run at (0,699) width 157: "volutpat aliquam odio et feugiat."
    59 layer at (11,510) size 159x304 backgroundClip at (11,510) size 159x90 clip at (13,512) size 140x88 outlineClip at (0,0) size 800x600 scrollHeight 456
     59layer at (11,510) size 159x304 backgroundClip at (11,510) size 159x90 clip at (13,512) size 140x88 scrollHeight 456
    6060  RenderBlock {DIV} at (0,499) size 160x304 [border: (2px solid #000000)]
    6161    RenderText {#text} at (2,7) size 141x446
  • trunk/LayoutTests/platform/mac/fast/multicol/paginate-block-replaced-expected.txt

    r177774 r196244  
    77  RenderBlock {DIV} at (0,0) size 784x404 [border: (2px solid #000000)]
    88    RenderMultiColumnSet at (2,2) size 780x400
    9 layer at (10,10) size 382x1254 backgroundClip at (0,0) size 1586x585 clip at (0,0) size 1586x585 outlineClip at (0,0) size 1586x585
     9layer at (10,10) size 382x1254 backgroundClip at (0,0) size 1586x585 clip at (0,0) size 1586x585
    1010  RenderMultiColumnFlowThread at (2,2) size 382x1254
    1111    RenderBlock (anonymous) at (0,0) size 382x180
  • trunk/LayoutTests/platform/mac/fast/multicol/pagination/BottomToTop-bt-expected.txt

    r177774 r196244  
    22  RenderView at (0,0) size 785x600
    33    RenderMultiColumnSet at (0,0) size 785x600
    4 layer at (0,-668) size 785x1268 backgroundClip at (0,0) size 785x1580 clip at (0,0) size 785x1580 outlineClip at (0,0) size 785x1580
     4layer at (0,-668) size 785x1268 backgroundClip at (0,0) size 785x1580 clip at (0,0) size 785x1580
    55  RenderMultiColumnFlowThread at (0,0) size 785x1268
    6 layer at (0,-668) size 785x1268 backgroundClip at (0,0) size 785x1580 clip at (0,0) size 785x1580 outlineClip at (0,0) size 785x1580
     6layer at (0,-668) size 785x1268 backgroundClip at (0,0) size 785x1580 clip at (0,0) size 785x1580
    77  RenderBlock {HTML} at (0,0) size 785x1268
    88    RenderBody {BODY} at (8,8) size 769x1244
  • trunk/LayoutTests/platform/mac/fast/multicol/pagination/BottomToTop-lr-expected.txt

    r177774 r196244  
    22  RenderView at (0,0) size 785x600
    33    RenderMultiColumnSet at (0,0) size 785x600
    4 layer at (0,0) size 3724x180 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600 outlineClip at (0,0) size 785x600
     4layer at (0,0) size 3724x180 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600
    55  RenderMultiColumnFlowThread at (0,0) size 3724x180
    6 layer at (0,0) size 3724x180 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600 outlineClip at (0,0) size 785x600
     6layer at (0,0) size 3724x180 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600
    77  RenderBlock {HTML} at (0,0) size 3724x180
    88    RenderBody {BODY} at (8,8) size 3700x164
  • trunk/LayoutTests/platform/mac/fast/multicol/pagination/BottomToTop-rl-expected.txt

    r177774 r196244  
    22  RenderView at (0,0) size 785x600
    33    RenderMultiColumnSet at (0,0) size 785x600
    4 layer at (-2939,0) size 3724x180 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600 outlineClip at (0,0) size 785x600
     4layer at (-2939,0) size 3724x180 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600
    55  RenderMultiColumnFlowThread at (0,0) size 3724x180
    6 layer at (-2939,0) size 3724x180 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600 outlineClip at (0,0) size 785x600
     6layer at (-2939,0) size 3724x180 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600
    77  RenderBlock {HTML} at (0,0) size 3724x180
    88    RenderBody {BODY} at (8,8) size 3700x164
  • trunk/LayoutTests/platform/mac/fast/multicol/pagination/BottomToTop-tb-expected.txt

    r177774 r196244  
    22  RenderView at (0,0) size 785x600
    33    RenderMultiColumnSet at (0,0) size 785x600
    4 layer at (0,0) size 785x1268 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600 outlineClip at (0,0) size 785x600
     4layer at (0,0) size 785x1268 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600
    55  RenderMultiColumnFlowThread at (0,0) size 785x1268
    6 layer at (0,0) size 785x1268 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600 outlineClip at (0,0) size 785x600
     6layer at (0,0) size 785x1268 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600
    77  RenderBlock {HTML} at (0,0) size 785x1268
    88    RenderBody {BODY} at (8,8) size 769x1244
  • trunk/LayoutTests/platform/mac/fast/multicol/pagination/LeftToRight-bt-expected.txt

    r177774 r196244  
    22  RenderView at (0,0) size 800x585
    33    RenderMultiColumnSet at (0,0) size 800x585
    4 layer at (0,-3193) size 180x3778 backgroundClip at (0,0) size 1380x585 clip at (0,0) size 1380x585 outlineClip at (0,0) size 1380x585
     4layer at (0,-3193) size 180x3778 backgroundClip at (0,0) size 1380x585 clip at (0,0) size 1380x585
    55  RenderMultiColumnFlowThread at (0,0) size 180x3778
    6 layer at (0,-3193) size 180x3778 backgroundClip at (0,0) size 1380x585 clip at (0,0) size 1380x585 outlineClip at (0,0) size 1380x585
     6layer at (0,-3193) size 180x3778 backgroundClip at (0,0) size 1380x585 clip at (0,0) size 1380x585
    77  RenderBlock {HTML} at (0,0) size 180x3778
    88    RenderBody {BODY} at (8,8) size 164x3754
  • trunk/LayoutTests/platform/mac/fast/multicol/pagination/LeftToRight-rl-expected.txt

    r177774 r196244  
    22  RenderView at (0,0) size 800x585
    33    RenderMultiColumnSet at (0,0) size 800x585
    4 layer at (-764,0) size 1564x585 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585 outlineClip at (0,0) size 800x585
     4layer at (-764,0) size 1564x585 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585
    55  RenderMultiColumnFlowThread at (0,0) size 1564x585
    6 layer at (-764,0) size 1564x585 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585 outlineClip at (0,0) size 800x585
     6layer at (-764,0) size 1564x585 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585
    77  RenderBlock {HTML} at (0,0) size 1564x585
    88    RenderBody {BODY} at (8,8) size 1540x569
  • trunk/LayoutTests/platform/mac/fast/multicol/pagination/LeftToRight-tb-expected.txt

    r177774 r196244  
    22  RenderView at (0,0) size 800x585
    33    RenderMultiColumnSet at (0,0) size 800x585
    4 layer at (0,0) size 180x3778 backgroundClip at (0,0) size 1380x585 clip at (0,0) size 1380x585 outlineClip at (0,0) size 1380x585
     4layer at (0,0) size 180x3778 backgroundClip at (0,0) size 1380x585 clip at (0,0) size 1380x585
    55  RenderMultiColumnFlowThread at (0,0) size 180x3778
    6 layer at (0,0) size 180x3778 backgroundClip at (0,0) size 1380x585 clip at (0,0) size 1380x585 outlineClip at (0,0) size 1380x585
     6layer at (0,0) size 180x3778 backgroundClip at (0,0) size 1380x585 clip at (0,0) size 1380x585
    77  RenderBlock {HTML} at (0,0) size 180x3778
    88    RenderBody {BODY} at (8,8) size 164x3754
  • trunk/LayoutTests/platform/mac/fast/multicol/pagination/RightToLeft-bt-expected.txt

    r177774 r196244  
    22  RenderView at (0,0) size 800x585
    33    RenderMultiColumnSet at (0,0) size 800x585
    4 layer at (0,-3193) size 180x3778 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585 outlineClip at (0,0) size 800x585
     4layer at (0,-3193) size 180x3778 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585
    55  RenderMultiColumnFlowThread at (0,0) size 180x3778
    6 layer at (0,-3193) size 180x3778 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585 outlineClip at (0,0) size 800x585
     6layer at (0,-3193) size 180x3778 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585
    77  RenderBlock {HTML} at (0,0) size 180x3778
    88    RenderBody {BODY} at (8,8) size 164x3754
  • trunk/LayoutTests/platform/mac/fast/multicol/pagination/RightToLeft-lr-expected.txt

    r177774 r196244  
    22  RenderView at (0,0) size 800x585
    33    RenderMultiColumnSet at (0,0) size 800x585
    4 layer at (0,0) size 1564x585 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585 outlineClip at (0,0) size 800x585
     4layer at (0,0) size 1564x585 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585
    55  RenderMultiColumnFlowThread at (0,0) size 1564x585
    6 layer at (0,0) size 1564x585 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585 outlineClip at (0,0) size 800x585
     6layer at (0,0) size 1564x585 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585
    77  RenderBlock {HTML} at (0,0) size 1564x585
    88    RenderBody {BODY} at (8,8) size 1540x569
  • trunk/LayoutTests/platform/mac/fast/multicol/pagination/RightToLeft-rl-dynamic-expected.txt

    r177774 r196244  
    22  RenderView at (0,0) size 800x585
    33    RenderMultiColumnSet at (0,0) size 800x585
    4 layer at (-764,0) size 1564x585 backgroundClip at (0,0) size 1780x585 clip at (0,0) size 1780x585 outlineClip at (0,0) size 1780x585
     4layer at (-764,0) size 1564x585 backgroundClip at (0,0) size 1780x585 clip at (0,0) size 1780x585
    55  RenderMultiColumnFlowThread at (0,0) size 1564x585
    6 layer at (-764,0) size 1564x585 backgroundClip at (0,0) size 1780x585 clip at (0,0) size 1780x585 outlineClip at (0,0) size 1780x585
     6layer at (-764,0) size 1564x585 backgroundClip at (0,0) size 1780x585 clip at (0,0) size 1780x585
    77  RenderBlock {HTML} at (0,0) size 1564x585
    88    RenderBody {BODY} at (8,8) size 1540x569
  • trunk/LayoutTests/platform/mac/fast/multicol/pagination/RightToLeft-rl-expected.txt

    r177774 r196244  
    22  RenderView at (0,0) size 800x585
    33    RenderMultiColumnSet at (0,0) size 800x585
    4 layer at (-764,0) size 1564x585 backgroundClip at (0,0) size 1780x585 clip at (0,0) size 1780x585 outlineClip at (0,0) size 1780x585
     4layer at (-764,0) size 1564x585 backgroundClip at (0,0) size 1780x585 clip at (0,0) size 1780x585
    55  RenderMultiColumnFlowThread at (0,0) size 1564x585
    6 layer at (-764,0) size 1564x585 backgroundClip at (0,0) size 1780x585 clip at (0,0) size 1780x585 outlineClip at (0,0) size 1780x585
     6layer at (-764,0) size 1564x585 backgroundClip at (0,0) size 1780x585 clip at (0,0) size 1780x585
    77  RenderBlock {HTML} at (0,0) size 1564x585
    88    RenderBody {BODY} at (8,8) size 1540x569
  • trunk/LayoutTests/platform/mac/fast/multicol/pagination/RightToLeft-tb-expected.txt

    r177774 r196244  
    22  RenderView at (0,0) size 800x585
    33    RenderMultiColumnSet at (0,0) size 800x585
    4 layer at (0,0) size 180x3778 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585 outlineClip at (0,0) size 800x585
     4layer at (0,0) size 180x3778 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585
    55  RenderMultiColumnFlowThread at (0,0) size 180x3778
    6 layer at (0,0) size 180x3778 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585 outlineClip at (0,0) size 800x585
     6layer at (0,0) size 180x3778 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585
    77  RenderBlock {HTML} at (0,0) size 180x3778
    88    RenderBody {BODY} at (8,8) size 164x3754
  • trunk/LayoutTests/platform/mac/fast/multicol/pagination/TopToBottom-bt-expected.txt

    r177774 r196244  
    22  RenderView at (0,0) size 785x600
    33    RenderMultiColumnSet at (0,0) size 785x600
    4 layer at (0,-668) size 785x1268 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600 outlineClip at (0,0) size 785x600
     4layer at (0,-668) size 785x1268 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600
    55  RenderMultiColumnFlowThread at (0,0) size 785x1268
    6 layer at (0,-668) size 785x1268 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600 outlineClip at (0,0) size 785x600
     6layer at (0,-668) size 785x1268 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600
    77  RenderBlock {HTML} at (0,0) size 785x1268
    88    RenderBody {BODY} at (8,8) size 769x1244
  • trunk/LayoutTests/platform/mac/fast/multicol/pagination/TopToBottom-lr-expected.txt

    r177774 r196244  
    22  RenderView at (0,0) size 785x600
    33    RenderMultiColumnSet at (0,0) size 785x600
    4 layer at (0,0) size 3724x180 backgroundClip at (0,0) size 785x980 clip at (0,0) size 785x980 outlineClip at (0,0) size 785x980
     4layer at (0,0) size 3724x180 backgroundClip at (0,0) size 785x980 clip at (0,0) size 785x980
    55  RenderMultiColumnFlowThread at (0,0) size 3724x180
    6 layer at (0,0) size 3724x180 backgroundClip at (0,0) size 785x980 clip at (0,0) size 785x980 outlineClip at (0,0) size 785x980
     6layer at (0,0) size 3724x180 backgroundClip at (0,0) size 785x980 clip at (0,0) size 785x980
    77  RenderBlock {HTML} at (0,0) size 3724x180
    88    RenderBody {BODY} at (8,8) size 3700x164
  • trunk/LayoutTests/platform/mac/fast/multicol/pagination/TopToBottom-rl-expected.txt

    r177774 r196244  
    22  RenderView at (0,0) size 785x600
    33    RenderMultiColumnSet at (0,0) size 785x600
    4 layer at (-2939,0) size 3724x180 backgroundClip at (0,0) size 785x980 clip at (0,0) size 785x980 outlineClip at (0,0) size 785x980
     4layer at (-2939,0) size 3724x180 backgroundClip at (0,0) size 785x980 clip at (0,0) size 785x980
    55  RenderMultiColumnFlowThread at (0,0) size 3724x180
    6 layer at (-2939,0) size 3724x180 backgroundClip at (0,0) size 785x980 clip at (0,0) size 785x980 outlineClip at (0,0) size 785x980
     6layer at (-2939,0) size 3724x180 backgroundClip at (0,0) size 785x980 clip at (0,0) size 785x980
    77  RenderBlock {HTML} at (0,0) size 3724x180
    88    RenderBody {BODY} at (8,8) size 3700x164
  • trunk/LayoutTests/platform/mac/fast/multicol/positive-leading-expected.txt

    r177774 r196244  
    77  RenderBlock {DIV} at (0,0) size 506x505 [border: (3px solid #000000)]
    88    RenderMultiColumnSet at (3,3) size 500x499
    9 layer at (11,11) size 159x1478 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
     9layer at (11,11) size 159x1478 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
    1010  RenderMultiColumnFlowThread at (3,3) size 159x1478
    1111    RenderText {#text} at (0,5) size 159x1468
  • trunk/LayoutTests/platform/mac/fast/multicol/scrolling-column-rules-expected.txt

    r177774 r196244  
    1515  RenderBlock {DIV} at (0,34) size 784x100
    1616    RenderMultiColumnSet at (0,0) size 784x100
    17 layer at (-192,50) size 337x600 backgroundClip at (8,50) size 784x100 clip at (8,50) size 784x100 outlineClip at (8,50) size 784x100
     17layer at (-192,50) size 337x600 backgroundClip at (8,50) size 784x100 clip at (8,50) size 784x100
    1818  RenderMultiColumnFlowThread at (0,0) size 337x600
    1919    RenderBlock {DIV} at (0,0) size 337x600 [bgcolor=#C0C0C0]
  • trunk/LayoutTests/platform/mac/fast/multicol/scrolling-overflow-expected.txt

    r177774 r196244  
    77  RenderBlock {DIV} at (0,0) size 784x300
    88    RenderMultiColumnSet at (0,0) size 784x300
    9 layer at (8,8) size 251x5434 backgroundClip at (0,0) size 5058x585 clip at (0,0) size 5058x585 outlineClip at (0,0) size 5058x585
     9layer at (8,8) size 251x5434 backgroundClip at (0,0) size 5058x585 clip at (0,0) size 5058x585
    1010  RenderMultiColumnFlowThread at (0,0) size 251x5434
    1111    RenderBlock {P} at (0,16) size 251x572
  • trunk/LayoutTests/platform/mac/fast/multicol/span/anonymous-style-inheritance-expected.txt

    r177774 r196244  
    1010        text run at (0,0) width 721: "This is a spanning element at the beginning of the columns block."
    1111    RenderMultiColumnSet at (5,80) size 826x397
    12 layer at (14,23) size 403x792 backgroundClip at (0,0) size 844x585 clip at (0,0) size 844x585 outlineClip at (0,0) size 844x585
     12layer at (14,23) size 403x792 backgroundClip at (0,0) size 844x585 clip at (0,0) size 844x585
    1313  RenderMultiColumnFlowThread at (5,5) size 404x793
    1414    RenderMultiColumnSpannerPlaceholder at (0,0) size 0x0
  • trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.txt

    r177774 r196244  
    132132        text run at (0,0) width 221: "This is a second span."
    133133    RenderMultiColumnSet at (5,363) size 750x127
    134 layer at (13,1042) size 367x662 backgroundClip at (0,0) size 785x1548 clip at (0,0) size 785x1548 outlineClip at (0,0) size 785x1548
     134layer at (13,1042) size 367x662 backgroundClip at (0,0) size 785x1548 clip at (0,0) size 785x1548
    135135  RenderMultiColumnFlowThread at (5,5) size 367x662
    136136    RenderBlock (anonymous) at (0,0) size 367x0
  • trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-child-generated-content-expected.txt

    r177774 r196244  
    305305        text run at (0,0) width 277: "This is a spanning element."
    306306    RenderMultiColumnSet at (5,329) size 750x127
    307 layer at (13,2268) size 367x750 backgroundClip at (0,0) size 785x2740 clip at (0,0) size 785x2740 outlineClip at (0,0) size 785x2740
     307layer at (13,2268) size 367x750 backgroundClip at (0,0) size 785x2740 clip at (0,0) size 785x2740
    308308  RenderMultiColumnFlowThread at (5,5) size 367x750
    309309    RenderBlock (generated) at (0,0) size 367x18 [bgcolor=#FFFF00]
  • trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-child-property-removal-expected.txt

    r177774 r196244  
    266266  RenderBlock {DIV} at (0,2003) size 760x401 [border: (5px solid #800000)]
    267267    RenderMultiColumnSet at (5,5) size 750x390
    268 layer at (13,2016) size 367x764 backgroundClip at (0,0) size 785x2427 clip at (0,0) size 785x2427 outlineClip at (0,0) size 785x2427
     268layer at (13,2016) size 367x764 backgroundClip at (0,0) size 785x2427 clip at (0,0) size 785x2427
    269269  RenderMultiColumnFlowThread at (5,5) size 367x764
    270270    RenderBlock {P} at (0,16) size 367x198
  • trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.txt

    r177774 r196244  
    274274        text run at (0,0) width 277: "This is a spanning element."
    275275    RenderMultiColumnSet at (5,320) size 750x109
    276 layer at (13,2165) size 367x712 backgroundClip at (0,0) size 785x2610 clip at (0,0) size 785x2610 outlineClip at (0,0) size 785x2610
     276layer at (13,2165) size 367x712 backgroundClip at (0,0) size 785x2610 clip at (0,0) size 785x2610
    277277  RenderMultiColumnFlowThread at (5,5) size 367x712
    278278    RenderBlock {P} at (0,16) size 367x198
  • trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-columns-child-expected.txt

    r180364 r196244  
    358358        text run at (0,28) width 84: "siblings."
    359359    RenderMultiColumnSet at (5,322) size 750x125
    360 layer at (13,2967) size 367x666 backgroundClip at (0,0) size 785x3430 clip at (0,0) size 785x3430 outlineClip at (0,0) size 785x3430
     360layer at (13,2967) size 367x666 backgroundClip at (0,0) size 785x3430 clip at (0,0) size 785x3430
    361361  RenderMultiColumnFlowThread at (5,5) size 367x666
    362362    RenderBlock {P} at (0,16) size 367x198
  • trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-columns-child-removal-expected.txt

    r177774 r196244  
    243243  RenderBlock {DIV} at (0,1800) size 760x368 [border: (5px solid #800000)]
    244244    RenderMultiColumnSet at (5,5) size 750x358
    245 layer at (13,1821) size 367x716 backgroundClip at (0,0) size 785x2200 clip at (0,0) size 785x2200 outlineClip at (0,0) size 785x2200
     245layer at (13,1821) size 367x716 backgroundClip at (0,0) size 785x2200 clip at (0,0) size 785x2200
    246246  RenderMultiColumnFlowThread at (5,5) size 367x716
    247247    RenderBlock {P} at (0,16) size 367x198
  • trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-nested-columns-child-dynamic-expected.txt

    r177774 r196244  
    119119        text run at (0,0) width 277: "This is a spanning element."
    120120    RenderMultiColumnSet at (5,214) size 750x223
    121 layer at (13,873) size 367x702 backgroundClip at (0,0) size 785x1325 clip at (0,0) size 785x1325 outlineClip at (0,0) size 785x1325
     121layer at (13,873) size 367x702 backgroundClip at (0,0) size 785x1325 clip at (0,0) size 785x1325
    122122  RenderMultiColumnFlowThread at (5,5) size 367x702
    123123    RenderBlock {P} at (0,16) size 367x198
  • trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-nested-columns-child-expected.txt

    r177774 r196244  
    115115        text run at (0,0) width 635: "This is a spanning element in the middle of the columns block."
    116116    RenderMultiColumnSet at (5,198) size 750x207
    117 layer at (13,873) size 367x654 backgroundClip at (0,0) size 785x1293 clip at (0,0) size 785x1293 outlineClip at (0,0) size 785x1293
     117layer at (13,873) size 367x654 backgroundClip at (0,0) size 785x1293 clip at (0,0) size 785x1293
    118118  RenderMultiColumnFlowThread at (5,5) size 367x654
    119119    RenderBlock (anonymous) at (0,0) size 367x198
  • trunk/LayoutTests/platform/mac/fast/multicol/span/span-margin-collapsing-expected.txt

    r177774 r196244  
    173173        text run at (0,28) width 569: "collapse its margins with the spanning element above it."
    174174    RenderMultiColumnSet at (0,369) size 750x199
    175 layer at (8,1323) size 367x792 backgroundClip at (0,0) size 785x1907 clip at (0,0) size 785x1907 outlineClip at (0,0) size 785x1907
     175layer at (8,1323) size 367x792 backgroundClip at (0,0) size 785x1907 clip at (0,0) size 785x1907
    176176  RenderMultiColumnFlowThread at (0,0) size 367x792
    177177    RenderBlock (anonymous) at (0,0) size 367x396
  • trunk/LayoutTests/platform/mac/fast/multicol/table-vertical-align-expected.txt

    r191623 r196244  
    99  RenderBlock {DIV} at (0,0) size 769x350
    1010    RenderMultiColumnSet at (0,0) size 769x350
    11 layer at (8,8) size 377x1179 backgroundClip at (0,0) size 1562x1010 clip at (0,0) size 1562x1010 outlineClip at (0,0) size 1562x1010
     11layer at (8,8) size 377x1179 backgroundClip at (0,0) size 1562x1010 clip at (0,0) size 1562x1010
    1212  RenderMultiColumnFlowThread at (0,0) size 377x1179
    1313    RenderTable {TABLE} at (0,0) size 377x1179 [border: (1px outset #808080)]
     
    143143  RenderBlock {DIV} at (0,368) size 769x300
    144144    RenderMultiColumnSet at (0,0) size 769x300
    145 layer at (8,376) size 377x1166 backgroundClip at (0,0) size 1562x1010 clip at (0,0) size 1562x1010 outlineClip at (0,0) size 1562x1010
     145layer at (8,376) size 377x1166 backgroundClip at (0,0) size 1562x1010 clip at (0,0) size 1562x1010
    146146  RenderMultiColumnFlowThread at (0,0) size 377x1166
    147147    RenderTable {TABLE} at (0,0) size 377x1166 [border: (1px outset #808080)]
     
    277277  RenderBlock {DIV} at (0,694) size 769x300
    278278    RenderMultiColumnSet at (0,0) size 769x300
    279 layer at (8,702) size 377x1129 backgroundClip at (0,0) size 1562x1010 clip at (0,0) size 1562x1010 outlineClip at (0,0) size 1562x1010
     279layer at (8,702) size 377x1129 backgroundClip at (0,0) size 1562x1010 clip at (0,0) size 1562x1010
    280280  RenderMultiColumnFlowThread at (0,0) size 377x1129
    281281    RenderTable {TABLE} at (0,0) size 377x1129 [border: (1px outset #808080)]
  • trunk/LayoutTests/platform/mac/fast/multicol/tall-image-behavior-expected.txt

    r177774 r196244  
    77  RenderBlock {DIV} at (0,0) size 784x304 [border: (2px solid #0000FF)]
    88    RenderMultiColumnSet at (2,2) size 780x300
    9 layer at (10,10) size 382x650 backgroundClip at (0,0) size 1188x585 clip at (0,0) size 1188x585 outlineClip at (0,0) size 1188x585
     9layer at (10,10) size 382x650 backgroundClip at (0,0) size 1188x585 clip at (0,0) size 1188x585
    1010  RenderMultiColumnFlowThread at (2,2) size 382x650
    1111    RenderBlock {P} at (0,16) size 382x60
  • trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/column-break-with-balancing-expected.txt

    r177774 r196244  
    8989  RenderBlock {DIV} at (404,0) size 388x569 [border: (5px solid #0000FF)]
    9090    RenderMultiColumnSet at (5,5) size 378x559
    91 layer at (417,13) size 756x272 backgroundClip at (0,0) size 808x585 clip at (0,0) size 808x585 outlineClip at (0,0) size 808x585
     91layer at (417,13) size 756x272 backgroundClip at (0,0) size 808x585 clip at (0,0) size 808x585
    9292  RenderMultiColumnFlowThread at (5,5) size 756x272
    9393    RenderBlock (anonymous) at (0,0) size 72x272
  • trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/column-rules-expected.txt

    r177774 r196244  
    77  RenderBlock {DIV} at (0,0) size 766x584 [border: (5px solid #000000)]
    88    RenderMultiColumnSet at (5,15) size 756x554
    9 layer at (13,23) size 2268x174 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
     9layer at (13,23) size 2268x174 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
    1010  RenderMultiColumnFlowThread at (5,15) size 2268x174
    1111    RenderText {#text} at (0,0) size 2268x174
  • trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/float-multicol-expected.txt

    r177774 r196244  
    66  RenderBody {BODY} at (8,8) size 346x1500
    77    RenderMultiColumnSet at (0,0) size 346x1500
    8 layer at (8,8) size 1032x479 backgroundClip at (0,0) size 785x1508 clip at (0,0) size 785x1508 outlineClip at (0,0) size 785x1508
     8layer at (8,8) size 1032x479 backgroundClip at (0,0) size 785x1508 clip at (0,0) size 785x1508
    99  RenderMultiColumnFlowThread at (0,0) size 1032x479
    1010    RenderBlock {DIV} at (19,0) size 57x479 [bgcolor=#00FFFF]
  • trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/float-paginate-complex-expected.txt

    r177774 r196244  
    296296  RenderBlock {DIV} at (1260,0) size 404x1200 [border: (2px solid #000000)]
    297297    RenderMultiColumnSet at (2,2) size 400x1196
    298 layer at (1270,10) size 652x388 backgroundClip at (0,0) size 1680x1208 clip at (0,0) size 1680x1208 outlineClip at (0,0) size 1680x1208
     298layer at (1270,10) size 652x388 backgroundClip at (0,0) size 1680x1208 clip at (0,0) size 1680x1208
    299299  RenderMultiColumnFlowThread at (2,2) size 652x388
    300300    RenderImage {IMG} at (0,0) size 380x388 [bgcolor=#0000FF]
  • trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/float-paginate-expected.txt

    r177774 r196244  
    77  RenderBlock {DIV} at (0,0) size 404x1200 [border: (2px solid #000000)]
    88    RenderMultiColumnSet at (2,2) size 400x1196
    9 layer at (10,10) size 944x388 backgroundClip at (0,0) size 785x1208 clip at (0,0) size 785x1208 outlineClip at (0,0) size 785x1208
     9layer at (10,10) size 944x388 backgroundClip at (0,0) size 785x1208 clip at (0,0) size 785x1208
    1010  RenderMultiColumnFlowThread at (2,2) size 944x388
    1111    RenderText {#text} at (0,0) size 18x113
  • trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/nested-columns-expected.txt

    r177774 r196244  
    66  RenderBody {BODY} at (8,8) size 500x750
    77    RenderMultiColumnSet at (0,0) size 500x750
    8 layer at (8,8) size 1018x367 backgroundClip at (0,0) size 785x1141 clip at (0,0) size 785x1141 outlineClip at (0,0) size 785x1141
     8layer at (8,8) size 1018x367 backgroundClip at (0,0) size 785x1141 clip at (0,0) size 785x1141
    99  RenderMultiColumnFlowThread at (0,0) size 1018x367
    1010    RenderBlock {H1} at (21,0) size 38x367
     
    5050        text run at (0,0) width 364: "Lorem ipsum dolor sit amet, consectetuer adipiscing elit."
    5151        text run at (34,0) width 158: "Nulla varius enim ac mi."
    52 layer at (660,8) size 234x367 backgroundClip at (0,0) size 785x1141 clip at (0,0) size 785x1141 outlineClip at (0,0) size 785x1141
     52layer at (660,8) size 234x367 backgroundClip at (0,0) size 785x1141 clip at (0,0) size 785x1141
    5353  RenderBlock {DIV} at (651,0) size 235x367
    5454    RenderMultiColumnSet at (0,0) size 234x367
    55 layer at (660,8) size 468x176 backgroundClip at (0,0) size 785x1141 clip at (0,0) size 785x1141 outlineClip at (0,0) size 785x1141
     55layer at (660,8) size 468x176 backgroundClip at (0,0) size 785x1141 clip at (0,0) size 785x1141
    5656  RenderMultiColumnFlowThread at (0,0) size 468x176
    5757    RenderText {#text} at (0,0) size 432x172
  • trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/column-break-with-balancing-expected.txt

    r177774 r196244  
    11layer at (0,0) size 808x585
    22  RenderView at (0,0) size 800x585
    3 layer at (-8,0) size 808x585 backgroundClip at (0,0) size 808x585 clip at (0,0) size 808x585 outlineClip at (0,0) size 808x585
     3layer at (-8,0) size 808x585 backgroundClip at (0,0) size 808x585 clip at (0,0) size 808x585
    44  RenderBlock {HTML} at (0,0) size 808x585
    55    RenderBody {BODY} at (8,8) size 792x569
     
    8989  RenderBlock {DIV} at (404,0) size 388x569 [border: (5px solid #0000FF)]
    9090    RenderMultiColumnSet at (5,5) size 378x559
    91 layer at (-373,13) size 756x272 backgroundClip at (0,0) size 808x585 clip at (0,0) size 808x585 outlineClip at (0,0) size 808x585
     91layer at (-373,13) size 756x272 backgroundClip at (0,0) size 808x585 clip at (0,0) size 808x585
    9292  RenderMultiColumnFlowThread at (5,5) size 756x272
    9393    RenderBlock (anonymous) at (0,0) size 72x272
  • trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/column-rules-expected.txt

    r177774 r196244  
    77  RenderBlock {DIV} at (0,0) size 766x584 [border: (5px solid #000000)]
    88    RenderMultiColumnSet at (5,15) size 756x554
    9 layer at (-1481,23) size 2268x174 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
     9layer at (-1481,23) size 2268x174 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
    1010  RenderMultiColumnFlowThread at (5,15) size 2268x174
    1111    RenderText {#text} at (0,0) size 2268x174
  • trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/float-multicol-expected.txt

    r177774 r196244  
    66  RenderBody {BODY} at (8,8) size 346x1500
    77    RenderMultiColumnSet at (0,0) size 346x1500
    8 layer at (-255,8) size 1032x479 backgroundClip at (0,0) size 785x1508 clip at (0,0) size 785x1508 outlineClip at (0,0) size 785x1508
     8layer at (-255,8) size 1032x479 backgroundClip at (0,0) size 785x1508 clip at (0,0) size 785x1508
    99  RenderMultiColumnFlowThread at (0,0) size 1032x479
    1010    RenderBlock {DIV} at (19,0) size 57x479 [bgcolor=#00FFFF]
  • trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/float-paginate-complex-expected.txt

    r177774 r196244  
    11layer at (0,0) size 1680x1208
    22  RenderView at (0,0) size 785x585
    3 layer at (-895,0) size 1680x585 backgroundClip at (0,0) size 1680x1208 clip at (0,0) size 1680x1208 outlineClip at (0,0) size 1680x1208
     3layer at (-895,0) size 1680x585 backgroundClip at (0,0) size 1680x1208 clip at (0,0) size 1680x1208
    44  RenderBlock {HTML} at (0,0) size 1680x585
    55    RenderBody {BODY} at (8,8) size 1664x1200
     
    77  RenderBlock {DIV} at (0,0) size 404x1200 [border: (2px solid #000000)]
    88    RenderMultiColumnSet at (2,2) size 400x1196
    9 layer at (-113,10) size 888x388 backgroundClip at (0,0) size 1680x1208 clip at (0,0) size 1680x1208 outlineClip at (0,0) size 1680x1208
     9layer at (-113,10) size 888x388 backgroundClip at (0,0) size 1680x1208 clip at (0,0) size 1680x1208
    1010  RenderMultiColumnFlowThread at (2,2) size 888x388
    1111    RenderBlock (anonymous) at (0,0) size 252x388
     
    134134        text run at (586,0) width 113: "This is some text."
    135135      RenderBR {BR} at (600,112) size 0x1
    136 layer at (-47,8) size 404x1200 backgroundClip at (0,0) size 1680x1208 clip at (0,0) size 1680x1208 outlineClip at (0,0) size 1680x1208
     136layer at (-47,8) size 404x1200 backgroundClip at (0,0) size 1680x1208 clip at (0,0) size 1680x1208
    137137  RenderBlock {DIV} at (420,0) size 404x1200 [border: (2px solid #000000)]
    138138    RenderMultiColumnSet at (2,2) size 400x1196
    139 layer at (-533,10) size 888x388 backgroundClip at (0,0) size 1680x1208 clip at (0,0) size 1680x1208 outlineClip at (0,0) size 1680x1208
     139layer at (-533,10) size 888x388 backgroundClip at (0,0) size 1680x1208 clip at (0,0) size 1680x1208
    140140  RenderMultiColumnFlowThread at (2,2) size 888x388
    141141    RenderBlock (anonymous) at (0,0) size 252x388
  • trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/float-paginate-expected.txt

    r177774 r196244  
    77  RenderBlock {DIV} at (0,0) size 404x1200 [border: (2px solid #000000)]
    88    RenderMultiColumnSet at (2,2) size 400x1196
    9 layer at (-169,10) size 944x388 backgroundClip at (0,0) size 785x1208 clip at (0,0) size 785x1208 outlineClip at (0,0) size 785x1208
     9layer at (-169,10) size 944x388 backgroundClip at (0,0) size 785x1208 clip at (0,0) size 785x1208
    1010  RenderMultiColumnFlowThread at (2,2) size 944x388
    1111    RenderText {#text} at (0,0) size 18x113
  • trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/nested-columns-expected.txt

    r177774 r196244  
    66  RenderBody {BODY} at (8,8) size 500x750
    77    RenderMultiColumnSet at (0,0) size 500x750
    8 layer at (-241,8) size 1018x367 backgroundClip at (0,0) size 785x1141 clip at (0,0) size 785x1141 outlineClip at (0,0) size 785x1141
     8layer at (-241,8) size 1018x367 backgroundClip at (0,0) size 785x1141 clip at (0,0) size 785x1141
    99  RenderMultiColumnFlowThread at (0,0) size 1018x367
    1010    RenderBlock {H1} at (21,0) size 38x367
     
    5050        text run at (0,0) width 364: "Lorem ipsum dolor sit amet, consectetuer adipiscing elit."
    5151        text run at (34,0) width 158: "Nulla varius enim ac mi."
    52 layer at (-109,8) size 234x367 backgroundClip at (0,0) size 785x1141 clip at (0,0) size 785x1141 outlineClip at (0,0) size 785x1141
     52layer at (-109,8) size 234x367 backgroundClip at (0,0) size 785x1141 clip at (0,0) size 785x1141
    5353  RenderBlock {DIV} at (651,0) size 235x367
    5454    RenderMultiColumnSet at (0,0) size 234x367
    55 layer at (-343,8) size 468x176 backgroundClip at (0,0) size 785x1141 clip at (0,0) size 785x1141 outlineClip at (0,0) size 785x1141
     55layer at (-343,8) size 468x176 backgroundClip at (0,0) size 785x1141 clip at (0,0) size 785x1141
    5656  RenderMultiColumnFlowThread at (0,0) size 468x176
    5757    RenderText {#text} at (0,0) size 432x172
  • trunk/LayoutTests/platform/mac/fast/overflow/clip-rects-fixed-ancestor-expected.txt

    r177774 r196244  
    141141    RenderText {#text} at (6,6) size 52x18
    142142      text run at (6,6) width 52: ".relative"
    143 layer at (705,149) size 162x370 backgroundClip at (0,0) size 785x1029 clip at (0,0) size 785x1029 outlineClip at (0,0) size 785x1029
     143layer at (705,149) size 162x370 backgroundClip at (0,0) size 785x1029 clip at (0,0) size 785x1029
    144144  RenderBlock (positioned) {DIV} at (705,85) size 162x370 [border: (1px solid #999999)]
    145145    RenderBlock (anonymous) at (6,6) size 150x18
    146146      RenderText {#text} at (0,0) size 48x18
    147147        text run at (0,0) width 48: "#fixed3"
    148 layer at (716,178) size 140x330 backgroundClip at (716,178) size 69x330 clip at (717,179) size 68x328 outlineClip at (0,0) size 785x1029
     148layer at (716,178) size 140x330 backgroundClip at (716,178) size 69x330 clip at (717,179) size 68x328
    149149  RenderBlock {DIV} at (11,29) size 140x330 [border: (1px solid #999999)]
    150150    RenderBlock (anonymous) at (6,6) size 128x18
     
    154154      RenderText {#text} at (6,6) size 51x18
    155155        text run at (6,6) width 51: "no style"
    156 layer at (727,277) size 118x70 backgroundClip at (727,277) size 58x70 clip at (728,278) size 57x68 outlineClip at (717,179) size 68x328
     156layer at (727,277) size 118x70 backgroundClip at (727,277) size 58x70 clip at (728,278) size 57x68
    157157  RenderBlock {DIV} at (11,99) size 118x70 [border: (1px solid #999999)]
    158158    RenderBlock (anonymous) at (6,6) size 106x18
     
    162162      RenderText {#text} at (6,6) size 51x18
    163163        text run at (6,6) width 51: "no style"
    164 layer at (727,352) size 118x70 backgroundClip at (727,352) size 58x70 clip at (728,353) size 57x68 outlineClip at (717,179) size 68x328
     164layer at (727,352) size 118x70 backgroundClip at (727,352) size 58x70 clip at (728,353) size 57x68
    165165  RenderBlock {DIV} at (11,174) size 118x70 [border: (1px solid #999999)]
    166166    RenderBlock (anonymous) at (6,6) size 106x18
    167167      RenderText {#text} at (0,0) size 108x18
    168168        text run at (0,0) width 108: ".overflowHidden"
    169 layer at (727,427) size 118x70 backgroundClip at (727,427) size 58x70 clip at (728,428) size 57x68 outlineClip at (717,179) size 68x328
     169layer at (727,427) size 118x70 backgroundClip at (727,427) size 58x70 clip at (728,428) size 57x68
    170170  RenderBlock {DIV} at (11,249) size 118x70 [border: (1px solid #999999)]
    171171    RenderBlock (anonymous) at (6,6) size 106x18
    172172      RenderText {#text} at (0,0) size 108x18
    173173        text run at (0,0) width 108: ".overflowHidden"
    174 layer at (738,456) size 96x30 backgroundClip at (738,456) size 47x30 clip at (739,457) size 46x28 outlineClip at (728,428) size 57x68 scrollWidth 118
     174layer at (738,456) size 96x30 backgroundClip at (738,456) size 47x30 clip at (739,457) size 46x28 scrollWidth 118
    175175  RenderBlock {DIV} at (11,29) size 96x30 [border: (1px solid #999999)]
    176176    RenderText {#text} at (6,6) size 108x18
    177177      text run at (6,6) width 108: ".overflowHidden"
    178 layer at (727,242) size 118x30 backgroundClip at (717,179) size 68x328 clip at (717,179) size 68x328 outlineClip at (717,179) size 68x328
     178layer at (727,242) size 118x30 backgroundClip at (717,179) size 68x328 clip at (717,179) size 68x328
    179179  RenderBlock (relative positioned) {DIV} at (11,64) size 118x30 [border: (1px solid #999999)]
    180180    RenderText {#text} at (6,6) size 52x18
    181181      text run at (6,6) width 52: ".relative"
    182 layer at (738,381) size 96x30 backgroundClip at (728,353) size 57x68 clip at (728,353) size 57x68 outlineClip at (728,353) size 57x68
     182layer at (738,381) size 96x30 backgroundClip at (728,353) size 57x68 clip at (728,353) size 57x68
    183183  RenderBlock (relative positioned) {DIV} at (11,29) size 96x30 [border: (1px solid #999999)]
    184184    RenderText {#text} at (6,6) size 52x18
  • trunk/LayoutTests/platform/mac/fast/overflow/float-in-relpositioned-expected.txt

    r177774 r196244  
    3636layer at (69,301) size 25x25
    3737  RenderBlock (relative positioned) {DIV} at (1,1) size 25x25 [bgcolor=#000000]
    38 layer at (69,301) size 75x75 backgroundClip at (19,301) size 100x85 clip at (19,301) size 100x85 outlineClip at (19,301) size 100x85
     38layer at (69,301) size 75x75 backgroundClip at (19,301) size 100x85 clip at (19,301) size 100x85
    3939  RenderBlock (positioned) {DIV} at (0,0) size 75x75 [bgcolor=#0000FF7F]
    4040layer at (19,463) size 25x25
    4141  RenderBlock (relative positioned) {DIV} at (1,1) size 25x25 [bgcolor=#000000]
    42 layer at (19,463) size 75x75 backgroundClip at (19,413) size 85x100 clip at (19,413) size 85x100 outlineClip at (19,413) size 85x100
     42layer at (19,463) size 75x75 backgroundClip at (19,413) size 85x100 clip at (19,413) size 85x100
    4343  RenderBlock (positioned) {DIV} at (0,0) size 75x75 [bgcolor=#0000FF7F]
  • trunk/LayoutTests/platform/mac/fast/overflow/overflow-auto-position-absolute-expected.txt

    r177774 r196244  
    66layer at (16,16) size 768x568 clip at (16,16) size 753x568 scrollHeight 1024
    77  RenderBlock (positioned) {DIV} at (16,16) size 768x568
    8 layer at (16,16) size 753x1024 backgroundClip at (16,16) size 753x568 clip at (16,16) size 753x568 outlineClip at (16,16) size 753x568
     8layer at (16,16) size 753x1024 backgroundClip at (16,16) size 753x568 clip at (16,16) size 753x568
    99  RenderBlock (positioned) {DIV} at (0,0) size 753x1024 [bgcolor=#008000]
    1010    RenderText {#text} at (0,0) size 316x18
  • trunk/LayoutTests/platform/mac/fast/overflow/overflow-rtl-expected.txt

    r195740 r196244  
    7070layer at (71,358) size 8x4
    7171  RenderBlock (positioned) {DIV} at (56,20) size 8x4 [bgcolor=#0000FF]
    72 layer at (-25,338) size 70x20 backgroundClip at (25,338) size 100x43 clip at (25,338) size 100x43 outlineClip at (25,338) size 100x43
     72layer at (-25,338) size 70x20 backgroundClip at (25,338) size 100x43 clip at (25,338) size 100x43
    7373  RenderBlock (positioned) {DIV} at (-40,0) size 70x20 [bgcolor=#808000]
    7474layer at (15,385) size 115x43 clip at (25,385) size 100x28 scrollWidth 150
     
    7676layer at (71,405) size 8x4
    7777  RenderBlock (positioned) {DIV} at (56,20) size 8x4 [bgcolor=#0000FF]
    78 layer at (105,385) size 70x20 backgroundClip at (25,385) size 100x28 clip at (25,385) size 100x28 outlineClip at (25,385) size 100x28
     78layer at (105,385) size 70x20 backgroundClip at (25,385) size 100x28 clip at (25,385) size 100x28
    7979  RenderBlock (positioned) {DIV} at (90,0) size 70x20 [bgcolor=#808000]
    8080layer at (142,338) size 115x43 clip at (147,338) size 100x43
     
    8282layer at (193,358) size 8x4
    8383  RenderBlock (positioned) {DIV} at (51,20) size 8x4 [bgcolor=#0000FF]
    84 layer at (227,338) size 70x20 backgroundClip at (147,338) size 100x43 clip at (147,338) size 100x43 outlineClip at (147,338) size 100x43
     84layer at (227,338) size 70x20 backgroundClip at (147,338) size 100x43 clip at (147,338) size 100x43
    8585  RenderBlock (positioned) {DIV} at (85,0) size 70x20 [bgcolor=#808000]
    8686layer at (142,385) size 115x43 clip at (147,385) size 100x28 scrollX 50 scrollWidth 150
     
    8888layer at (193,405) size 8x4
    8989  RenderBlock (positioned) {DIV} at (51,20) size 8x4 [bgcolor=#0000FF]
    90 layer at (97,385) size 70x20 backgroundClip at (147,385) size 100x28 clip at (147,385) size 100x28 outlineClip at (147,385) size 100x28
     90layer at (97,385) size 70x20 backgroundClip at (147,385) size 100x28 clip at (147,385) size 100x28
    9191  RenderBlock (positioned) {DIV} at (-45,0) size 70x20 [bgcolor=#808000]
  • trunk/LayoutTests/platform/mac/fast/overflow/paged-x-div-expected.txt

    r177774 r196244  
    77  RenderBlock {DIV} at (0,0) size 404x404 [border: (2px solid #000000)]
    88    RenderMultiColumnSet at (2,2) size 400x385
    9 layer at (10,10) size 400x2213 backgroundClip at (10,10) size 400x385 clip at (10,10) size 400x385 outlineClip at (10,10) size 400x385
     9layer at (10,10) size 400x2213 backgroundClip at (10,10) size 400x385 clip at (10,10) size 400x385
    1010  RenderMultiColumnFlowThread at (2,2) size 400x2213
    1111    RenderText {#text} at (0,0) size 399x2213
  • trunk/LayoutTests/platform/mac/fast/overflow/paged-x-div-with-column-gap-expected.txt

    r177774 r196244  
    77  RenderBlock {DIV} at (0,0) size 404x404 [border: (2px solid #000000)]
    88    RenderMultiColumnSet at (2,2) size 400x385
    9 layer at (-190,10) size 400x2213 backgroundClip at (10,10) size 400x385 clip at (10,10) size 400x385 outlineClip at (10,10) size 400x385
     9layer at (-190,10) size 400x2213 backgroundClip at (10,10) size 400x385 clip at (10,10) size 400x385
    1010  RenderMultiColumnFlowThread at (2,2) size 400x2213
    1111    RenderText {#text} at (0,0) size 399x2213
  • trunk/LayoutTests/platform/mac/fast/overflow/paged-x-on-root-expected.txt

    r177774 r196244  
    22  RenderView at (0,0) size 800x585
    33    RenderMultiColumnSet at (0,0) size 800x585
    4 layer at (0,0) size 800x1097 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585 outlineClip at (0,0) size 1600x585
     4layer at (0,0) size 800x1097 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585
    55  RenderMultiColumnFlowThread at (0,0) size 800x1097
    6 layer at (0,0) size 800x1097 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585 outlineClip at (0,0) size 1600x585
     6layer at (0,0) size 800x1097 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585
    77  RenderBlock {HTML} at (0,0) size 800x1097
    88    RenderBody {BODY} at (8,8) size 784x1081
  • trunk/LayoutTests/platform/mac/fast/overflow/paged-x-with-column-gap-expected.txt

    r177774 r196244  
    22  RenderView at (0,0) size 800x585
    33    RenderMultiColumnSet at (0,0) size 800x585
    4 layer at (0,0) size 800x1097 backgroundClip at (0,0) size 1700x585 clip at (0,0) size 1700x585 outlineClip at (0,0) size 1700x585
     4layer at (0,0) size 800x1097 backgroundClip at (0,0) size 1700x585 clip at (0,0) size 1700x585
    55  RenderMultiColumnFlowThread at (0,0) size 800x1097
    6 layer at (0,0) size 800x1097 backgroundClip at (0,0) size 1700x585 clip at (0,0) size 1700x585 outlineClip at (0,0) size 1700x585
     6layer at (0,0) size 800x1097 backgroundClip at (0,0) size 1700x585 clip at (0,0) size 1700x585
    77  RenderBlock {HTML} at (0,0) size 800x1097
    88    RenderBody {BODY} at (8,8) size 784x1081
  • trunk/LayoutTests/platform/mac/fast/overflow/paged-y-div-expected.txt

    r177774 r196244  
    77  RenderBlock {DIV} at (0,0) size 404x404 [border: (2px solid #000000)]
    88    RenderMultiColumnSet at (2,2) size 400x400
    9 layer at (10,10) size 400x2198 backgroundClip at (10,10) size 400x400 clip at (10,10) size 400x400 outlineClip at (10,10) size 400x400
     9layer at (10,10) size 400x2198 backgroundClip at (10,10) size 400x400 clip at (10,10) size 400x400
    1010  RenderMultiColumnFlowThread at (2,2) size 400x2198
    1111    RenderText {#text} at (0,0) size 399x2198
  • trunk/LayoutTests/platform/mac/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.txt

    r177774 r196244  
    66layer at (0,42) size 800x558 clip at (0,42) size 785x558 scrollY 282 scrollHeight 840
    77  RenderBlock (positioned) {DIV} at (0,42) size 800x558
    8 layer at (0,-240) size 570x840 backgroundClip at (0,42) size 785x558 clip at (0,42) size 785x558 outlineClip at (0,42) size 785x558
     8layer at (0,-240) size 570x840 backgroundClip at (0,42) size 785x558 clip at (0,42) size 785x558
    99  RenderBlock (positioned) {DIV} at (0,0) size 571x840
    1010    RenderBlock (anonymous) at (0,0) size 571x18
  • trunk/LayoutTests/platform/mac/fast/regions/repaint/region-painting-via-layout-expected.txt

    r160708 r196244  
    99Named flows
    1010  Named flow 'flow1'
    11     layer at (0,0) size 784x1180 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
     11    layer at (0,0) size 784x1180 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
    1212      RenderNamedFlowThread at (0,0) size 784x1180
    13     layer at (0,0) size 784x1200 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
     13    layer at (0,0) size 784x1200 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
    1414      RenderBlock (relative positioned) {DIV} at (0,0) size 784x1200
    1515        RenderBlock {DIV} at (0,1000) size 784x200
  • trunk/LayoutTests/platform/mac/fast/repaint/box-shadow-h-expected.txt

    r177774 r196244  
    9696layer at (8,128) size 60x60
    9797  RenderBlock (relative positioned) {DIV} at (0,120) size 60x60
    98 layer at (18,138) size 40x40 backgroundClip at (13,133) size 5x5 clip at (13,133) size 5x5 outlineClip at (13,133) size 5x5
     98layer at (18,138) size 40x40 backgroundClip at (13,133) size 5x5 clip at (13,133) size 5x5
    9999  RenderBlock (positioned) {DIV} at (10,10) size 40x40 [bgcolor=#FFFF77]
    100100layer at (18,198) size 40x40
     
    106106layer at (142,128) size 60x60
    107107  RenderBlock (relative positioned) {DIV} at (0,120) size 60x60
    108 layer at (152,138) size 40x40 backgroundClip at (147,178) size 5x5 clip at (147,178) size 5x5 outlineClip at (147,178) size 5x5
     108layer at (152,138) size 40x40 backgroundClip at (147,178) size 5x5 clip at (147,178) size 5x5
    109109  RenderBlock (positioned) {DIV} at (10,10) size 40x40 [bgcolor=#FFFF77]
    110110layer at (152,198) size 40x40
     
    116116layer at (275,128) size 60x60
    117117  RenderBlock (relative positioned) {DIV} at (0,120) size 60x60
    118 layer at (285,138) size 40x40 backgroundClip at (325,178) size 5x5 clip at (325,178) size 5x5 outlineClip at (325,178) size 5x5
     118layer at (285,138) size 40x40 backgroundClip at (325,178) size 5x5 clip at (325,178) size 5x5
    119119  RenderBlock (positioned) {DIV} at (10,10) size 40x40 [bgcolor=#FFFF77]
    120120layer at (285,198) size 40x40
     
    126126layer at (409,128) size 60x60
    127127  RenderBlock (relative positioned) {DIV} at (0,120) size 60x60
    128 layer at (419,138) size 40x40 backgroundClip at (459,133) size 5x5 clip at (459,133) size 5x5 outlineClip at (459,133) size 5x5
     128layer at (419,138) size 40x40 backgroundClip at (459,133) size 5x5 clip at (459,133) size 5x5
    129129  RenderBlock (positioned) {DIV} at (10,10) size 40x40 [bgcolor=#FFFF77]
    130130layer at (419,198) size 40x40
  • trunk/LayoutTests/platform/mac/fast/repaint/box-shadow-v-expected.txt

    r177774 r196244  
    9696layer at (8,128) size 60x60
    9797  RenderBlock (relative positioned) {DIV} at (0,120) size 60x60
    98 layer at (18,138) size 40x40 backgroundClip at (13,133) size 5x5 clip at (13,133) size 5x5 outlineClip at (13,133) size 5x5
     98layer at (18,138) size 40x40 backgroundClip at (13,133) size 5x5 clip at (13,133) size 5x5
    9999  RenderBlock (positioned) {DIV} at (10,10) size 40x40 [bgcolor=#FFFF77]
    100100layer at (18,198) size 40x40
     
    106106layer at (142,128) size 60x60
    107107  RenderBlock (relative positioned) {DIV} at (0,120) size 60x60
    108 layer at (152,138) size 40x40 backgroundClip at (147,178) size 5x5 clip at (147,178) size 5x5 outlineClip at (147,178) size 5x5
     108layer at (152,138) size 40x40 backgroundClip at (147,178) size 5x5 clip at (147,178) size 5x5
    109109  RenderBlock (positioned) {DIV} at (10,10) size 40x40 [bgcolor=#FFFF77]
    110110layer at (152,198) size 40x40
     
    116116layer at (275,128) size 60x60
    117117  RenderBlock (relative positioned) {DIV} at (0,120) size 60x60
    118 layer at (285,138) size 40x40 backgroundClip at (325,178) size 5x5 clip at (325,178) size 5x5 outlineClip at (325,178) size 5x5
     118layer at (285,138) size 40x40 backgroundClip at (325,178) size 5x5 clip at (325,178) size 5x5
    119119  RenderBlock (positioned) {DIV} at (10,10) size 40x40 [bgcolor=#FFFF77]
    120120layer at (285,198) size 40x40
     
    126126layer at (409,128) size 60x60
    127127  RenderBlock (relative positioned) {DIV} at (0,120) size 60x60
    128 layer at (419,138) size 40x40 backgroundClip at (459,133) size 5x5 clip at (459,133) size 5x5 outlineClip at (459,133) size 5x5
     128layer at (419,138) size 40x40 backgroundClip at (459,133) size 5x5 clip at (459,133) size 5x5
    129129  RenderBlock (positioned) {DIV} at (10,10) size 40x40 [bgcolor=#FFFF77]
    130130layer at (419,198) size 40x40
  • trunk/LayoutTests/platform/mac/fast/repaint/layer-outline-expected.txt

    r196222 r196244  
    2222layer at (18,62) size 100x100
    2323  RenderBlock (positioned) {DIV} at (10,10) size 100x100 [bgcolor=#EEEEEE] [border: (1px solid #000000)]
    24 layer at (148,62) size 100x100 backgroundClip at (138,52) size 100x100 clip at (138,52) size 100x100 outlineClip at (138,52) size 100x100
     24layer at (148,62) size 100x100 backgroundClip at (138,52) size 100x100 clip at (138,52) size 100x100
    2525  RenderBlock (positioned) {DIV} at (140,10) size 100x100 [bgcolor=#EEEEEE] [border: (1px solid #000000)]
    26 layer at (278,62) size 100x100 backgroundClip at (268,52) size 5x5 clip at (268,52) size 5x5 outlineClip at (268,52) size 5x5
     26layer at (278,62) size 100x100 backgroundClip at (268,52) size 5x5 clip at (268,52) size 5x5
    2727  RenderBlock (positioned) {DIV} at (270,10) size 100x100 [bgcolor=#EEEEEE] [border: (1px solid #000000)]
    2828layer at (408,62) size 100x100
    2929  RenderBlock (positioned) {DIV} at (400,10) size 100x100 [bgcolor=#EEEEEE] [border: (1px solid #000000)]
    30 layer at (538,62) size 100x100 backgroundClip at (548,72) size 100x100 clip at (548,72) size 100x100 outlineClip at (548,72) size 100x100
     30layer at (538,62) size 100x100 backgroundClip at (548,72) size 100x100 clip at (548,72) size 100x100
    3131  RenderBlock (positioned) {DIV} at (530,10) size 100x100 [bgcolor=#EEEEEE] [border: (1px solid #000000)]
    32 layer at (668,62) size 100x100 backgroundClip at (773,167) size 5x5 clip at (773,167) size 5x5 outlineClip at (773,167) size 5x5
     32layer at (668,62) size 100x100 backgroundClip at (773,167) size 5x5 clip at (773,167) size 5x5
    3333  RenderBlock (positioned) {DIV} at (660,10) size 100x100 [bgcolor=#EEEEEE] [border: (1px solid #000000)]
    3434layer at (18,322) size 100x100
  • trunk/LayoutTests/platform/mac/fast/repaint/layer-outline-horizontal-expected.txt

    r196222 r196244  
    2222layer at (18,62) size 100x100
    2323  RenderBlock (positioned) {DIV} at (10,10) size 100x100 [bgcolor=#EEEEEE] [border: (1px solid #000000)]
    24 layer at (148,62) size 100x100 backgroundClip at (138,52) size 100x100 clip at (138,52) size 100x100 outlineClip at (138,52) size 100x100
     24layer at (148,62) size 100x100 backgroundClip at (138,52) size 100x100 clip at (138,52) size 100x100
    2525  RenderBlock (positioned) {DIV} at (140,10) size 100x100 [bgcolor=#EEEEEE] [border: (1px solid #000000)]
    26 layer at (278,62) size 100x100 backgroundClip at (268,52) size 5x5 clip at (268,52) size 5x5 outlineClip at (268,52) size 5x5
     26layer at (278,62) size 100x100 backgroundClip at (268,52) size 5x5 clip at (268,52) size 5x5
    2727  RenderBlock (positioned) {DIV} at (270,10) size 100x100 [bgcolor=#EEEEEE] [border: (1px solid #000000)]
    2828layer at (408,62) size 100x100
    2929  RenderBlock (positioned) {DIV} at (400,10) size 100x100 [bgcolor=#EEEEEE] [border: (1px solid #000000)]
    30 layer at (538,62) size 100x100 backgroundClip at (548,72) size 100x100 clip at (548,72) size 100x100 outlineClip at (548,72) size 100x100
     30layer at (538,62) size 100x100 backgroundClip at (548,72) size 100x100 clip at (548,72) size 100x100
    3131  RenderBlock (positioned) {DIV} at (530,10) size 100x100 [bgcolor=#EEEEEE] [border: (1px solid #000000)]
    32 layer at (668,62) size 100x100 backgroundClip at (773,167) size 5x5 clip at (773,167) size 5x5 outlineClip at (773,167) size 5x5
     32layer at (668,62) size 100x100 backgroundClip at (773,167) size 5x5 clip at (773,167) size 5x5
    3333  RenderBlock (positioned) {DIV} at (660,10) size 100x100 [bgcolor=#EEEEEE] [border: (1px solid #000000)]
    3434layer at (18,322) size 100x100
  • trunk/LayoutTests/platform/mac/fast/table/edge-offsets-expected.txt

    r195740 r196244  
    4343        RenderTableRow {TR} at (0,2) size 6x2
    4444          RenderTableCell {TD} at (2,2) size 2x2 [r=0 c=0 rs=1 cs=1]
    45 layer at (82,108) size 60x60 backgroundClip at (9,105) size 100x85 clip at (9,105) size 100x85 outlineClip at (9,105) size 100x85
     45layer at (82,108) size 60x60 backgroundClip at (9,105) size 100x85 clip at (9,105) size 100x85
    4646  RenderBlock (positioned) {DIV} at (70,0) size 60x60 [bgcolor=#C0C0C0]
    47 layer at (-24,228) size 60x60 backgroundClip at (9,225) size 100x85 clip at (9,225) size 100x85 outlineClip at (9,225) size 100x85
     47layer at (-24,228) size 60x60 backgroundClip at (9,225) size 100x85 clip at (9,225) size 100x85
    4848  RenderBlock (positioned) {DIV} at (-130,0) size 60x60 [bgcolor=#C0C0C0]
    49 layer at (12,418) size 60x60 backgroundClip at (9,345) size 85x100 clip at (9,345) size 85x100 outlineClip at (9,345) size 85x100
     49layer at (12,418) size 60x60 backgroundClip at (9,345) size 85x100 clip at (9,345) size 85x100
    5050  RenderBlock (positioned) {DIV} at (0,70) size 60x60 [bgcolor=#C0C0C0]
  • trunk/LayoutTests/platform/mac/fast/transforms/overflow-with-transform-expected.txt

    r177774 r196244  
    99layer at (8,50) size 202x202 clip at (9,51) size 200x200 scrollHeight 516
    1010  RenderBlock (positioned) {DIV} at (8,50) size 202x202 [border: (1px solid #000000)]
    11 layer at (9,67) size 200x500 backgroundClip at (9,51) size 200x200 clip at (9,51) size 200x200 outlineClip at (9,51) size 200x200
     11layer at (9,67) size 200x500 backgroundClip at (9,51) size 200x200 clip at (9,51) size 200x200
    1212  RenderBlock (relative positioned) {DIV} at (1,17) size 200x500 [bgcolor=#808080]
    1313    RenderBlock {P} at (0,0) size 200x108
  • trunk/LayoutTests/platform/mac/fast/transforms/rotated-transform-affects-scrolling-1-expected.txt

    r161884 r196244  
    44  RenderBlock {HTML} at (0,0) size 785x585
    55    RenderBody {BODY} at (8,8) size 769x569
    6 layer at (8,8) size 1304x104 backgroundClip at (0,0) size 932x690 clip at (0,0) size 932x690 outlineClip at (0,0) size 932x690
     6layer at (8,8) size 1304x104 backgroundClip at (0,0) size 932x690 clip at (0,0) size 932x690
    77  RenderBlock {DIV} at (0,0) size 1304x104 [bgcolor=#800080] [border: (2px solid #0000FF) (2px solid #00FFFF) (2px solid #008000) (2px solid #FF0000)]
  • trunk/LayoutTests/platform/mac/fast/transforms/rotated-transform-affects-scrolling-2-expected.txt

    r161884 r196244  
    44  RenderBlock {HTML} at (0,0) size 785x585
    55    RenderBody {BODY} at (8,8) size 769x569
    6 layer at (8,8) size 1304x104 backgroundClip at (0,0) size 824x711 clip at (0,0) size 824x711 outlineClip at (0,0) size 824x711
     6layer at (8,8) size 1304x104 backgroundClip at (0,0) size 824x711 clip at (0,0) size 824x711
    77  RenderBlock {DIV} at (0,0) size 1304x104 [bgcolor=#800080] [border: (2px solid #0000FF) (2px solid #00FFFF) (2px solid #008000) (2px solid #FF0000)]
  • trunk/LayoutTests/platform/mac/fast/writing-mode/Kusa-Makura-background-canvas-expected.txt

    r177774 r196244  
    11layer at (0,0) size 4480x585
    22  RenderView at (0,0) size 800x585
    3 layer at (-3680,0) size 4480x585 backgroundClip at (0,0) size 4480x585 clip at (0,0) size 4480x585 outlineClip at (0,0) size 4480x585
     3layer at (-3680,0) size 4480x585 backgroundClip at (0,0) size 4480x585 clip at (0,0) size 4480x585
    44  RenderBlock {HTML} at (0,0) size 4481x585
    55    RenderBody {BODY} at (58,46) size 4364x493
  • trunk/LayoutTests/platform/mac/printing/single-line-must-not-be-split-into-two-pages-expected.txt

    r182620 r196244  
    33Non-overflowed lines:
    44
    5 layer at (0,0) size 769x7200 backgroundClip at (8,78) size 769x7200 clip at (8,78) size 769x7200 outlineClip at (8,78) size 769x7200
     5layer at (0,0) size 769x7200 backgroundClip at (8,78) size 769x7200 clip at (8,78) size 769x7200
    66  RenderBlock (relative positioned) {DIV} at (0,70) size 769x7200
    77    RenderText {#text} at (0,0) size 91x18
     
    12071207Overflowed lines:
    12081208
    1209 layer at (0,0) size 4742x7200 backgroundClip at (8,7278) size 4742x7200 clip at (8,7278) size 4742x7200 outlineClip at (8,7278) size 4742x7200
     1209layer at (0,0) size 4742x7200 backgroundClip at (8,7278) size 4742x7200 clip at (8,7278) size 4742x7200
    12101210  RenderBlock (relative positioned) {DIV} at (0,7270) size 769x7200
    12111211    RenderText {#text} at (0,0) size 4742x18
  • trunk/LayoutTests/platform/mac/scrollbars/scrollbars-on-positioned-content-expected.txt

    r177774 r196244  
    1010  RenderBlock (positioned) {DIV} at (8,50) size 304x550 [border: (1px solid #FF0000)]
    1111    RenderBlock {DIV} at (1,412) size 15x900 [bgcolor=#008000]
    12 layer at (9,51) size 302x411 backgroundClip at (9,51) size 287x411 clip at (10,52) size 286x400 outlineClip at (9,51) size 287x533 scrollWidth 500
     12layer at (9,51) size 302x411 backgroundClip at (9,51) size 287x411 clip at (10,52) size 286x400 scrollWidth 500
    1313  RenderBlock {DIV} at (1,1) size 302x411 [border: (1px solid #0000FF)]
    1414    RenderBlock {DIV} at (1,1) size 500x400 [bgcolor=#800080]
  • trunk/LayoutTests/platform/mac/svg/custom/getscreenctm-in-scrollable-div-area-nested-expected.txt

    r177774 r196244  
    66layer at (0,0) size 750x550 clip at (0,0) size 735x535 scrollY 300 scrollHeight 1000
    77  RenderBlock {div} at (0,0) size 750x550
    8 layer at (0,-300) size 725x1000 backgroundClip at (0,0) size 725x535 clip at (0,0) size 710x535 outlineClip at (0,0) size 735x535 scrollY 1400 scrollHeight 4100
     8layer at (0,-300) size 725x1000 backgroundClip at (0,0) size 725x535 clip at (0,0) size 710x535 scrollY 1400 scrollHeight 4100
    99  RenderBlock {div} at (0,0) size 725x1000
    1010    RenderSVGRoot {svg} at (266,250) size 268x154
  • trunk/LayoutTests/platform/mac/svg/custom/image-rescale-clip-expected.txt

    r177774 r196244  
    1010          RenderText {#text} at (0,0) size 360x18
    1111            text run at (0,0) width 360: "This test verifies correct paint of clipped, scaled images."
    12 layer at (8,8) size 160x105 backgroundClip at (8,8) size 150x15 clip at (8,8) size 150x15 outlineClip at (8,8) size 150x15
     12layer at (8,8) size 160x105 backgroundClip at (8,8) size 150x15 clip at (8,8) size 150x15
    1313  RenderBlock (positioned) {DIV} at (8,8) size 160x105
    1414    RenderText {#text} at (0,0) size 0x0
    1515    RenderText {#text} at (0,0) size 0x0
    16 layer at (13,13) size 160x105 backgroundClip at (8,8) size 150x15 clip at (8,8) size 150x15 outlineClip at (8,8) size 150x15
     16layer at (13,13) size 160x105 backgroundClip at (8,8) size 150x15 clip at (8,8) size 150x15
    1717  RenderImage {IMG} at (0,0) size 160x105
  • trunk/LayoutTests/svg/overflow/overflow-on-foreignObject-expected.txt

    r149088 r196244  
    44  RenderSVGRoot {svg} at (100,100) size 300x300
    55    RenderSVGForeignObject {foreignObject} at (100,100) size 300x300
    6 layer at (0,0) size 6006x6006 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
     6layer at (0,0) size 6006x6006 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
    77  RenderBlock (positioned) {html:div} at (0,0) size 6006x6006 [bgcolor=#008000] [border: (3px solid #000000)]
  • trunk/Source/WebCore/ChangeLog

    r196242 r196244  
     12016-02-07  Zalan Bujtas  <zalan@apple.com>
     2
     3        Outline does not clip when ancestor has overflow: hidden and requires layer.
     4        https://bugs.webkit.org/show_bug.cgi?id=153901
     5
     6        Now that outline is part of visual overflow, we no longer need the special outline cliprect.
     7        PaintPhaseChildOutlines drawing will switch to foreground cliprect. It ensures proper overflow clipping
     8        at parent level. PaintPhaseSelfOutline drawing will start using the visual overflow inflated background cliprect.
     9        With this change, outline will be using the same cliprects as the other visual overflow properties (box-shadow etc).
     10
     11        Reviewed by David Hyatt.
     12
     13        Test: fast/repaint/outline-with-overflow-hidden-ancestor.html
     14
     15        * rendering/LayerFragment.h:
     16        (WebCore::LayerFragment::setRects):
     17        (WebCore::LayerFragment::moveBy): Deleted.
     18        (WebCore::LayerFragment::intersect): Deleted.
     19        * rendering/RenderLayer.cpp:
     20        (WebCore::RenderLayer::collectFragments):
     21        (WebCore::RenderLayer::paintOutlineForFragments):
     22        (WebCore::RenderLayer::calculateClipRects):
     23        (WebCore::RenderLayer::paintForegroundForFragments): Deleted.
     24        * rendering/RenderLayer.h:
     25        * rendering/RenderTreeAsText.cpp:
     26        (WebCore::write):
     27        (WebCore::writeLayers):
     28
    1292016-02-07  Daniel Bates  <dabates@apple.com>
    230
  • trunk/Source/WebCore/rendering/LayerFragment.h

    r178534 r196244  
    3535    LayerFragment() = default;
    3636   
    37     void setRects(const LayoutRect& bounds, const ClipRect& background, const ClipRect& foreground, const ClipRect& outline, const LayoutRect* bbox)
     37    void setRects(const LayoutRect& bounds, const ClipRect& background, const ClipRect& foreground, const LayoutRect* bbox)
    3838    {
    3939        layerBounds = bounds;
    4040        backgroundRect = background;
    4141        foregroundRect = foreground;
    42         outlineRect = outline;
    4342        if (bbox) {
    4443            boundingBox = *bbox;
     
    5251        backgroundRect.moveBy(offset);
    5352        foregroundRect.moveBy(offset);
    54         outlineRect.moveBy(offset);
    5553        paginationClip.moveBy(offset);
    5654        boundingBox.moveBy(offset);
     
    6159        backgroundRect.intersect(rect);
    6260        foregroundRect.intersect(rect);
    63         outlineRect.intersect(rect);
    6461        boundingBox.intersect(rect);
    6562    }
     
    6966        backgroundRect.intersect(clipRect);
    7067        foregroundRect.intersect(clipRect);
    71         outlineRect.intersect(clipRect);
    7268    }
    7369
     
    7773    ClipRect backgroundRect;
    7874    ClipRect foregroundRect;
    79     ClipRect outlineRect;
    8075    LayoutRect boundingBox;
    8176   
  • trunk/Source/WebCore/rendering/RenderLayer.cpp

    r196222 r196244  
    44694469        LayerFragment fragment;
    44704470        ClipRectsContext clipRectsContext(rootLayer, clipRectsType, inOverlayScrollbarSizeRelevancy, respectOverflowClip);
    4471         calculateRects(clipRectsContext, dirtyRect, fragment.layerBounds, fragment.backgroundRect, fragment.foregroundRect, fragment.outlineRect, offsetFromRoot);
     4471        calculateRects(clipRectsContext, dirtyRect, fragment.layerBounds, fragment.backgroundRect, fragment.foregroundRect, offsetFromRoot);
    44724472        fragments.append(fragment);
    44734473        return;
     
    44834483    ClipRect backgroundRectInFlowThread;
    44844484    ClipRect foregroundRectInFlowThread;
    4485     ClipRect outlineRectInFlowThread;
    44864485    calculateRects(paginationClipRectsContext, LayoutRect::infiniteRect(), layerBoundsInFlowThread, backgroundRectInFlowThread, foregroundRectInFlowThread,
    4487         outlineRectInFlowThread, offsetWithinPaginatedLayer);
     4486        offsetWithinPaginatedLayer);
    44884487   
    44894488    // Take our bounding box within the flow thread and clip it.
     
    45294528               
    45304529                // Set our four rects with all clipping applied that was internal to the flow thread.
    4531                 fragment.setRects(layerBoundsInFlowThread, backgroundRectInFlowThread, foregroundRectInFlowThread, outlineRectInFlowThread, &layerBoundingBoxInFlowThread);
     4530                fragment.setRects(layerBoundsInFlowThread, backgroundRectInFlowThread, foregroundRectInFlowThread, &layerBoundingBoxInFlowThread);
    45324531               
    45334532                // Shift to the root-relative physical position used when painting the flow thread in this fragment.
     
    45724571    for (auto& fragment : fragments) {
    45734572        // Set our four rects with all clipping applied that was internal to the flow thread.
    4574         fragment.setRects(layerBoundsInFlowThread, backgroundRectInFlowThread, foregroundRectInFlowThread, outlineRectInFlowThread, &layerBoundingBoxInFlowThread);
     4573        fragment.setRects(layerBoundsInFlowThread, backgroundRectInFlowThread, foregroundRectInFlowThread, &layerBoundingBoxInFlowThread);
    45754574       
    45764575        // Shift to the root-relative physical position used when painting the flow thread in this fragment.
     
    47004699        paintForegroundForFragmentsWithPhase(PaintPhaseFloat, layerFragments, context, localPaintingInfo, localPaintBehavior, subtreePaintRootForRenderer);
    47014700        paintForegroundForFragmentsWithPhase(PaintPhaseForeground, layerFragments, context, localPaintingInfo, localPaintBehavior, subtreePaintRootForRenderer);
    4702 
    4703         // Switch the clipping rectangle to the outline version.
    4704         if (shouldClip && clippedRect != layerFragments[0].outlineRect) {
    4705             restoreClip(context, localPaintingInfo.paintDirtyRect, clippedRect);
    4706            
    4707             if (!layerFragments[0].outlineRect.isEmpty()) {
    4708                 clippedRect = layerFragments[0].outlineRect;
    4709                 clipToRect(localPaintingInfo, context, clippedRect);
    4710             } else
    4711                 shouldClip = false;
    4712         }
    4713 
    47144701        paintForegroundForFragmentsWithPhase(PaintPhaseChildOutlines, layerFragments, context, localPaintingInfo, localPaintBehavior, subtreePaintRootForRenderer);
    47154702    }
     
    47454732{
    47464733    for (const auto& fragment : layerFragments) {
    4747         if (fragment.outlineRect.isEmpty())
     4734        if (fragment.backgroundRect.isEmpty())
    47484735            continue;
    47494736   
    47504737        // Paint our own outline
    4751         PaintInfo paintInfo(context, fragment.outlineRect.rect(), PaintPhaseSelfOutline, paintBehavior, subtreePaintRootForRenderer, nullptr, nullptr, &localPaintingInfo.rootLayer->renderer());
    4752         clipToRect(localPaintingInfo, context, fragment.outlineRect, DoNotIncludeSelfForBorderRadius);
     4738        PaintInfo paintInfo(context, fragment.backgroundRect.rect(), PaintPhaseSelfOutline, paintBehavior, subtreePaintRootForRenderer, nullptr, nullptr, &localPaintingInfo.rootLayer->renderer());
     4739        clipToRect(localPaintingInfo, context, fragment.backgroundRect, DoNotIncludeSelfForBorderRadius);
    47534740        renderer().paint(paintInfo, toLayoutPoint(fragment.layerBounds.location() - renderBoxLocation() + localPaintingInfo.subpixelAccumulation));
    4754         restoreClip(context, localPaintingInfo.paintDirtyRect, fragment.outlineRect);
     4741        restoreClip(context, localPaintingInfo.paintDirtyRect, fragment.backgroundRect);
    47554742    }
    47564743}
     
    55685555
    55695556void RenderLayer::calculateRects(const ClipRectsContext& clipRectsContext, const LayoutRect& paintDirtyRect, LayoutRect& layerBounds,
    5570     ClipRect& backgroundRect, ClipRect& foregroundRect, ClipRect& outlineRect, const LayoutSize& offsetFromRoot) const
     5557    ClipRect& backgroundRect, ClipRect& foregroundRect, const LayoutSize& offsetFromRoot) const
    55715558{
    55725559    if (clipRectsContext.rootLayer != this && parent()) {
     
    55885575
    55895576    foregroundRect = backgroundRect;
    5590     outlineRect = backgroundRect;
    55915577
    55925578    RenderFlowThread* flowThread = namedFlowFragment ? namedFlowFragment->flowThread() : nullptr;
     
    56125598
    56135599        foregroundRect = backgroundRect;
    5614         outlineRect = backgroundRect;
    56155600    }
    56165601
     
    56295614            backgroundRect.intersect(newPosClip);
    56305615            foregroundRect.intersect(newPosClip);
    5631             outlineRect.intersect(newPosClip);
    56325616        }
    56335617
     
    56725656    RenderLayer* clippingRootLayer = clippingRootForPainting();
    56735657    LayoutRect layerBounds;
    5674     ClipRect backgroundRect, foregroundRect, outlineRect;
     5658    ClipRect backgroundRect;
     5659    ClipRect foregroundRect;
    56755660    ClipRectsContext clipRectsContext(clippingRootLayer, TemporaryClipRects);
    56765661    // Need to use temporary clip rects, because the value of 'dontClipToOverflow' may be different from the painting path (<rdar://problem/11844909>).
    5677     calculateRects(clipRectsContext, renderer().view().unscaledDocumentRect(), layerBounds, backgroundRect, foregroundRect, outlineRect, offsetFromAncestor(clipRectsContext.rootLayer));
     5662    calculateRects(clipRectsContext, renderer().view().unscaledDocumentRect(), layerBounds, backgroundRect, foregroundRect, offsetFromAncestor(clipRectsContext.rootLayer));
    56785663    return clippingRootLayer->renderer().localToAbsoluteQuad(FloatQuad(foregroundRect.rect())).enclosingBoundingBox();
    56795664}
     
    56855670    RenderLayer* clippingRootLayer = clippingRootForPainting();
    56865671    LayoutRect layerBounds;
    5687     ClipRect backgroundRect, foregroundRect, outlineRect;
     5672    ClipRect backgroundRect;
     5673    ClipRect foregroundRect;
    56885674    ClipRectsContext clipRectsContext(clippingRootLayer, PaintingClipRects);
    5689     calculateRects(clipRectsContext, renderer().view().documentRect(), layerBounds, backgroundRect, foregroundRect, outlineRect, offsetFromAncestor(clippingRootLayer));
     5675    calculateRects(clipRectsContext, renderer().view().documentRect(), layerBounds, backgroundRect, foregroundRect, offsetFromAncestor(clippingRootLayer));
    56905676    return clippingRootLayer->renderer().localToAbsoluteQuad(FloatQuad(backgroundRect.rect())).enclosingBoundingBox();
    56915677}
     
    57005686
    57015687    LayoutRect layerBounds;
    5702     ClipRect backgroundRect, foregroundRect, outlineRect;
     5688    ClipRect backgroundRect;
     5689    ClipRect foregroundRect;
    57035690    ClipRectsContext clipRectsContext(clippingRootLayer, PaintingClipRects);
    5704     calculateRects(clipRectsContext, LayoutRect::infiniteRect(), layerBounds, backgroundRect, foregroundRect, outlineRect, offsetFromRoot);
     5691    calculateRects(clipRectsContext, LayoutRect::infiniteRect(), layerBounds, backgroundRect, foregroundRect, offsetFromRoot);
    57055692
    57065693    LayoutRect clipRect = backgroundRect.rect();
  • trunk/Source/WebCore/rendering/RenderLayer.h

    r195453 r196244  
    491491    // Pass offsetFromRoot if known.
    492492    void calculateRects(const ClipRectsContext&, const LayoutRect& paintDirtyRect, LayoutRect& layerBounds,
    493         ClipRect& backgroundRect, ClipRect& foregroundRect, ClipRect& outlineRect, const LayoutSize& offsetFromRoot) const;
     493        ClipRect& backgroundRect, ClipRect& foregroundRect, const LayoutSize& offsetFromRoot) const;
    494494
    495495    LayoutRect childrenClipRect() const; // Returns the foreground clip rect of the layer in the document's coordinate space.
  • trunk/Source/WebCore/rendering/RenderTreeAsText.cpp

    r194466 r196244  
    590590};
    591591
    592 static void write(TextStream& ts, RenderLayer& l,
    593                   const LayoutRect& layerBounds, const LayoutRect& backgroundClipRect, const LayoutRect& clipRect, const LayoutRect& outlineClipRect,
    594                   LayerPaintPhase paintPhase = LayerPaintPhaseAll, int indent = 0, RenderAsTextBehavior behavior = RenderAsTextBehaviorNormal)
     592static void write(TextStream& ts, const RenderLayer& layer, const LayoutRect& layerBounds, const LayoutRect& backgroundClipRect, const LayoutRect& clipRect,
     593    LayerPaintPhase paintPhase = LayerPaintPhaseAll, int indent = 0, RenderAsTextBehavior behavior = RenderAsTextBehaviorNormal)
    595594{
    596595    IntRect adjustedLayoutBounds = snappedIntRect(layerBounds);
    597596    IntRect adjustedBackgroundClipRect = snappedIntRect(backgroundClipRect);
    598597    IntRect adjustedClipRect = snappedIntRect(clipRect);
    599     IntRect adjustedOutlineClipRect = snappedIntRect(outlineClipRect);
    600598
    601599    writeIndent(ts, indent);
     
    604602   
    605603    if (behavior & RenderAsTextShowAddresses)
    606         ts << static_cast<const void*>(&l) << " ";
     604        ts << static_cast<const void*>(&layer) << " ";
    607605     
    608606    ts << adjustedLayoutBounds;
     
    613611        if (!adjustedClipRect.contains(adjustedLayoutBounds))
    614612            ts << " clip " << adjustedClipRect;
    615         if (!adjustedOutlineClipRect.contains(adjustedLayoutBounds))
    616             ts << " outlineClip " << adjustedOutlineClipRect;
    617     }
    618 
    619     if (l.renderer().hasOverflowClip()) {
    620         if (l.scrollOffset().x())
    621             ts << " scrollX " << l.scrollOffset().x();
    622         if (l.scrollOffset().y())
    623             ts << " scrollY " << l.scrollOffset().y();
    624         if (l.renderBox() && roundToInt(l.renderBox()->clientWidth()) != l.scrollWidth())
    625             ts << " scrollWidth " << l.scrollWidth();
    626         if (l.renderBox() && roundToInt(l.renderBox()->clientHeight()) != l.scrollHeight())
    627             ts << " scrollHeight " << l.scrollHeight();
     613    }
     614
     615    if (layer.renderer().hasOverflowClip()) {
     616        if (layer.scrollOffset().x())
     617            ts << " scrollX " << layer.scrollOffset().x();
     618        if (layer.scrollOffset().y())
     619            ts << " scrollY " << layer.scrollOffset().y();
     620        if (layer.renderBox() && roundToInt(layer.renderBox()->clientWidth()) != layer.scrollWidth())
     621            ts << " scrollWidth " << layer.scrollWidth();
     622        if (layer.renderBox() && roundToInt(layer.renderBox()->clientHeight()) != layer.scrollHeight())
     623            ts << " scrollHeight " << layer.scrollHeight();
    628624    }
    629625
     
    634630
    635631    if (behavior & RenderAsTextShowCompositedLayers) {
    636         if (l.isComposited())
    637             ts << " (composited, bounds=" << l.backing()->compositedBounds() << ", drawsContent=" << l.backing()->graphicsLayer()->drawsContent() << ", paints into ancestor=" << l.backing()->paintsIntoCompositedAncestor() << ")";
     632        if (layer.isComposited()) {
     633            ts << " (composited, bounds=" << layer.backing()->compositedBounds() << ", drawsContent=" << layer.backing()->graphicsLayer()->drawsContent()
     634                << ", paints into ancestor=" << layer.backing()->paintsIntoCompositedAncestor() << ")";
     635        }
    638636    }
    639637
    640638#if ENABLE(CSS_COMPOSITING)
    641     if (l.isolatesBlending())
     639    if (layer.isolatesBlending())
    642640        ts << " isolatesBlending";
    643     if (l.hasBlendMode())
    644         ts << " blendMode: " << compositeOperatorName(CompositeSourceOver, l.blendMode());
     641    if (layer.hasBlendMode())
     642        ts << " blendMode: " << compositeOperatorName(CompositeSourceOver, layer.blendMode());
    645643#endif
    646644   
     
    648646
    649647    if (paintPhase != LayerPaintPhaseBackground)
    650         write(ts, l.renderer(), indent + 1, behavior);
     648        write(ts, layer.renderer(), indent + 1, behavior);
    651649}
    652650
     
    747745    // Calculate the clip rects we should use.
    748746    LayoutRect layerBounds;
    749     ClipRect damageRect, clipRectToApply, outlineRect;
    750     l->calculateRects(RenderLayer::ClipRectsContext(rootLayer, TemporaryClipRects), paintDirtyRect, layerBounds, damageRect, clipRectToApply, outlineRect, l->offsetFromAncestor(rootLayer));
     747    ClipRect damageRect;
     748    ClipRect clipRectToApply;
     749    l->calculateRects(RenderLayer::ClipRectsContext(rootLayer, TemporaryClipRects), paintDirtyRect, layerBounds, damageRect, clipRectToApply, l->offsetFromAncestor(rootLayer));
    751750
    752751    // Ensure our lists are up-to-date.
     
    757756    bool paintsBackgroundSeparately = negList && negList->size() > 0;
    758757    if (shouldPaint && paintsBackgroundSeparately)
    759         write(ts, *l, layerBounds, damageRect.rect(), clipRectToApply.rect(), outlineRect.rect(), LayerPaintPhaseBackground, indent, behavior);
     758        write(ts, *l, layerBounds, damageRect.rect(), clipRectToApply.rect(), LayerPaintPhaseBackground, indent, behavior);
    760759
    761760    if (negList) {
     
    771770
    772771    if (shouldPaint)
    773         write(ts, *l, layerBounds, damageRect.rect(), clipRectToApply.rect(), outlineRect.rect(), paintsBackgroundSeparately ? LayerPaintPhaseForeground : LayerPaintPhaseAll, indent, behavior);
     772        write(ts, *l, layerBounds, damageRect.rect(), clipRectToApply.rect(), paintsBackgroundSeparately ? LayerPaintPhaseForeground : LayerPaintPhaseAll, indent, behavior);
    774773
    775774    if (Vector<RenderLayer*>* normalFlowList = l->normalFlowList()) {
Note: See TracChangeset for help on using the changeset viewer.