<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[196244] trunk</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/196244">196244</a></dd>
<dt>Author</dt> <dd>zalan@apple.com</dd>
<dt>Date</dt> <dd>2016-02-07 16:33:40 -0800 (Sun, 07 Feb 2016)</dd>
</dl>

<h3>Log Message</h3>
<pre>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:</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsChangeLog">trunk/LayoutTests/ChangeLog</a></li>
<li><a href="#trunkLayoutTestscompositinggeometrylimitlayerboundsoverflowrepaintexpectedtxt">trunk/LayoutTests/compositing/geometry/limit-layer-bounds-overflow-repaint-expected.txt</a></li>
<li><a href="#trunkLayoutTestscompositingmasksmaskofclippedlayerexpectedtxt">trunk/LayoutTests/compositing/masks/mask-of-clipped-layer-expected.txt</a></li>
<li><a href="#trunkLayoutTestscss2120110323absposnonreplacedwidthmargin000expectedtxt">trunk/LayoutTests/css2.1/20110323/abspos-non-replaced-width-margin-000-expected.txt</a></li>
<li><a href="#trunkLayoutTestscss2120110323absposreplacedwidthmargin000expectedtxt">trunk/LayoutTests/css2.1/20110323/abspos-replaced-width-margin-000-expected.txt</a></li>
<li><a href="#trunkLayoutTestscss3blendingblendmodeisolationturnoffselfpaintinglayer2expectedtxt">trunk/LayoutTests/css3/blending/blend-mode-isolation-turn-off-self-painting-layer2-expected.txt</a></li>
<li><a href="#trunkLayoutTestscss3blendingblendmodeisolationturnonselfpaintinglayerexpectedtxt">trunk/LayoutTests/css3/blending/blend-mode-isolation-turn-on-self-painting-layer-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastblockpositioningnegativerelpositionexpectedtxt">trunk/LayoutTests/fast/block/positioning/negative-rel-position-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastdynamicstaticYexpectedtxt">trunk/LayoutTests/fast/dynamic/staticY-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastinlineabsolutepositionedblockincentredblockexpectedtxt">trunk/LayoutTests/fast/inline/absolute-positioned-block-in-centred-block-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastmulticolflippedblocksborderafterexpectedtxt">trunk/LayoutTests/fast/multicol/flipped-blocks-border-after-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastmulticolpaginationLeftToRighttbhittestexpectedtxt">trunk/LayoutTests/fast/multicol/pagination/LeftToRight-tb-hittest-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastmulticolpaginationRightToLeftrlhittestexpectedtxt">trunk/LayoutTests/fast/multicol/pagination/RightToLeft-rl-hittest-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastmulticolpaginationhhorizontalbtexpectedtxt">trunk/LayoutTests/fast/multicol/pagination-h-horizontal-bt-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastmulticolpaginationhhorizontaltbexpectedtxt">trunk/LayoutTests/fast/multicol/pagination-h-horizontal-tb-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastmulticolpaginationhverticalrlexpectedtxt">trunk/LayoutTests/fast/multicol/pagination-h-vertical-rl-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastmulticolpaginationvhorizontalbtexpectedtxt">trunk/LayoutTests/fast/multicol/pagination-v-horizontal-bt-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastmulticolpaginationvverticallrexpectedtxt">trunk/LayoutTests/fast/multicol/pagination-v-vertical-lr-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastmulticolpaginationvverticalrlexpectedtxt">trunk/LayoutTests/fast/multicol/pagination-v-vertical-rl-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastmulticolprogressionreverseexpectedtxt">trunk/LayoutTests/fast/multicol/progression-reverse-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastmulticolverticalrlruleswithborderbeforeexpectedtxt">trunk/LayoutTests/fast/multicol/vertical-rl/rules-with-border-before-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastoverflowoverflowupdatetransformexpectedtxt">trunk/LayoutTests/fast/overflow/overflow-update-transform-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastoverflowpositionrelativeexpectedtxt">trunk/LayoutTests/fast/overflow/position-relative-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastrepaintfocusringexpectedtxt">trunk/LayoutTests/fast/repaint/focus-ring-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfasttableoverflowtablecollapsedborderscellpaintingexpectedtxt">trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-cell-painting-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfasttableoverflowtablecollapsedborderscellpaintingtableselfpaintinglayerexpectedtxt">trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-cell-painting-table-self-painting-layer-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfasttableoverflowtablecollapsedborderssectionlayerpaintingexpectedtxt">trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-section-layer-painting-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfasttableoverflowtablecollapsedborderssectionlayertableselfpaintinglayerexpectedtxt">trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-section-layer-table-self-painting-layer-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfasttableoverflowtablecollapsedborderssectionselfpaintinglayerpaintingexpectedtxt">trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-section-self-painting-layer-painting-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfasttableoverflowtablecollapsedborderssectionselfpaintinglayertableselfpaintinglayerexpectedtxt">trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-section-self-painting-layer-table-self-painting-layer-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccompositinggeometryclippingforegroundexpectedtxt">trunk/LayoutTests/platform/mac/compositing/geometry/clipping-foreground-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccompositinggeometryrootlayerupdateexpectedtxt">trunk/LayoutTests/platform/mac/compositing/geometry/root-layer-update-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccompositingoverflowancestoroverflowexpectedtxt">trunk/LayoutTests/platform/mac/compositing/overflow/ancestor-overflow-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccompositingoverflownestedscrollingexpectedtxt">trunk/LayoutTests/platform/mac/compositing/overflow/nested-scrolling-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccompositingoverflowoverflowscrollexpectedtxt">trunk/LayoutTests/platform/mac/compositing/overflow/overflow-scroll-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccompositingoverflowparentoverflowexpectedtxt">trunk/LayoutTests/platform/mac/compositing/overflow/parent-overflow-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccompositingoverflowscrollbarpaintingexpectedtxt">trunk/LayoutTests/platform/mac/compositing/overflow/scrollbar-painting-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccompositingreflectionsnestedreflectiononoverflowexpectedtxt">trunk/LayoutTests/platform/mac/compositing/reflections/nested-reflection-on-overflow-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccompositingsiblingpositioningexpectedtxt">trunk/LayoutTests/platform/mac/compositing/sibling-positioning-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss3blendingblendmodeoverflowexpectedtxt">trunk/LayoutTests/platform/mac/css3/blending/blend-mode-overflow-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss3unicodebidiisolatebasicexpectedtxt">trunk/LayoutTests/platform/mac/css3/unicode-bidi-isolate-basic-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastblockfloatoverhangingtallblockexpectedtxt">trunk/LayoutTests/platform/mac/fast/block/float/overhanging-tall-block-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastblockpositioningautoverticalrl007expectedtxt">trunk/LayoutTests/platform/mac/fast/block/positioning/auto/vertical-rl/007-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastblockpositioningverticalrlfixedpositioningexpectedtxt">trunk/LayoutTests/platform/mac/fast/block/positioning/vertical-rl/fixed-positioning-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastbordersborderantialiasingexpectedtxt">trunk/LayoutTests/platform/mac/fast/borders/border-antialiasing-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastclip001expectedtxt">trunk/LayoutTests/platform/mac/fast/clip/001-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastclip013expectedtxt">trunk/LayoutTests/platform/mac/fast/clip/013-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastclip014expectedtxt">trunk/LayoutTests/platform/mac/fast/clip/014-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastclip016expectedtxt">trunk/LayoutTests/platform/mac/fast/clip/016-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastclipoutlineoverflowClipexpectedtxt">trunk/LayoutTests/platform/mac/fast/clip/outline-overflowClip-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastcssclipzoomingexpectedtxt">trunk/LayoutTests/platform/mac/fast/css/clip-zooming-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastformsvalidationmessageappearanceexpectedtxt">trunk/LayoutTests/platform/mac/fast/forms/validation-message-appearance-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastinlineleftrightcenterinlinealignmentinltrandrtlblocksexpectedtxt">trunk/LayoutTests/platform/mac/fast/inline/left-right-center-inline-alignment-in-ltr-and-rtl-blocks-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastlinegridlinegridinsidecolumnsexpectedtxt">trunk/LayoutTests/platform/mac/fast/line-grid/line-grid-inside-columns-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastlinegridlinegridintocolumnsexpectedtxt">trunk/LayoutTests/platform/mac/fast/line-grid/line-grid-into-columns-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastlistsscrolledmarkerpaintexpectedtxt">trunk/LayoutTests/platform/mac/fast/lists/scrolled-marker-paint-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolclientrectsexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/client-rects-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolcolumnbreakwithbalancingexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/column-break-with-balancing-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolcolumnrulesexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/column-rules-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolcolumnrulesstackingexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/column-rules-stacking-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolcolumnsshorthandparsingexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/columns-shorthand-parsing-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolfloatpaginatecomplexexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/float-paginate-complex-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolfloatpaginateemptylinesexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/float-paginate-empty-lines-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolfloatpaginateexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/float-paginate-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticollayersinmulticolexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/layers-in-multicol-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticollayerssplitacrosscolumnsexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/layers-split-across-columns-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolmaxheightcolumnsblockexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/max-height-columns-block-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolnestedcolumnsexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/nested-columns-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolnewmulticolclientrectsexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/newmulticol/client-rects-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticoloverflowacrosscolumnsexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/overflow-across-columns-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticoloverflowacrosscolumnspercentheightexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/overflow-across-columns-percent-height-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticoloverflowunsplittableexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/overflow-unsplittable-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolpaginateblockreplacedexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/paginate-block-replaced-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolpaginationBottomToTopbtexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/pagination/BottomToTop-bt-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolpaginationBottomToToplrexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/pagination/BottomToTop-lr-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolpaginationBottomToToprlexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/pagination/BottomToTop-rl-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolpaginationBottomToToptbexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/pagination/BottomToTop-tb-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolpaginationLeftToRightbtexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/pagination/LeftToRight-bt-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolpaginationLeftToRightrlexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/pagination/LeftToRight-rl-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolpaginationLeftToRighttbexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/pagination/LeftToRight-tb-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolpaginationRightToLeftbtexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/pagination/RightToLeft-bt-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolpaginationRightToLeftlrexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/pagination/RightToLeft-lr-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolpaginationRightToLeftrldynamicexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/pagination/RightToLeft-rl-dynamic-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolpaginationRightToLeftrlexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/pagination/RightToLeft-rl-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolpaginationRightToLefttbexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/pagination/RightToLeft-tb-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolpaginationTopToBottombtexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/pagination/TopToBottom-bt-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolpaginationTopToBottomlrexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/pagination/TopToBottom-lr-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolpaginationTopToBottomrlexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/pagination/TopToBottom-rl-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolpositiveleadingexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/positive-leading-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolscrollingcolumnrulesexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/scrolling-column-rules-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolscrollingoverflowexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/scrolling-overflow-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolspananonymousstyleinheritanceexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/span/anonymous-style-inheritance-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolspanspanasimmediatechildcomplexsplittingexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolspanspanasimmediatechildgeneratedcontentexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-child-generated-content-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolspanspanasimmediatechildpropertyremovalexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-child-property-removal-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolspanspanasimmediatecolumnschilddynamicexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolspanspanasimmediatecolumnschildexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-columns-child-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolspanspanasimmediatecolumnschildremovalexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-columns-child-removal-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolspanspanasnestedcolumnschilddynamicexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-nested-columns-child-dynamic-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolspanspanasnestedcolumnschildexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-nested-columns-child-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolspanspanmargincollapsingexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/span/span-margin-collapsing-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticoltableverticalalignexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/table-vertical-align-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticoltallimagebehaviorexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/tall-image-behavior-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolverticallrcolumnbreakwithbalancingexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/column-break-with-balancing-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolverticallrcolumnrulesexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/column-rules-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolverticallrfloatmulticolexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/float-multicol-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolverticallrfloatpaginatecomplexexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/float-paginate-complex-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolverticallrfloatpaginateexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/float-paginate-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolverticallrnestedcolumnsexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/nested-columns-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolverticalrlcolumnbreakwithbalancingexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/column-break-with-balancing-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolverticalrlcolumnrulesexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/column-rules-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolverticalrlfloatmulticolexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/float-multicol-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolverticalrlfloatpaginatecomplexexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/float-paginate-complex-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolverticalrlfloatpaginateexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/float-paginate-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastmulticolverticalrlnestedcolumnsexpectedtxt">trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/nested-columns-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastoverflowcliprectsfixedancestorexpectedtxt">trunk/LayoutTests/platform/mac/fast/overflow/clip-rects-fixed-ancestor-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastoverflowfloatinrelpositionedexpectedtxt">trunk/LayoutTests/platform/mac/fast/overflow/float-in-relpositioned-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastoverflowoverflowautopositionabsoluteexpectedtxt">trunk/LayoutTests/platform/mac/fast/overflow/overflow-auto-position-absolute-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastoverflowoverflowrtlexpectedtxt">trunk/LayoutTests/platform/mac/fast/overflow/overflow-rtl-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastoverflowpagedxdivexpectedtxt">trunk/LayoutTests/platform/mac/fast/overflow/paged-x-div-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastoverflowpagedxdivwithcolumngapexpectedtxt">trunk/LayoutTests/platform/mac/fast/overflow/paged-x-div-with-column-gap-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastoverflowpagedxonrootexpectedtxt">trunk/LayoutTests/platform/mac/fast/overflow/paged-x-on-root-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastoverflowpagedxwithcolumngapexpectedtxt">trunk/LayoutTests/platform/mac/fast/overflow/paged-x-with-column-gap-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastoverflowpagedydivexpectedtxt">trunk/LayoutTests/platform/mac/fast/overflow/paged-y-div-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastoverflowscrollnestedpositionedlayerinoverflowexpectedtxt">trunk/LayoutTests/platform/mac/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastregionsrepaintregionpaintingvialayoutexpectedtxt">trunk/LayoutTests/platform/mac/fast/regions/repaint/region-painting-via-layout-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastrepaintboxshadowhexpectedtxt">trunk/LayoutTests/platform/mac/fast/repaint/box-shadow-h-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastrepaintboxshadowvexpectedtxt">trunk/LayoutTests/platform/mac/fast/repaint/box-shadow-v-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastrepaintlayeroutlineexpectedtxt">trunk/LayoutTests/platform/mac/fast/repaint/layer-outline-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastrepaintlayeroutlinehorizontalexpectedtxt">trunk/LayoutTests/platform/mac/fast/repaint/layer-outline-horizontal-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfasttableedgeoffsetsexpectedtxt">trunk/LayoutTests/platform/mac/fast/table/edge-offsets-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfasttransformsoverflowwithtransformexpectedtxt">trunk/LayoutTests/platform/mac/fast/transforms/overflow-with-transform-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfasttransformsrotatedtransformaffectsscrolling1expectedtxt">trunk/LayoutTests/platform/mac/fast/transforms/rotated-transform-affects-scrolling-1-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfasttransformsrotatedtransformaffectsscrolling2expectedtxt">trunk/LayoutTests/platform/mac/fast/transforms/rotated-transform-affects-scrolling-2-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastwritingmodeKusaMakurabackgroundcanvasexpectedtxt">trunk/LayoutTests/platform/mac/fast/writing-mode/Kusa-Makura-background-canvas-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacprintingsinglelinemustnotbesplitintotwopagesexpectedtxt">trunk/LayoutTests/platform/mac/printing/single-line-must-not-be-split-into-two-pages-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacscrollbarsscrollbarsonpositionedcontentexpectedtxt">trunk/LayoutTests/platform/mac/scrollbars/scrollbars-on-positioned-content-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacsvgcustomgetscreenctminscrollabledivareanestedexpectedtxt">trunk/LayoutTests/platform/mac/svg/custom/getscreenctm-in-scrollable-div-area-nested-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacsvgcustomimagerescaleclipexpectedtxt">trunk/LayoutTests/platform/mac/svg/custom/image-rescale-clip-expected.txt</a></li>
<li><a href="#trunkLayoutTestssvgoverflowoverflowonforeignObjectexpectedtxt">trunk/LayoutTests/svg/overflow/overflow-on-foreignObject-expected.txt</a></li>
<li><a href="#trunkSourceWebCoreChangeLog">trunk/Source/WebCore/ChangeLog</a></li>
<li><a href="#trunkSourceWebCorerenderingLayerFragmenth">trunk/Source/WebCore/rendering/LayerFragment.h</a></li>
<li><a href="#trunkSourceWebCorerenderingRenderLayercpp">trunk/Source/WebCore/rendering/RenderLayer.cpp</a></li>
<li><a href="#trunkSourceWebCorerenderingRenderLayerh">trunk/Source/WebCore/rendering/RenderLayer.h</a></li>
<li><a href="#trunkSourceWebCorerenderingRenderTreeAsTextcpp">trunk/Source/WebCore/rendering/RenderTreeAsText.cpp</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsfastrepaintoutlinewithoverflowhiddenancestorexpectedhtml">trunk/LayoutTests/fast/repaint/outline-with-overflow-hidden-ancestor-expected.html</a></li>
<li><a href="#trunkLayoutTestsfastrepaintoutlinewithoverflowhiddenancestorhtml">trunk/LayoutTests/fast/repaint/outline-with-overflow-hidden-ancestor.html</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkLayoutTestsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/ChangeLog (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/ChangeLog        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/ChangeLog        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,3 +1,158 @@
</span><ins>+2016-02-07  Zalan Bujtas  &lt;zalan@apple.com&gt;
+
+        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.
+
+        * 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:
+
</ins><span class="cx"> 2016-02-07  Saam barati  &lt;sbarati@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         [ES6] bound functions .name property should be &quot;bound &quot; + the target function's name
</span></span></pre></div>
<a id="trunkLayoutTestscompositinggeometrylimitlayerboundsoverflowrepaintexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/compositing/geometry/limit-layer-bounds-overflow-repaint-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/compositing/geometry/limit-layer-bounds-overflow-repaint-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/compositing/geometry/limit-layer-bounds-overflow-repaint-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -8,7 +8,7 @@
</span><span class="cx">   RenderBlock (positioned) {DIV} at (20,20) size 100x100
</span><span class="cx"> layer at (18,18) size 202x202 clip at (19,19) size 200x200 scrollY 500 scrollHeight 1000
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (10,10) size 202x202 [border: (1px solid #000000)]
</span><del>-layer at (19,-481) size 200x1000 backgroundClip at (19,19) size 200x200 clip at (19,19) size 200x200 outlineClip at (19,19) size 200x200
</del><ins>+layer at (19,-481) size 200x1000 backgroundClip at (19,19) size 200x200 clip at (19,19) size 200x200
</ins><span class="cx">   RenderBlock (relative positioned) {DIV} at (1,1) size 200x1000 [bgcolor=#0000FF]
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 200x500 [bgcolor=#FF0000]
</span><span class="cx">     RenderBlock {DIV} at (0,500) size 200x500 [bgcolor=#008000]
</span></span></pre></div>
<a id="trunkLayoutTestscompositingmasksmaskofclippedlayerexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/compositing/masks/mask-of-clipped-layer-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/compositing/masks/mask-of-clipped-layer-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/compositing/masks/mask-of-clipped-layer-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -6,5 +6,5 @@
</span><span class="cx"> layer at (8,8) size 200x200 scrollWidth 300 scrollHeight 300
</span><span class="cx">   RenderBlock {DIV} at (0,0) size 200x200 [bgcolor=#0000FF]
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 140x140 [bgcolor=#FF0000]
</span><del>-layer at (8,8) size 300x300 backgroundClip at (8,8) size 200x200 clip at (8,8) size 200x200 outlineClip at (8,8) size 200x200
</del><ins>+layer at (8,8) size 300x300 backgroundClip at (8,8) size 200x200 clip at (8,8) size 200x200
</ins><span class="cx">   RenderBlock {DIV} at (0,0) size 300x300 [bgcolor=#00FF00]
</span></span></pre></div>
<a id="trunkLayoutTestscss2120110323absposnonreplacedwidthmargin000expectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/css2.1/20110323/abspos-non-replaced-width-margin-000-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/20110323/abspos-non-replaced-width-margin-000-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/css2.1/20110323/abspos-non-replaced-width-margin-000-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1548,7 +1548,7 @@
</span><span class="cx"> layer at (41,257) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,257) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,257) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,257) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (7,0) size 72x1
</span><span class="cx"> layer at (41,258) size 686x1
</span><span class="lines">@@ -1560,7 +1560,7 @@
</span><span class="cx"> layer at (41,259) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,259) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,259) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,259) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (7,0) size 72x1
</span><span class="cx"> layer at (41,260) size 686x1
</span><span class="lines">@@ -1572,7 +1572,7 @@
</span><span class="cx"> layer at (41,261) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,261) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,261) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,261) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (595,0) size 72x1
</span><span class="cx"> layer at (41,262) size 686x1
</span><span class="lines">@@ -1584,55 +1584,55 @@
</span><span class="cx"> layer at (41,263) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,263) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,263) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,263) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (595,0) size 72x1
</span><span class="cx"> layer at (41,264) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,264) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,264) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,264) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (7,0) size 72x1
</span><span class="cx"> layer at (41,265) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,265) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,265) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,265) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (7,0) size 72x1
</span><span class="cx"> layer at (41,266) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,266) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,266) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,266) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (7,0) size 72x1
</span><span class="cx"> layer at (41,267) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,267) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,267) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,267) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (7,0) size 72x1
</span><span class="cx"> layer at (41,268) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,268) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,268) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,268) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (595,0) size 72x1
</span><span class="cx"> layer at (41,269) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,269) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,269) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,269) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (595,0) size 72x1
</span><span class="cx"> layer at (41,270) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,270) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,270) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,270) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (595,0) size 72x1
</span><span class="cx"> layer at (41,271) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,271) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,271) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,271) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (595,0) size 72x1
</span><span class="cx"> layer at (41,272) size 686x1
</span><span class="lines">@@ -1698,13 +1698,13 @@
</span><span class="cx"> layer at (41,282) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,282) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-53,282) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-53,282) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (7,0) size 72x1
</span><span class="cx"> layer at (41,283) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,283) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-53,283) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-53,283) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (7,0) size 72x1
</span><span class="cx"> layer at (41,284) size 686x1
</span><span class="lines">@@ -1722,109 +1722,109 @@
</span><span class="cx"> layer at (41,286) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,286) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-53,286) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-53,286) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (595,0) size 72x1
</span><span class="cx"> layer at (41,287) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,287) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-53,287) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-53,287) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (595,0) size 72x1
</span><span class="cx"> layer at (41,288) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,288) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,288) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,288) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (7,0) size 72x1
</span><span class="cx"> layer at (41,289) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,289) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,289) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,289) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (7,0) size 72x1
</span><span class="cx"> layer at (41,290) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,290) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,290) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,290) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (7,0) size 72x1
</span><span class="cx"> layer at (41,291) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,291) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,291) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,291) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (7,0) size 72x1
</span><span class="cx"> layer at (41,292) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,292) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,292) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,292) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (595,0) size 72x1
</span><span class="cx"> layer at (41,293) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,293) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,293) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,293) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (595,0) size 72x1
</span><span class="cx"> layer at (41,294) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,294) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,294) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,294) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (595,0) size 72x1
</span><span class="cx"> layer at (41,295) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,295) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,295) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,295) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (595,0) size 72x1
</span><span class="cx"> layer at (41,296) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,296) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,296) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,296) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (7,0) size 72x1
</span><span class="cx"> layer at (41,297) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,297) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,297) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,297) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (7,0) size 72x1
</span><span class="cx"> layer at (41,298) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,298) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,298) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,298) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (7,0) size 72x1
</span><span class="cx"> layer at (41,299) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,299) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,299) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,299) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (7,0) size 72x1
</span><span class="cx"> layer at (41,300) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,300) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,300) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,300) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (595,0) size 72x1
</span><span class="cx"> layer at (41,301) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,301) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,301) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,301) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (595,0) size 72x1
</span><span class="cx"> layer at (41,302) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,302) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,302) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,302) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (595,0) size 72x1
</span><span class="cx"> layer at (41,303) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,303) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,303) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,303) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (595,0) size 72x1
</span><span class="cx"> layer at (41,304) size 686x1
</span><span class="lines">@@ -1890,13 +1890,13 @@
</span><span class="cx"> layer at (41,314) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,314) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-53,314) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-53,314) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (7,0) size 72x1
</span><span class="cx"> layer at (41,315) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,315) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-53,315) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-53,315) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (7,0) size 72x1
</span><span class="cx"> layer at (41,316) size 686x1
</span><span class="lines">@@ -1914,13 +1914,13 @@
</span><span class="cx"> layer at (41,318) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,318) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-53,318) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-53,318) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (595,0) size 72x1
</span><span class="cx"> layer at (41,319) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,319) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-53,319) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-53,319) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (595,0) size 72x1
</span><span class="cx"> layer at (41,320) size 686x1
</span><span class="lines">@@ -2082,13 +2082,13 @@
</span><span class="cx"> layer at (41,346) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,346) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-34,346) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-34,346) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (7,0) size 72x1
</span><span class="cx"> layer at (41,347) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,347) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-34,347) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-34,347) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (7,0) size 72x1
</span><span class="cx"> layer at (41,348) size 686x1
</span><span class="lines">@@ -2106,13 +2106,13 @@
</span><span class="cx"> layer at (41,350) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,350) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-34,350) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-34,350) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (595,0) size 72x1
</span><span class="cx"> layer at (41,351) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,351) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-34,351) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-34,351) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (595,0) size 72x1
</span><span class="cx"> layer at (41,352) size 686x1
</span><span class="lines">@@ -2274,13 +2274,13 @@
</span><span class="cx"> layer at (41,378) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,378) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-34,378) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-34,378) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (7,0) size 72x1
</span><span class="cx"> layer at (41,379) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,379) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-34,379) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-34,379) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (7,0) size 72x1
</span><span class="cx"> layer at (41,380) size 686x1
</span><span class="lines">@@ -2298,12 +2298,12 @@
</span><span class="cx"> layer at (41,382) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,382) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-34,382) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-34,382) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (595,0) size 72x1
</span><span class="cx"> layer at (41,383) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,383) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-34,383) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-34,383) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (595,0) size 72x1
</span></span></pre></div>
<a id="trunkLayoutTestscss2120110323absposreplacedwidthmargin000expectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/css2.1/20110323/abspos-replaced-width-margin-000-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/20110323/abspos-replaced-width-margin-000-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/css2.1/20110323/abspos-replaced-width-margin-000-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -11,7 +11,7 @@
</span><span class="cx"> layer at (41,1) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,1) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,1) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,1) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,2) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,2) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="lines">@@ -21,7 +21,7 @@
</span><span class="cx"> layer at (41,3) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,3) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,3) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,3) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,4) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,4) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="lines">@@ -31,7 +31,7 @@
</span><span class="cx"> layer at (41,5) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,5) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,5) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,5) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,6) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,6) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="lines">@@ -41,47 +41,47 @@
</span><span class="cx"> layer at (41,7) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,7) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,7) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,7) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,8) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,8) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,8) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,8) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,9) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,9) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,9) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,9) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,10) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,10) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,10) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,10) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,11) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,11) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,11) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,11) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,12) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,12) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,12) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,12) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,13) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,13) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,13) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,13) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,14) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,14) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,14) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,14) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,15) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,15) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,15) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,15) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,16) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,16) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="lines">@@ -136,12 +136,12 @@
</span><span class="cx"> layer at (41,26) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,26) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-53,26) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-53,26) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,27) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,27) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-53,27) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-53,27) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,28) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,28) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="lines">@@ -156,92 +156,92 @@
</span><span class="cx"> layer at (41,30) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,30) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-53,30) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-53,30) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,31) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,31) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-53,31) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-53,31) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,32) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,32) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,32) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,32) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,33) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,33) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,33) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,33) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,34) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,34) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,34) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,34) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,35) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,35) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,35) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,35) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,36) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,36) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,36) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,36) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,37) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,37) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,37) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,37) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,38) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,38) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,38) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,38) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,39) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,39) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,39) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,39) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,40) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,40) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,40) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,40) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,41) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,41) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,41) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,41) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,42) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,42) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,42) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,42) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,43) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,43) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,43) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,43) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,44) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,44) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,44) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,44) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,45) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,45) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,45) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,45) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,46) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,46) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,46) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,46) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,47) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,47) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,47) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,47) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,48) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,48) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="lines">@@ -296,12 +296,12 @@
</span><span class="cx"> layer at (41,58) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,58) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-53,58) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-53,58) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,59) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,59) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-53,59) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-53,59) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,60) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,60) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="lines">@@ -316,12 +316,12 @@
</span><span class="cx"> layer at (41,62) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,62) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-53,62) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-53,62) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,63) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,63) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-53,63) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-53,63) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,64) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,64) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="lines">@@ -456,12 +456,12 @@
</span><span class="cx"> layer at (41,90) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,90) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-34,90) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-34,90) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,91) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,91) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-34,91) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-34,91) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,92) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,92) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="lines">@@ -476,12 +476,12 @@
</span><span class="cx"> layer at (41,94) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,94) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-34,94) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-34,94) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,95) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,95) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-34,95) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-34,95) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,96) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,96) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="lines">@@ -616,12 +616,12 @@
</span><span class="cx"> layer at (41,122) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,122) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-34,122) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-34,122) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,123) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,123) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-34,123) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-34,123) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,124) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,124) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="lines">@@ -636,12 +636,12 @@
</span><span class="cx"> layer at (41,126) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,126) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-34,126) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-34,126) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,127) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,127) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-34,127) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-34,127) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,128) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,128) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="lines">@@ -1931,7 +1931,7 @@
</span><span class="cx"> layer at (41,385) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,385) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,385) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,385) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,386) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,386) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="lines">@@ -1941,7 +1941,7 @@
</span><span class="cx"> layer at (41,387) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,387) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,387) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,387) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,388) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,388) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="lines">@@ -1951,7 +1951,7 @@
</span><span class="cx"> layer at (41,389) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,389) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,389) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,389) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,390) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,390) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="lines">@@ -1961,47 +1961,47 @@
</span><span class="cx"> layer at (41,391) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,391) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,391) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,391) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,392) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,392) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,392) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,392) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,393) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,393) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,393) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,393) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,394) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,394) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,394) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,394) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,395) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,395) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,395) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,395) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,396) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,396) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,396) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,396) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,397) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,397) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,397) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,397) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,398) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,398) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,398) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,398) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,399) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,399) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,399) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,399) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,400) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,400) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="lines">@@ -2056,12 +2056,12 @@
</span><span class="cx"> layer at (41,410) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,410) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-53,410) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-53,410) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,411) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,411) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-53,411) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-53,411) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,412) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,412) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="lines">@@ -2076,92 +2076,92 @@
</span><span class="cx"> layer at (41,414) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,414) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-53,414) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-53,414) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,415) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,415) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-53,415) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-53,415) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,416) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,416) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,416) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,416) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,417) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,417) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,417) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,417) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,418) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,418) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,418) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,418) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,419) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,419) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,419) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,419) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,420) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,420) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,420) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,420) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,421) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,421) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,421) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,421) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,422) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,422) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,422) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,422) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,423) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,423) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,423) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,423) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,424) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,424) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,424) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,424) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,425) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,425) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,425) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,425) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,426) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,426) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,426) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,426) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,427) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,427) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,427) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,427) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,428) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,428) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,428) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,428) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,429) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,429) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,429) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,429) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,430) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,430) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,430) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,430) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,431) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,431) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-11,431) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-11,431) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-52,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,432) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,432) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="lines">@@ -2216,12 +2216,12 @@
</span><span class="cx"> layer at (41,442) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,442) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-53,442) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-53,442) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,443) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,443) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-53,443) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-53,443) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,444) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,444) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="lines">@@ -2236,12 +2236,12 @@
</span><span class="cx"> layer at (41,446) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,446) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-53,446) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-53,446) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,447) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,447) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-53,447) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-53,447) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-94,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,448) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,448) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="lines">@@ -2376,12 +2376,12 @@
</span><span class="cx"> layer at (41,474) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,474) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-34,474) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-34,474) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,475) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,475) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-34,475) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-34,475) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,476) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,476) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="lines">@@ -2396,12 +2396,12 @@
</span><span class="cx"> layer at (41,478) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,478) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-34,478) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-34,478) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,479) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,479) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-34,479) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-34,479) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,480) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,480) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="lines">@@ -2536,12 +2536,12 @@
</span><span class="cx"> layer at (41,506) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,506) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-34,506) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-34,506) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,507) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,507) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-34,507) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-34,507) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,508) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,508) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="lines">@@ -2556,10 +2556,10 @@
</span><span class="cx"> layer at (41,510) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,510) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-34,510) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-34,510) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span><span class="cx"> layer at (41,511) size 686x1
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (21,511) size 686x1 [border: none (27px solid #00000000) none (9px solid #00000000)]
</span><span class="cx">     RenderBlock {DIV} at (56,0) size 570x1 [border: none (3px solid #00000000) none (29px solid #00000000)]
</span><del>-layer at (-34,511) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585 outlineClip at (0,0) size 851x585
</del><ins>+layer at (-34,511) size 684x1 backgroundClip at (0,0) size 851x585 clip at (0,0) size 851x585
</ins><span class="cx">   RenderImage {IMG} at (-75,0) size 684x1 [bgcolor=#000080] [border: none (8px solid #00000000) none (6px solid #00000000)]
</span></span></pre></div>
<a id="trunkLayoutTestscss3blendingblendmodeisolationturnoffselfpaintinglayer2expectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/css3/blending/blend-mode-isolation-turn-off-self-painting-layer2-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css3/blending/blend-mode-isolation-turn-off-self-painting-layer2-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/css3/blending/blend-mode-isolation-turn-off-self-painting-layer2-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -8,5 +8,5 @@
</span><span class="cx">           text run at (0,0) width 255: &quot;Test passes if you see a green rectangle.&quot;
</span><span class="cx"> layer at (8,50) size 100x100 scrollWidth 400
</span><span class="cx">   RenderBlock {DIV} at (0,34) size 100x100
</span><del>-layer at (8,50) size 400x20 backgroundClip at (8,50) size 100x100 clip at (8,50) size 100x100 outlineClip at (8,50) size 100x100
</del><ins>+layer at (8,50) size 400x20 backgroundClip at (8,50) size 100x100 clip at (8,50) size 100x100
</ins><span class="cx">   RenderBlock (relative positioned) {DIV} at (0,0) size 400x20 [bgcolor=#00FF00]
</span></span></pre></div>
<a id="trunkLayoutTestscss3blendingblendmodeisolationturnonselfpaintinglayerexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/css3/blending/blend-mode-isolation-turn-on-self-painting-layer-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css3/blending/blend-mode-isolation-turn-on-self-painting-layer-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/css3/blending/blend-mode-isolation-turn-on-self-painting-layer-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -8,5 +8,5 @@
</span><span class="cx">           text run at (0,0) width 255: &quot;Test passes if you see a green rectangle.&quot;
</span><span class="cx"> layer at (8,50) size 100x100 scrollWidth 400 isolatesBlending
</span><span class="cx">   RenderBlock {DIV} at (0,34) size 100x100
</span><del>-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
</del><ins>+layer at (8,50) size 400x20 backgroundClip at (8,50) size 100x100 clip at (8,50) size 100x100 blendMode: difference
</ins><span class="cx">   RenderBlock {DIV} at (0,0) size 400x20 [bgcolor=#00FF00]
</span></span></pre></div>
<a id="trunkLayoutTestsfastblockpositioningnegativerelpositionexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/block/positioning/negative-rel-position-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/block/positioning/negative-rel-position-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/fast/block/positioning/negative-rel-position-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -3,5 +3,5 @@
</span><span class="cx"> layer at (0,0) size 800x136
</span><span class="cx">   RenderBlock {HTML} at (0,0) size 800x136
</span><span class="cx">     RenderBody {BODY} at (8,8) size 784x120
</span><del>-layer at (-30,8) size 880x120 backgroundClip at (0,0) size 850x585 clip at (0,0) size 850x585 outlineClip at (0,0) size 850x585
</del><ins>+layer at (-30,8) size 880x120 backgroundClip at (0,0) size 850x585 clip at (0,0) size 850x585
</ins><span class="cx">   RenderBlock (relative positioned) {DIV} at (392,0) size 880x120 [bgcolor=#00FF00]
</span></span></pre></div>
<a id="trunkLayoutTestsfastdynamicstaticYexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/dynamic/staticY-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/dynamic/staticY-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/fast/dynamic/staticY-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -3,7 +3,7 @@
</span><span class="cx"> layer at (0,0) size 800x508
</span><span class="cx">   RenderBlock {HTML} at (0,0) size 800x508
</span><span class="cx">     RenderBody {BODY} at (8,8) size 784x475
</span><del>-layer at (8,-43) size 784x100 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+layer at (8,-43) size 784x100 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
</ins><span class="cx">   RenderBlock (relative positioned) {DIV} at (0,0) size 784x100
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 784x1
</span><span class="cx"> layer at (8,8) size 100x50
</span></span></pre></div>
<a id="trunkLayoutTestsfastinlineabsolutepositionedblockincentredblockexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/inline/absolute-positioned-block-in-centred-block-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/inline/absolute-positioned-block-in-centred-block-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/fast/inline/absolute-positioned-block-in-centred-block-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -4,5 +4,5 @@
</span><span class="cx">   RenderBlock {HTML} at (0,0) size 800x600
</span><span class="cx">     RenderBody {BODY} at (8,8) size 784x584
</span><span class="cx">       RenderBlock {DIV} at (0,0) size 784x0
</span><del>-layer at (-142,540) size 200x50 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+layer at (-142,540) size 200x50 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-142,540) size 200x50 [bgcolor=#0000FF]
</span></span></pre></div>
<a id="trunkLayoutTestsfastmulticolflippedblocksborderafterexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/multicol/flipped-blocks-border-after-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/multicol/flipped-blocks-border-after-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/fast/multicol/flipped-blocks-border-after-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -6,7 +6,7 @@
</span><span class="cx"> layer at (8,8) size 100x150
</span><span class="cx">   RenderBlock {DIV} at (0,0) size 100x150 [bgcolor=#FF0000] [border: (50px solid #008000) none]
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 100x100
</span><del>-layer at (8,-42) size 50x200 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+layer at (8,-42) size 50x200 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 50x200
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 50x100 [bgcolor=#008000]
</span><span class="cx">     RenderBlock {DIV} at (0,100) size 50x100 [bgcolor=#008000]
</span><span class="lines">@@ -20,7 +20,7 @@
</span><span class="cx"> layer at (8,308) size 150x100
</span><span class="cx">   RenderBlock {DIV} at (0,300) size 150x100 [bgcolor=#FF0000] [border: none (50px solid #008000)]
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 100x100
</span><del>-layer at (-42,308) size 200x50 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+layer at (-42,308) size 200x50 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 200x50
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 100x50 [bgcolor=#008000]
</span><span class="cx">     RenderBlock {DIV} at (100,0) size 100x50 [bgcolor=#008000]
</span></span></pre></div>
<a id="trunkLayoutTestsfastmulticolpaginationLeftToRighttbhittestexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/multicol/pagination/LeftToRight-tb-hittest-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/multicol/pagination/LeftToRight-tb-hittest-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/fast/multicol/pagination/LeftToRight-tb-hittest-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 2460x585
</span><span class="cx">   RenderView at (0,0) size 800x585
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 800x585
</span><del>-layer at (0,0) size 385x3122 backgroundClip at (0,0) size 2460x585 clip at (0,0) size 2460x585 outlineClip at (0,0) size 2460x585
</del><ins>+layer at (0,0) size 385x3122 backgroundClip at (0,0) size 2460x585 clip at (0,0) size 2460x585
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 385x3122
</span><del>-layer at (0,0) size 385x3122 backgroundClip at (0,0) size 2460x585 clip at (0,0) size 2460x585 outlineClip at (0,0) size 2460x585
</del><ins>+layer at (0,0) size 385x3122 backgroundClip at (0,0) size 2460x585 clip at (0,0) size 2460x585
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 385x3122 [border: (1px solid #008000)]
</span><span class="cx">     RenderBody {BODY} at (4,4) size 377x3114 [border: (1px solid #000000)]
</span><span class="cx">       RenderBlock {P} at (1,25) size 375x364
</span></span></pre></div>
<a id="trunkLayoutTestsfastmulticolpaginationRightToLeftrlhittestexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/multicol/pagination/RightToLeft-rl-hittest-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/multicol/pagination/RightToLeft-rl-hittest-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/fast/multicol/pagination/RightToLeft-rl-hittest-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 2460x585
</span><span class="cx">   RenderView at (0,0) size 800x585
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 800x585
</span><del>-layer at (-1294,0) size 2094x585 backgroundClip at (0,0) size 2460x585 clip at (0,0) size 2460x585 outlineClip at (0,0) size 2460x585
</del><ins>+layer at (-1294,0) size 2094x585 backgroundClip at (0,0) size 2460x585 clip at (0,0) size 2460x585
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 2094x585
</span><del>-layer at (-1294,0) size 2094x585 backgroundClip at (0,0) size 2460x585 clip at (0,0) size 2460x585 outlineClip at (0,0) size 2460x585
</del><ins>+layer at (-1294,0) size 2094x585 backgroundClip at (0,0) size 2460x585 clip at (0,0) size 2460x585
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 2094x585 [border: (1px solid #008000)]
</span><span class="cx">     RenderBody {BODY} at (4,4) size 2086x577 [border: (1px solid #000000)]
</span><span class="cx">       RenderBlock {P} at (25,1) size 224x575
</span></span></pre></div>
<a id="trunkLayoutTestsfastmulticolpaginationhhorizontalbtexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/multicol/pagination-h-horizontal-bt-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/multicol/pagination-h-horizontal-bt-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/fast/multicol/pagination-h-horizontal-bt-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 1600x585
</span><span class="cx">   RenderView at (0,0) size 800x585
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 800x585
</span><del>-layer at (0,-337) size 800x922 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585 outlineClip at (0,0) size 1600x585
</del><ins>+layer at (0,-337) size 800x922 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 800x922
</span><del>-layer at (0,-337) size 800x922 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585 outlineClip at (0,0) size 1600x585
</del><ins>+layer at (0,-337) size 800x922 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 800x922
</span><span class="cx">     RenderBody {BODY} at (8,8) size 784x906
</span><span class="cx">       RenderBlock {DIV} at (0,0) size 784x906 [border: (3px solid #000000)]
</span></span></pre></div>
<a id="trunkLayoutTestsfastmulticolpaginationhhorizontaltbexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/multicol/pagination-h-horizontal-tb-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/multicol/pagination-h-horizontal-tb-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/fast/multicol/pagination-h-horizontal-tb-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 1600x585
</span><span class="cx">   RenderView at (0,0) size 800x585
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 800x585
</span><del>-layer at (0,0) size 800x922 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585 outlineClip at (0,0) size 1600x585
</del><ins>+layer at (0,0) size 800x922 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 800x922
</span><del>-layer at (0,0) size 800x922 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585 outlineClip at (0,0) size 1600x585
</del><ins>+layer at (0,0) size 800x922 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 800x922
</span><span class="cx">     RenderBody {BODY} at (8,8) size 784x906
</span><span class="cx">       RenderBlock {DIV} at (0,0) size 784x906 [border: (3px solid #000000)]
</span></span></pre></div>
<a id="trunkLayoutTestsfastmulticolpaginationhverticalrlexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/multicol/pagination-h-vertical-rl-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/multicol/pagination-h-vertical-rl-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/fast/multicol/pagination-h-vertical-rl-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 1600x585
</span><span class="cx">   RenderView at (0,0) size 800x585
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 800x585
</span><del>-layer at (-422,0) size 1222x585 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585 outlineClip at (0,0) size 1600x585
</del><ins>+layer at (-422,0) size 1222x585 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 1222x585
</span><del>-layer at (-422,0) size 1222x585 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585 outlineClip at (0,0) size 1600x585
</del><ins>+layer at (-422,0) size 1222x585 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 1222x585
</span><span class="cx">     RenderBody {BODY} at (8,8) size 1206x569
</span><span class="cx">       RenderBlock {DIV} at (0,0) size 1206x569 [border: (3px solid #000000)]
</span></span></pre></div>
<a id="trunkLayoutTestsfastmulticolpaginationvhorizontalbtexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/multicol/pagination-v-horizontal-bt-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/multicol/pagination-v-horizontal-bt-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/fast/multicol/pagination-v-horizontal-bt-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 785x1200
</span><span class="cx">   RenderView at (0,0) size 785x600
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 785x600
</span><del>-layer at (0,-322) size 785x922 backgroundClip at (0,0) size 785x1200 clip at (0,0) size 785x1200 outlineClip at (0,0) size 785x1200
</del><ins>+layer at (0,-322) size 785x922 backgroundClip at (0,0) size 785x1200 clip at (0,0) size 785x1200
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 785x922
</span><del>-layer at (0,-322) size 785x922 backgroundClip at (0,0) size 785x1200 clip at (0,0) size 785x1200 outlineClip at (0,0) size 785x1200
</del><ins>+layer at (0,-322) size 785x922 backgroundClip at (0,0) size 785x1200 clip at (0,0) size 785x1200
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 785x922
</span><span class="cx">     RenderBody {BODY} at (8,8) size 769x906
</span><span class="cx">       RenderBlock {DIV} at (0,0) size 769x906 [border: (3px solid #000000)]
</span></span></pre></div>
<a id="trunkLayoutTestsfastmulticolpaginationvverticallrexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/multicol/pagination-v-vertical-lr-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/multicol/pagination-v-vertical-lr-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/fast/multicol/pagination-v-vertical-lr-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 785x1200
</span><span class="cx">   RenderView at (0,0) size 785x600
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 785x600
</span><del>-layer at (0,0) size 1222x600 backgroundClip at (0,0) size 785x1200 clip at (0,0) size 785x1200 outlineClip at (0,0) size 785x1200
</del><ins>+layer at (0,0) size 1222x600 backgroundClip at (0,0) size 785x1200 clip at (0,0) size 785x1200
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 1222x600
</span><del>-layer at (0,0) size 1222x600 backgroundClip at (0,0) size 785x1200 clip at (0,0) size 785x1200 outlineClip at (0,0) size 785x1200
</del><ins>+layer at (0,0) size 1222x600 backgroundClip at (0,0) size 785x1200 clip at (0,0) size 785x1200
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 1222x600
</span><span class="cx">     RenderBody {BODY} at (8,8) size 1206x584
</span><span class="cx">       RenderBlock {DIV} at (0,0) size 1206x584 [border: (3px solid #000000)]
</span></span></pre></div>
<a id="trunkLayoutTestsfastmulticolpaginationvverticalrlexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/multicol/pagination-v-vertical-rl-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/multicol/pagination-v-vertical-rl-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/fast/multicol/pagination-v-vertical-rl-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 785x1200
</span><span class="cx">   RenderView at (0,0) size 785x600
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 785x600
</span><del>-layer at (-437,0) size 1222x600 backgroundClip at (0,0) size 785x1200 clip at (0,0) size 785x1200 outlineClip at (0,0) size 785x1200
</del><ins>+layer at (-437,0) size 1222x600 backgroundClip at (0,0) size 785x1200 clip at (0,0) size 785x1200
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 1222x600
</span><del>-layer at (-437,0) size 1222x600 backgroundClip at (0,0) size 785x1200 clip at (0,0) size 785x1200 outlineClip at (0,0) size 785x1200
</del><ins>+layer at (-437,0) size 1222x600 backgroundClip at (0,0) size 785x1200 clip at (0,0) size 785x1200
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 1222x600
</span><span class="cx">     RenderBody {BODY} at (8,8) size 1206x584
</span><span class="cx">       RenderBlock {DIV} at (0,0) size 1206x584 [border: (3px solid #000000)]
</span></span></pre></div>
<a id="trunkLayoutTestsfastmulticolprogressionreverseexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/multicol/progression-reverse-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/multicol/progression-reverse-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/fast/multicol/progression-reverse-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -64,7 +64,7 @@
</span><span class="cx"> layer at (24,650) size 35x71
</span><span class="cx">   RenderBlock {DIV} at (16,0) size 35x71 [border: (3px solid #C0C0C0) (2px solid #C0C0C0) (4px solid #C0C0C0) (1px solid #C0C0C0)]
</span><span class="cx">     RenderMultiColumnSet at (2,3) size 32x64
</span><del>-layer at (-39,653) size 96x64 backgroundClip at (0,0) size 785x856 clip at (0,0) size 785x856 outlineClip at (0,0) size 785x856
</del><ins>+layer at (-39,653) size 96x64 backgroundClip at (0,0) size 785x856 clip at (0,0) size 785x856
</ins><span class="cx">   RenderMultiColumnFlowThread at (2,3) size 96x64
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 24x64 [bgcolor=#770077] [border: (2px dotted #FFFFFF) (4px dotted #000000) none]
</span><span class="cx">     RenderBlock {DIV} at (24,0) size 24x64 [bgcolor=#0000FF] [border: (2px dotted #FFFFFF) (4px dotted #000000) none]
</span><span class="lines">@@ -73,7 +73,7 @@
</span><span class="cx"> layer at (8,769) size 35x71
</span><span class="cx">   RenderBlock {DIV} at (0,119) size 35x71 [border: (3px solid #C0C0C0) (2px solid #C0C0C0) (4px solid #C0C0C0) (1px solid #C0C0C0)]
</span><span class="cx">     RenderMultiColumnSet at (2,3) size 32x64
</span><del>-layer at (-55,772) size 96x30 backgroundClip at (0,0) size 785x856 clip at (0,0) size 785x856 outlineClip at (0,0) size 785x856
</del><ins>+layer at (-55,772) size 96x30 backgroundClip at (0,0) size 785x856 clip at (0,0) size 785x856
</ins><span class="cx">   RenderMultiColumnFlowThread at (2,3) size 96x30
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 24x30 [bgcolor=#770077] [border: (2px dotted #FFFFFF) (4px dotted #000000) none]
</span><span class="cx">     RenderBlock {DIV} at (24,0) size 24x30 [bgcolor=#0000FF] [border: (2px dotted #FFFFFF) (4px dotted #000000) none]
</span></span></pre></div>
<a id="trunkLayoutTestsfastmulticolverticalrlruleswithborderbeforeexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/multicol/vertical-rl/rules-with-border-before-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/multicol/vertical-rl/rules-with-border-before-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/fast/multicol/vertical-rl/rules-with-border-before-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -6,12 +6,12 @@
</span><span class="cx"> layer at (8,8) size 150x100
</span><span class="cx">   RenderBlock {DIV} at (0,0) size 150x100 [border: none (50px solid #0000FF) none]
</span><span class="cx">     RenderMultiColumnSet at (50,0) size 100x100
</span><del>-layer at (-92,8) size 200x25 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+layer at (-92,8) size 200x25 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
</ins><span class="cx">   RenderMultiColumnFlowThread at (50,0) size 200x25
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 200x25
</span><span class="cx"> layer at (8,108) size 150x100
</span><span class="cx">   RenderBlock {DIV} at (0,100) size 150x100 [border: none (50px solid #0000FF)]
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 100x100
</span><del>-layer at (-42,108) size 200x25 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+layer at (-42,108) size 200x25 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 200x25
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 200x25
</span></span></pre></div>
<a id="trunkLayoutTestsfastoverflowoverflowupdatetransformexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/overflow/overflow-update-transform-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/overflow/overflow-update-transform-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/fast/overflow/overflow-update-transform-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -8,7 +8,7 @@
</span><span class="cx"> layer at (18,272) size 252x252 clip at (19,273) size 235x235 scrollWidth 302 scrollHeight 302
</span><span class="cx">   RenderBlock {DIV} at (10,262) size 252x252 [border: (1px solid #000000)]
</span><span class="cx">     RenderText {#text} at (0,0) size 0x0
</span><del>-layer at (19,11) size 250x250 backgroundClip at (19,11) size 235x235 clip at (19,11) size 235x235 outlineClip at (19,11) size 235x235
</del><ins>+layer at (19,11) size 250x250 backgroundClip at (19,11) size 235x235 clip at (19,11) size 235x235
</ins><span class="cx">   RenderBlock {DIV} at (1,1) size 250x250 [bgcolor=#C0C0C0]
</span><del>-layer at (19,273) size 250x250 backgroundClip at (19,273) size 235x235 clip at (19,273) size 235x235 outlineClip at (19,273) size 235x235
</del><ins>+layer at (19,273) size 250x250 backgroundClip at (19,273) size 235x235 clip at (19,273) size 235x235
</ins><span class="cx">   RenderImage {IMG} at (1,1) size 250x250 [bgcolor=#C0C0C0]
</span></span></pre></div>
<a id="trunkLayoutTestsfastoverflowpositionrelativeexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/overflow/position-relative-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/overflow/position-relative-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/fast/overflow/position-relative-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -3,7 +3,7 @@
</span><span class="cx"> layer at (0,0) size 800x600
</span><span class="cx">   RenderBlock {HTML} at (0,0) size 800x600
</span><span class="cx">     RenderBody {BODY} at (8,8) size 784x584
</span><del>-layer at (-92,8) size 784x100 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+layer at (-92,8) size 784x100 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
</ins><span class="cx">   RenderBlock (relative positioned) {DIV} at (0,0) size 784x100
</span><span class="cx"> layer at (8,8) size 100x100
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (0,0) size 100x100 [bgcolor=#FF0000]
</span></span></pre></div>
<a id="trunkLayoutTestsfastrepaintfocusringexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/repaint/focus-ring-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/repaint/focus-ring-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/fast/repaint/focus-ring-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -4,5 +4,5 @@
</span><span class="cx">   RenderBlock {HTML} at (0,0) size 800x600
</span><span class="cx">     RenderBody {BODY} at (8,20) size 784x560
</span><span class="cx">       RenderBlock {DIV} at (20,0) size 100x100 [bgcolor=#FFFFE0]
</span><del>-layer at (28,148) size 100x100 backgroundClip at (18,138) size 60x60 clip at (18,138) size 60x60 outlineClip at (18,138) size 60x60
</del><ins>+layer at (28,148) size 100x100 backgroundClip at (18,138) size 60x60 clip at (18,138) size 60x60
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (28,148) size 100x100 [bgcolor=#FFFFE0]
</span></span></pre></div>
<a id="trunkLayoutTestsfastrepaintoutlinewithoverflowhiddenancestorexpectedhtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/fast/repaint/outline-with-overflow-hidden-ancestor-expected.html (0 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/repaint/outline-with-overflow-hidden-ancestor-expected.html                                (rev 0)
+++ trunk/LayoutTests/fast/repaint/outline-with-overflow-hidden-ancestor-expected.html        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -0,0 +1,17 @@
</span><ins>+&lt;!DOCTYPE HTML&gt;
+&lt;html&gt;
+&lt;head&gt;
+&lt;title&gt;This tests that outline is clipped properly.&lt;/title&gt;
+&lt;style&gt;
+div {
+    width: 100px;
+    height: 100px;
+    border: 1px solid green;
+}
+
+&lt;/style&gt;
+&lt;/head&gt;
+&lt;body&gt;
+&lt;div&gt;&lt;/div&gt;
+&lt;/body&gt;
+&lt;/html&gt;
</ins></span></pre></div>
<a id="trunkLayoutTestsfastrepaintoutlinewithoverflowhiddenancestorhtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/fast/repaint/outline-with-overflow-hidden-ancestor.html (0 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/repaint/outline-with-overflow-hidden-ancestor.html                                (rev 0)
+++ trunk/LayoutTests/fast/repaint/outline-with-overflow-hidden-ancestor.html        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -0,0 +1,25 @@
</span><ins>+&lt;!DOCTYPE HTML&gt;
+&lt;html&gt;
+&lt;head&gt;
+&lt;title&gt;This tests that outline is clipped properly.&lt;/title&gt;
+&lt;style&gt;
+#container {
+    width: 100px;
+    height: 100px;
+    border: 1px solid green;
+    overflow: hidden;
+        -webkit-transform: translateX(0);
+}
+
+#outline {
+    width: 100px;
+    height: 100px;
+    outline-offset: 2px;
+    outline: 1px solid red;
+}
+&lt;/style&gt;
+&lt;/head&gt;
+&lt;body&gt;
+&lt;div id=container&gt;&lt;div id=outline&gt;&lt;/div&gt;&lt;/div&gt;
+&lt;/body&gt;
+&lt;/html&gt;
</ins></span></pre></div>
<a id="trunkLayoutTestsfasttableoverflowtablecollapsedborderscellpaintingexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-cell-painting-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-cell-painting-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-cell-painting-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -55,35 +55,35 @@
</span><span class="cx">     RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">       RenderText {#text} at (10,10) size 70x10
</span><span class="cx">         text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span><del>-layer at (18,198) size 70x10 backgroundClip at (18,198) size 50x40 clip at (18,198) size 50x40 outlineClip at (18,198) size 50x40
</del><ins>+layer at (18,198) size 70x10 backgroundClip at (18,198) size 50x40 clip at (18,198) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span><del>-layer at (18,258) size 70x10 backgroundClip at (18,258) size 50x40 clip at (18,258) size 50x40 outlineClip at (18,258) size 50x40
</del><ins>+layer at (18,258) size 70x10 backgroundClip at (18,258) size 50x40 clip at (18,258) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span><span class="cx"> layer at (18,318) size 50x40
</span><span class="cx">   RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,318) size 70x10 backgroundClip at (18,318) size 50x40 clip at (18,318) size 50x40 outlineClip at (18,318) size 50x40
</del><ins>+layer at (18,318) size 70x10 backgroundClip at (18,318) size 50x40 clip at (18,318) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span><span class="cx"> layer at (18,378) size 50x40
</span><span class="cx">   RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,378) size 70x10 backgroundClip at (18,378) size 50x40 clip at (18,378) size 50x40 outlineClip at (18,378) size 50x40
</del><ins>+layer at (18,378) size 70x10 backgroundClip at (18,378) size 50x40 clip at (18,378) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span><span class="cx"> layer at (18,438) size 50x40
</span><span class="cx">   RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,438) size 70x10 backgroundClip at (18,438) size 50x40 clip at (18,438) size 50x40 outlineClip at (18,438) size 50x40
</del><ins>+layer at (18,438) size 70x10 backgroundClip at (18,438) size 50x40 clip at (18,438) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span><span class="cx"> layer at (18,498) size 50x40
</span><span class="cx">   RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,498) size 70x10 backgroundClip at (18,498) size 50x40 clip at (18,498) size 50x40 outlineClip at (18,498) size 50x40
</del><ins>+layer at (18,498) size 70x10 backgroundClip at (18,498) size 50x40 clip at (18,498) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsfasttableoverflowtablecollapsedborderscellpaintingtableselfpaintinglayerexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-cell-painting-table-self-painting-layer-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-cell-painting-table-self-painting-layer-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-cell-painting-table-self-painting-layer-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -34,7 +34,7 @@
</span><span class="cx">     RenderTableSection {DIV} at (10,10) size 50x40
</span><span class="cx">       RenderTableRow {DIV} at (0,0) size 50x40
</span><span class="cx">         RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,198) size 70x10 backgroundClip at (18,198) size 50x40 clip at (18,198) size 50x40 outlineClip at (18,198) size 50x40
</del><ins>+layer at (18,198) size 70x10 backgroundClip at (18,198) size 50x40 clip at (18,198) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span><span class="lines">@@ -43,7 +43,7 @@
</span><span class="cx">     RenderTableSection {DIV} at (10,10) size 50x40
</span><span class="cx">       RenderTableRow {DIV} at (0,0) size 50x40
</span><span class="cx">         RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,258) size 70x10 backgroundClip at (18,258) size 50x40 clip at (18,258) size 50x40 outlineClip at (18,258) size 50x40
</del><ins>+layer at (18,258) size 70x10 backgroundClip at (18,258) size 50x40 clip at (18,258) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span><span class="lines">@@ -53,7 +53,7 @@
</span><span class="cx">       RenderTableRow {DIV} at (0,0) size 50x40
</span><span class="cx"> layer at (18,318) size 50x40
</span><span class="cx">   RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,318) size 70x10 backgroundClip at (18,318) size 50x40 clip at (18,318) size 50x40 outlineClip at (18,318) size 50x40
</del><ins>+layer at (18,318) size 70x10 backgroundClip at (18,318) size 50x40 clip at (18,318) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span><span class="lines">@@ -63,7 +63,7 @@
</span><span class="cx">       RenderTableRow {DIV} at (0,0) size 50x40
</span><span class="cx"> layer at (18,378) size 50x40
</span><span class="cx">   RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,378) size 70x10 backgroundClip at (18,378) size 50x40 clip at (18,378) size 50x40 outlineClip at (18,378) size 50x40
</del><ins>+layer at (18,378) size 70x10 backgroundClip at (18,378) size 50x40 clip at (18,378) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span><span class="lines">@@ -73,7 +73,7 @@
</span><span class="cx">       RenderTableRow {DIV} at (0,0) size 50x40
</span><span class="cx"> layer at (18,438) size 50x40
</span><span class="cx">   RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,438) size 70x10 backgroundClip at (18,438) size 50x40 clip at (18,438) size 50x40 outlineClip at (18,438) size 50x40
</del><ins>+layer at (18,438) size 70x10 backgroundClip at (18,438) size 50x40 clip at (18,438) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span><span class="lines">@@ -83,7 +83,7 @@
</span><span class="cx">       RenderTableRow {DIV} at (0,0) size 50x40
</span><span class="cx"> layer at (18,498) size 50x40
</span><span class="cx">   RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,498) size 70x10 backgroundClip at (18,498) size 50x40 clip at (18,498) size 50x40 outlineClip at (18,498) size 50x40
</del><ins>+layer at (18,498) size 70x10 backgroundClip at (18,498) size 50x40 clip at (18,498) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsfasttableoverflowtablecollapsedborderssectionlayerpaintingexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-section-layer-painting-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-section-layer-painting-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-section-layer-painting-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -48,7 +48,7 @@
</span><span class="cx">   RenderTableSection {DIV} at (10,10) size 50x40
</span><span class="cx">     RenderTableRow {DIV} at (0,0) size 50x40
</span><span class="cx">       RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,198) size 70x10 backgroundClip at (18,198) size 50x40 clip at (18,198) size 50x40 outlineClip at (18,198) size 50x40
</del><ins>+layer at (18,198) size 70x10 backgroundClip at (18,198) size 50x40 clip at (18,198) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span><span class="lines">@@ -56,7 +56,7 @@
</span><span class="cx">   RenderTableSection {DIV} at (10,10) size 50x40
</span><span class="cx">     RenderTableRow {DIV} at (0,0) size 50x40
</span><span class="cx">       RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,258) size 70x10 backgroundClip at (18,258) size 50x40 clip at (18,258) size 50x40 outlineClip at (18,258) size 50x40
</del><ins>+layer at (18,258) size 70x10 backgroundClip at (18,258) size 50x40 clip at (18,258) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span><span class="lines">@@ -65,7 +65,7 @@
</span><span class="cx">     RenderTableRow {DIV} at (0,0) size 50x40
</span><span class="cx"> layer at (18,318) size 50x40
</span><span class="cx">   RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,318) size 70x10 backgroundClip at (18,318) size 50x40 clip at (18,318) size 50x40 outlineClip at (18,318) size 50x40
</del><ins>+layer at (18,318) size 70x10 backgroundClip at (18,318) size 50x40 clip at (18,318) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span><span class="lines">@@ -74,7 +74,7 @@
</span><span class="cx">     RenderTableRow {DIV} at (0,0) size 50x40
</span><span class="cx"> layer at (18,378) size 50x40
</span><span class="cx">   RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,378) size 70x10 backgroundClip at (18,378) size 50x40 clip at (18,378) size 50x40 outlineClip at (18,378) size 50x40
</del><ins>+layer at (18,378) size 70x10 backgroundClip at (18,378) size 50x40 clip at (18,378) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span><span class="lines">@@ -83,7 +83,7 @@
</span><span class="cx">     RenderTableRow {DIV} at (0,0) size 50x40
</span><span class="cx"> layer at (18,438) size 50x40
</span><span class="cx">   RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,438) size 70x10 backgroundClip at (18,438) size 50x40 clip at (18,438) size 50x40 outlineClip at (18,438) size 50x40
</del><ins>+layer at (18,438) size 70x10 backgroundClip at (18,438) size 50x40 clip at (18,438) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span><span class="lines">@@ -92,7 +92,7 @@
</span><span class="cx">     RenderTableRow {DIV} at (0,0) size 50x40
</span><span class="cx"> layer at (18,498) size 50x40
</span><span class="cx">   RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,498) size 70x10 backgroundClip at (18,498) size 50x40 clip at (18,498) size 50x40 outlineClip at (18,498) size 50x40
</del><ins>+layer at (18,498) size 70x10 backgroundClip at (18,498) size 50x40 clip at (18,498) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsfasttableoverflowtablecollapsedborderssectionlayertableselfpaintinglayerexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-section-layer-table-self-painting-layer-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-section-layer-table-self-painting-layer-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-section-layer-table-self-painting-layer-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -38,7 +38,7 @@
</span><span class="cx">   RenderTableSection {DIV} at (10,10) size 50x40
</span><span class="cx">     RenderTableRow {DIV} at (0,0) size 50x40
</span><span class="cx">       RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,198) size 70x10 backgroundClip at (18,198) size 50x40 clip at (18,198) size 50x40 outlineClip at (18,198) size 50x40
</del><ins>+layer at (18,198) size 70x10 backgroundClip at (18,198) size 50x40 clip at (18,198) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span><span class="lines">@@ -48,7 +48,7 @@
</span><span class="cx">   RenderTableSection {DIV} at (10,10) size 50x40
</span><span class="cx">     RenderTableRow {DIV} at (0,0) size 50x40
</span><span class="cx">       RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,258) size 70x10 backgroundClip at (18,258) size 50x40 clip at (18,258) size 50x40 outlineClip at (18,258) size 50x40
</del><ins>+layer at (18,258) size 70x10 backgroundClip at (18,258) size 50x40 clip at (18,258) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span><span class="lines">@@ -59,7 +59,7 @@
</span><span class="cx">     RenderTableRow {DIV} at (0,0) size 50x40
</span><span class="cx"> layer at (18,318) size 50x40
</span><span class="cx">   RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,318) size 70x10 backgroundClip at (18,318) size 50x40 clip at (18,318) size 50x40 outlineClip at (18,318) size 50x40
</del><ins>+layer at (18,318) size 70x10 backgroundClip at (18,318) size 50x40 clip at (18,318) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span><span class="lines">@@ -70,7 +70,7 @@
</span><span class="cx">     RenderTableRow {DIV} at (0,0) size 50x40
</span><span class="cx"> layer at (18,378) size 50x40
</span><span class="cx">   RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,378) size 70x10 backgroundClip at (18,378) size 50x40 clip at (18,378) size 50x40 outlineClip at (18,378) size 50x40
</del><ins>+layer at (18,378) size 70x10 backgroundClip at (18,378) size 50x40 clip at (18,378) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span><span class="lines">@@ -81,7 +81,7 @@
</span><span class="cx">     RenderTableRow {DIV} at (0,0) size 50x40
</span><span class="cx"> layer at (18,438) size 50x40
</span><span class="cx">   RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,438) size 70x10 backgroundClip at (18,438) size 50x40 clip at (18,438) size 50x40 outlineClip at (18,438) size 50x40
</del><ins>+layer at (18,438) size 70x10 backgroundClip at (18,438) size 50x40 clip at (18,438) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span><span class="lines">@@ -92,7 +92,7 @@
</span><span class="cx">     RenderTableRow {DIV} at (0,0) size 50x40
</span><span class="cx"> layer at (18,498) size 50x40
</span><span class="cx">   RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,498) size 70x10 backgroundClip at (18,498) size 50x40 clip at (18,498) size 50x40 outlineClip at (18,498) size 50x40
</del><ins>+layer at (18,498) size 70x10 backgroundClip at (18,498) size 50x40 clip at (18,498) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsfasttableoverflowtablecollapsedborderssectionselfpaintinglayerpaintingexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-section-self-painting-layer-painting-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-section-self-painting-layer-painting-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-section-self-painting-layer-painting-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -47,7 +47,7 @@
</span><span class="cx">   RenderTableSection {DIV} at (10,10) size 50x40
</span><span class="cx">     RenderTableRow {DIV} at (0,0) size 50x40
</span><span class="cx">       RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,258) size 70x10 backgroundClip at (18,258) size 50x40 clip at (18,258) size 50x40 outlineClip at (18,258) size 50x40
</del><ins>+layer at (18,258) size 70x10 backgroundClip at (18,258) size 50x40 clip at (18,258) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span><span class="lines">@@ -58,7 +58,7 @@
</span><span class="cx">     RenderTableRow {DIV} at (0,0) size 50x40
</span><span class="cx"> layer at (18,318) size 50x40
</span><span class="cx">   RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,318) size 70x10 backgroundClip at (18,318) size 50x40 clip at (18,318) size 50x40 outlineClip at (18,318) size 50x40
</del><ins>+layer at (18,318) size 70x10 backgroundClip at (18,318) size 50x40 clip at (18,318) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span><span class="lines">@@ -89,7 +89,7 @@
</span><span class="cx">     RenderTableRow {DIV} at (0,0) size 50x40
</span><span class="cx"> layer at (18,498) size 50x40
</span><span class="cx">   RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,498) size 70x10 backgroundClip at (18,498) size 50x40 clip at (18,498) size 50x40 outlineClip at (18,498) size 50x40
</del><ins>+layer at (18,498) size 70x10 backgroundClip at (18,498) size 50x40 clip at (18,498) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsfasttableoverflowtablecollapsedborderssectionselfpaintinglayertableselfpaintinglayerexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-section-self-painting-layer-table-self-painting-layer-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-section-self-painting-layer-table-self-painting-layer-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/fast/table/overflow-table-collapsed-borders-section-self-painting-layer-table-self-painting-layer-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -47,7 +47,7 @@
</span><span class="cx">   RenderTableSection {DIV} at (10,10) size 50x40
</span><span class="cx">     RenderTableRow {DIV} at (0,0) size 50x40
</span><span class="cx">       RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,258) size 70x10 backgroundClip at (18,258) size 50x40 clip at (18,258) size 50x40 outlineClip at (18,258) size 50x40
</del><ins>+layer at (18,258) size 70x10 backgroundClip at (18,258) size 50x40 clip at (18,258) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span><span class="lines">@@ -58,7 +58,7 @@
</span><span class="cx">     RenderTableRow {DIV} at (0,0) size 50x40
</span><span class="cx"> layer at (18,318) size 50x40
</span><span class="cx">   RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,318) size 70x10 backgroundClip at (18,318) size 50x40 clip at (18,318) size 50x40 outlineClip at (18,318) size 50x40
</del><ins>+layer at (18,318) size 70x10 backgroundClip at (18,318) size 50x40 clip at (18,318) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span><span class="lines">@@ -89,7 +89,7 @@
</span><span class="cx">     RenderTableRow {DIV} at (0,0) size 50x40
</span><span class="cx"> layer at (18,498) size 50x40
</span><span class="cx">   RenderTableCell {DIV} at (0,0) size 50x30 [border: (10px none #008000)] [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (18,498) size 70x10 backgroundClip at (18,498) size 50x40 clip at (18,498) size 50x40 outlineClip at (18,498) size 50x40
</del><ins>+layer at (18,498) size 70x10 backgroundClip at (18,498) size 50x40 clip at (18,498) size 50x40
</ins><span class="cx">   RenderInline {SPAN} at (0,0) size 70x10 [color=#0000FF]
</span><span class="cx">     RenderText {#text} at (10,10) size 70x10
</span><span class="cx">       text run at (10,10) width 70: &quot;XXXXXXX&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmaccompositinggeometryclippingforegroundexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/compositing/geometry/clipping-foreground-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/compositing/geometry/clipping-foreground-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/compositing/geometry/clipping-foreground-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -34,12 +34,12 @@
</span><span class="cx">       text run at (22,22) width 34: &quot;In&quot;
</span><span class="cx">       text run at (22,62) width 85: &quot;Front&quot;
</span><span class="cx"> layer at (392,102) size 200x200 clip at (402,112) size 180x180 scrollWidth 230 scrollHeight 230 layerType: background only
</span><del>-layer at (352,62) size 150x150 backgroundClip at (402,112) size 180x180 clip at (402,112) size 180x180 outlineClip at (402,112) size 180x180
</del><ins>+layer at (352,62) size 150x150 backgroundClip at (402,112) size 180x180 clip at (402,112) size 180x180
</ins><span class="cx">   RenderBlock (positioned) zI: -1 {DIV} at (-40,-40) size 150x150 [color=#808080] [bgcolor=#C86464] [border: (2px solid #000000)]
</span><span class="cx">     RenderText zI: -1 {#text} at (22,22) size 107x40
</span><span class="cx">       text run at (22,22) width 107: &quot;Behind&quot;
</span><span class="cx">     RenderText zI: -1 {#text} at (0,0) size 0x0
</span><del>-layer at (374,144) size 100x100 backgroundClip at (402,112) size 180x180 clip at (402,112) size 180x180 outlineClip at (402,112) size 180x180
</del><ins>+layer at (374,144) size 100x100 backgroundClip at (402,112) size 180x180 clip at (402,112) size 180x180
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (22,82) size 100x100 [bgcolor=#008000] [border: (2px solid #000000)]
</span><span class="cx">     RenderText {#text} at (22,22) size 56x44
</span><span class="cx">       text run at (22,22) width 56: &quot;Behind&quot;
</span><span class="lines">@@ -51,7 +51,7 @@
</span><span class="cx">       text run at (30,70) width 125: &quot;contents&quot;
</span><span class="cx">     RenderText {#text} at (0,0) size 0x0
</span><span class="cx">     RenderText {#text} at (0,0) size 0x0
</span><del>-layer at (482,192) size 150x150 backgroundClip at (402,112) size 180x180 clip at (402,112) size 180x180 outlineClip at (402,112) size 180x180
</del><ins>+layer at (482,192) size 150x150 backgroundClip at (402,112) size 180x180 clip at (402,112) size 180x180
</ins><span class="cx">   RenderBlock (positioned) zI: 1 {DIV} at (90,90) size 150x150 [color=#808080] [bgcolor=#C8C880] [border: (2px solid #000000)]
</span><span class="cx">     RenderText zI: 1 {#text} at (22,22) size 85x80
</span><span class="cx">       text run at (22,22) width 34: &quot;In&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmaccompositinggeometryrootlayerupdateexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/compositing/geometry/root-layer-update-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/compositing/geometry/root-layer-update-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/compositing/geometry/root-layer-update-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -12,7 +12,7 @@
</span><span class="cx">           text run at (0,18) width 472: &quot;Test for the root layer getting correctly positioned. You should see no red.&quot;
</span><span class="cx"> layer at (350,1) size 100x100
</span><span class="cx">   RenderBlock (positioned) {DIV} at (350,1) size 100x100 [bgcolor=#FF0000]
</span><del>-layer at (-100,0) size 300x100 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+layer at (-100,0) size 300x100 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-100,0) size 300x100 [bgcolor=#808080]
</span><span class="cx"> layer at (100,0) size 600x102
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (0,0) size 600x102 [border: (1px solid #000000)]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmaccompositingoverflowancestoroverflowexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/compositing/overflow/ancestor-overflow-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/compositing/overflow/ancestor-overflow-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/compositing/overflow/ancestor-overflow-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -29,7 +29,7 @@
</span><span class="cx">     RenderBlock {DIV} at (11,11) size 122x122 [border: (1px solid #0000FF)]
</span><span class="cx"> layer at (214,256) size 142x142 clip at (215,257) size 140x140
</span><span class="cx">   RenderBlock {DIV} at (206,206) size 142x142 [border: (1px solid #000000)]
</span><del>-layer at (50,92) size 100x150 backgroundClip at (29,71) size 140x140 clip at (29,71) size 140x140 outlineClip at (29,71) size 140x140
</del><ins>+layer at (50,92) size 100x150 backgroundClip at (29,71) size 140x140 clip at (29,71) size 140x140
</ins><span class="cx">   RenderBlock {DIV} at (11,11) size 100x150 [bgcolor=#808080]
</span><span class="cx"> layer at (225,81) size 122x122
</span><span class="cx">   RenderBlock (positioned) {DIV} at (225,81) size 122x122 [border: (1px solid #0000FF)]
</span><span class="lines">@@ -39,9 +39,9 @@
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (392,20) size 142x142 [border: (1px solid #000000)]
</span><span class="cx"> layer at (411,81) size 122x122
</span><span class="cx">   RenderBlock (positioned) {DIV} at (11,11) size 122x122 [border: (1px solid #0000FF)]
</span><del>-layer at (422,92) size 100x150 backgroundClip at (401,71) size 140x140 clip at (401,71) size 140x140 outlineClip at (401,71) size 140x140
</del><ins>+layer at (422,92) size 100x150 backgroundClip at (401,71) size 140x140 clip at (401,71) size 140x140
</ins><span class="cx">   RenderBlock {DIV} at (11,11) size 100x150 [bgcolor=#808080]
</span><del>-layer at (50,278) size 100x150 backgroundClip at (29,257) size 140x140 clip at (29,257) size 140x140 outlineClip at (29,257) size 140x140
</del><ins>+layer at (50,278) size 100x150 backgroundClip at (29,257) size 140x140 clip at (29,257) size 140x140
</ins><span class="cx">   RenderBlock {DIV} at (11,11) size 100x150 [bgcolor=#808080]
</span><span class="cx"> layer at (225,267) size 122x122
</span><span class="cx">   RenderBlock (positioned) {DIV} at (225,267) size 122x122 [border: (1px solid #0000FF)]
</span><span class="lines">@@ -51,5 +51,5 @@
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (392,206) size 142x142 [border: (1px solid #000000)]
</span><span class="cx"> layer at (411,267) size 122x122
</span><span class="cx">   RenderBlock (positioned) {DIV} at (11,11) size 122x122 [border: (1px solid #0000FF)]
</span><del>-layer at (422,278) size 100x150 backgroundClip at (401,257) size 140x140 clip at (401,257) size 140x140 outlineClip at (401,257) size 140x140
</del><ins>+layer at (422,278) size 100x150 backgroundClip at (401,257) size 140x140 clip at (401,257) size 140x140
</ins><span class="cx">   RenderBlock {DIV} at (11,11) size 100x150 [bgcolor=#808080]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmaccompositingoverflownestedscrollingexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/compositing/overflow/nested-scrolling-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/compositing/overflow/nested-scrolling-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/compositing/overflow/nested-scrolling-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -36,7 +36,7 @@
</span><span class="cx">         text run at (0,73) width 668: &quot;ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu&quot;
</span><span class="cx">         text run at (0,106) width 651: &quot;fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt&quot;
</span><span class="cx">         text run at (0,139) width 174: &quot;mollit anim id est laborum.&quot;
</span><del>-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
</del><ins>+layer at (19,469) size 602x402 backgroundClip at (19,469) size 602x343 clip at (20,470) size 585x342 scrollHeight 508
</ins><span class="cx">   RenderBlock {DIV} at (11,443) size 602x402 [border: (1px solid #000000)]
</span><span class="cx">     RenderBlock {P} at (1,17) size 585x198
</span><span class="cx">       RenderText {#text} at (0,7) size 583x183
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmaccompositingoverflowoverflowscrollexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/compositing/overflow/overflow-scroll-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/compositing/overflow/overflow-scroll-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/compositing/overflow/overflow-scroll-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -36,13 +36,13 @@
</span><span class="cx">   RenderBlock {DIV} at (10,10) size 152x152 [border: (1px solid #000000)]
</span><span class="cx"> layer at (194,60) size 152x152 clip at (195,61) size 135x135 scrollY 50 scrollWidth 210 scrollHeight 510
</span><span class="cx">   RenderBlock {DIV} at (186,10) size 152x152 [border: (1px solid #000000)]
</span><del>-layer at (19,11) size 210x510 backgroundClip at (19,61) size 135x135 clip at (19,61) size 135x135 outlineClip at (19,61) size 135x135
</del><ins>+layer at (19,11) size 210x510 backgroundClip at (19,61) size 135x135 clip at (19,61) size 135x135
</ins><span class="cx">   RenderBlock {DIV} at (1,1) size 210x510 [bgcolor=#808080]
</span><span class="cx">     RenderBlock {P} at (5,29) size 200x56
</span><span class="cx">       RenderText {#text} at (0,0) size 192x56
</span><span class="cx">         text run at (0,0) width 192: &quot;This is the inner div&quot;
</span><span class="cx">         text run at (0,28) width 111: &quot;that scrolls.&quot;
</span><del>-layer at (195,11) size 210x510 backgroundClip at (195,61) size 135x135 clip at (195,61) size 135x135 outlineClip at (195,61) size 135x135
</del><ins>+layer at (195,11) size 210x510 backgroundClip at (195,61) size 135x135 clip at (195,61) size 135x135
</ins><span class="cx">   RenderBlock (relative positioned) {DIV} at (1,1) size 210x510 [bgcolor=#808080]
</span><span class="cx">     RenderBlock {P} at (5,29) size 200x56
</span><span class="cx">       RenderText {#text} at (0,0) size 192x56
</span><span class="lines">@@ -50,7 +50,7 @@
</span><span class="cx">         text run at (0,28) width 111: &quot;that scrolls.&quot;
</span><span class="cx"> layer at (370,60) size 152x152 clip at (371,61) size 135x135 scrollY 50 scrollWidth 210 scrollHeight 510
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (362,10) size 152x152 [border: (1px solid #000000)]
</span><del>-layer at (371,11) size 210x510 backgroundClip at (371,61) size 135x135 clip at (371,61) size 135x135 outlineClip at (371,61) size 135x135
</del><ins>+layer at (371,11) size 210x510 backgroundClip at (371,61) size 135x135 clip at (371,61) size 135x135
</ins><span class="cx">   RenderBlock {DIV} at (1,1) size 210x510 [bgcolor=#808080]
</span><span class="cx">     RenderBlock {P} at (5,29) size 200x56
</span><span class="cx">       RenderText {#text} at (0,0) size 192x56
</span><span class="lines">@@ -58,7 +58,7 @@
</span><span class="cx">         text run at (0,28) width 111: &quot;that scrolls.&quot;
</span><span class="cx"> layer at (546,60) size 152x152 clip at (547,61) size 135x135 scrollY 50 scrollWidth 210 scrollHeight 510
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (538,10) size 152x152 [border: (1px solid #000000)]
</span><del>-layer at (547,11) size 210x510 backgroundClip at (547,61) size 135x135 clip at (547,61) size 135x135 outlineClip at (547,61) size 135x135
</del><ins>+layer at (547,11) size 210x510 backgroundClip at (547,61) size 135x135 clip at (547,61) size 135x135
</ins><span class="cx">   RenderBlock (relative positioned) {DIV} at (1,1) size 210x510 [bgcolor=#808080]
</span><span class="cx">     RenderBlock {P} at (5,29) size 200x56
</span><span class="cx">       RenderText {#text} at (0,0) size 192x56
</span><span class="lines">@@ -73,7 +73,7 @@
</span><span class="cx">           text run at (0,28) width 111: &quot;that scrolls.&quot;
</span><span class="cx"> layer at (194,236) size 152x152 clip at (195,237) size 135x135 scrollY 50 scrollWidth 210 scrollHeight 510
</span><span class="cx">   RenderBlock {DIV} at (186,186) size 152x152 [border: (1px solid #000000)]
</span><del>-layer at (195,187) size 210x510 backgroundClip at (195,237) size 135x135 clip at (195,237) size 135x135 outlineClip at (195,237) size 135x135
</del><ins>+layer at (195,187) size 210x510 backgroundClip at (195,237) size 135x135 clip at (195,237) size 135x135
</ins><span class="cx">   RenderBlock (relative positioned) {DIV} at (1,1) size 210x510 [bgcolor=#808080]
</span><span class="cx">     RenderBlock {P} at (5,29) size 200x56
</span><span class="cx">       RenderText {#text} at (0,0) size 192x56
</span><span class="lines">@@ -81,7 +81,7 @@
</span><span class="cx">         text run at (0,28) width 111: &quot;that scrolls.&quot;
</span><span class="cx"> layer at (370,236) size 152x152 clip at (371,237) size 135x135 scrollY 50 scrollWidth 210 scrollHeight 510
</span><span class="cx">   RenderBlock {DIV} at (362,186) size 152x152 [border: (1px solid #000000)]
</span><del>-layer at (371,187) size 210x510 backgroundClip at (371,237) size 135x135 clip at (371,237) size 135x135 outlineClip at (371,237) size 135x135
</del><ins>+layer at (371,187) size 210x510 backgroundClip at (371,237) size 135x135 clip at (371,237) size 135x135
</ins><span class="cx">   RenderBlock {DIV} at (1,1) size 210x510 [bgcolor=#808080]
</span><span class="cx">     RenderBlock {P} at (5,29) size 200x56
</span><span class="cx">       RenderText {#text} at (0,0) size 192x56
</span><span class="lines">@@ -89,7 +89,7 @@
</span><span class="cx">         text run at (0,28) width 111: &quot;that scrolls.&quot;
</span><span class="cx"> layer at (546,236) size 152x152 clip at (547,237) size 135x135 scrollY 50 scrollWidth 210 scrollHeight 510
</span><span class="cx">   RenderBlock {DIV} at (538,186) size 152x152 [border: (1px solid #000000)]
</span><del>-layer at (547,187) size 210x510 backgroundClip at (547,237) size 135x135 clip at (547,237) size 135x135 outlineClip at (547,237) size 135x135
</del><ins>+layer at (547,187) size 210x510 backgroundClip at (547,237) size 135x135 clip at (547,237) size 135x135
</ins><span class="cx">   RenderBlock (relative positioned) {DIV} at (1,1) size 210x510 [bgcolor=#808080]
</span><span class="cx">     RenderBlock {P} at (5,29) size 200x56
</span><span class="cx">       RenderText {#text} at (0,0) size 192x56
</span><span class="lines">@@ -104,7 +104,7 @@
</span><span class="cx">           text run at (0,28) width 111: &quot;that scrolls.&quot;
</span><span class="cx"> layer at (194,412) size 152x152 clip at (195,413) size 135x135 scrollY 50 scrollWidth 210 scrollHeight 510
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (186,362) size 152x152 [border: (1px solid #000000)]
</span><del>-layer at (195,363) size 210x510 backgroundClip at (195,413) size 135x135 clip at (195,413) size 135x135 outlineClip at (195,413) size 135x135
</del><ins>+layer at (195,363) size 210x510 backgroundClip at (195,413) size 135x135 clip at (195,413) size 135x135
</ins><span class="cx">   RenderBlock (relative positioned) {DIV} at (1,1) size 210x510 [bgcolor=#808080]
</span><span class="cx">     RenderBlock {P} at (5,29) size 200x56
</span><span class="cx">       RenderText {#text} at (0,0) size 192x56
</span><span class="lines">@@ -112,7 +112,7 @@
</span><span class="cx">         text run at (0,28) width 111: &quot;that scrolls.&quot;
</span><span class="cx"> layer at (370,412) size 152x152 clip at (371,413) size 135x135 scrollY 50 scrollWidth 210 scrollHeight 510
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (362,362) size 152x152 [border: (1px solid #000000)]
</span><del>-layer at (371,363) size 210x510 backgroundClip at (371,413) size 135x135 clip at (371,413) size 135x135 outlineClip at (371,413) size 135x135
</del><ins>+layer at (371,363) size 210x510 backgroundClip at (371,413) size 135x135 clip at (371,413) size 135x135
</ins><span class="cx">   RenderBlock {DIV} at (1,1) size 210x510 [bgcolor=#808080]
</span><span class="cx">     RenderBlock {P} at (5,29) size 200x56
</span><span class="cx">       RenderText {#text} at (0,0) size 192x56
</span><span class="lines">@@ -120,7 +120,7 @@
</span><span class="cx">         text run at (0,28) width 111: &quot;that scrolls.&quot;
</span><span class="cx"> layer at (546,412) size 152x152 clip at (547,413) size 135x135 scrollY 50 scrollWidth 210 scrollHeight 510
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (538,362) size 152x152 [border: (1px solid #000000)]
</span><del>-layer at (547,363) size 210x510 backgroundClip at (547,413) size 135x135 clip at (547,413) size 135x135 outlineClip at (547,413) size 135x135
</del><ins>+layer at (547,363) size 210x510 backgroundClip at (547,413) size 135x135 clip at (547,413) size 135x135
</ins><span class="cx">   RenderBlock (relative positioned) {DIV} at (1,1) size 210x510 [bgcolor=#808080]
</span><span class="cx">     RenderBlock {P} at (5,29) size 200x56
</span><span class="cx">       RenderText {#text} at (0,0) size 192x56
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmaccompositingoverflowparentoverflowexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/compositing/overflow/parent-overflow-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/compositing/overflow/parent-overflow-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/compositing/overflow/parent-overflow-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -14,13 +14,13 @@
</span><span class="cx">         RenderText {#text} at (0,0) size 0x0
</span><span class="cx"> layer at (28,70) size 122x122 clip at (29,71) size 120x120 scrollHeight 320
</span><span class="cx">   RenderBlock {DIV} at (20,20) size 122x122 [border: (1px solid #000000)]
</span><del>-layer at (39,81) size 100x300 backgroundClip at (29,71) size 120x120 clip at (29,71) size 120x120 outlineClip at (29,71) size 120x120
</del><ins>+layer at (39,81) size 100x300 backgroundClip at (29,71) size 120x120 clip at (29,71) size 120x120
</ins><span class="cx">   RenderBlock {DIV} at (11,11) size 100x300 [bgcolor=#808080]
</span><span class="cx"> layer at (194,70) size 122x122 clip at (195,71) size 120x120 scrollHeight 320
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (186,20) size 122x122 [border: (1px solid #000000)]
</span><del>-layer at (205,81) size 100x300 backgroundClip at (195,71) size 120x120 clip at (195,71) size 120x120 outlineClip at (195,71) size 120x120
</del><ins>+layer at (205,81) size 100x300 backgroundClip at (195,71) size 120x120 clip at (195,71) size 120x120
</ins><span class="cx">   RenderBlock {DIV} at (11,11) size 100x300 [bgcolor=#808080]
</span><span class="cx"> layer at (360,70) size 122x122 clip at (361,71) size 120x120 scrollHeight 320
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (352,20) size 122x122 [border: (1px solid #000000)]
</span><del>-layer at (371,81) size 100x300 backgroundClip at (361,71) size 120x120 clip at (361,71) size 120x120 outlineClip at (361,71) size 120x120
</del><ins>+layer at (371,81) size 100x300 backgroundClip at (361,71) size 120x120 clip at (361,71) size 120x120
</ins><span class="cx">   RenderBlock {DIV} at (11,11) size 100x300 [bgcolor=#808080]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmaccompositingoverflowscrollbarpaintingexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/compositing/overflow/scrollbar-painting-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/compositing/overflow/scrollbar-painting-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/compositing/overflow/scrollbar-painting-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -8,7 +8,7 @@
</span><span class="cx">           text run at (0,0) width 484: &quot;You should see scrollbars on the gray square, and a resizer control below it.&quot;
</span><span class="cx"> layer at (18,50) size 100x100 clip at (18,50) size 85x85 scrollWidth 500 scrollHeight 500
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (10,34) size 100x100
</span><del>-layer at (18,50) size 500x500 backgroundClip at (18,50) size 85x85 clip at (18,50) size 85x85 outlineClip at (18,50) size 85x85
</del><ins>+layer at (18,50) size 500x500 backgroundClip at (18,50) size 85x85 clip at (18,50) size 85x85
</ins><span class="cx">   RenderBlock {DIV} at (0,0) size 500x500 [bgcolor=#808080]
</span><span class="cx"> layer at (18,160) size 100x100
</span><span class="cx">   RenderBlock {DIV} at (10,144) size 100x100
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmaccompositingreflectionsnestedreflectiononoverflowexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/compositing/reflections/nested-reflection-on-overflow-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/compositing/reflections/nested-reflection-on-overflow-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/compositing/reflections/nested-reflection-on-overflow-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -12,7 +12,7 @@
</span><span class="cx">   RenderBlock {DIV} at (11,11) size 100x100 [bgcolor=#008000]
</span><span class="cx"> layer at (39,65) size 100x100 clip at (39,65) size 85x85 scrollHeight 500
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (0,0) size 100x100
</span><del>-layer at (39,65) size 85x500 backgroundClip at (39,65) size 85x85 clip at (39,65) size 85x85 outlineClip at (39,65) size 85x85
</del><ins>+layer at (39,65) size 85x500 backgroundClip at (39,65) size 85x85 clip at (39,65) size 85x85
</ins><span class="cx">   RenderBlock {DIV} at (0,0) size 85x500
</span><span class="cx">     RenderText {#text} at (0,0) size 83x414
</span><span class="cx">       text run at (0,0) width 43: &quot;Lorem&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmaccompositingsiblingpositioningexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/compositing/sibling-positioning-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/compositing/sibling-positioning-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/compositing/sibling-positioning-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -14,5 +14,5 @@
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (0,0) size 202x202 [border: (1px solid #000000)]
</span><span class="cx"> layer at (59,59) size 60x60
</span><span class="cx">   RenderBlock (positioned) {DIV} at (51,51) size 60x60 [bgcolor=#008000]
</span><del>-layer at (-41,-41) size 100x100 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+layer at (-41,-41) size 100x100 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-49,-49) size 100x100 [bgcolor=#808080]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss3blendingblendmodeoverflowexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/css3/blending/blend-mode-overflow-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css3/blending/blend-mode-overflow-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/css3/blending/blend-mode-overflow-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -81,5 +81,5 @@
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (0,0) size 150x150
</span><span class="cx"> layer at (242,386) size 150x150 scrollWidth 170 scrollHeight 170
</span><span class="cx">   RenderBlock (positioned) {DIV} at (10,10) size 150x150
</span><del>-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
</del><ins>+layer at (262,406) size 150x150 backgroundClip at (242,386) size 150x150 clip at (242,386) size 150x150 blendMode: difference
</ins><span class="cx">   RenderImage {IMG} at (20,20) size 150x150
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss3unicodebidiisolatebasicexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/css3/unicode-bidi-isolate-basic-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css3/unicode-bidi-isolate-basic-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/css3/unicode-bidi-isolate-basic-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -13,7 +13,7 @@
</span><span class="cx"> layer at (8,62) size 28x400
</span><span class="cx">   RenderBlock (positioned) {DIV} at (0,0) size 29x400 [color=#FF0000]
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 29x400
</span><del>-layer at (8,62) size 28x2055 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+layer at (8,62) size 28x2055 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 29x2055
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 29x18
</span><span class="cx">       RenderText {#text} at (0,0) size 7x18
</span><span class="lines">@@ -882,7 +882,7 @@
</span><span class="cx"> layer at (8,62) size 28x400
</span><span class="cx">   RenderBlock (positioned) {DIV} at (0,0) size 29x400 [color=#008000]
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 29x400
</span><del>-layer at (8,62) size 28x2055 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+layer at (8,62) size 28x2055 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 29x2055
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 29x18
</span><span class="cx">       RenderText {#text} at (0,0) size 7x18
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastblockfloatoverhangingtallblockexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/block/float/overhanging-tall-block-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/block/float/overhanging-tall-block-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/block/float/overhanging-tall-block-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -6,6 +6,6 @@
</span><span class="cx">       RenderBlock {DIV} at (0,0) size 784x33554431
</span><span class="cx">       RenderBlock {DIV} at (0,33554431) size 784x0
</span><span class="cx">       RenderBlock {DIV} at (0,33554431) size 784x0
</span><del>-layer at (10,11) size 152x33554431 backgroundClip at (10,11) size 152x33554421 clip at (11,12) size 150x33554420 outlineClip at (0,0) size 800x33554431
</del><ins>+layer at (10,11) size 152x33554431 backgroundClip at (10,11) size 152x33554421 clip at (11,12) size 150x33554420
</ins><span class="cx">   RenderTextControl {TEXTAREA} at (2,3) size 152x33554428 [bgcolor=#FFFFFF] [border: (1px solid #000000)]
</span><span class="cx">     RenderBlock {DIV} at (3,3) size 146x13
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastblockpositioningautoverticalrl007expectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/block/positioning/auto/vertical-rl/007-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/block/positioning/auto/vertical-rl/007-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/block/positioning/auto/vertical-rl/007-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -3,7 +3,7 @@
</span><span class="cx"> layer at (0,0) size 800x585
</span><span class="cx">   RenderBlock {HTML} at (0,0) size 800x585
</span><span class="cx">     RenderBody {BODY} at (8,8) size 784x569
</span><del>-layer at (-830,8) size 1622x202 backgroundClip at (0,0) size 1630x585 clip at (0,0) size 1630x585 outlineClip at (0,0) size 1630x585
</del><ins>+layer at (-830,8) size 1622x202 backgroundClip at (0,0) size 1630x585 clip at (0,0) size 1630x585
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (8,8) size 1622x203
</span><span class="cx">     RenderBlock {P} at (72,0) size 83x203
</span><span class="cx">       RenderInline {A} at (0,0) size 83x167 [color=#0000EE]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastblockpositioningverticalrlfixedpositioningexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/block/positioning/vertical-rl/fixed-positioning-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/block/positioning/vertical-rl/fixed-positioning-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/block/positioning/vertical-rl/fixed-positioning-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> layer at (0,0) size 2016x600
</span><span class="cx">   RenderView at (0,0) size 800x600
</span><del>-layer at (-1216,0) size 2016x600 backgroundClip at (0,0) size 2016x600 clip at (0,0) size 2016x600 outlineClip at (0,0) size 2016x600
</del><ins>+layer at (-1216,0) size 2016x600 backgroundClip at (0,0) size 2016x600 clip at (0,0) size 2016x600
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 2016x600
</span><span class="cx">     RenderBody {BODY} at (8,8) size 2000x584
</span><span class="cx">       RenderBlock {DIV} at (0,-1416) size 2000x2000 [bgcolor=#00FF00]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastbordersborderantialiasingexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/borders/border-antialiasing-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/borders/border-antialiasing-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/borders/border-antialiasing-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -164,7 +164,7 @@
</span><span class="cx"> layer at (28,179) size 600x100
</span><span class="cx">   RenderBlock {DIV} at (10,159) size 600x100
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 600x100
</span><del>-layer at (28,179) size 11x1190 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+layer at (28,179) size 11x1190 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 11x1190
</span><span class="cx">     RenderText {#text} at (0,0) size 8x1190
</span><span class="cx">       text run at (0,0) width 8: &quot;_&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastclip001expectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/clip/001-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/clip/001-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/clip/001-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -6,6 +6,6 @@
</span><span class="cx">       RenderText {#text} at (0,0) size 542x18
</span><span class="cx">         text run at (0,0) width 304: &quot;You should see a 100x100 green square below. &quot;
</span><span class="cx">         text run at (303,0) width 239: &quot;If you see any red, the test has failed.&quot;
</span><del>-layer at (8,26) size 200x200 backgroundClip at (108,126) size 100x100 clip at (108,126) size 100x100 outlineClip at (108,126) size 100x100
</del><ins>+layer at (8,26) size 200x200 backgroundClip at (108,126) size 100x100 clip at (108,126) size 100x100
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (8,26) size 200x200 [bgcolor=#008000]
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 100x100 [bgcolor=#FF0000]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastclip013expectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/clip/013-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/clip/013-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/clip/013-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -9,5 +9,5 @@
</span><span class="cx">         text run at (545,0) width 218: &quot;This test is checking to make sure&quot;
</span><span class="cx">         text run at (0,18) width 412: &quot;clip applies to the element itself and starts from the border edge.&quot;
</span><span class="cx">       RenderText {#text} at (0,0) size 0x0
</span><del>-layer at (8,44) size 120x120 backgroundClip at (18,54) size 100x100 clip at (18,54) size 100x100 outlineClip at (18,54) size 100x100
</del><ins>+layer at (8,44) size 120x120 backgroundClip at (18,54) size 100x100 clip at (18,54) size 100x100
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (8,44) size 120x120 [bgcolor=#008000] [border: (10px solid #FF0000)]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastclip014expectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/clip/014-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/clip/014-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/clip/014-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -11,6 +11,6 @@
</span><span class="cx">         text run at (634,18) width 116: &quot;The bottom of the&quot;
</span><span class="cx">         text run at (0,36) width 254: &quot;scrolling mechanism should be clipped.&quot;
</span><span class="cx">       RenderText {#text} at (0,0) size 0x0
</span><del>-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
</del><ins>+layer at (8,62) size 120x220 backgroundClip at (18,72) size 100x100 clip at (18,72) size 85x100 scrollHeight 1000
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (8,62) size 120x220 [bgcolor=#008000] [border: (10px solid #FF0000)]
</span><span class="cx">     RenderBlock {DIV} at (10,10) size 85x1000
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastclip016expectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/clip/016-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/clip/016-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/clip/016-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -6,5 +6,5 @@
</span><span class="cx">       RenderText {#text} at (0,0) size 300x18
</span><span class="cx">         text run at (0,0) width 300: &quot;You should see a 100x100 green square below.&quot;
</span><span class="cx">       RenderText {#text} at (0,0) size 0x0
</span><del>-layer at (50,50) size 100x500 backgroundClip at (50,50) size 100x100 clip at (50,50) size 100x100 outlineClip at (50,50) size 100x100
</del><ins>+layer at (50,50) size 100x500 backgroundClip at (50,50) size 100x100 clip at (50,50) size 100x100
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (50,50) size 100x500 [bgcolor=#008000]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastclipoutlineoverflowClipexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/clip/outline-overflowClip-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/clip/outline-overflowClip-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/clip/outline-overflowClip-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -9,12 +9,12 @@
</span><span class="cx">         text run at (506,0) width 274: &quot;The inner div has a green outline and a red&quot;
</span><span class="cx">         text run at (0,18) width 45: &quot;border.&quot;
</span><span class="cx">       RenderText {#text} at (0,0) size 0x0
</span><del>-layer at (8,44) size 304x204 backgroundClip at (83,44) size 229x204 clip at (83,44) size 229x204 outlineClip at (83,44) size 229x204
</del><ins>+layer at (8,44) size 304x204 backgroundClip at (83,44) size 229x204 clip at (83,44) size 229x204
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (8,44) size 304x204 [border: (2px solid #0000FF)]
</span><span class="cx">     RenderText {#text} at (2,2) size 102x18
</span><span class="cx">       text run at (2,2) width 102: &quot;text in outer div&quot;
</span><span class="cx">     RenderText {#text} at (0,0) size 0x0
</span><del>-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
</del><ins>+layer at (60,64) size 108x24 backgroundClip at (83,61) size 88x30 clip at (83,67) size 82x18 scrollWidth 103
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (52,20) size 108x24 [bgcolor=#EEEEEE] [border: (3px solid #FF0000)]
</span><span class="cx">     RenderText {#text} at (3,3) size 102x18
</span><span class="cx">       text run at (3,3) width 102: &quot;text in inner div&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastcssclipzoomingexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/css/clip-zooming-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/css/clip-zooming-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/css/clip-zooming-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -12,5 +12,5 @@
</span><span class="cx">           text run at (0,0) width 606: &quot;Test CSS clip with zooming. You should not see any red below&quot;
</span><span class="cx"> layer at (75,150) size 150x150
</span><span class="cx">   RenderBlock (positioned) {DIV} at (75,150) size 150x150 [bgcolor=#FF0000]
</span><del>-layer at (0,75) size 300x300 backgroundClip at (75,150) size 150x150 clip at (75,150) size 150x150 outlineClip at (75,150) size 150x150
</del><ins>+layer at (0,75) size 300x300 backgroundClip at (75,150) size 150x150 clip at (75,150) size 150x150
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (0,75) size 300x300 [bgcolor=#008000]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastformsvalidationmessageappearanceexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/forms/validation-message-appearance-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/forms/validation-message-appearance-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/forms/validation-message-appearance-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -34,6 +34,6 @@
</span><span class="cx">         RenderText {#text} at (0,16) size 195x32
</span><span class="cx">           text run at (0,16) width 195: &quot;Should not be identical with the&quot;
</span><span class="cx">           text run at (0,32) width 112: &quot;current password.&quot;
</span><del>-layer at (42,29) size 18x18 backgroundClip at (10,29) size 220x16 clip at (10,29) size 220x16 outlineClip at (10,29) size 220x16
</del><ins>+layer at (42,29) size 18x18 backgroundClip at (10,29) size 220x16 clip at (10,29) size 220x16
</ins><span class="cx">   RenderBlock (relative positioned) zI: 2147483645 {DIV} at (0,0) size 18x18 [bgcolor=#F8ECEC] [border: (2px solid #440000) none (2px solid #440000)]
</span><span class="cx"> caret: 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
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastinlineleftrightcenterinlinealignmentinltrandrtlblocksexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/inline/left-right-center-inline-alignment-in-ltr-and-rtl-blocks-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/inline/left-right-center-inline-alignment-in-ltr-and-rtl-blocks-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/inline/left-right-center-inline-alignment-in-ltr-and-rtl-blocks-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -15,7 +15,7 @@
</span><span class="cx">   RenderBlock (positioned) {FONT} at (162,547) size 246x28
</span><span class="cx">     RenderText {#text} at (0,0) size 246x28
</span><span class="cx">       text run at (0,0) width 246: &quot;RTL-Center-Aligned&quot;
</span><del>-layer at (-86,451) size 94x84 backgroundClip at (0,0) size 902x585 clip at (0,0) size 902x585 outlineClip at (0,0) size 902x585
</del><ins>+layer at (-86,451) size 94x84 backgroundClip at (0,0) size 902x585 clip at (0,0) size 902x585
</ins><span class="cx">   RenderBlock (positioned) {FONT} at (-86,451) size 94x84
</span><span class="cx">     RenderText {#text} at (0,0) size 94x84
</span><span class="cx">       text run at (0,0) width 60: &quot;RTL-&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastlinegridlinegridinsidecolumnsexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/line-grid/line-grid-inside-columns-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/line-grid/line-grid-inside-columns-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/line-grid/line-grid-inside-columns-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -6,7 +6,7 @@
</span><span class="cx"> layer at (8,8) size 784x504
</span><span class="cx">   RenderBlock {DIV} at (0,0) size 784x504 [border: (2px solid #FF0000)]
</span><span class="cx">     RenderMultiColumnSet at (2,2) size 780x500
</span><del>-layer at (10,10) size 382x1488 backgroundClip at (0,0) size 1188x585 clip at (0,0) size 1188x585 outlineClip at (0,0) size 1188x585
</del><ins>+layer at (10,10) size 382x1488 backgroundClip at (0,0) size 1188x585 clip at (0,0) size 1188x585
</ins><span class="cx">   RenderMultiColumnFlowThread at (2,2) size 382x1488
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 382x1488
</span><span class="cx">       RenderBlock {DIV} at (0,0) size 382x364
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastlinegridlinegridintocolumnsexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/line-grid/line-grid-into-columns-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/line-grid/line-grid-into-columns-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/line-grid/line-grid-into-columns-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -50,7 +50,7 @@
</span><span class="cx"> layer at (0,0) size 800x540
</span><span class="cx">   RenderBlock {DIV} at (0,0) size 800x540
</span><span class="cx">     RenderMultiColumnSet at (20,20) size 760x500
</span><del>-layer at (20,20) size 362x966 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+layer at (20,20) size 362x966 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
</ins><span class="cx">   RenderMultiColumnFlowThread at (20,20) size 362x966
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 362x385
</span><span class="cx">       RenderText {#text} at (0,39) size 359x100
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastlistsscrolledmarkerpaintexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/lists/scrolled-marker-paint-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/lists/scrolled-marker-paint-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/lists/scrolled-marker-paint-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -14,7 +14,7 @@
</span><span class="cx">             text run at (134,0) width 485: &quot;REGRESSION: (r13028) Scrolling causes incomplete drawing of ul bullets&quot;
</span><span class="cx">         RenderText {#text} at (618,0) size 5x18
</span><span class="cx">           text run at (618,0) width 5: &quot;.&quot;
</span><del>-layer at (8,-4) size 409x18 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+layer at (8,-4) size 409x18 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
</ins><span class="cx">   RenderBlock (positioned) {UL} at (8,-4) size 409x18
</span><span class="cx">     RenderListItem {LI} at (40,0) size 369x18
</span><span class="cx">       RenderListMarker at (-17,0) size 7x18: bullet
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolclientrectsexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/client-rects-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/client-rects-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/client-rects-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -211,7 +211,7 @@
</span><span class="cx"> layer at (18,290) size 66x116
</span><span class="cx">   RenderBlock {DIV} at (10,237) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</span><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (-24,298) size 100x48 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+layer at (-24,298) size 100x48 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 100x48
</span><span class="cx">     RenderBR {BR} at (0,0) size 25x0
</span><span class="cx">     RenderText {#text} at (25,0) size 75x25
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolcolumnbreakwithbalancingexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/column-break-with-balancing-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/column-break-with-balancing-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/column-break-with-balancing-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -88,7 +88,7 @@
</span><span class="cx"> layer at (8,412) size 769x388
</span><span class="cx">   RenderBlock {DIV} at (0,404) size 769x388 [border: (5px solid #0000FF)]
</span><span class="cx">     RenderMultiColumnSet at (5,5) size 759x378
</span><del>-layer at (13,417) size 372x756 backgroundClip at (0,0) size 785x808 clip at (0,0) size 785x808 outlineClip at (0,0) size 785x808
</del><ins>+layer at (13,417) size 372x756 backgroundClip at (0,0) size 785x808 clip at (0,0) size 785x808
</ins><span class="cx">   RenderMultiColumnFlowThread at (5,5) size 372x756
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 372x72
</span><span class="cx">       RenderText {#text} at (0,0) size 248x18
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolcolumnrulesexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/column-rules-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/column-rules-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/column-rules-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -6,7 +6,7 @@
</span><span class="cx"> layer at (8,8) size 784x550
</span><span class="cx">   RenderBlock {DIV} at (0,0) size 784x550 [border: (5px solid #000000)]
</span><span class="cx">     RenderMultiColumnSet at (15,5) size 754x540
</span><del>-layer at (23,13) size 241x1584 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+layer at (23,13) size 241x1584 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
</ins><span class="cx">   RenderMultiColumnFlowThread at (15,5) size 241x1584
</span><span class="cx">     RenderText {#text} at (0,0) size 241x1584
</span><span class="cx">       text run at (0,0) width 182: &quot;Lorem ipsum dolor sit amet,&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolcolumnrulesstackingexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/column-rules-stacking-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/column-rules-stacking-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/column-rules-stacking-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -14,7 +14,7 @@
</span><span class="cx"> layer at (8,44) size 769x586 layerType: foreground only
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (0,36) size 769x586 [bgcolor=#FF0000] [border: (5px solid #000000)]
</span><span class="cx">     RenderMultiColumnSet at (35,5) size 699x576
</span><del>-layer at (43,49) size 222x1728 backgroundClip at (0,0) size 785x638 clip at (0,0) size 785x638 outlineClip at (0,0) size 785x638
</del><ins>+layer at (43,49) size 222x1728 backgroundClip at (0,0) size 785x638 clip at (0,0) size 785x638
</ins><span class="cx">   RenderMultiColumnFlowThread at (35,5) size 223x1728
</span><span class="cx">     RenderText {#text} at (0,0) size 223x1728
</span><span class="cx">       text run at (0,0) width 182: &quot;Lorem ipsum dolor sit amet,&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolcolumnsshorthandparsingexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/columns-shorthand-parsing-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/columns-shorthand-parsing-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/columns-shorthand-parsing-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -6,7 +6,7 @@
</span><span class="cx"> layer at (8,8) size 769x702
</span><span class="cx">   RenderBlock {DIV} at (0,0) size 769x702
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 769x702
</span><del>-layer at (8,8) size 377x1404 backgroundClip at (0,0) size 785x718 clip at (0,0) size 785x718 outlineClip at (0,0) size 785x718
</del><ins>+layer at (8,8) size 377x1404 backgroundClip at (0,0) size 785x718 clip at (0,0) size 785x718
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 377x1404
</span><span class="cx">     RenderText {#text} at (0,0) size 362x1404
</span><span class="cx">       text run at (0,0) width 329: &quot;This content should be split into two columns. This&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolfloatpaginatecomplexexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/float-paginate-complex-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/float-paginate-complex-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/float-paginate-complex-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -296,7 +296,7 @@
</span><span class="cx"> layer at (8,1268) size 769x404
</span><span class="cx">   RenderBlock {DIV} at (0,1260) size 769x404 [border: (2px solid #000000)]
</span><span class="cx">     RenderMultiColumnSet at (2,2) size 765x400
</span><del>-layer at (10,1270) size 375x652 backgroundClip at (0,0) size 1166x1680 clip at (0,0) size 1166x1680 outlineClip at (0,0) size 1166x1680
</del><ins>+layer at (10,1270) size 375x652 backgroundClip at (0,0) size 1166x1680 clip at (0,0) size 1166x1680
</ins><span class="cx">   RenderMultiColumnFlowThread at (2,2) size 375x652
</span><span class="cx">     RenderImage {IMG} at (0,0) size 375x380 [bgcolor=#0000FF]
</span><span class="cx">     RenderInline {SPAN} at (0,0) size 367x252
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolfloatpaginateemptylinesexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/float-paginate-empty-lines-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/float-paginate-empty-lines-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/float-paginate-empty-lines-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -11,7 +11,7 @@
</span><span class="cx"> layer at (8,78) size 784x400
</span><span class="cx">   RenderBlock {DIV} at (0,70) size 784x400
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 784x400
</span><del>-layer at (8,78) size 384x600 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+layer at (8,78) size 384x600 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 384x600
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 384x236 [border: (10px dashed #800000)]
</span><span class="cx">       RenderText {#text} at (10,10) size 113x18
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolfloatpaginateexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/float-paginate-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/float-paginate-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/float-paginate-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -6,7 +6,7 @@
</span><span class="cx"> layer at (8,8) size 784x404
</span><span class="cx">   RenderBlock {DIV} at (0,0) size 784x404 [border: (2px solid #000000)]
</span><span class="cx">     RenderMultiColumnSet at (2,2) size 780x400
</span><del>-layer at (10,10) size 382x944 backgroundClip at (0,0) size 1188x585 clip at (0,0) size 1188x585 outlineClip at (0,0) size 1188x585
</del><ins>+layer at (10,10) size 382x944 backgroundClip at (0,0) size 1188x585 clip at (0,0) size 1188x585
</ins><span class="cx">   RenderMultiColumnFlowThread at (2,2) size 382x944
</span><span class="cx">     RenderText {#text} at (0,0) size 113x18
</span><span class="cx">       text run at (0,0) width 113: &quot;This is some text.&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticollayersinmulticolexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/layers-in-multicol-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/layers-in-multicol-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/layers-in-multicol-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -12,7 +12,7 @@
</span><span class="cx"> layer at (8,26) size 769x310
</span><span class="cx">   RenderBlock {DIV} at (0,18) size 769x310 [border: (5px solid #800000)]
</span><span class="cx">     RenderMultiColumnSet at (5,5) size 759x300
</span><del>-layer at (13,31) size 242x1380 backgroundClip at (0,0) size 1289x672 clip at (0,0) size 1289x672 outlineClip at (0,0) size 1289x672
</del><ins>+layer at (13,31) size 242x1380 backgroundClip at (0,0) size 1289x672 clip at (0,0) size 1289x672
</ins><span class="cx">   RenderMultiColumnFlowThread at (5,5) size 243x1380
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 243x234
</span><span class="cx">       RenderText {#text} at (0,0) size 109x18
</span><span class="lines">@@ -185,7 +185,7 @@
</span><span class="cx"> layer at (8,354) size 769x310
</span><span class="cx">   RenderBlock {DIV} at (0,346) size 769x310 [border: (5px solid #800000)]
</span><span class="cx">     RenderMultiColumnSet at (5,5) size 759x300
</span><del>-layer at (530,359) size 242x1380 backgroundClip at (0,0) size 1289x672 clip at (0,0) size 1289x672 outlineClip at (0,0) size 1289x672
</del><ins>+layer at (530,359) size 242x1380 backgroundClip at (0,0) size 1289x672 clip at (0,0) size 1289x672
</ins><span class="cx">   RenderMultiColumnFlowThread at (521,5) size 243x1380
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 243x234
</span><span class="cx">       RenderText {#text} at (133,0) size 110x18
</span><span class="lines">@@ -357,5 +357,5 @@
</span><span class="cx">       RenderBR {BR} at (133,260) size 1x0
</span><span class="cx"> layer at (13,331) size 100x270
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (0,0) size 100x270 [bgcolor=#008000]
</span><del>-layer at (672,659) size 100x270 backgroundClip at (0,0) size 1289x672 clip at (0,0) size 1289x672 outlineClip at (0,0) size 1289x672
</del><ins>+layer at (672,659) size 100x270 backgroundClip at (0,0) size 1289x672 clip at (0,0) size 1289x672
</ins><span class="cx">   RenderBlock (relative positioned) {DIV} at (142,0) size 101x270 [bgcolor=#008000]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticollayerssplitacrosscolumnsexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/layers-split-across-columns-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/layers-split-across-columns-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/layers-split-across-columns-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -66,7 +66,7 @@
</span><span class="cx"> layer at (8,653) size 220x310
</span><span class="cx">   RenderBlock {DIV} at (0,18) size 220x310 [border: (5px solid #000000)]
</span><span class="cx">     RenderMultiColumnSet at (5,5) size 210x300
</span><del>-layer at (13,658) size 100x600 backgroundClip at (0,0) size 785x971 clip at (0,0) size 785x971 outlineClip at (0,0) size 785x971
</del><ins>+layer at (13,658) size 100x600 backgroundClip at (0,0) size 785x971 clip at (0,0) size 785x971
</ins><span class="cx">   RenderMultiColumnFlowThread at (5,5) size 100x600
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 100x100
</span><span class="cx">       RenderBlock {DIV} at (0,0) size 100x100 [bgcolor=#000000]
</span><span class="lines">@@ -86,7 +86,7 @@
</span><span class="cx">     RenderBlock {DIV} at (0,100) size 100x100 [bgcolor=#0000D0]
</span><span class="cx">     RenderBlock {DIV} at (0,200) size 100x100 [bgcolor=#0000B0]
</span><span class="cx">     RenderBlock {DIV} at (0,300) size 100x100 [bgcolor=#000090]
</span><del>-layer at (13,758) size 100x400 backgroundClip at (0,0) size 785x971 clip at (0,0) size 785x971 outlineClip at (0,0) size 785x971
</del><ins>+layer at (13,758) size 100x400 backgroundClip at (0,0) size 785x971 clip at (0,0) size 785x971
</ins><span class="cx">   RenderBlock {DIV} at (0,100) size 100x400
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 100x100 [bgcolor=#0000F0]
</span><span class="cx">     RenderBlock {DIV} at (0,100) size 100x100 [bgcolor=#0000D0]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolmaxheightcolumnsblockexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/max-height-columns-block-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/max-height-columns-block-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/max-height-columns-block-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -16,7 +16,7 @@
</span><span class="cx"> layer at (8,80) size 404x64
</span><span class="cx">   RenderBlock {DIV} at (0,72) size 404x64 [border: (2px solid #000000)]
</span><span class="cx">     RenderMultiColumnSet at (2,2) size 400x60
</span><del>-layer at (10,82) size 61x596 backgroundClip at (0,0) size 834x585 clip at (0,0) size 834x585 outlineClip at (0,0) size 834x585
</del><ins>+layer at (10,82) size 61x596 backgroundClip at (0,0) size 834x585 clip at (0,0) size 834x585
</ins><span class="cx">   RenderMultiColumnFlowThread at (2,2) size 61x596
</span><span class="cx">     RenderText {#text} at (0,0) size 51x116
</span><span class="cx">       text run at (0,0) width 43: &quot;This&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolnestedcolumnsexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/nested-columns-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/nested-columns-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/nested-columns-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -5,7 +5,7 @@
</span><span class="cx"> layer at (8,8) size 750x500
</span><span class="cx">   RenderBody {BODY} at (8,8) size 750x500
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 750x500
</span><del>-layer at (8,8) size 367x1018 backgroundClip at (0,0) size 1141x585 clip at (0,0) size 1141x585 outlineClip at (0,0) size 1141x585
</del><ins>+layer at (8,8) size 367x1018 backgroundClip at (0,0) size 1141x585 clip at (0,0) size 1141x585
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 367x1018
</span><span class="cx">     RenderBlock {H1} at (0,21) size 367x38
</span><span class="cx">       RenderText {#text} at (0,0) size 166x37
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolnewmulticolclientrectsexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/newmulticol/client-rects-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/newmulticol/client-rects-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/newmulticol/client-rects-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -211,7 +211,7 @@
</span><span class="cx"> layer at (18,290) size 66x116
</span><span class="cx">   RenderBlock {DIV} at (10,237) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</span><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (-24,298) size 100x48 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+layer at (-24,298) size 100x48 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 100x48
</span><span class="cx">     RenderBR {BR} at (0,0) size 25x0
</span><span class="cx">     RenderText {#text} at (25,0) size 75x25
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticoloverflowacrosscolumnsexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/overflow-across-columns-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/overflow-across-columns-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/overflow-across-columns-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -6,9 +6,9 @@
</span><span class="cx"> layer at (8,8) size 506x505
</span><span class="cx">   RenderBlock {DIV} at (0,0) size 506x505 [border: (3px solid #000000)]
</span><span class="cx">     RenderMultiColumnSet at (3,3) size 500x499
</span><del>-layer at (11,11) size 159x1478 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+layer at (11,11) size 159x1478 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
</ins><span class="cx">   RenderMultiColumnFlowThread at (3,3) size 159x1478
</span><del>-layer at (11,11) size 159x1478 backgroundClip at (11,11) size 159x589 clip at (11,11) size 159x589 outlineClip at (0,0) size 800x600
</del><ins>+layer at (11,11) size 159x1478 backgroundClip at (11,11) size 159x589 clip at (11,11) size 159x589
</ins><span class="cx">   RenderBlock {DIV} at (0,0) size 159x1478
</span><span class="cx">     RenderText {#text} at (0,5) size 159x1468
</span><span class="cx">       text run at (0,5) width 159: &quot;Lorem ipsum dolor sit amet,&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticoloverflowacrosscolumnspercentheightexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/overflow-across-columns-percent-height-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/overflow-across-columns-percent-height-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/overflow-across-columns-percent-height-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -6,10 +6,10 @@
</span><span class="cx"> layer at (8,8) size 506x505
</span><span class="cx">   RenderBlock {DIV} at (0,0) size 506x505 [border: (3px solid #000000)]
</span><span class="cx">     RenderMultiColumnSet at (3,3) size 500x499
</span><del>-layer at (11,11) size 159x1478 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+layer at (11,11) size 159x1478 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
</ins><span class="cx">   RenderMultiColumnFlowThread at (3,3) size 159x1478
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 159x1478
</span><del>-layer at (11,11) size 159x1478 backgroundClip at (11,11) size 159x589 clip at (11,11) size 159x589 outlineClip at (0,0) size 800x600
</del><ins>+layer at (11,11) size 159x1478 backgroundClip at (11,11) size 159x589 clip at (11,11) size 159x589
</ins><span class="cx">   RenderBlock {DIV} at (0,0) size 159x1478
</span><span class="cx">     RenderText {#text} at (0,5) size 159x1468
</span><span class="cx">       text run at (0,5) width 159: &quot;Lorem ipsum dolor sit amet,&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticoloverflowunsplittableexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/overflow-unsplittable-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/overflow-unsplittable-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/overflow-unsplittable-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -6,7 +6,7 @@
</span><span class="cx"> layer at (8,8) size 506x505
</span><span class="cx">   RenderBlock {DIV} at (0,0) size 506x505 [border: (3px solid #000000)]
</span><span class="cx">     RenderMultiColumnSet at (3,3) size 500x499
</span><del>-layer at (11,11) size 159x1521 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+layer at (11,11) size 159x1521 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
</ins><span class="cx">   RenderMultiColumnFlowThread at (3,3) size 159x1521
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 159x360
</span><span class="cx">       RenderText {#text} at (0,5) size 159x350
</span><span class="lines">@@ -56,7 +56,7 @@
</span><span class="cx">         text run at (0,632) width 159: &quot;ipsum sit amet ligula mattis&quot;
</span><span class="cx">         text run at (0,656) width 159: &quot;porttitor sit amet id felis. Integer&quot;
</span><span class="cx">         text run at (0,699) width 157: &quot;volutpat aliquam odio et feugiat.&quot;
</span><del>-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
</del><ins>+layer at (11,510) size 159x304 backgroundClip at (11,510) size 159x90 clip at (13,512) size 140x88 scrollHeight 456
</ins><span class="cx">   RenderBlock {DIV} at (0,499) size 160x304 [border: (2px solid #000000)]
</span><span class="cx">     RenderText {#text} at (2,7) size 141x446
</span><span class="cx">       text run at (2,7) width 141: &quot;Aenean diam enim, suscipit&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolpaginateblockreplacedexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/paginate-block-replaced-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/paginate-block-replaced-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/paginate-block-replaced-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -6,7 +6,7 @@
</span><span class="cx"> layer at (8,8) size 784x404
</span><span class="cx">   RenderBlock {DIV} at (0,0) size 784x404 [border: (2px solid #000000)]
</span><span class="cx">     RenderMultiColumnSet at (2,2) size 780x400
</span><del>-layer at (10,10) size 382x1254 backgroundClip at (0,0) size 1586x585 clip at (0,0) size 1586x585 outlineClip at (0,0) size 1586x585
</del><ins>+layer at (10,10) size 382x1254 backgroundClip at (0,0) size 1586x585 clip at (0,0) size 1586x585
</ins><span class="cx">   RenderMultiColumnFlowThread at (2,2) size 382x1254
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 382x180
</span><span class="cx">       RenderText {#text} at (0,0) size 113x18
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolpaginationBottomToTopbtexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/pagination/BottomToTop-bt-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/pagination/BottomToTop-bt-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/pagination/BottomToTop-bt-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 785x1580
</span><span class="cx">   RenderView at (0,0) size 785x600
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 785x600
</span><del>-layer at (0,-668) size 785x1268 backgroundClip at (0,0) size 785x1580 clip at (0,0) size 785x1580 outlineClip at (0,0) size 785x1580
</del><ins>+layer at (0,-668) size 785x1268 backgroundClip at (0,0) size 785x1580 clip at (0,0) size 785x1580
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 785x1268
</span><del>-layer at (0,-668) size 785x1268 backgroundClip at (0,0) size 785x1580 clip at (0,0) size 785x1580 outlineClip at (0,0) size 785x1580
</del><ins>+layer at (0,-668) size 785x1268 backgroundClip at (0,0) size 785x1580 clip at (0,0) size 785x1580
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 785x1268
</span><span class="cx">     RenderBody {BODY} at (8,8) size 769x1244
</span><span class="cx">       RenderBlock {DIV} at (0,0) size 50x50 [bgcolor=#0000FF]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolpaginationBottomToToplrexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/pagination/BottomToTop-lr-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/pagination/BottomToTop-lr-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/pagination/BottomToTop-lr-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 785x600
</span><span class="cx">   RenderView at (0,0) size 785x600
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 785x600
</span><del>-layer at (0,0) size 3724x180 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600 outlineClip at (0,0) size 785x600
</del><ins>+layer at (0,0) size 3724x180 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 3724x180
</span><del>-layer at (0,0) size 3724x180 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600 outlineClip at (0,0) size 785x600
</del><ins>+layer at (0,0) size 3724x180 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 3724x180
</span><span class="cx">     RenderBody {BODY} at (8,8) size 3700x164
</span><span class="cx">       RenderBlock {DIV} at (0,0) size 50x50 [bgcolor=#0000FF]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolpaginationBottomToToprlexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/pagination/BottomToTop-rl-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/pagination/BottomToTop-rl-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/pagination/BottomToTop-rl-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 785x600
</span><span class="cx">   RenderView at (0,0) size 785x600
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 785x600
</span><del>-layer at (-2939,0) size 3724x180 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600 outlineClip at (0,0) size 785x600
</del><ins>+layer at (-2939,0) size 3724x180 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 3724x180
</span><del>-layer at (-2939,0) size 3724x180 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600 outlineClip at (0,0) size 785x600
</del><ins>+layer at (-2939,0) size 3724x180 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 3724x180
</span><span class="cx">     RenderBody {BODY} at (8,8) size 3700x164
</span><span class="cx">       RenderBlock {DIV} at (0,0) size 50x50 [bgcolor=#0000FF]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolpaginationBottomToToptbexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/pagination/BottomToTop-tb-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/pagination/BottomToTop-tb-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/pagination/BottomToTop-tb-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 785x600
</span><span class="cx">   RenderView at (0,0) size 785x600
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 785x600
</span><del>-layer at (0,0) size 785x1268 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600 outlineClip at (0,0) size 785x600
</del><ins>+layer at (0,0) size 785x1268 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 785x1268
</span><del>-layer at (0,0) size 785x1268 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600 outlineClip at (0,0) size 785x600
</del><ins>+layer at (0,0) size 785x1268 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 785x1268
</span><span class="cx">     RenderBody {BODY} at (8,8) size 769x1244
</span><span class="cx">       RenderBlock {DIV} at (0,0) size 50x50 [bgcolor=#0000FF]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolpaginationLeftToRightbtexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/pagination/LeftToRight-bt-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/pagination/LeftToRight-bt-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/pagination/LeftToRight-bt-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 1380x585
</span><span class="cx">   RenderView at (0,0) size 800x585
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 800x585
</span><del>-layer at (0,-3193) size 180x3778 backgroundClip at (0,0) size 1380x585 clip at (0,0) size 1380x585 outlineClip at (0,0) size 1380x585
</del><ins>+layer at (0,-3193) size 180x3778 backgroundClip at (0,0) size 1380x585 clip at (0,0) size 1380x585
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 180x3778
</span><del>-layer at (0,-3193) size 180x3778 backgroundClip at (0,0) size 1380x585 clip at (0,0) size 1380x585 outlineClip at (0,0) size 1380x585
</del><ins>+layer at (0,-3193) size 180x3778 backgroundClip at (0,0) size 1380x585 clip at (0,0) size 1380x585
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 180x3778
</span><span class="cx">     RenderBody {BODY} at (8,8) size 164x3754
</span><span class="cx">       RenderBlock {DIV} at (0,0) size 50x50 [bgcolor=#0000FF]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolpaginationLeftToRightrlexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/pagination/LeftToRight-rl-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/pagination/LeftToRight-rl-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/pagination/LeftToRight-rl-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 800x585
</span><span class="cx">   RenderView at (0,0) size 800x585
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 800x585
</span><del>-layer at (-764,0) size 1564x585 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585 outlineClip at (0,0) size 800x585
</del><ins>+layer at (-764,0) size 1564x585 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 1564x585
</span><del>-layer at (-764,0) size 1564x585 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585 outlineClip at (0,0) size 800x585
</del><ins>+layer at (-764,0) size 1564x585 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 1564x585
</span><span class="cx">     RenderBody {BODY} at (8,8) size 1540x569
</span><span class="cx">       RenderBlock {DIV} at (0,0) size 50x50 [bgcolor=#0000FF]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolpaginationLeftToRighttbexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/pagination/LeftToRight-tb-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/pagination/LeftToRight-tb-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/pagination/LeftToRight-tb-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 1380x585
</span><span class="cx">   RenderView at (0,0) size 800x585
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 800x585
</span><del>-layer at (0,0) size 180x3778 backgroundClip at (0,0) size 1380x585 clip at (0,0) size 1380x585 outlineClip at (0,0) size 1380x585
</del><ins>+layer at (0,0) size 180x3778 backgroundClip at (0,0) size 1380x585 clip at (0,0) size 1380x585
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 180x3778
</span><del>-layer at (0,0) size 180x3778 backgroundClip at (0,0) size 1380x585 clip at (0,0) size 1380x585 outlineClip at (0,0) size 1380x585
</del><ins>+layer at (0,0) size 180x3778 backgroundClip at (0,0) size 1380x585 clip at (0,0) size 1380x585
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 180x3778
</span><span class="cx">     RenderBody {BODY} at (8,8) size 164x3754
</span><span class="cx">       RenderBlock {DIV} at (0,0) size 50x50 [bgcolor=#0000FF]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolpaginationRightToLeftbtexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/pagination/RightToLeft-bt-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/pagination/RightToLeft-bt-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/pagination/RightToLeft-bt-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 800x585
</span><span class="cx">   RenderView at (0,0) size 800x585
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 800x585
</span><del>-layer at (0,-3193) size 180x3778 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585 outlineClip at (0,0) size 800x585
</del><ins>+layer at (0,-3193) size 180x3778 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 180x3778
</span><del>-layer at (0,-3193) size 180x3778 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585 outlineClip at (0,0) size 800x585
</del><ins>+layer at (0,-3193) size 180x3778 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 180x3778
</span><span class="cx">     RenderBody {BODY} at (8,8) size 164x3754
</span><span class="cx">       RenderBlock {DIV} at (0,0) size 50x50 [bgcolor=#0000FF]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolpaginationRightToLeftlrexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/pagination/RightToLeft-lr-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/pagination/RightToLeft-lr-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/pagination/RightToLeft-lr-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 800x585
</span><span class="cx">   RenderView at (0,0) size 800x585
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 800x585
</span><del>-layer at (0,0) size 1564x585 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585 outlineClip at (0,0) size 800x585
</del><ins>+layer at (0,0) size 1564x585 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 1564x585
</span><del>-layer at (0,0) size 1564x585 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585 outlineClip at (0,0) size 800x585
</del><ins>+layer at (0,0) size 1564x585 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 1564x585
</span><span class="cx">     RenderBody {BODY} at (8,8) size 1540x569
</span><span class="cx">       RenderBlock {DIV} at (0,0) size 50x50 [bgcolor=#0000FF]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolpaginationRightToLeftrldynamicexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/pagination/RightToLeft-rl-dynamic-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/pagination/RightToLeft-rl-dynamic-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/pagination/RightToLeft-rl-dynamic-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 1780x585
</span><span class="cx">   RenderView at (0,0) size 800x585
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 800x585
</span><del>-layer at (-764,0) size 1564x585 backgroundClip at (0,0) size 1780x585 clip at (0,0) size 1780x585 outlineClip at (0,0) size 1780x585
</del><ins>+layer at (-764,0) size 1564x585 backgroundClip at (0,0) size 1780x585 clip at (0,0) size 1780x585
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 1564x585
</span><del>-layer at (-764,0) size 1564x585 backgroundClip at (0,0) size 1780x585 clip at (0,0) size 1780x585 outlineClip at (0,0) size 1780x585
</del><ins>+layer at (-764,0) size 1564x585 backgroundClip at (0,0) size 1780x585 clip at (0,0) size 1780x585
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 1564x585
</span><span class="cx">     RenderBody {BODY} at (8,8) size 1540x569
</span><span class="cx">       RenderBlock {DIV} at (0,0) size 50x50 [bgcolor=#0000FF]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolpaginationRightToLeftrlexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/pagination/RightToLeft-rl-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/pagination/RightToLeft-rl-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/pagination/RightToLeft-rl-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 1780x585
</span><span class="cx">   RenderView at (0,0) size 800x585
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 800x585
</span><del>-layer at (-764,0) size 1564x585 backgroundClip at (0,0) size 1780x585 clip at (0,0) size 1780x585 outlineClip at (0,0) size 1780x585
</del><ins>+layer at (-764,0) size 1564x585 backgroundClip at (0,0) size 1780x585 clip at (0,0) size 1780x585
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 1564x585
</span><del>-layer at (-764,0) size 1564x585 backgroundClip at (0,0) size 1780x585 clip at (0,0) size 1780x585 outlineClip at (0,0) size 1780x585
</del><ins>+layer at (-764,0) size 1564x585 backgroundClip at (0,0) size 1780x585 clip at (0,0) size 1780x585
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 1564x585
</span><span class="cx">     RenderBody {BODY} at (8,8) size 1540x569
</span><span class="cx">       RenderBlock {DIV} at (0,0) size 50x50 [bgcolor=#0000FF]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolpaginationRightToLefttbexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/pagination/RightToLeft-tb-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/pagination/RightToLeft-tb-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/pagination/RightToLeft-tb-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 800x585
</span><span class="cx">   RenderView at (0,0) size 800x585
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 800x585
</span><del>-layer at (0,0) size 180x3778 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585 outlineClip at (0,0) size 800x585
</del><ins>+layer at (0,0) size 180x3778 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 180x3778
</span><del>-layer at (0,0) size 180x3778 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585 outlineClip at (0,0) size 800x585
</del><ins>+layer at (0,0) size 180x3778 backgroundClip at (0,0) size 800x585 clip at (0,0) size 800x585
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 180x3778
</span><span class="cx">     RenderBody {BODY} at (8,8) size 164x3754
</span><span class="cx">       RenderBlock {DIV} at (0,0) size 50x50 [bgcolor=#0000FF]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolpaginationTopToBottombtexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/pagination/TopToBottom-bt-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/pagination/TopToBottom-bt-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/pagination/TopToBottom-bt-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 785x600
</span><span class="cx">   RenderView at (0,0) size 785x600
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 785x600
</span><del>-layer at (0,-668) size 785x1268 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600 outlineClip at (0,0) size 785x600
</del><ins>+layer at (0,-668) size 785x1268 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 785x1268
</span><del>-layer at (0,-668) size 785x1268 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600 outlineClip at (0,0) size 785x600
</del><ins>+layer at (0,-668) size 785x1268 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 785x1268
</span><span class="cx">     RenderBody {BODY} at (8,8) size 769x1244
</span><span class="cx">       RenderBlock {DIV} at (0,0) size 50x50 [bgcolor=#0000FF]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolpaginationTopToBottomlrexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/pagination/TopToBottom-lr-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/pagination/TopToBottom-lr-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/pagination/TopToBottom-lr-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 785x980
</span><span class="cx">   RenderView at (0,0) size 785x600
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 785x600
</span><del>-layer at (0,0) size 3724x180 backgroundClip at (0,0) size 785x980 clip at (0,0) size 785x980 outlineClip at (0,0) size 785x980
</del><ins>+layer at (0,0) size 3724x180 backgroundClip at (0,0) size 785x980 clip at (0,0) size 785x980
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 3724x180
</span><del>-layer at (0,0) size 3724x180 backgroundClip at (0,0) size 785x980 clip at (0,0) size 785x980 outlineClip at (0,0) size 785x980
</del><ins>+layer at (0,0) size 3724x180 backgroundClip at (0,0) size 785x980 clip at (0,0) size 785x980
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 3724x180
</span><span class="cx">     RenderBody {BODY} at (8,8) size 3700x164
</span><span class="cx">       RenderBlock {DIV} at (0,0) size 50x50 [bgcolor=#0000FF]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolpaginationTopToBottomrlexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/pagination/TopToBottom-rl-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/pagination/TopToBottom-rl-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/pagination/TopToBottom-rl-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 785x980
</span><span class="cx">   RenderView at (0,0) size 785x600
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 785x600
</span><del>-layer at (-2939,0) size 3724x180 backgroundClip at (0,0) size 785x980 clip at (0,0) size 785x980 outlineClip at (0,0) size 785x980
</del><ins>+layer at (-2939,0) size 3724x180 backgroundClip at (0,0) size 785x980 clip at (0,0) size 785x980
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 3724x180
</span><del>-layer at (-2939,0) size 3724x180 backgroundClip at (0,0) size 785x980 clip at (0,0) size 785x980 outlineClip at (0,0) size 785x980
</del><ins>+layer at (-2939,0) size 3724x180 backgroundClip at (0,0) size 785x980 clip at (0,0) size 785x980
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 3724x180
</span><span class="cx">     RenderBody {BODY} at (8,8) size 3700x164
</span><span class="cx">       RenderBlock {DIV} at (0,0) size 50x50 [bgcolor=#0000FF]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolpositiveleadingexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/positive-leading-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/positive-leading-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/positive-leading-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -6,7 +6,7 @@
</span><span class="cx"> layer at (8,8) size 506x505
</span><span class="cx">   RenderBlock {DIV} at (0,0) size 506x505 [border: (3px solid #000000)]
</span><span class="cx">     RenderMultiColumnSet at (3,3) size 500x499
</span><del>-layer at (11,11) size 159x1478 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+layer at (11,11) size 159x1478 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
</ins><span class="cx">   RenderMultiColumnFlowThread at (3,3) size 159x1478
</span><span class="cx">     RenderText {#text} at (0,5) size 159x1468
</span><span class="cx">       text run at (0,5) width 159: &quot;Lorem ipsum dolor sit amet,&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolscrollingcolumnrulesexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/scrolling-column-rules-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/scrolling-column-rules-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/scrolling-column-rules-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -14,6 +14,6 @@
</span><span class="cx"> layer at (8,50) size 784x100 scrollX 200 scrollWidth 2572
</span><span class="cx">   RenderBlock {DIV} at (0,34) size 784x100
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 784x100
</span><del>-layer at (-192,50) size 337x600 backgroundClip at (8,50) size 784x100 clip at (8,50) size 784x100 outlineClip at (8,50) size 784x100
</del><ins>+layer at (-192,50) size 337x600 backgroundClip at (8,50) size 784x100 clip at (8,50) size 784x100
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 337x600
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 337x600 [bgcolor=#C0C0C0]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolscrollingoverflowexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/scrolling-overflow-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/scrolling-overflow-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/scrolling-overflow-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -6,7 +6,7 @@
</span><span class="cx"> layer at (8,8) size 784x300
</span><span class="cx">   RenderBlock {DIV} at (0,0) size 784x300
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 784x300
</span><del>-layer at (8,8) size 251x5434 backgroundClip at (0,0) size 5058x585 clip at (0,0) size 5058x585 outlineClip at (0,0) size 5058x585
</del><ins>+layer at (8,8) size 251x5434 backgroundClip at (0,0) size 5058x585 clip at (0,0) size 5058x585
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 251x5434
</span><span class="cx">     RenderBlock {P} at (0,16) size 251x572
</span><span class="cx">       RenderText {#text} at (0,0) size 250x572
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolspananonymousstyleinheritanceexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/span/anonymous-style-inheritance-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/span/anonymous-style-inheritance-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/span/anonymous-style-inheritance-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -9,7 +9,7 @@
</span><span class="cx">       RenderText {#text} at (0,0) size 721x31
</span><span class="cx">         text run at (0,0) width 721: &quot;This is a spanning element at the beginning of the columns block.&quot;
</span><span class="cx">     RenderMultiColumnSet at (5,80) size 826x397
</span><del>-layer at (14,23) size 403x792 backgroundClip at (0,0) size 844x585 clip at (0,0) size 844x585 outlineClip at (0,0) size 844x585
</del><ins>+layer at (14,23) size 403x792 backgroundClip at (0,0) size 844x585 clip at (0,0) size 844x585
</ins><span class="cx">   RenderMultiColumnFlowThread at (5,5) size 404x793
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (0,0) size 0x0
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 404x792
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolspanspanasimmediatechildcomplexsplittingexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -131,7 +131,7 @@
</span><span class="cx">       RenderText {#text} at (0,0) size 221x28
</span><span class="cx">         text run at (0,0) width 221: &quot;This is a second span.&quot;
</span><span class="cx">     RenderMultiColumnSet at (5,363) size 750x127
</span><del>-layer at (13,1042) size 367x662 backgroundClip at (0,0) size 785x1548 clip at (0,0) size 785x1548 outlineClip at (0,0) size 785x1548
</del><ins>+layer at (13,1042) size 367x662 backgroundClip at (0,0) size 785x1548 clip at (0,0) size 785x1548
</ins><span class="cx">   RenderMultiColumnFlowThread at (5,5) size 367x662
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 367x0
</span><span class="cx">       RenderInline {SPAN} at (0,0) size 0x0
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolspanspanasimmediatechildgeneratedcontentexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-child-generated-content-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-child-generated-content-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-child-generated-content-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -304,7 +304,7 @@
</span><span class="cx">       RenderText {#text} at (0,0) size 277x28
</span><span class="cx">         text run at (0,0) width 277: &quot;This is a spanning element.&quot;
</span><span class="cx">     RenderMultiColumnSet at (5,329) size 750x127
</span><del>-layer at (13,2268) size 367x750 backgroundClip at (0,0) size 785x2740 clip at (0,0) size 785x2740 outlineClip at (0,0) size 785x2740
</del><ins>+layer at (13,2268) size 367x750 backgroundClip at (0,0) size 785x2740 clip at (0,0) size 785x2740
</ins><span class="cx">   RenderMultiColumnFlowThread at (5,5) size 367x750
</span><span class="cx">     RenderBlock (generated) at (0,0) size 367x18 [bgcolor=#FFFF00]
</span><span class="cx">       RenderText at (0,0) size 168x18
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolspanspanasimmediatechildpropertyremovalexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-child-property-removal-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-child-property-removal-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-child-property-removal-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -265,7 +265,7 @@
</span><span class="cx"> layer at (8,2011) size 760x400
</span><span class="cx">   RenderBlock {DIV} at (0,2003) size 760x401 [border: (5px solid #800000)]
</span><span class="cx">     RenderMultiColumnSet at (5,5) size 750x390
</span><del>-layer at (13,2016) size 367x764 backgroundClip at (0,0) size 785x2427 clip at (0,0) size 785x2427 outlineClip at (0,0) size 785x2427
</del><ins>+layer at (13,2016) size 367x764 backgroundClip at (0,0) size 785x2427 clip at (0,0) size 785x2427
</ins><span class="cx">   RenderMultiColumnFlowThread at (5,5) size 367x764
</span><span class="cx">     RenderBlock {P} at (0,16) size 367x198
</span><span class="cx">       RenderText {#text} at (0,0) size 367x198
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolspanspanasimmediatecolumnschilddynamicexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -273,7 +273,7 @@
</span><span class="cx">       RenderText {#text} at (0,0) size 277x28
</span><span class="cx">         text run at (0,0) width 277: &quot;This is a spanning element.&quot;
</span><span class="cx">     RenderMultiColumnSet at (5,320) size 750x109
</span><del>-layer at (13,2165) size 367x712 backgroundClip at (0,0) size 785x2610 clip at (0,0) size 785x2610 outlineClip at (0,0) size 785x2610
</del><ins>+layer at (13,2165) size 367x712 backgroundClip at (0,0) size 785x2610 clip at (0,0) size 785x2610
</ins><span class="cx">   RenderMultiColumnFlowThread at (5,5) size 367x712
</span><span class="cx">     RenderBlock {P} at (0,16) size 367x198
</span><span class="cx">       RenderText {#text} at (0,0) size 367x198
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolspanspanasimmediatecolumnschildexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-columns-child-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-columns-child-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-columns-child-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -357,7 +357,7 @@
</span><span class="cx">         text run at (0,0) width 743: &quot;This is a spanning element in the middle of the columns block with block&quot;
</span><span class="cx">         text run at (0,28) width 84: &quot;siblings.&quot;
</span><span class="cx">     RenderMultiColumnSet at (5,322) size 750x125
</span><del>-layer at (13,2967) size 367x666 backgroundClip at (0,0) size 785x3430 clip at (0,0) size 785x3430 outlineClip at (0,0) size 785x3430
</del><ins>+layer at (13,2967) size 367x666 backgroundClip at (0,0) size 785x3430 clip at (0,0) size 785x3430
</ins><span class="cx">   RenderMultiColumnFlowThread at (5,5) size 367x666
</span><span class="cx">     RenderBlock {P} at (0,16) size 367x198
</span><span class="cx">       RenderText {#text} at (0,0) size 367x198
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolspanspanasimmediatecolumnschildremovalexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-columns-child-removal-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-columns-child-removal-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-columns-child-removal-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -242,7 +242,7 @@
</span><span class="cx"> layer at (8,1816) size 760x368
</span><span class="cx">   RenderBlock {DIV} at (0,1800) size 760x368 [border: (5px solid #800000)]
</span><span class="cx">     RenderMultiColumnSet at (5,5) size 750x358
</span><del>-layer at (13,1821) size 367x716 backgroundClip at (0,0) size 785x2200 clip at (0,0) size 785x2200 outlineClip at (0,0) size 785x2200
</del><ins>+layer at (13,1821) size 367x716 backgroundClip at (0,0) size 785x2200 clip at (0,0) size 785x2200
</ins><span class="cx">   RenderMultiColumnFlowThread at (5,5) size 367x716
</span><span class="cx">     RenderBlock {P} at (0,16) size 367x198
</span><span class="cx">       RenderText {#text} at (0,0) size 367x198
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolspanspanasnestedcolumnschilddynamicexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-nested-columns-child-dynamic-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-nested-columns-child-dynamic-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-nested-columns-child-dynamic-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -118,7 +118,7 @@
</span><span class="cx">       RenderText {#text} at (0,0) size 277x28
</span><span class="cx">         text run at (0,0) width 277: &quot;This is a spanning element.&quot;
</span><span class="cx">     RenderMultiColumnSet at (5,214) size 750x223
</span><del>-layer at (13,873) size 367x702 backgroundClip at (0,0) size 785x1325 clip at (0,0) size 785x1325 outlineClip at (0,0) size 785x1325
</del><ins>+layer at (13,873) size 367x702 backgroundClip at (0,0) size 785x1325 clip at (0,0) size 785x1325
</ins><span class="cx">   RenderMultiColumnFlowThread at (5,5) size 367x702
</span><span class="cx">     RenderBlock {P} at (0,16) size 367x198
</span><span class="cx">       RenderText {#text} at (0,0) size 367x198
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolspanspanasnestedcolumnschildexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-nested-columns-child-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-nested-columns-child-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/span/span-as-nested-columns-child-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -114,7 +114,7 @@
</span><span class="cx">       RenderText {#text} at (0,0) size 635x28
</span><span class="cx">         text run at (0,0) width 635: &quot;This is a spanning element in the middle of the columns block.&quot;
</span><span class="cx">     RenderMultiColumnSet at (5,198) size 750x207
</span><del>-layer at (13,873) size 367x654 backgroundClip at (0,0) size 785x1293 clip at (0,0) size 785x1293 outlineClip at (0,0) size 785x1293
</del><ins>+layer at (13,873) size 367x654 backgroundClip at (0,0) size 785x1293 clip at (0,0) size 785x1293
</ins><span class="cx">   RenderMultiColumnFlowThread at (5,5) size 367x654
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 367x198
</span><span class="cx">       RenderText {#text} at (0,0) size 367x198
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolspanspanmargincollapsingexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/span/span-margin-collapsing-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/span/span-margin-collapsing-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/span/span-margin-collapsing-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -172,7 +172,7 @@
</span><span class="cx">         text run at (640,0) width 93: &quot;It should&quot;
</span><span class="cx">         text run at (0,28) width 569: &quot;collapse its margins with the spanning element above it.&quot;
</span><span class="cx">     RenderMultiColumnSet at (0,369) size 750x199
</span><del>-layer at (8,1323) size 367x792 backgroundClip at (0,0) size 785x1907 clip at (0,0) size 785x1907 outlineClip at (0,0) size 785x1907
</del><ins>+layer at (8,1323) size 367x792 backgroundClip at (0,0) size 785x1907 clip at (0,0) size 785x1907
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 367x792
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 367x396
</span><span class="cx">       RenderText {#text} at (0,0) size 367x396
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticoltableverticalalignexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/table-vertical-align-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/table-vertical-align-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/table-vertical-align-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -8,7 +8,7 @@
</span><span class="cx"> layer at (8,8) size 769x350
</span><span class="cx">   RenderBlock {DIV} at (0,0) size 769x350
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 769x350
</span><del>-layer at (8,8) size 377x1179 backgroundClip at (0,0) size 1562x1010 clip at (0,0) size 1562x1010 outlineClip at (0,0) size 1562x1010
</del><ins>+layer at (8,8) size 377x1179 backgroundClip at (0,0) size 1562x1010 clip at (0,0) size 1562x1010
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 377x1179
</span><span class="cx">     RenderTable {TABLE} at (0,0) size 377x1179 [border: (1px outset #808080)]
</span><span class="cx">       RenderTableSection {TBODY} at (1,1) size 375x1177
</span><span class="lines">@@ -142,7 +142,7 @@
</span><span class="cx"> layer at (8,376) size 769x300
</span><span class="cx">   RenderBlock {DIV} at (0,368) size 769x300
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 769x300
</span><del>-layer at (8,376) size 377x1166 backgroundClip at (0,0) size 1562x1010 clip at (0,0) size 1562x1010 outlineClip at (0,0) size 1562x1010
</del><ins>+layer at (8,376) size 377x1166 backgroundClip at (0,0) size 1562x1010 clip at (0,0) size 1562x1010
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 377x1166
</span><span class="cx">     RenderTable {TABLE} at (0,0) size 377x1166 [border: (1px outset #808080)]
</span><span class="cx">       RenderTableSection {TBODY} at (1,1) size 375x1164
</span><span class="lines">@@ -276,7 +276,7 @@
</span><span class="cx"> layer at (8,702) size 769x300
</span><span class="cx">   RenderBlock {DIV} at (0,694) size 769x300
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 769x300
</span><del>-layer at (8,702) size 377x1129 backgroundClip at (0,0) size 1562x1010 clip at (0,0) size 1562x1010 outlineClip at (0,0) size 1562x1010
</del><ins>+layer at (8,702) size 377x1129 backgroundClip at (0,0) size 1562x1010 clip at (0,0) size 1562x1010
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 377x1129
</span><span class="cx">     RenderTable {TABLE} at (0,0) size 377x1129 [border: (1px outset #808080)]
</span><span class="cx">       RenderTableSection {TBODY} at (1,1) size 375x1127
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticoltallimagebehaviorexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/tall-image-behavior-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/tall-image-behavior-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/tall-image-behavior-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -6,7 +6,7 @@
</span><span class="cx"> layer at (8,8) size 784x304
</span><span class="cx">   RenderBlock {DIV} at (0,0) size 784x304 [border: (2px solid #0000FF)]
</span><span class="cx">     RenderMultiColumnSet at (2,2) size 780x300
</span><del>-layer at (10,10) size 382x650 backgroundClip at (0,0) size 1188x585 clip at (0,0) size 1188x585 outlineClip at (0,0) size 1188x585
</del><ins>+layer at (10,10) size 382x650 backgroundClip at (0,0) size 1188x585 clip at (0,0) size 1188x585
</ins><span class="cx">   RenderMultiColumnFlowThread at (2,2) size 382x650
</span><span class="cx">     RenderBlock {P} at (0,16) size 382x60
</span><span class="cx">       RenderText {#text} at (0,-3) size 300x18
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolverticallrcolumnbreakwithbalancingexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/column-break-with-balancing-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/column-break-with-balancing-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/column-break-with-balancing-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -88,7 +88,7 @@
</span><span class="cx"> layer at (412,8) size 388x569
</span><span class="cx">   RenderBlock {DIV} at (404,0) size 388x569 [border: (5px solid #0000FF)]
</span><span class="cx">     RenderMultiColumnSet at (5,5) size 378x559
</span><del>-layer at (417,13) size 756x272 backgroundClip at (0,0) size 808x585 clip at (0,0) size 808x585 outlineClip at (0,0) size 808x585
</del><ins>+layer at (417,13) size 756x272 backgroundClip at (0,0) size 808x585 clip at (0,0) size 808x585
</ins><span class="cx">   RenderMultiColumnFlowThread at (5,5) size 756x272
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 72x272
</span><span class="cx">       RenderText {#text} at (0,0) size 18x248
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolverticallrcolumnrulesexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/column-rules-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/column-rules-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/column-rules-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -6,7 +6,7 @@
</span><span class="cx"> layer at (8,8) size 766x584
</span><span class="cx">   RenderBlock {DIV} at (0,0) size 766x584 [border: (5px solid #000000)]
</span><span class="cx">     RenderMultiColumnSet at (5,15) size 756x554
</span><del>-layer at (13,23) size 2268x174 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+layer at (13,23) size 2268x174 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
</ins><span class="cx">   RenderMultiColumnFlowThread at (5,15) size 2268x174
</span><span class="cx">     RenderText {#text} at (0,0) size 2268x174
</span><span class="cx">       text run at (0,0) width 143: &quot;Lorem ipsum dolor sit&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolverticallrfloatmulticolexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/float-multicol-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/float-multicol-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/float-multicol-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -5,7 +5,7 @@
</span><span class="cx"> layer at (8,8) size 346x1500
</span><span class="cx">   RenderBody {BODY} at (8,8) size 346x1500
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 346x1500
</span><del>-layer at (8,8) size 1032x479 backgroundClip at (0,0) size 785x1508 clip at (0,0) size 785x1508 outlineClip at (0,0) size 785x1508
</del><ins>+layer at (8,8) size 1032x479 backgroundClip at (0,0) size 785x1508 clip at (0,0) size 785x1508
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 1032x479
</span><span class="cx">     RenderBlock {DIV} at (19,0) size 57x479 [bgcolor=#00FFFF]
</span><span class="cx">       RenderBlock (floating) {DIV} at (4,4) size 527x241 [bgcolor=#FFFF00]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolverticallrfloatpaginatecomplexexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/float-paginate-complex-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/float-paginate-complex-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/float-paginate-complex-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -295,7 +295,7 @@
</span><span class="cx"> layer at (1268,8) size 404x1200
</span><span class="cx">   RenderBlock {DIV} at (1260,0) size 404x1200 [border: (2px solid #000000)]
</span><span class="cx">     RenderMultiColumnSet at (2,2) size 400x1196
</span><del>-layer at (1270,10) size 652x388 backgroundClip at (0,0) size 1680x1208 clip at (0,0) size 1680x1208 outlineClip at (0,0) size 1680x1208
</del><ins>+layer at (1270,10) size 652x388 backgroundClip at (0,0) size 1680x1208 clip at (0,0) size 1680x1208
</ins><span class="cx">   RenderMultiColumnFlowThread at (2,2) size 652x388
</span><span class="cx">     RenderImage {IMG} at (0,0) size 380x388 [bgcolor=#0000FF]
</span><span class="cx">     RenderInline {SPAN} at (0,0) size 252x378
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolverticallrfloatpaginateexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/float-paginate-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/float-paginate-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/float-paginate-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -6,7 +6,7 @@
</span><span class="cx"> layer at (8,8) size 404x1200
</span><span class="cx">   RenderBlock {DIV} at (0,0) size 404x1200 [border: (2px solid #000000)]
</span><span class="cx">     RenderMultiColumnSet at (2,2) size 400x1196
</span><del>-layer at (10,10) size 944x388 backgroundClip at (0,0) size 785x1208 clip at (0,0) size 785x1208 outlineClip at (0,0) size 785x1208
</del><ins>+layer at (10,10) size 944x388 backgroundClip at (0,0) size 785x1208 clip at (0,0) size 785x1208
</ins><span class="cx">   RenderMultiColumnFlowThread at (2,2) size 944x388
</span><span class="cx">     RenderText {#text} at (0,0) size 18x113
</span><span class="cx">       text run at (0,0) width 113: &quot;This is some text.&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolverticallrnestedcolumnsexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/nested-columns-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/nested-columns-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/vertical-lr/nested-columns-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -5,7 +5,7 @@
</span><span class="cx"> layer at (8,8) size 500x750
</span><span class="cx">   RenderBody {BODY} at (8,8) size 500x750
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 500x750
</span><del>-layer at (8,8) size 1018x367 backgroundClip at (0,0) size 785x1141 clip at (0,0) size 785x1141 outlineClip at (0,0) size 785x1141
</del><ins>+layer at (8,8) size 1018x367 backgroundClip at (0,0) size 785x1141 clip at (0,0) size 785x1141
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 1018x367
</span><span class="cx">     RenderBlock {H1} at (21,0) size 38x367
</span><span class="cx">       RenderText {#text} at (0,0) size 37x166
</span><span class="lines">@@ -49,10 +49,10 @@
</span><span class="cx">       RenderText {#text} at (0,0) size 53x364
</span><span class="cx">         text run at (0,0) width 364: &quot;Lorem ipsum dolor sit amet, consectetuer adipiscing elit.&quot;
</span><span class="cx">         text run at (34,0) width 158: &quot;Nulla varius enim ac mi.&quot;
</span><del>-layer at (660,8) size 234x367 backgroundClip at (0,0) size 785x1141 clip at (0,0) size 785x1141 outlineClip at (0,0) size 785x1141
</del><ins>+layer at (660,8) size 234x367 backgroundClip at (0,0) size 785x1141 clip at (0,0) size 785x1141
</ins><span class="cx">   RenderBlock {DIV} at (651,0) size 235x367
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 234x367
</span><del>-layer at (660,8) size 468x176 backgroundClip at (0,0) size 785x1141 clip at (0,0) size 785x1141 outlineClip at (0,0) size 785x1141
</del><ins>+layer at (660,8) size 468x176 backgroundClip at (0,0) size 785x1141 clip at (0,0) size 785x1141
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 468x176
</span><span class="cx">     RenderText {#text} at (0,0) size 432x172
</span><span class="cx">       text run at (0,0) width 143: &quot;Lorem ipsum dolor sit&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolverticalrlcolumnbreakwithbalancingexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/column-break-with-balancing-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/column-break-with-balancing-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/column-break-with-balancing-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> layer at (0,0) size 808x585
</span><span class="cx">   RenderView at (0,0) size 800x585
</span><del>-layer at (-8,0) size 808x585 backgroundClip at (0,0) size 808x585 clip at (0,0) size 808x585 outlineClip at (0,0) size 808x585
</del><ins>+layer at (-8,0) size 808x585 backgroundClip at (0,0) size 808x585 clip at (0,0) size 808x585
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 808x585
</span><span class="cx">     RenderBody {BODY} at (8,8) size 792x569
</span><span class="cx"> layer at (404,8) size 388x569
</span><span class="lines">@@ -88,7 +88,7 @@
</span><span class="cx"> layer at (0,8) size 388x569
</span><span class="cx">   RenderBlock {DIV} at (404,0) size 388x569 [border: (5px solid #0000FF)]
</span><span class="cx">     RenderMultiColumnSet at (5,5) size 378x559
</span><del>-layer at (-373,13) size 756x272 backgroundClip at (0,0) size 808x585 clip at (0,0) size 808x585 outlineClip at (0,0) size 808x585
</del><ins>+layer at (-373,13) size 756x272 backgroundClip at (0,0) size 808x585 clip at (0,0) size 808x585
</ins><span class="cx">   RenderMultiColumnFlowThread at (5,5) size 756x272
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 72x272
</span><span class="cx">       RenderText {#text} at (0,0) size 18x248
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolverticalrlcolumnrulesexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/column-rules-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/column-rules-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/column-rules-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -6,7 +6,7 @@
</span><span class="cx"> layer at (26,8) size 766x584
</span><span class="cx">   RenderBlock {DIV} at (0,0) size 766x584 [border: (5px solid #000000)]
</span><span class="cx">     RenderMultiColumnSet at (5,15) size 756x554
</span><del>-layer at (-1481,23) size 2268x174 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+layer at (-1481,23) size 2268x174 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
</ins><span class="cx">   RenderMultiColumnFlowThread at (5,15) size 2268x174
</span><span class="cx">     RenderText {#text} at (0,0) size 2268x174
</span><span class="cx">       text run at (0,0) width 143: &quot;Lorem ipsum dolor sit&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolverticalrlfloatmulticolexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/float-multicol-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/float-multicol-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/float-multicol-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -5,7 +5,7 @@
</span><span class="cx"> layer at (431,8) size 346x1500
</span><span class="cx">   RenderBody {BODY} at (8,8) size 346x1500
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 346x1500
</span><del>-layer at (-255,8) size 1032x479 backgroundClip at (0,0) size 785x1508 clip at (0,0) size 785x1508 outlineClip at (0,0) size 785x1508
</del><ins>+layer at (-255,8) size 1032x479 backgroundClip at (0,0) size 785x1508 clip at (0,0) size 785x1508
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 1032x479
</span><span class="cx">     RenderBlock {DIV} at (19,0) size 57x479 [bgcolor=#00FFFF]
</span><span class="cx">       RenderBlock (floating) {DIV} at (4,4) size 527x241 [bgcolor=#FFFF00]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolverticalrlfloatpaginatecomplexexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/float-paginate-complex-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/float-paginate-complex-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/float-paginate-complex-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,12 +1,12 @@
</span><span class="cx"> layer at (0,0) size 1680x1208
</span><span class="cx">   RenderView at (0,0) size 785x585
</span><del>-layer at (-895,0) size 1680x585 backgroundClip at (0,0) size 1680x1208 clip at (0,0) size 1680x1208 outlineClip at (0,0) size 1680x1208
</del><ins>+layer at (-895,0) size 1680x585 backgroundClip at (0,0) size 1680x1208 clip at (0,0) size 1680x1208
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 1680x585
</span><span class="cx">     RenderBody {BODY} at (8,8) size 1664x1200
</span><span class="cx"> layer at (373,8) size 404x1200
</span><span class="cx">   RenderBlock {DIV} at (0,0) size 404x1200 [border: (2px solid #000000)]
</span><span class="cx">     RenderMultiColumnSet at (2,2) size 400x1196
</span><del>-layer at (-113,10) size 888x388 backgroundClip at (0,0) size 1680x1208 clip at (0,0) size 1680x1208 outlineClip at (0,0) size 1680x1208
</del><ins>+layer at (-113,10) size 888x388 backgroundClip at (0,0) size 1680x1208 clip at (0,0) size 1680x1208
</ins><span class="cx">   RenderMultiColumnFlowThread at (2,2) size 888x388
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 252x388
</span><span class="cx">       RenderText {#text} at (0,0) size 18x113
</span><span class="lines">@@ -133,10 +133,10 @@
</span><span class="cx">       RenderText {#text} at (586,0) size 18x113
</span><span class="cx">         text run at (586,0) width 113: &quot;This is some text.&quot;
</span><span class="cx">       RenderBR {BR} at (600,112) size 0x1
</span><del>-layer at (-47,8) size 404x1200 backgroundClip at (0,0) size 1680x1208 clip at (0,0) size 1680x1208 outlineClip at (0,0) size 1680x1208
</del><ins>+layer at (-47,8) size 404x1200 backgroundClip at (0,0) size 1680x1208 clip at (0,0) size 1680x1208
</ins><span class="cx">   RenderBlock {DIV} at (420,0) size 404x1200 [border: (2px solid #000000)]
</span><span class="cx">     RenderMultiColumnSet at (2,2) size 400x1196
</span><del>-layer at (-533,10) size 888x388 backgroundClip at (0,0) size 1680x1208 clip at (0,0) size 1680x1208 outlineClip at (0,0) size 1680x1208
</del><ins>+layer at (-533,10) size 888x388 backgroundClip at (0,0) size 1680x1208 clip at (0,0) size 1680x1208
</ins><span class="cx">   RenderMultiColumnFlowThread at (2,2) size 888x388
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 252x388
</span><span class="cx">       RenderText {#text} at (0,0) size 18x113
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolverticalrlfloatpaginateexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/float-paginate-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/float-paginate-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/float-paginate-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -6,7 +6,7 @@
</span><span class="cx"> layer at (373,8) size 404x1200
</span><span class="cx">   RenderBlock {DIV} at (0,0) size 404x1200 [border: (2px solid #000000)]
</span><span class="cx">     RenderMultiColumnSet at (2,2) size 400x1196
</span><del>-layer at (-169,10) size 944x388 backgroundClip at (0,0) size 785x1208 clip at (0,0) size 785x1208 outlineClip at (0,0) size 785x1208
</del><ins>+layer at (-169,10) size 944x388 backgroundClip at (0,0) size 785x1208 clip at (0,0) size 785x1208
</ins><span class="cx">   RenderMultiColumnFlowThread at (2,2) size 944x388
</span><span class="cx">     RenderText {#text} at (0,0) size 18x113
</span><span class="cx">       text run at (0,0) width 113: &quot;This is some text.&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastmulticolverticalrlnestedcolumnsexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/nested-columns-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/nested-columns-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/multicol/vertical-rl/nested-columns-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -5,7 +5,7 @@
</span><span class="cx"> layer at (277,8) size 500x750
</span><span class="cx">   RenderBody {BODY} at (8,8) size 500x750
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 500x750
</span><del>-layer at (-241,8) size 1018x367 backgroundClip at (0,0) size 785x1141 clip at (0,0) size 785x1141 outlineClip at (0,0) size 785x1141
</del><ins>+layer at (-241,8) size 1018x367 backgroundClip at (0,0) size 785x1141 clip at (0,0) size 785x1141
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 1018x367
</span><span class="cx">     RenderBlock {H1} at (21,0) size 38x367
</span><span class="cx">       RenderText {#text} at (0,0) size 37x166
</span><span class="lines">@@ -49,10 +49,10 @@
</span><span class="cx">       RenderText {#text} at (0,0) size 53x364
</span><span class="cx">         text run at (0,0) width 364: &quot;Lorem ipsum dolor sit amet, consectetuer adipiscing elit.&quot;
</span><span class="cx">         text run at (34,0) width 158: &quot;Nulla varius enim ac mi.&quot;
</span><del>-layer at (-109,8) size 234x367 backgroundClip at (0,0) size 785x1141 clip at (0,0) size 785x1141 outlineClip at (0,0) size 785x1141
</del><ins>+layer at (-109,8) size 234x367 backgroundClip at (0,0) size 785x1141 clip at (0,0) size 785x1141
</ins><span class="cx">   RenderBlock {DIV} at (651,0) size 235x367
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 234x367
</span><del>-layer at (-343,8) size 468x176 backgroundClip at (0,0) size 785x1141 clip at (0,0) size 785x1141 outlineClip at (0,0) size 785x1141
</del><ins>+layer at (-343,8) size 468x176 backgroundClip at (0,0) size 785x1141 clip at (0,0) size 785x1141
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 468x176
</span><span class="cx">     RenderText {#text} at (0,0) size 432x172
</span><span class="cx">       text run at (0,0) width 143: &quot;Lorem ipsum dolor sit&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastoverflowcliprectsfixedancestorexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/overflow/clip-rects-fixed-ancestor-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/overflow/clip-rects-fixed-ancestor-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/overflow/clip-rects-fixed-ancestor-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -140,12 +140,12 @@
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (11,29) size 118x30 [border: (1px solid #999999)]
</span><span class="cx">     RenderText {#text} at (6,6) size 52x18
</span><span class="cx">       text run at (6,6) width 52: &quot;.relative&quot;
</span><del>-layer at (705,149) size 162x370 backgroundClip at (0,0) size 785x1029 clip at (0,0) size 785x1029 outlineClip at (0,0) size 785x1029
</del><ins>+layer at (705,149) size 162x370 backgroundClip at (0,0) size 785x1029 clip at (0,0) size 785x1029
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (705,85) size 162x370 [border: (1px solid #999999)]
</span><span class="cx">     RenderBlock (anonymous) at (6,6) size 150x18
</span><span class="cx">       RenderText {#text} at (0,0) size 48x18
</span><span class="cx">         text run at (0,0) width 48: &quot;#fixed3&quot;
</span><del>-layer at (716,178) size 140x330 backgroundClip at (716,178) size 69x330 clip at (717,179) size 68x328 outlineClip at (0,0) size 785x1029
</del><ins>+layer at (716,178) size 140x330 backgroundClip at (716,178) size 69x330 clip at (717,179) size 68x328
</ins><span class="cx">   RenderBlock {DIV} at (11,29) size 140x330 [border: (1px solid #999999)]
</span><span class="cx">     RenderBlock (anonymous) at (6,6) size 128x18
</span><span class="cx">       RenderText {#text} at (0,0) size 108x18
</span><span class="lines">@@ -153,7 +153,7 @@
</span><span class="cx">     RenderBlock {DIV} at (11,29) size 118x30 [border: (1px solid #999999)]
</span><span class="cx">       RenderText {#text} at (6,6) size 51x18
</span><span class="cx">         text run at (6,6) width 51: &quot;no style&quot;
</span><del>-layer at (727,277) size 118x70 backgroundClip at (727,277) size 58x70 clip at (728,278) size 57x68 outlineClip at (717,179) size 68x328
</del><ins>+layer at (727,277) size 118x70 backgroundClip at (727,277) size 58x70 clip at (728,278) size 57x68
</ins><span class="cx">   RenderBlock {DIV} at (11,99) size 118x70 [border: (1px solid #999999)]
</span><span class="cx">     RenderBlock (anonymous) at (6,6) size 106x18
</span><span class="cx">       RenderText {#text} at (0,0) size 108x18
</span><span class="lines">@@ -161,25 +161,25 @@
</span><span class="cx">     RenderBlock {DIV} at (11,29) size 96x30 [border: (1px solid #999999)]
</span><span class="cx">       RenderText {#text} at (6,6) size 51x18
</span><span class="cx">         text run at (6,6) width 51: &quot;no style&quot;
</span><del>-layer at (727,352) size 118x70 backgroundClip at (727,352) size 58x70 clip at (728,353) size 57x68 outlineClip at (717,179) size 68x328
</del><ins>+layer at (727,352) size 118x70 backgroundClip at (727,352) size 58x70 clip at (728,353) size 57x68
</ins><span class="cx">   RenderBlock {DIV} at (11,174) size 118x70 [border: (1px solid #999999)]
</span><span class="cx">     RenderBlock (anonymous) at (6,6) size 106x18
</span><span class="cx">       RenderText {#text} at (0,0) size 108x18
</span><span class="cx">         text run at (0,0) width 108: &quot;.overflowHidden&quot;
</span><del>-layer at (727,427) size 118x70 backgroundClip at (727,427) size 58x70 clip at (728,428) size 57x68 outlineClip at (717,179) size 68x328
</del><ins>+layer at (727,427) size 118x70 backgroundClip at (727,427) size 58x70 clip at (728,428) size 57x68
</ins><span class="cx">   RenderBlock {DIV} at (11,249) size 118x70 [border: (1px solid #999999)]
</span><span class="cx">     RenderBlock (anonymous) at (6,6) size 106x18
</span><span class="cx">       RenderText {#text} at (0,0) size 108x18
</span><span class="cx">         text run at (0,0) width 108: &quot;.overflowHidden&quot;
</span><del>-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
</del><ins>+layer at (738,456) size 96x30 backgroundClip at (738,456) size 47x30 clip at (739,457) size 46x28 scrollWidth 118
</ins><span class="cx">   RenderBlock {DIV} at (11,29) size 96x30 [border: (1px solid #999999)]
</span><span class="cx">     RenderText {#text} at (6,6) size 108x18
</span><span class="cx">       text run at (6,6) width 108: &quot;.overflowHidden&quot;
</span><del>-layer at (727,242) size 118x30 backgroundClip at (717,179) size 68x328 clip at (717,179) size 68x328 outlineClip at (717,179) size 68x328
</del><ins>+layer at (727,242) size 118x30 backgroundClip at (717,179) size 68x328 clip at (717,179) size 68x328
</ins><span class="cx">   RenderBlock (relative positioned) {DIV} at (11,64) size 118x30 [border: (1px solid #999999)]
</span><span class="cx">     RenderText {#text} at (6,6) size 52x18
</span><span class="cx">       text run at (6,6) width 52: &quot;.relative&quot;
</span><del>-layer at (738,381) size 96x30 backgroundClip at (728,353) size 57x68 clip at (728,353) size 57x68 outlineClip at (728,353) size 57x68
</del><ins>+layer at (738,381) size 96x30 backgroundClip at (728,353) size 57x68 clip at (728,353) size 57x68
</ins><span class="cx">   RenderBlock (relative positioned) {DIV} at (11,29) size 96x30 [border: (1px solid #999999)]
</span><span class="cx">     RenderText {#text} at (6,6) size 52x18
</span><span class="cx">       text run at (6,6) width 52: &quot;.relative&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastoverflowfloatinrelpositionedexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/overflow/float-in-relpositioned-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/overflow/float-in-relpositioned-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/overflow/float-in-relpositioned-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -35,9 +35,9 @@
</span><span class="cx">     RenderBlock (floating) {DIV} at (0,0) size 75x75 [bgcolor=#0000FF7F]
</span><span class="cx"> layer at (69,301) size 25x25
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (1,1) size 25x25 [bgcolor=#000000]
</span><del>-layer at (69,301) size 75x75 backgroundClip at (19,301) size 100x85 clip at (19,301) size 100x85 outlineClip at (19,301) size 100x85
</del><ins>+layer at (69,301) size 75x75 backgroundClip at (19,301) size 100x85 clip at (19,301) size 100x85
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (0,0) size 75x75 [bgcolor=#0000FF7F]
</span><span class="cx"> layer at (19,463) size 25x25
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (1,1) size 25x25 [bgcolor=#000000]
</span><del>-layer at (19,463) size 75x75 backgroundClip at (19,413) size 85x100 clip at (19,413) size 85x100 outlineClip at (19,413) size 85x100
</del><ins>+layer at (19,463) size 75x75 backgroundClip at (19,413) size 85x100 clip at (19,413) size 85x100
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (0,0) size 75x75 [bgcolor=#0000FF7F]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastoverflowoverflowautopositionabsoluteexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/overflow/overflow-auto-position-absolute-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/overflow/overflow-auto-position-absolute-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/overflow/overflow-auto-position-absolute-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -5,7 +5,7 @@
</span><span class="cx">     RenderBody {BODY} at (8,8) size 784x584
</span><span class="cx"> layer at (16,16) size 768x568 clip at (16,16) size 753x568 scrollHeight 1024
</span><span class="cx">   RenderBlock (positioned) {DIV} at (16,16) size 768x568
</span><del>-layer at (16,16) size 753x1024 backgroundClip at (16,16) size 753x568 clip at (16,16) size 753x568 outlineClip at (16,16) size 753x568
</del><ins>+layer at (16,16) size 753x1024 backgroundClip at (16,16) size 753x568 clip at (16,16) size 753x568
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (0,0) size 753x1024 [bgcolor=#008000]
</span><span class="cx">     RenderText {#text} at (0,0) size 316x18
</span><span class="cx">       text run at (0,0) width 316: &quot;This test passes if there is no horizontal scrollbar.&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastoverflowoverflowrtlexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/overflow/overflow-rtl-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/overflow/overflow-rtl-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/overflow/overflow-rtl-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -69,23 +69,23 @@
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (5,146) size 115x44 [bgcolor=#FFFF00] [border: none (5px solid #008000) none (10px solid #FF0000)]
</span><span class="cx"> layer at (71,358) size 8x4
</span><span class="cx">   RenderBlock (positioned) {DIV} at (56,20) size 8x4 [bgcolor=#0000FF]
</span><del>-layer at (-25,338) size 70x20 backgroundClip at (25,338) size 100x43 clip at (25,338) size 100x43 outlineClip at (25,338) size 100x43
</del><ins>+layer at (-25,338) size 70x20 backgroundClip at (25,338) size 100x43 clip at (25,338) size 100x43
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-40,0) size 70x20 [bgcolor=#808000]
</span><span class="cx"> layer at (15,385) size 115x43 clip at (25,385) size 100x28 scrollWidth 150
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (5,193) size 115x44 [bgcolor=#FFFF00] [border: none (5px solid #008000) none (10px solid #FF0000)]
</span><span class="cx"> layer at (71,405) size 8x4
</span><span class="cx">   RenderBlock (positioned) {DIV} at (56,20) size 8x4 [bgcolor=#0000FF]
</span><del>-layer at (105,385) size 70x20 backgroundClip at (25,385) size 100x28 clip at (25,385) size 100x28 outlineClip at (25,385) size 100x28
</del><ins>+layer at (105,385) size 70x20 backgroundClip at (25,385) size 100x28 clip at (25,385) size 100x28
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (90,0) size 70x20 [bgcolor=#808000]
</span><span class="cx"> layer at (142,338) size 115x43 clip at (147,338) size 100x43
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (5,146) size 115x44 [bgcolor=#FFFF00] [border: none (10px solid #FF0000) none (5px solid #008000)]
</span><span class="cx"> layer at (193,358) size 8x4
</span><span class="cx">   RenderBlock (positioned) {DIV} at (51,20) size 8x4 [bgcolor=#0000FF]
</span><del>-layer at (227,338) size 70x20 backgroundClip at (147,338) size 100x43 clip at (147,338) size 100x43 outlineClip at (147,338) size 100x43
</del><ins>+layer at (227,338) size 70x20 backgroundClip at (147,338) size 100x43 clip at (147,338) size 100x43
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (85,0) size 70x20 [bgcolor=#808000]
</span><span class="cx"> layer at (142,385) size 115x43 clip at (147,385) size 100x28 scrollX 50 scrollWidth 150
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (5,193) size 115x44 [bgcolor=#FFFF00] [border: none (10px solid #FF0000) none (5px solid #008000)]
</span><span class="cx"> layer at (193,405) size 8x4
</span><span class="cx">   RenderBlock (positioned) {DIV} at (51,20) size 8x4 [bgcolor=#0000FF]
</span><del>-layer at (97,385) size 70x20 backgroundClip at (147,385) size 100x28 clip at (147,385) size 100x28 outlineClip at (147,385) size 100x28
</del><ins>+layer at (97,385) size 70x20 backgroundClip at (147,385) size 100x28 clip at (147,385) size 100x28
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-45,0) size 70x20 [bgcolor=#808000]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastoverflowpagedxdivexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/overflow/paged-x-div-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/overflow/paged-x-div-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/overflow/paged-x-div-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -6,7 +6,7 @@
</span><span class="cx"> layer at (8,8) size 404x404 clip at (10,10) size 400x385 scrollWidth 2480
</span><span class="cx">   RenderBlock {DIV} at (0,0) size 404x404 [border: (2px solid #000000)]
</span><span class="cx">     RenderMultiColumnSet at (2,2) size 400x385
</span><del>-layer at (10,10) size 400x2213 backgroundClip at (10,10) size 400x385 clip at (10,10) size 400x385 outlineClip at (10,10) size 400x385
</del><ins>+layer at (10,10) size 400x2213 backgroundClip at (10,10) size 400x385 clip at (10,10) size 400x385
</ins><span class="cx">   RenderMultiColumnFlowThread at (2,2) size 400x2213
</span><span class="cx">     RenderText {#text} at (0,0) size 399x2213
</span><span class="cx">       text run at (0,0) width 357: &quot;Lorem ipsum dolor sit amet, consectetur adipiscing elit.&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastoverflowpagedxdivwithcolumngapexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/overflow/paged-x-div-with-column-gap-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/overflow/paged-x-div-with-column-gap-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/overflow/paged-x-div-with-column-gap-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -6,7 +6,7 @@
</span><span class="cx"> layer at (8,8) size 404x404 clip at (10,10) size 400x385 scrollX 200 scrollWidth 2900
</span><span class="cx">   RenderBlock {DIV} at (0,0) size 404x404 [border: (2px solid #000000)]
</span><span class="cx">     RenderMultiColumnSet at (2,2) size 400x385
</span><del>-layer at (-190,10) size 400x2213 backgroundClip at (10,10) size 400x385 clip at (10,10) size 400x385 outlineClip at (10,10) size 400x385
</del><ins>+layer at (-190,10) size 400x2213 backgroundClip at (10,10) size 400x385 clip at (10,10) size 400x385
</ins><span class="cx">   RenderMultiColumnFlowThread at (2,2) size 400x2213
</span><span class="cx">     RenderText {#text} at (0,0) size 399x2213
</span><span class="cx">       text run at (0,0) width 357: &quot;Lorem ipsum dolor sit amet, consectetur adipiscing elit.&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastoverflowpagedxonrootexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/overflow/paged-x-on-root-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/overflow/paged-x-on-root-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/overflow/paged-x-on-root-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 1600x585
</span><span class="cx">   RenderView at (0,0) size 800x585
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 800x585
</span><del>-layer at (0,0) size 800x1097 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585 outlineClip at (0,0) size 1600x585
</del><ins>+layer at (0,0) size 800x1097 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 800x1097
</span><del>-layer at (0,0) size 800x1097 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585 outlineClip at (0,0) size 1600x585
</del><ins>+layer at (0,0) size 800x1097 backgroundClip at (0,0) size 1600x585 clip at (0,0) size 1600x585
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 800x1097
</span><span class="cx">     RenderBody {BODY} at (8,8) size 784x1081
</span><span class="cx">       RenderText {#text} at (0,0) size 784x1081
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastoverflowpagedxwithcolumngapexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/overflow/paged-x-with-column-gap-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/overflow/paged-x-with-column-gap-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/overflow/paged-x-with-column-gap-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 1700x585
</span><span class="cx">   RenderView at (0,0) size 800x585
</span><span class="cx">     RenderMultiColumnSet at (0,0) size 800x585
</span><del>-layer at (0,0) size 800x1097 backgroundClip at (0,0) size 1700x585 clip at (0,0) size 1700x585 outlineClip at (0,0) size 1700x585
</del><ins>+layer at (0,0) size 800x1097 backgroundClip at (0,0) size 1700x585 clip at (0,0) size 1700x585
</ins><span class="cx">   RenderMultiColumnFlowThread at (0,0) size 800x1097
</span><del>-layer at (0,0) size 800x1097 backgroundClip at (0,0) size 1700x585 clip at (0,0) size 1700x585 outlineClip at (0,0) size 1700x585
</del><ins>+layer at (0,0) size 800x1097 backgroundClip at (0,0) size 1700x585 clip at (0,0) size 1700x585
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 800x1097
</span><span class="cx">     RenderBody {BODY} at (8,8) size 784x1081
</span><span class="cx">       RenderText {#text} at (0,0) size 784x1081
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastoverflowpagedydivexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/overflow/paged-y-div-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/overflow/paged-y-div-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/overflow/paged-y-div-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -6,7 +6,7 @@
</span><span class="cx"> layer at (8,8) size 404x404 clip at (10,10) size 400x400 scrollHeight 2480
</span><span class="cx">   RenderBlock {DIV} at (0,0) size 404x404 [border: (2px solid #000000)]
</span><span class="cx">     RenderMultiColumnSet at (2,2) size 400x400
</span><del>-layer at (10,10) size 400x2198 backgroundClip at (10,10) size 400x400 clip at (10,10) size 400x400 outlineClip at (10,10) size 400x400
</del><ins>+layer at (10,10) size 400x2198 backgroundClip at (10,10) size 400x400 clip at (10,10) size 400x400
</ins><span class="cx">   RenderMultiColumnFlowThread at (2,2) size 400x2198
</span><span class="cx">     RenderText {#text} at (0,0) size 399x2198
</span><span class="cx">       text run at (0,0) width 357: &quot;Lorem ipsum dolor sit amet, consectetur adipiscing elit.&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastoverflowscrollnestedpositionedlayerinoverflowexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -5,7 +5,7 @@
</span><span class="cx">     RenderBody {BODY} at (8,8) size 784x584
</span><span class="cx"> layer at (0,42) size 800x558 clip at (0,42) size 785x558 scrollY 282 scrollHeight 840
</span><span class="cx">   RenderBlock (positioned) {DIV} at (0,42) size 800x558
</span><del>-layer at (0,-240) size 570x840 backgroundClip at (0,42) size 785x558 clip at (0,42) size 785x558 outlineClip at (0,42) size 785x558
</del><ins>+layer at (0,-240) size 570x840 backgroundClip at (0,42) size 785x558 clip at (0,42) size 785x558
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (0,0) size 571x840
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 571x18
</span><span class="cx">       RenderText {#text} at (0,0) size 571x18
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastregionsrepaintregionpaintingvialayoutexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/regions/repaint/region-painting-via-layout-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/regions/repaint/region-painting-via-layout-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/regions/repaint/region-painting-via-layout-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -8,9 +8,9 @@
</span><span class="cx">     RenderNamedFlowFragment at (1,1) size 784x180
</span><span class="cx"> Named flows
</span><span class="cx">   Named flow 'flow1'
</span><del>-    layer at (0,0) size 784x1180 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+    layer at (0,0) size 784x1180 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
</ins><span class="cx">       RenderNamedFlowThread at (0,0) size 784x1180
</span><del>-    layer at (0,0) size 784x1200 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+    layer at (0,0) size 784x1200 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
</ins><span class="cx">       RenderBlock (relative positioned) {DIV} at (0,0) size 784x1200
</span><span class="cx">         RenderBlock {DIV} at (0,1000) size 784x200
</span><span class="cx">           RenderBlock {DIV} at (0,0) size 784x200 [bgcolor=#008000]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastrepaintboxshadowhexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/repaint/box-shadow-h-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/repaint/box-shadow-h-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/repaint/box-shadow-h-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -95,7 +95,7 @@
</span><span class="cx">   RenderBlock (positioned) {DIV} at (10,10) size 40x40 [bgcolor=#FFFF77]
</span><span class="cx"> layer at (8,128) size 60x60
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (0,120) size 60x60
</span><del>-layer at (18,138) size 40x40 backgroundClip at (13,133) size 5x5 clip at (13,133) size 5x5 outlineClip at (13,133) size 5x5
</del><ins>+layer at (18,138) size 40x40 backgroundClip at (13,133) size 5x5 clip at (13,133) size 5x5
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (10,10) size 40x40 [bgcolor=#FFFF77]
</span><span class="cx"> layer at (18,198) size 40x40
</span><span class="cx">   RenderBlock {DIV} at (10,190) size 40x40 [bgcolor=#FFFF77]
</span><span class="lines">@@ -105,7 +105,7 @@
</span><span class="cx">   RenderBlock (positioned) {DIV} at (10,10) size 40x40 [bgcolor=#FFFF77]
</span><span class="cx"> layer at (142,128) size 60x60
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (0,120) size 60x60
</span><del>-layer at (152,138) size 40x40 backgroundClip at (147,178) size 5x5 clip at (147,178) size 5x5 outlineClip at (147,178) size 5x5
</del><ins>+layer at (152,138) size 40x40 backgroundClip at (147,178) size 5x5 clip at (147,178) size 5x5
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (10,10) size 40x40 [bgcolor=#FFFF77]
</span><span class="cx"> layer at (152,198) size 40x40
</span><span class="cx">   RenderBlock {DIV} at (10,190) size 40x40 [bgcolor=#FFFF77]
</span><span class="lines">@@ -115,7 +115,7 @@
</span><span class="cx">   RenderBlock (positioned) {DIV} at (10,10) size 40x40 [bgcolor=#FFFF77]
</span><span class="cx"> layer at (275,128) size 60x60
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (0,120) size 60x60
</span><del>-layer at (285,138) size 40x40 backgroundClip at (325,178) size 5x5 clip at (325,178) size 5x5 outlineClip at (325,178) size 5x5
</del><ins>+layer at (285,138) size 40x40 backgroundClip at (325,178) size 5x5 clip at (325,178) size 5x5
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (10,10) size 40x40 [bgcolor=#FFFF77]
</span><span class="cx"> layer at (285,198) size 40x40
</span><span class="cx">   RenderBlock {DIV} at (10,190) size 40x40 [bgcolor=#FFFF77]
</span><span class="lines">@@ -125,7 +125,7 @@
</span><span class="cx">   RenderBlock (positioned) {DIV} at (10,10) size 40x40 [bgcolor=#FFFF77]
</span><span class="cx"> layer at (409,128) size 60x60
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (0,120) size 60x60
</span><del>-layer at (419,138) size 40x40 backgroundClip at (459,133) size 5x5 clip at (459,133) size 5x5 outlineClip at (459,133) size 5x5
</del><ins>+layer at (419,138) size 40x40 backgroundClip at (459,133) size 5x5 clip at (459,133) size 5x5
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (10,10) size 40x40 [bgcolor=#FFFF77]
</span><span class="cx"> layer at (419,198) size 40x40
</span><span class="cx">   RenderBlock {DIV} at (10,190) size 40x40 [bgcolor=#FFFF77]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastrepaintboxshadowvexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/repaint/box-shadow-v-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/repaint/box-shadow-v-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/repaint/box-shadow-v-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -95,7 +95,7 @@
</span><span class="cx">   RenderBlock (positioned) {DIV} at (10,10) size 40x40 [bgcolor=#FFFF77]
</span><span class="cx"> layer at (8,128) size 60x60
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (0,120) size 60x60
</span><del>-layer at (18,138) size 40x40 backgroundClip at (13,133) size 5x5 clip at (13,133) size 5x5 outlineClip at (13,133) size 5x5
</del><ins>+layer at (18,138) size 40x40 backgroundClip at (13,133) size 5x5 clip at (13,133) size 5x5
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (10,10) size 40x40 [bgcolor=#FFFF77]
</span><span class="cx"> layer at (18,198) size 40x40
</span><span class="cx">   RenderBlock {DIV} at (10,190) size 40x40 [bgcolor=#FFFF77]
</span><span class="lines">@@ -105,7 +105,7 @@
</span><span class="cx">   RenderBlock (positioned) {DIV} at (10,10) size 40x40 [bgcolor=#FFFF77]
</span><span class="cx"> layer at (142,128) size 60x60
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (0,120) size 60x60
</span><del>-layer at (152,138) size 40x40 backgroundClip at (147,178) size 5x5 clip at (147,178) size 5x5 outlineClip at (147,178) size 5x5
</del><ins>+layer at (152,138) size 40x40 backgroundClip at (147,178) size 5x5 clip at (147,178) size 5x5
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (10,10) size 40x40 [bgcolor=#FFFF77]
</span><span class="cx"> layer at (152,198) size 40x40
</span><span class="cx">   RenderBlock {DIV} at (10,190) size 40x40 [bgcolor=#FFFF77]
</span><span class="lines">@@ -115,7 +115,7 @@
</span><span class="cx">   RenderBlock (positioned) {DIV} at (10,10) size 40x40 [bgcolor=#FFFF77]
</span><span class="cx"> layer at (275,128) size 60x60
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (0,120) size 60x60
</span><del>-layer at (285,138) size 40x40 backgroundClip at (325,178) size 5x5 clip at (325,178) size 5x5 outlineClip at (325,178) size 5x5
</del><ins>+layer at (285,138) size 40x40 backgroundClip at (325,178) size 5x5 clip at (325,178) size 5x5
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (10,10) size 40x40 [bgcolor=#FFFF77]
</span><span class="cx"> layer at (285,198) size 40x40
</span><span class="cx">   RenderBlock {DIV} at (10,190) size 40x40 [bgcolor=#FFFF77]
</span><span class="lines">@@ -125,7 +125,7 @@
</span><span class="cx">   RenderBlock (positioned) {DIV} at (10,10) size 40x40 [bgcolor=#FFFF77]
</span><span class="cx"> layer at (409,128) size 60x60
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (0,120) size 60x60
</span><del>-layer at (419,138) size 40x40 backgroundClip at (459,133) size 5x5 clip at (459,133) size 5x5 outlineClip at (459,133) size 5x5
</del><ins>+layer at (419,138) size 40x40 backgroundClip at (459,133) size 5x5 clip at (459,133) size 5x5
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (10,10) size 40x40 [bgcolor=#FFFF77]
</span><span class="cx"> layer at (419,198) size 40x40
</span><span class="cx">   RenderBlock {DIV} at (10,190) size 40x40 [bgcolor=#FFFF77]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastrepaintlayeroutlineexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/repaint/layer-outline-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/repaint/layer-outline-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/repaint/layer-outline-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -21,15 +21,15 @@
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (0,44) size 784x130
</span><span class="cx"> layer at (18,62) size 100x100
</span><span class="cx">   RenderBlock (positioned) {DIV} at (10,10) size 100x100 [bgcolor=#EEEEEE] [border: (1px solid #000000)]
</span><del>-layer at (148,62) size 100x100 backgroundClip at (138,52) size 100x100 clip at (138,52) size 100x100 outlineClip at (138,52) size 100x100
</del><ins>+layer at (148,62) size 100x100 backgroundClip at (138,52) size 100x100 clip at (138,52) size 100x100
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (140,10) size 100x100 [bgcolor=#EEEEEE] [border: (1px solid #000000)]
</span><del>-layer at (278,62) size 100x100 backgroundClip at (268,52) size 5x5 clip at (268,52) size 5x5 outlineClip at (268,52) size 5x5
</del><ins>+layer at (278,62) size 100x100 backgroundClip at (268,52) size 5x5 clip at (268,52) size 5x5
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (270,10) size 100x100 [bgcolor=#EEEEEE] [border: (1px solid #000000)]
</span><span class="cx"> layer at (408,62) size 100x100
</span><span class="cx">   RenderBlock (positioned) {DIV} at (400,10) size 100x100 [bgcolor=#EEEEEE] [border: (1px solid #000000)]
</span><del>-layer at (538,62) size 100x100 backgroundClip at (548,72) size 100x100 clip at (548,72) size 100x100 outlineClip at (548,72) size 100x100
</del><ins>+layer at (538,62) size 100x100 backgroundClip at (548,72) size 100x100 clip at (548,72) size 100x100
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (530,10) size 100x100 [bgcolor=#EEEEEE] [border: (1px solid #000000)]
</span><del>-layer at (668,62) size 100x100 backgroundClip at (773,167) size 5x5 clip at (773,167) size 5x5 outlineClip at (773,167) size 5x5
</del><ins>+layer at (668,62) size 100x100 backgroundClip at (773,167) size 5x5 clip at (773,167) size 5x5
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (660,10) size 100x100 [bgcolor=#EEEEEE] [border: (1px solid #000000)]
</span><span class="cx"> layer at (18,322) size 100x100
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (0,294) size 100x100 [bgcolor=#EEEEEE] [border: (1px solid #000000)]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastrepaintlayeroutlinehorizontalexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/repaint/layer-outline-horizontal-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/repaint/layer-outline-horizontal-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/repaint/layer-outline-horizontal-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -21,15 +21,15 @@
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (0,44) size 784x130
</span><span class="cx"> layer at (18,62) size 100x100
</span><span class="cx">   RenderBlock (positioned) {DIV} at (10,10) size 100x100 [bgcolor=#EEEEEE] [border: (1px solid #000000)]
</span><del>-layer at (148,62) size 100x100 backgroundClip at (138,52) size 100x100 clip at (138,52) size 100x100 outlineClip at (138,52) size 100x100
</del><ins>+layer at (148,62) size 100x100 backgroundClip at (138,52) size 100x100 clip at (138,52) size 100x100
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (140,10) size 100x100 [bgcolor=#EEEEEE] [border: (1px solid #000000)]
</span><del>-layer at (278,62) size 100x100 backgroundClip at (268,52) size 5x5 clip at (268,52) size 5x5 outlineClip at (268,52) size 5x5
</del><ins>+layer at (278,62) size 100x100 backgroundClip at (268,52) size 5x5 clip at (268,52) size 5x5
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (270,10) size 100x100 [bgcolor=#EEEEEE] [border: (1px solid #000000)]
</span><span class="cx"> layer at (408,62) size 100x100
</span><span class="cx">   RenderBlock (positioned) {DIV} at (400,10) size 100x100 [bgcolor=#EEEEEE] [border: (1px solid #000000)]
</span><del>-layer at (538,62) size 100x100 backgroundClip at (548,72) size 100x100 clip at (548,72) size 100x100 outlineClip at (548,72) size 100x100
</del><ins>+layer at (538,62) size 100x100 backgroundClip at (548,72) size 100x100 clip at (548,72) size 100x100
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (530,10) size 100x100 [bgcolor=#EEEEEE] [border: (1px solid #000000)]
</span><del>-layer at (668,62) size 100x100 backgroundClip at (773,167) size 5x5 clip at (773,167) size 5x5 outlineClip at (773,167) size 5x5
</del><ins>+layer at (668,62) size 100x100 backgroundClip at (773,167) size 5x5 clip at (773,167) size 5x5
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (660,10) size 100x100 [bgcolor=#EEEEEE] [border: (1px solid #000000)]
</span><span class="cx"> layer at (18,322) size 100x100
</span><span class="cx">   RenderBlock (relative positioned) {DIV} at (0,294) size 100x100 [bgcolor=#EEEEEE] [border: (1px solid #000000)]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfasttableedgeoffsetsexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/table/edge-offsets-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/table/edge-offsets-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/table/edge-offsets-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -42,9 +42,9 @@
</span><span class="cx">       RenderTableSection {TBODY} at (0,0) size 6x6
</span><span class="cx">         RenderTableRow {TR} at (0,2) size 6x2
</span><span class="cx">           RenderTableCell {TD} at (2,2) size 2x2 [r=0 c=0 rs=1 cs=1]
</span><del>-layer at (82,108) size 60x60 backgroundClip at (9,105) size 100x85 clip at (9,105) size 100x85 outlineClip at (9,105) size 100x85
</del><ins>+layer at (82,108) size 60x60 backgroundClip at (9,105) size 100x85 clip at (9,105) size 100x85
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (70,0) size 60x60 [bgcolor=#C0C0C0]
</span><del>-layer at (-24,228) size 60x60 backgroundClip at (9,225) size 100x85 clip at (9,225) size 100x85 outlineClip at (9,225) size 100x85
</del><ins>+layer at (-24,228) size 60x60 backgroundClip at (9,225) size 100x85 clip at (9,225) size 100x85
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (-130,0) size 60x60 [bgcolor=#C0C0C0]
</span><del>-layer at (12,418) size 60x60 backgroundClip at (9,345) size 85x100 clip at (9,345) size 85x100 outlineClip at (9,345) size 85x100
</del><ins>+layer at (12,418) size 60x60 backgroundClip at (9,345) size 85x100 clip at (9,345) size 85x100
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (0,70) size 60x60 [bgcolor=#C0C0C0]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfasttransformsoverflowwithtransformexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/transforms/overflow-with-transform-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/transforms/overflow-with-transform-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/transforms/overflow-with-transform-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -8,7 +8,7 @@
</span><span class="cx">           text run at (0,0) width 323: &quot;Gray div should be clipped by overflow: scroll div&quot;
</span><span class="cx"> layer at (8,50) size 202x202 clip at (9,51) size 200x200 scrollHeight 516
</span><span class="cx">   RenderBlock (positioned) {DIV} at (8,50) size 202x202 [border: (1px solid #000000)]
</span><del>-layer at (9,67) size 200x500 backgroundClip at (9,51) size 200x200 clip at (9,51) size 200x200 outlineClip at (9,51) size 200x200
</del><ins>+layer at (9,67) size 200x500 backgroundClip at (9,51) size 200x200 clip at (9,51) size 200x200
</ins><span class="cx">   RenderBlock (relative positioned) {DIV} at (1,17) size 200x500 [bgcolor=#808080]
</span><span class="cx">     RenderBlock {P} at (0,0) size 200x108
</span><span class="cx">       RenderText {#text} at (0,0) size 200x108
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfasttransformsrotatedtransformaffectsscrolling1expectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/transforms/rotated-transform-affects-scrolling-1-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/transforms/rotated-transform-affects-scrolling-1-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/transforms/rotated-transform-affects-scrolling-1-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -3,5 +3,5 @@
</span><span class="cx"> layer at (0,0) size 785x585
</span><span class="cx">   RenderBlock {HTML} at (0,0) size 785x585
</span><span class="cx">     RenderBody {BODY} at (8,8) size 769x569
</span><del>-layer at (8,8) size 1304x104 backgroundClip at (0,0) size 932x690 clip at (0,0) size 932x690 outlineClip at (0,0) size 932x690
</del><ins>+layer at (8,8) size 1304x104 backgroundClip at (0,0) size 932x690 clip at (0,0) size 932x690
</ins><span class="cx">   RenderBlock {DIV} at (0,0) size 1304x104 [bgcolor=#800080] [border: (2px solid #0000FF) (2px solid #00FFFF) (2px solid #008000) (2px solid #FF0000)]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfasttransformsrotatedtransformaffectsscrolling2expectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/transforms/rotated-transform-affects-scrolling-2-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/transforms/rotated-transform-affects-scrolling-2-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/transforms/rotated-transform-affects-scrolling-2-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -3,5 +3,5 @@
</span><span class="cx"> layer at (0,0) size 785x585
</span><span class="cx">   RenderBlock {HTML} at (0,0) size 785x585
</span><span class="cx">     RenderBody {BODY} at (8,8) size 769x569
</span><del>-layer at (8,8) size 1304x104 backgroundClip at (0,0) size 824x711 clip at (0,0) size 824x711 outlineClip at (0,0) size 824x711
</del><ins>+layer at (8,8) size 1304x104 backgroundClip at (0,0) size 824x711 clip at (0,0) size 824x711
</ins><span class="cx">   RenderBlock {DIV} at (0,0) size 1304x104 [bgcolor=#800080] [border: (2px solid #0000FF) (2px solid #00FFFF) (2px solid #008000) (2px solid #FF0000)]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastwritingmodeKusaMakurabackgroundcanvasexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/writing-mode/Kusa-Makura-background-canvas-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/writing-mode/Kusa-Makura-background-canvas-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/fast/writing-mode/Kusa-Makura-background-canvas-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> layer at (0,0) size 4480x585
</span><span class="cx">   RenderView at (0,0) size 800x585
</span><del>-layer at (-3680,0) size 4480x585 backgroundClip at (0,0) size 4480x585 clip at (0,0) size 4480x585 outlineClip at (0,0) size 4480x585
</del><ins>+layer at (-3680,0) size 4480x585 backgroundClip at (0,0) size 4480x585 clip at (0,0) size 4480x585
</ins><span class="cx">   RenderBlock {HTML} at (0,0) size 4481x585
</span><span class="cx">     RenderBody {BODY} at (58,46) size 4364x493
</span><span class="cx">       RenderBlock {H1} at (0,0) size 48x492
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacprintingsinglelinemustnotbesplitintotwopagesexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/printing/single-line-must-not-be-split-into-two-pages-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/printing/single-line-must-not-be-split-into-two-pages-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/printing/single-line-must-not-be-split-into-two-pages-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -2,7 +2,7 @@
</span><span class="cx"> 
</span><span class="cx"> Non-overflowed lines:
</span><span class="cx"> 
</span><del>-layer at (0,0) size 769x7200 backgroundClip at (8,78) size 769x7200 clip at (8,78) size 769x7200 outlineClip at (8,78) size 769x7200
</del><ins>+layer at (0,0) size 769x7200 backgroundClip at (8,78) size 769x7200 clip at (8,78) size 769x7200
</ins><span class="cx">   RenderBlock (relative positioned) {DIV} at (0,70) size 769x7200
</span><span class="cx">     RenderText {#text} at (0,0) size 91x18
</span><span class="cx">       text run at (0,0) width 91: &quot;WWWWWW&quot;
</span><span class="lines">@@ -1206,7 +1206,7 @@
</span><span class="cx">     RenderBR {BR} at (90,7196) size 1x0
</span><span class="cx"> Overflowed lines:
</span><span class="cx"> 
</span><del>-layer at (0,0) size 4742x7200 backgroundClip at (8,7278) size 4742x7200 clip at (8,7278) size 4742x7200 outlineClip at (8,7278) size 4742x7200
</del><ins>+layer at (0,0) size 4742x7200 backgroundClip at (8,7278) size 4742x7200 clip at (8,7278) size 4742x7200
</ins><span class="cx">   RenderBlock (relative positioned) {DIV} at (0,7270) size 769x7200
</span><span class="cx">     RenderText {#text} at (0,0) size 4742x18
</span><span class="cx">       text run at (0,0) width 4742: &quot;WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacscrollbarsscrollbarsonpositionedcontentexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/scrollbars/scrollbars-on-positioned-content-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/scrollbars/scrollbars-on-positioned-content-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/scrollbars/scrollbars-on-positioned-content-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -9,6 +9,6 @@
</span><span class="cx"> layer at (8,50) size 304x550 clip at (9,51) size 287x533 scrollWidth 302 scrollHeight 1311
</span><span class="cx">   RenderBlock (positioned) {DIV} at (8,50) size 304x550 [border: (1px solid #FF0000)]
</span><span class="cx">     RenderBlock {DIV} at (1,412) size 15x900 [bgcolor=#008000]
</span><del>-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
</del><ins>+layer at (9,51) size 302x411 backgroundClip at (9,51) size 287x411 clip at (10,52) size 286x400 scrollWidth 500
</ins><span class="cx">   RenderBlock {DIV} at (1,1) size 302x411 [border: (1px solid #0000FF)]
</span><span class="cx">     RenderBlock {DIV} at (1,1) size 500x400 [bgcolor=#800080]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacsvgcustomgetscreenctminscrollabledivareanestedexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/svg/custom/getscreenctm-in-scrollable-div-area-nested-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/svg/custom/getscreenctm-in-scrollable-div-area-nested-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/svg/custom/getscreenctm-in-scrollable-div-area-nested-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -5,7 +5,7 @@
</span><span class="cx">     RenderBody {body} at (0,0) size 800x550
</span><span class="cx"> layer at (0,0) size 750x550 clip at (0,0) size 735x535 scrollY 300 scrollHeight 1000
</span><span class="cx">   RenderBlock {div} at (0,0) size 750x550
</span><del>-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
</del><ins>+layer at (0,-300) size 725x1000 backgroundClip at (0,0) size 725x535 clip at (0,0) size 710x535 scrollY 1400 scrollHeight 4100
</ins><span class="cx">   RenderBlock {div} at (0,0) size 725x1000
</span><span class="cx">     RenderSVGRoot {svg} at (266,250) size 268x154
</span><span class="cx">       RenderSVGRect {rect} at (350,250) size 100x100 [fill={[type=SOLID] [color=#000080] [opacity=0.50]}] [x=350.00] [y=1950.00] [width=100.00] [height=100.00]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacsvgcustomimagerescaleclipexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/svg/custom/image-rescale-clip-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/svg/custom/image-rescale-clip-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/platform/mac/svg/custom/image-rescale-clip-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -9,9 +9,9 @@
</span><span class="cx">         RenderBlock {P} at (0,0) size 784x18
</span><span class="cx">           RenderText {#text} at (0,0) size 360x18
</span><span class="cx">             text run at (0,0) width 360: &quot;This test verifies correct paint of clipped, scaled images.&quot;
</span><del>-layer at (8,8) size 160x105 backgroundClip at (8,8) size 150x15 clip at (8,8) size 150x15 outlineClip at (8,8) size 150x15
</del><ins>+layer at (8,8) size 160x105 backgroundClip at (8,8) size 150x15 clip at (8,8) size 150x15
</ins><span class="cx">   RenderBlock (positioned) {DIV} at (8,8) size 160x105
</span><span class="cx">     RenderText {#text} at (0,0) size 0x0
</span><span class="cx">     RenderText {#text} at (0,0) size 0x0
</span><del>-layer at (13,13) size 160x105 backgroundClip at (8,8) size 150x15 clip at (8,8) size 150x15 outlineClip at (8,8) size 150x15
</del><ins>+layer at (13,13) size 160x105 backgroundClip at (8,8) size 150x15 clip at (8,8) size 150x15
</ins><span class="cx">   RenderImage {IMG} at (0,0) size 160x105
</span></span></pre></div>
<a id="trunkLayoutTestssvgoverflowoverflowonforeignObjectexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/svg/overflow/overflow-on-foreignObject-expected.txt (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/svg/overflow/overflow-on-foreignObject-expected.txt        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/LayoutTests/svg/overflow/overflow-on-foreignObject-expected.txt        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -3,5 +3,5 @@
</span><span class="cx"> layer at (0,0) size 500x500
</span><span class="cx">   RenderSVGRoot {svg} at (100,100) size 300x300
</span><span class="cx">     RenderSVGForeignObject {foreignObject} at (100,100) size 300x300
</span><del>-layer at (0,0) size 6006x6006 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+layer at (0,0) size 6006x6006 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600
</ins><span class="cx">   RenderBlock (positioned) {html:div} at (0,0) size 6006x6006 [bgcolor=#008000] [border: (3px solid #000000)]
</span></span></pre></div>
<a id="trunkSourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/ChangeLog (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/Source/WebCore/ChangeLog        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -1,3 +1,31 @@
</span><ins>+2016-02-07  Zalan Bujtas  &lt;zalan@apple.com&gt;
+
+        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.
+
+        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):
+
</ins><span class="cx"> 2016-02-07  Daniel Bates  &lt;dabates@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         CSP: Allow Web Workers initiated from an isolated world to bypass the main world Content Security Policy
</span></span></pre></div>
<a id="trunkSourceWebCorerenderingLayerFragmenth"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/rendering/LayerFragment.h (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/rendering/LayerFragment.h        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/Source/WebCore/rendering/LayerFragment.h        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -34,12 +34,11 @@
</span><span class="cx"> public:
</span><span class="cx">     LayerFragment() = default;
</span><span class="cx">     
</span><del>-    void setRects(const LayoutRect&amp; bounds, const ClipRect&amp; background, const ClipRect&amp; foreground, const ClipRect&amp; outline, const LayoutRect* bbox)
</del><ins>+    void setRects(const LayoutRect&amp; bounds, const ClipRect&amp; background, const ClipRect&amp; foreground, const LayoutRect* bbox)
</ins><span class="cx">     {
</span><span class="cx">         layerBounds = bounds;
</span><span class="cx">         backgroundRect = background;
</span><span class="cx">         foregroundRect = foreground;
</span><del>-        outlineRect = outline;
</del><span class="cx">         if (bbox) {
</span><span class="cx">             boundingBox = *bbox;
</span><span class="cx">             hasBoundingBox = true;
</span><span class="lines">@@ -51,7 +50,6 @@
</span><span class="cx">         layerBounds.moveBy(offset);
</span><span class="cx">         backgroundRect.moveBy(offset);
</span><span class="cx">         foregroundRect.moveBy(offset);
</span><del>-        outlineRect.moveBy(offset);
</del><span class="cx">         paginationClip.moveBy(offset);
</span><span class="cx">         boundingBox.moveBy(offset);
</span><span class="cx">     }
</span><span class="lines">@@ -60,7 +58,6 @@
</span><span class="cx">     {
</span><span class="cx">         backgroundRect.intersect(rect);
</span><span class="cx">         foregroundRect.intersect(rect);
</span><del>-        outlineRect.intersect(rect);
</del><span class="cx">         boundingBox.intersect(rect);
</span><span class="cx">     }
</span><span class="cx">     
</span><span class="lines">@@ -68,7 +65,6 @@
</span><span class="cx">     {
</span><span class="cx">         backgroundRect.intersect(clipRect);
</span><span class="cx">         foregroundRect.intersect(clipRect);
</span><del>-        outlineRect.intersect(clipRect);
</del><span class="cx">     }
</span><span class="cx"> 
</span><span class="cx">     bool shouldPaintContent = false;
</span><span class="lines">@@ -76,7 +72,6 @@
</span><span class="cx">     LayoutRect layerBounds;
</span><span class="cx">     ClipRect backgroundRect;
</span><span class="cx">     ClipRect foregroundRect;
</span><del>-    ClipRect outlineRect;
</del><span class="cx">     LayoutRect boundingBox;
</span><span class="cx">     
</span><span class="cx">     // Unique to paginated fragments. The physical translation to apply to shift the layer when painting/hit-testing.
</span></span></pre></div>
<a id="trunkSourceWebCorerenderingRenderLayercpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/rendering/RenderLayer.cpp (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/rendering/RenderLayer.cpp        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/Source/WebCore/rendering/RenderLayer.cpp        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -4468,7 +4468,7 @@
</span><span class="cx">         // For unpaginated layers, there is only one fragment.
</span><span class="cx">         LayerFragment fragment;
</span><span class="cx">         ClipRectsContext clipRectsContext(rootLayer, clipRectsType, inOverlayScrollbarSizeRelevancy, respectOverflowClip);
</span><del>-        calculateRects(clipRectsContext, dirtyRect, fragment.layerBounds, fragment.backgroundRect, fragment.foregroundRect, fragment.outlineRect, offsetFromRoot);
</del><ins>+        calculateRects(clipRectsContext, dirtyRect, fragment.layerBounds, fragment.backgroundRect, fragment.foregroundRect, offsetFromRoot);
</ins><span class="cx">         fragments.append(fragment);
</span><span class="cx">         return;
</span><span class="cx">     }
</span><span class="lines">@@ -4482,9 +4482,8 @@
</span><span class="cx">     LayoutRect layerBoundsInFlowThread;
</span><span class="cx">     ClipRect backgroundRectInFlowThread;
</span><span class="cx">     ClipRect foregroundRectInFlowThread;
</span><del>-    ClipRect outlineRectInFlowThread;
</del><span class="cx">     calculateRects(paginationClipRectsContext, LayoutRect::infiniteRect(), layerBoundsInFlowThread, backgroundRectInFlowThread, foregroundRectInFlowThread,
</span><del>-        outlineRectInFlowThread, offsetWithinPaginatedLayer);
</del><ins>+        offsetWithinPaginatedLayer);
</ins><span class="cx">     
</span><span class="cx">     // Take our bounding box within the flow thread and clip it.
</span><span class="cx">     LayoutRect layerBoundingBoxInFlowThread = layerBoundingBox ? *layerBoundingBox : boundingBox(paginationLayer, offsetWithinPaginatedLayer);
</span><span class="lines">@@ -4528,7 +4527,7 @@
</span><span class="cx">                 LayerFragment&amp; fragment = fragments.at(i);
</span><span class="cx">                 
</span><span class="cx">                 // Set our four rects with all clipping applied that was internal to the flow thread.
</span><del>-                fragment.setRects(layerBoundsInFlowThread, backgroundRectInFlowThread, foregroundRectInFlowThread, outlineRectInFlowThread, &amp;layerBoundingBoxInFlowThread);
</del><ins>+                fragment.setRects(layerBoundsInFlowThread, backgroundRectInFlowThread, foregroundRectInFlowThread, &amp;layerBoundingBoxInFlowThread);
</ins><span class="cx">                 
</span><span class="cx">                 // Shift to the root-relative physical position used when painting the flow thread in this fragment.
</span><span class="cx">                 fragment.moveBy(toLayoutPoint(ancestorFragment.paginationOffset + fragment.paginationOffset + offsetWithinParentPaginatedLayer));
</span><span class="lines">@@ -4571,7 +4570,7 @@
</span><span class="cx"> 
</span><span class="cx">     for (auto&amp; fragment : fragments) {
</span><span class="cx">         // Set our four rects with all clipping applied that was internal to the flow thread.
</span><del>-        fragment.setRects(layerBoundsInFlowThread, backgroundRectInFlowThread, foregroundRectInFlowThread, outlineRectInFlowThread, &amp;layerBoundingBoxInFlowThread);
</del><ins>+        fragment.setRects(layerBoundsInFlowThread, backgroundRectInFlowThread, foregroundRectInFlowThread, &amp;layerBoundingBoxInFlowThread);
</ins><span class="cx">         
</span><span class="cx">         // Shift to the root-relative physical position used when painting the flow thread in this fragment.
</span><span class="cx">         fragment.moveBy(toLayoutPoint(fragment.paginationOffset + offsetOfPaginationLayerFromRoot));
</span><span class="lines">@@ -4699,18 +4698,6 @@
</span><span class="cx">     if (!selectionOnly) {
</span><span class="cx">         paintForegroundForFragmentsWithPhase(PaintPhaseFloat, layerFragments, context, localPaintingInfo, localPaintBehavior, subtreePaintRootForRenderer);
</span><span class="cx">         paintForegroundForFragmentsWithPhase(PaintPhaseForeground, layerFragments, context, localPaintingInfo, localPaintBehavior, subtreePaintRootForRenderer);
</span><del>-
-        // Switch the clipping rectangle to the outline version.
-        if (shouldClip &amp;&amp; clippedRect != layerFragments[0].outlineRect) {
-            restoreClip(context, localPaintingInfo.paintDirtyRect, clippedRect);
-            
-            if (!layerFragments[0].outlineRect.isEmpty()) {
-                clippedRect = layerFragments[0].outlineRect;
-                clipToRect(localPaintingInfo, context, clippedRect);
-            } else
-                shouldClip = false;
-        }
-
</del><span class="cx">         paintForegroundForFragmentsWithPhase(PaintPhaseChildOutlines, layerFragments, context, localPaintingInfo, localPaintBehavior, subtreePaintRootForRenderer);
</span><span class="cx">     }
</span><span class="cx">     
</span><span class="lines">@@ -4744,14 +4731,14 @@
</span><span class="cx">     PaintBehavior paintBehavior, RenderObject* subtreePaintRootForRenderer)
</span><span class="cx"> {
</span><span class="cx">     for (const auto&amp; fragment : layerFragments) {
</span><del>-        if (fragment.outlineRect.isEmpty())
</del><ins>+        if (fragment.backgroundRect.isEmpty())
</ins><span class="cx">             continue;
</span><span class="cx">     
</span><span class="cx">         // Paint our own outline
</span><del>-        PaintInfo paintInfo(context, fragment.outlineRect.rect(), PaintPhaseSelfOutline, paintBehavior, subtreePaintRootForRenderer, nullptr, nullptr, &amp;localPaintingInfo.rootLayer-&gt;renderer());
-        clipToRect(localPaintingInfo, context, fragment.outlineRect, DoNotIncludeSelfForBorderRadius);
</del><ins>+        PaintInfo paintInfo(context, fragment.backgroundRect.rect(), PaintPhaseSelfOutline, paintBehavior, subtreePaintRootForRenderer, nullptr, nullptr, &amp;localPaintingInfo.rootLayer-&gt;renderer());
+        clipToRect(localPaintingInfo, context, fragment.backgroundRect, DoNotIncludeSelfForBorderRadius);
</ins><span class="cx">         renderer().paint(paintInfo, toLayoutPoint(fragment.layerBounds.location() - renderBoxLocation() + localPaintingInfo.subpixelAccumulation));
</span><del>-        restoreClip(context, localPaintingInfo.paintDirtyRect, fragment.outlineRect);
</del><ins>+        restoreClip(context, localPaintingInfo.paintDirtyRect, fragment.backgroundRect);
</ins><span class="cx">     }
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="lines">@@ -5567,7 +5554,7 @@
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> void RenderLayer::calculateRects(const ClipRectsContext&amp; clipRectsContext, const LayoutRect&amp; paintDirtyRect, LayoutRect&amp; layerBounds,
</span><del>-    ClipRect&amp; backgroundRect, ClipRect&amp; foregroundRect, ClipRect&amp; outlineRect, const LayoutSize&amp; offsetFromRoot) const
</del><ins>+    ClipRect&amp; backgroundRect, ClipRect&amp; foregroundRect, const LayoutSize&amp; offsetFromRoot) const
</ins><span class="cx"> {
</span><span class="cx">     if (clipRectsContext.rootLayer != this &amp;&amp; parent()) {
</span><span class="cx">         backgroundRect = backgroundClipRect(clipRectsContext);
</span><span class="lines">@@ -5587,7 +5574,6 @@
</span><span class="cx">     layerBounds = LayoutRect(toLayoutPoint(offsetFromRootLocal), size());
</span><span class="cx"> 
</span><span class="cx">     foregroundRect = backgroundRect;
</span><del>-    outlineRect = backgroundRect;
</del><span class="cx"> 
</span><span class="cx">     RenderFlowThread* flowThread = namedFlowFragment ? namedFlowFragment-&gt;flowThread() : nullptr;
</span><span class="cx">     if (isSelfPaintingLayer() &amp;&amp; flowThread &amp;&amp; !renderer().isInFlowRenderFlowThread()) {
</span><span class="lines">@@ -5611,7 +5597,6 @@
</span><span class="cx">         backgroundRect.intersect(layerBoundsWithVisualOverflow);
</span><span class="cx"> 
</span><span class="cx">         foregroundRect = backgroundRect;
</span><del>-        outlineRect = backgroundRect;
</del><span class="cx">     }
</span><span class="cx"> 
</span><span class="cx">     // Update the clip rects that will be passed to child layers.
</span><span class="lines">@@ -5628,7 +5613,6 @@
</span><span class="cx">             LayoutRect newPosClip = downcast&lt;RenderBox&gt;(renderer()).clipRect(toLayoutPoint(offsetFromRootLocal), namedFlowFragment);
</span><span class="cx">             backgroundRect.intersect(newPosClip);
</span><span class="cx">             foregroundRect.intersect(newPosClip);
</span><del>-            outlineRect.intersect(newPosClip);
</del><span class="cx">         }
</span><span class="cx"> 
</span><span class="cx">         // If we establish a clip at all, then make sure our background rect is intersected with our layer's bounds including our visual overflow,
</span><span class="lines">@@ -5671,10 +5655,11 @@
</span><span class="cx">     // FIXME: Regions not accounted for.
</span><span class="cx">     RenderLayer* clippingRootLayer = clippingRootForPainting();
</span><span class="cx">     LayoutRect layerBounds;
</span><del>-    ClipRect backgroundRect, foregroundRect, outlineRect;
</del><ins>+    ClipRect backgroundRect;
+    ClipRect foregroundRect;
</ins><span class="cx">     ClipRectsContext clipRectsContext(clippingRootLayer, TemporaryClipRects);
</span><span class="cx">     // Need to use temporary clip rects, because the value of 'dontClipToOverflow' may be different from the painting path (&lt;rdar://problem/11844909&gt;).
</span><del>-    calculateRects(clipRectsContext, renderer().view().unscaledDocumentRect(), layerBounds, backgroundRect, foregroundRect, outlineRect, offsetFromAncestor(clipRectsContext.rootLayer));
</del><ins>+    calculateRects(clipRectsContext, renderer().view().unscaledDocumentRect(), layerBounds, backgroundRect, foregroundRect, offsetFromAncestor(clipRectsContext.rootLayer));
</ins><span class="cx">     return clippingRootLayer-&gt;renderer().localToAbsoluteQuad(FloatQuad(foregroundRect.rect())).enclosingBoundingBox();
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="lines">@@ -5684,9 +5669,10 @@
</span><span class="cx">     // FIXME: Regions not accounted for.
</span><span class="cx">     RenderLayer* clippingRootLayer = clippingRootForPainting();
</span><span class="cx">     LayoutRect layerBounds;
</span><del>-    ClipRect backgroundRect, foregroundRect, outlineRect;
</del><ins>+    ClipRect backgroundRect;
+    ClipRect foregroundRect;
</ins><span class="cx">     ClipRectsContext clipRectsContext(clippingRootLayer, PaintingClipRects);
</span><del>-    calculateRects(clipRectsContext, renderer().view().documentRect(), layerBounds, backgroundRect, foregroundRect, outlineRect, offsetFromAncestor(clippingRootLayer));
</del><ins>+    calculateRects(clipRectsContext, renderer().view().documentRect(), layerBounds, backgroundRect, foregroundRect, offsetFromAncestor(clippingRootLayer));
</ins><span class="cx">     return clippingRootLayer-&gt;renderer().localToAbsoluteQuad(FloatQuad(backgroundRect.rect())).enclosingBoundingBox();
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="lines">@@ -5699,9 +5685,10 @@
</span><span class="cx">     LayoutSize offsetFromRoot = offsetFromAncestor(clippingRootLayer);
</span><span class="cx"> 
</span><span class="cx">     LayoutRect layerBounds;
</span><del>-    ClipRect backgroundRect, foregroundRect, outlineRect;
</del><ins>+    ClipRect backgroundRect;
+    ClipRect foregroundRect;
</ins><span class="cx">     ClipRectsContext clipRectsContext(clippingRootLayer, PaintingClipRects);
</span><del>-    calculateRects(clipRectsContext, LayoutRect::infiniteRect(), layerBounds, backgroundRect, foregroundRect, outlineRect, offsetFromRoot);
</del><ins>+    calculateRects(clipRectsContext, LayoutRect::infiniteRect(), layerBounds, backgroundRect, foregroundRect, offsetFromRoot);
</ins><span class="cx"> 
</span><span class="cx">     LayoutRect clipRect = backgroundRect.rect();
</span><span class="cx">     if (clipRect.isInfinite())
</span></span></pre></div>
<a id="trunkSourceWebCorerenderingRenderLayerh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/rendering/RenderLayer.h (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/rendering/RenderLayer.h        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/Source/WebCore/rendering/RenderLayer.h        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -490,7 +490,7 @@
</span><span class="cx">     // for painting/event handling.
</span><span class="cx">     // Pass offsetFromRoot if known.
</span><span class="cx">     void calculateRects(const ClipRectsContext&amp;, const LayoutRect&amp; paintDirtyRect, LayoutRect&amp; layerBounds,
</span><del>-        ClipRect&amp; backgroundRect, ClipRect&amp; foregroundRect, ClipRect&amp; outlineRect, const LayoutSize&amp; offsetFromRoot) const;
</del><ins>+        ClipRect&amp; backgroundRect, ClipRect&amp; foregroundRect, const LayoutSize&amp; offsetFromRoot) const;
</ins><span class="cx"> 
</span><span class="cx">     LayoutRect childrenClipRect() const; // Returns the foreground clip rect of the layer in the document's coordinate space.
</span><span class="cx">     LayoutRect selfClipRect() const; // Returns the background clip rect of the layer in the document's coordinate space.
</span></span></pre></div>
<a id="trunkSourceWebCorerenderingRenderTreeAsTextcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/rendering/RenderTreeAsText.cpp (196243 => 196244)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/rendering/RenderTreeAsText.cpp        2016-02-07 23:16:20 UTC (rev 196243)
+++ trunk/Source/WebCore/rendering/RenderTreeAsText.cpp        2016-02-08 00:33:40 UTC (rev 196244)
</span><span class="lines">@@ -589,21 +589,19 @@
</span><span class="cx">     LayerPaintPhaseForeground = 1
</span><span class="cx"> };
</span><span class="cx"> 
</span><del>-static void write(TextStream&amp; ts, RenderLayer&amp; l,
-                  const LayoutRect&amp; layerBounds, const LayoutRect&amp; backgroundClipRect, const LayoutRect&amp; clipRect, const LayoutRect&amp; outlineClipRect,
-                  LayerPaintPhase paintPhase = LayerPaintPhaseAll, int indent = 0, RenderAsTextBehavior behavior = RenderAsTextBehaviorNormal)
</del><ins>+static void write(TextStream&amp; ts, const RenderLayer&amp; layer, const LayoutRect&amp; layerBounds, const LayoutRect&amp; backgroundClipRect, const LayoutRect&amp; clipRect,
+    LayerPaintPhase paintPhase = LayerPaintPhaseAll, int indent = 0, RenderAsTextBehavior behavior = RenderAsTextBehaviorNormal)
</ins><span class="cx"> {
</span><span class="cx">     IntRect adjustedLayoutBounds = snappedIntRect(layerBounds);
</span><span class="cx">     IntRect adjustedBackgroundClipRect = snappedIntRect(backgroundClipRect);
</span><span class="cx">     IntRect adjustedClipRect = snappedIntRect(clipRect);
</span><del>-    IntRect adjustedOutlineClipRect = snappedIntRect(outlineClipRect);
</del><span class="cx"> 
</span><span class="cx">     writeIndent(ts, indent);
</span><span class="cx"> 
</span><span class="cx">     ts &lt;&lt; &quot;layer &quot;;
</span><span class="cx">     
</span><span class="cx">     if (behavior &amp; RenderAsTextShowAddresses)
</span><del>-        ts &lt;&lt; static_cast&lt;const void*&gt;(&amp;l) &lt;&lt; &quot; &quot;;
</del><ins>+        ts &lt;&lt; static_cast&lt;const void*&gt;(&amp;layer) &lt;&lt; &quot; &quot;;
</ins><span class="cx">       
</span><span class="cx">     ts &lt;&lt; adjustedLayoutBounds;
</span><span class="cx"> 
</span><span class="lines">@@ -612,19 +610,17 @@
</span><span class="cx">             ts &lt;&lt; &quot; backgroundClip &quot; &lt;&lt; adjustedBackgroundClipRect;
</span><span class="cx">         if (!adjustedClipRect.contains(adjustedLayoutBounds))
</span><span class="cx">             ts &lt;&lt; &quot; clip &quot; &lt;&lt; adjustedClipRect;
</span><del>-        if (!adjustedOutlineClipRect.contains(adjustedLayoutBounds))
-            ts &lt;&lt; &quot; outlineClip &quot; &lt;&lt; adjustedOutlineClipRect;
</del><span class="cx">     }
</span><span class="cx"> 
</span><del>-    if (l.renderer().hasOverflowClip()) {
-        if (l.scrollOffset().x())
-            ts &lt;&lt; &quot; scrollX &quot; &lt;&lt; l.scrollOffset().x();
-        if (l.scrollOffset().y())
-            ts &lt;&lt; &quot; scrollY &quot; &lt;&lt; l.scrollOffset().y();
-        if (l.renderBox() &amp;&amp; roundToInt(l.renderBox()-&gt;clientWidth()) != l.scrollWidth())
-            ts &lt;&lt; &quot; scrollWidth &quot; &lt;&lt; l.scrollWidth();
-        if (l.renderBox() &amp;&amp; roundToInt(l.renderBox()-&gt;clientHeight()) != l.scrollHeight())
-            ts &lt;&lt; &quot; scrollHeight &quot; &lt;&lt; l.scrollHeight();
</del><ins>+    if (layer.renderer().hasOverflowClip()) {
+        if (layer.scrollOffset().x())
+            ts &lt;&lt; &quot; scrollX &quot; &lt;&lt; layer.scrollOffset().x();
+        if (layer.scrollOffset().y())
+            ts &lt;&lt; &quot; scrollY &quot; &lt;&lt; layer.scrollOffset().y();
+        if (layer.renderBox() &amp;&amp; roundToInt(layer.renderBox()-&gt;clientWidth()) != layer.scrollWidth())
+            ts &lt;&lt; &quot; scrollWidth &quot; &lt;&lt; layer.scrollWidth();
+        if (layer.renderBox() &amp;&amp; roundToInt(layer.renderBox()-&gt;clientHeight()) != layer.scrollHeight())
+            ts &lt;&lt; &quot; scrollHeight &quot; &lt;&lt; layer.scrollHeight();
</ins><span class="cx">     }
</span><span class="cx"> 
</span><span class="cx">     if (paintPhase == LayerPaintPhaseBackground)
</span><span class="lines">@@ -633,21 +629,23 @@
</span><span class="cx">         ts &lt;&lt; &quot; layerType: foreground only&quot;;
</span><span class="cx"> 
</span><span class="cx">     if (behavior &amp; RenderAsTextShowCompositedLayers) {
</span><del>-        if (l.isComposited())
-            ts &lt;&lt; &quot; (composited, bounds=&quot; &lt;&lt; l.backing()-&gt;compositedBounds() &lt;&lt; &quot;, drawsContent=&quot; &lt;&lt; l.backing()-&gt;graphicsLayer()-&gt;drawsContent() &lt;&lt; &quot;, paints into ancestor=&quot; &lt;&lt; l.backing()-&gt;paintsIntoCompositedAncestor() &lt;&lt; &quot;)&quot;;
</del><ins>+        if (layer.isComposited()) {
+            ts &lt;&lt; &quot; (composited, bounds=&quot; &lt;&lt; layer.backing()-&gt;compositedBounds() &lt;&lt; &quot;, drawsContent=&quot; &lt;&lt; layer.backing()-&gt;graphicsLayer()-&gt;drawsContent()
+                &lt;&lt; &quot;, paints into ancestor=&quot; &lt;&lt; layer.backing()-&gt;paintsIntoCompositedAncestor() &lt;&lt; &quot;)&quot;;
+        }
</ins><span class="cx">     }
</span><span class="cx"> 
</span><span class="cx"> #if ENABLE(CSS_COMPOSITING)
</span><del>-    if (l.isolatesBlending())
</del><ins>+    if (layer.isolatesBlending())
</ins><span class="cx">         ts &lt;&lt; &quot; isolatesBlending&quot;;
</span><del>-    if (l.hasBlendMode())
-        ts &lt;&lt; &quot; blendMode: &quot; &lt;&lt; compositeOperatorName(CompositeSourceOver, l.blendMode());
</del><ins>+    if (layer.hasBlendMode())
+        ts &lt;&lt; &quot; blendMode: &quot; &lt;&lt; compositeOperatorName(CompositeSourceOver, layer.blendMode());
</ins><span class="cx"> #endif
</span><span class="cx">     
</span><span class="cx">     ts &lt;&lt; &quot;\n&quot;;
</span><span class="cx"> 
</span><span class="cx">     if (paintPhase != LayerPaintPhaseBackground)
</span><del>-        write(ts, l.renderer(), indent + 1, behavior);
</del><ins>+        write(ts, layer.renderer(), indent + 1, behavior);
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> static void writeRenderRegionList(const RenderRegionList&amp; flowThreadRegionList, TextStream&amp; ts, int indent)
</span><span class="lines">@@ -746,8 +744,9 @@
</span><span class="cx">     
</span><span class="cx">     // Calculate the clip rects we should use.
</span><span class="cx">     LayoutRect layerBounds;
</span><del>-    ClipRect damageRect, clipRectToApply, outlineRect;
-    l-&gt;calculateRects(RenderLayer::ClipRectsContext(rootLayer, TemporaryClipRects), paintDirtyRect, layerBounds, damageRect, clipRectToApply, outlineRect, l-&gt;offsetFromAncestor(rootLayer));
</del><ins>+    ClipRect damageRect;
+    ClipRect clipRectToApply;
+    l-&gt;calculateRects(RenderLayer::ClipRectsContext(rootLayer, TemporaryClipRects), paintDirtyRect, layerBounds, damageRect, clipRectToApply, l-&gt;offsetFromAncestor(rootLayer));
</ins><span class="cx"> 
</span><span class="cx">     // Ensure our lists are up-to-date.
</span><span class="cx">     l-&gt;updateLayerListsIfNeeded();
</span><span class="lines">@@ -756,7 +755,7 @@
</span><span class="cx">     Vector&lt;RenderLayer*&gt;* negList = l-&gt;negZOrderList();
</span><span class="cx">     bool paintsBackgroundSeparately = negList &amp;&amp; negList-&gt;size() &gt; 0;
</span><span class="cx">     if (shouldPaint &amp;&amp; paintsBackgroundSeparately)
</span><del>-        write(ts, *l, layerBounds, damageRect.rect(), clipRectToApply.rect(), outlineRect.rect(), LayerPaintPhaseBackground, indent, behavior);
</del><ins>+        write(ts, *l, layerBounds, damageRect.rect(), clipRectToApply.rect(), LayerPaintPhaseBackground, indent, behavior);
</ins><span class="cx"> 
</span><span class="cx">     if (negList) {
</span><span class="cx">         int currIndent = indent;
</span><span class="lines">@@ -770,7 +769,7 @@
</span><span class="cx">     }
</span><span class="cx"> 
</span><span class="cx">     if (shouldPaint)
</span><del>-        write(ts, *l, layerBounds, damageRect.rect(), clipRectToApply.rect(), outlineRect.rect(), paintsBackgroundSeparately ? LayerPaintPhaseForeground : LayerPaintPhaseAll, indent, behavior);
</del><ins>+        write(ts, *l, layerBounds, damageRect.rect(), clipRectToApply.rect(), paintsBackgroundSeparately ? LayerPaintPhaseForeground : LayerPaintPhaseAll, indent, behavior);
</ins><span class="cx"> 
</span><span class="cx">     if (Vector&lt;RenderLayer*&gt;* normalFlowList = l-&gt;normalFlowList()) {
</span><span class="cx">         int currIndent = indent;
</span></span></pre>
</div>
</div>

</body>
</html>