WebKit Bugzilla
Attachment 370841 Details for
Bug 107380
: Specifying the width/height of an input element modifies its margin
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
update mac, ios layout test result
bug-107380-20190529225155.patch (text/plain), 110.89 KB, created by
Joonghun Park
on 2019-05-29 06:51:57 PDT
(
hide
)
Description:
update mac, ios layout test result
Filename:
MIME Type:
Creator:
Joonghun Park
Created:
2019-05-29 06:51:57 PDT
Size:
110.89 KB
patch
obsolete
>Subversion Revision: 245769 >diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog >index 6234cd5c2f62facd195452dee2cf55c41399d57a..2ec2808611917bb4142a0f5496025c63ef5d56eb 100644 >--- a/Source/WebCore/ChangeLog >+++ b/Source/WebCore/ChangeLog >@@ -1,3 +1,19 @@ >+2019-05-28 Joonghun Park <jh718.park@samsung.com> >+ >+ Remove |addIntrinsicMargins| for Form Control Elements. >+ https://bugs.webkit.org/show_bug.cgi?id=107380 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ Currently, all form control elements except image button >+ get changed margin if width/height is specified by css. >+ For interoperability with other browsers, >+ remove this behavior. >+ >+ * css/StyleResolver.cpp: >+ (WebCore::StyleResolver::adjustRenderStyle): >+ (WebCore::addIntrinsicMargins): Deleted. >+ > 2019-05-24 Joonghun Park <jh718.park@samsung.com> > > Make computed width of non-replaced inline return computed style. >diff --git a/Source/WebCore/css/StyleResolver.cpp b/Source/WebCore/css/StyleResolver.cpp >index 4e8113f5cdc195e9c897edb2221baa94077ef6ed..9f52c400534ba2f20e586dda492c1d548d3a8e15 100644 >--- a/Source/WebCore/css/StyleResolver.cpp >+++ b/Source/WebCore/css/StyleResolver.cpp >@@ -665,28 +665,6 @@ std::unique_ptr<RenderStyle> StyleResolver::defaultStyleForElement() > return m_state.takeStyle(); > } > >-static void addIntrinsicMargins(RenderStyle& style) >-{ >- // Intrinsic margin value. >- const int intrinsicMargin = clampToInteger(2 * style.effectiveZoom()); >- >- // FIXME: Using width/height alone and not also dealing with min-width/max-width is flawed. >- // FIXME: Using "hasQuirk" to decide the margin wasn't set is kind of lame. >- if (style.width().isIntrinsicOrAuto()) { >- if (style.marginLeft().hasQuirk()) >- style.setMarginLeft(Length(intrinsicMargin, Fixed)); >- if (style.marginRight().hasQuirk()) >- style.setMarginRight(Length(intrinsicMargin, Fixed)); >- } >- >- if (style.height().isAuto()) { >- if (style.marginTop().hasQuirk()) >- style.setMarginTop(Length(intrinsicMargin, Fixed)); >- if (style.marginBottom().hasQuirk()) >- style.setMarginBottom(Length(intrinsicMargin, Fixed)); >- } >-} >- > static DisplayType equivalentBlockDisplay(const RenderStyle& style, const Document& document) > { > switch (auto display = style.display()) { >@@ -1083,15 +1061,6 @@ void StyleResolver::adjustRenderStyle(RenderStyle& style, const RenderStyle& par > style.adjustAnimations(); > style.adjustTransitions(); > >- // Important: Intrinsic margins get added to controls before the theme has adjusted the style, since the theme will >- // alter fonts and heights/widths. >- if (is<HTMLFormControlElement>(element) && style.computedFontPixelSize() >= 11) { >- // Don't apply intrinsic margins to image buttons. The designer knows how big the images are, >- // so we have to treat all image buttons as though they were explicitly sized. >- if (!is<HTMLInputElement>(*element) || !downcast<HTMLInputElement>(*element).isImageButton()) >- addIntrinsicMargins(style); >- } >- > // Let the theme also have a crack at adjusting the style. > if (style.hasAppearance()) > RenderTheme::singleton().adjustStyle(*this, style, element, m_state.hasUAAppearance(), m_state.borderData(), m_state.backgroundData(), m_state.backgroundColor()); >diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog >index 863da5f239c0f0bf805c8587260aa427b23cabd0..ac93a9349468a1366dd59dfad22e1071bdf66749 100644 >--- a/LayoutTests/ChangeLog >+++ b/LayoutTests/ChangeLog >@@ -1,3 +1,78 @@ >+2019-05-29 Joonghun Park <jh718.park@samsung.com> >+ >+ Remove |addIntrinsicMargins| for Form Control Elements. >+ https://bugs.webkit.org/show_bug.cgi?id=107380 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ Currently, all form control elements except image button >+ get changed margin if width/height is specified by css. >+ For interoperability with other browsers, >+ remove this behavior. >+ >+ * accessibility/ios-simulator/unobscured-content-rect-expected.txt: >+ * platform/ios-wk2/compositing/contents-opaque/control-layer-expected.txt: >+ * platform/ios-wk2/editing/input/caret-at-the-edge-of-input-expected.txt: >+ * platform/ios-wk2/editing/input/reveal-caret-of-multiline-input-expected.txt: >+ * platform/ios-wk2/editing/inserting/4960120-1-expected.txt: >+ * platform/ios-wk2/editing/inserting/before-after-input-element-expected.txt: >+ * platform/ios-wk2/editing/pasteboard/4641033-expected.txt: >+ * platform/ios/css3/flexbox/button-expected.txt: >+ * platform/ios/css3/selectors3/html/css3-modsel-161-expected.txt: >+ * platform/ios/css3/selectors3/html/css3-modsel-19b-expected.txt: >+ * platform/ios/css3/selectors3/html/css3-modsel-23-expected.txt: >+ * platform/ios/css3/selectors3/html/css3-modsel-24-expected.txt: >+ * platform/ios/css3/selectors3/html/css3-modsel-64-expected.txt: >+ * platform/ios/css3/selectors3/html/css3-modsel-68-expected.txt: >+ * platform/ios/css3/selectors3/html/css3-modsel-69-expected.txt: >+ * platform/ios/css3/selectors3/xhtml/css3-modsel-161-expected.txt: >+ * platform/ios/css3/selectors3/xhtml/css3-modsel-19b-expected.txt: >+ * platform/ios/css3/selectors3/xhtml/css3-modsel-23-expected.txt: >+ * platform/ios/css3/selectors3/xhtml/css3-modsel-24-expected.txt: >+ * platform/ios/css3/selectors3/xhtml/css3-modsel-64-expected.txt: >+ * platform/ios/css3/selectors3/xhtml/css3-modsel-68-expected.txt: >+ * platform/ios/css3/selectors3/xhtml/css3-modsel-69-expected.txt: >+ * platform/ios/css3/selectors3/xml/css3-modsel-161-expected.txt: >+ * platform/ios/css3/selectors3/xml/css3-modsel-19b-expected.txt: >+ * platform/ios/css3/selectors3/xml/css3-modsel-23-expected.txt: >+ * platform/ios/css3/selectors3/xml/css3-modsel-24-expected.txt: >+ * platform/ios/css3/selectors3/xml/css3-modsel-64-expected.txt: >+ * platform/ios/css3/selectors3/xml/css3-modsel-68-expected.txt: >+ * platform/ios/css3/selectors3/xml/css3-modsel-69-expected.txt: >+ * platform/ios/editing/pasteboard/4806874-expected.txt: >+ * platform/mac/accessibility/form-control-value-settable-expected.txt: >+ * platform/mac/compositing/contents-opaque/control-layer-expected.txt: >+ * platform/mac/css3/flexbox/button-expected.txt: >+ * platform/mac/css3/selectors3/html/css3-modsel-161-expected.txt: >+ * platform/mac/css3/selectors3/html/css3-modsel-19b-expected.png: Added. >+ * platform/mac/css3/selectors3/html/css3-modsel-19b-expected.txt: >+ * platform/mac/css3/selectors3/html/css3-modsel-23-expected.png: Added. >+ * platform/mac/css3/selectors3/html/css3-modsel-23-expected.txt: >+ * platform/mac/css3/selectors3/html/css3-modsel-24-expected.txt: >+ * platform/mac/css3/selectors3/html/css3-modsel-64-expected.txt: >+ * platform/mac/css3/selectors3/html/css3-modsel-68-expected.txt: >+ * platform/mac/css3/selectors3/html/css3-modsel-69-expected.txt: >+ * platform/mac/css3/selectors3/xhtml/css3-modsel-19b-expected.txt: >+ * platform/mac/css3/selectors3/xhtml/css3-modsel-23-expected.txt: >+ * platform/mac/css3/selectors3/xhtml/css3-modsel-24-expected.txt: >+ * platform/mac/css3/selectors3/xhtml/css3-modsel-64-expected.txt: >+ * platform/mac/css3/selectors3/xhtml/css3-modsel-68-expected.txt: >+ * platform/mac/css3/selectors3/xhtml/css3-modsel-69-expected.txt: >+ * platform/mac/css3/selectors3/xml/css3-modsel-19b-expected.txt: >+ * platform/mac/css3/selectors3/xml/css3-modsel-23-expected.txt: >+ * platform/mac/css3/selectors3/xml/css3-modsel-24-expected.txt: >+ * platform/mac/css3/selectors3/xml/css3-modsel-64-expected.txt: >+ * platform/mac/css3/selectors3/xml/css3-modsel-68-expected.txt: >+ * platform/mac/css3/selectors3/xml/css3-modsel-69-expected.txt: >+ * platform/mac/editing/input/caret-at-the-edge-of-input-expected.txt: >+ * platform/mac/editing/input/reveal-caret-of-multiline-input-expected.txt: >+ * platform/mac/editing/inserting/4960120-1-expected.txt: >+ * platform/mac/editing/inserting/before-after-input-element-expected.txt: >+ * platform/mac/editing/mac/spelling/autocorrection-at-beginning-of-word-1-expected.txt: >+ * platform/mac/editing/mac/spelling/autocorrection-at-beginning-of-word-2-expected.txt: >+ * platform/mac/editing/pasteboard/4641033-expected.txt: >+ * platform/mac/editing/pasteboard/4806874-expected.txt: >+ > 2019-05-24 Joonghun Park <jh718.park@samsung.com> > > Make computed width of non-replaced inline return computed style. >diff --git a/LayoutTests/accessibility/ios-simulator/unobscured-content-rect-expected.txt b/LayoutTests/accessibility/ios-simulator/unobscured-content-rect-expected.txt >index f7ddce9ecbe091c9790d12279f7370df949929d1..009bdb251569038cfdfa2c3fc98abb03832b3863 100644 >--- a/LayoutTests/accessibility/ios-simulator/unobscured-content-rect-expected.txt >+++ b/LayoutTests/accessibility/ios-simulator/unobscured-content-rect-expected.txt >@@ -5,7 +5,7 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE > > > PASS button.stringAttributeValue('AXVisibleContentRect') is '{0.00, 0.00, 800.00, 600.00}' >-PASS frameButton.stringAttributeValue('AXVisibleContentRect') is '{60.00, 10.00, 200.00, 200.00}' >+FAIL frameButton.stringAttributeValue('AXVisibleContentRect') should be {60.00, 10.00, 200.00, 200.00}. Was {56.00, 10.00, 200.00, 200.00}. > PASS successfullyParsed is true > > TEST COMPLETE >diff --git a/LayoutTests/platform/ios-wk2/compositing/contents-opaque/control-layer-expected.txt b/LayoutTests/platform/ios-wk2/compositing/contents-opaque/control-layer-expected.txt >index 0a054a12ce50270b52db3052d0f1a0512154c79a..75b686490f33f980b493cafb2601ccd637d23e09 100644 >--- a/LayoutTests/platform/ios-wk2/compositing/contents-opaque/control-layer-expected.txt >+++ b/LayoutTests/platform/ios-wk2/compositing/contents-opaque/control-layer-expected.txt >@@ -8,7 +8,7 @@ > (contentsOpaque 1) > (children 1 > (GraphicsLayer >- (position 10.00 10.00) >+ (position 8.00 8.00) > (bounds 118.00 20.00) > (drawsContent 1) > ) >diff --git a/LayoutTests/platform/ios-wk2/editing/input/caret-at-the-edge-of-input-expected.txt b/LayoutTests/platform/ios-wk2/editing/input/caret-at-the-edge-of-input-expected.txt >index 21c9261e047fd260c305643b99ab3471f19c5022..44329920043e7969f0576b41a3fc6d22913b4af2 100644 >--- a/LayoutTests/platform/ios-wk2/editing/input/caret-at-the-edge-of-input-expected.txt >+++ b/LayoutTests/platform/ios-wk2/editing/input/caret-at-the-edge-of-input-expected.txt >@@ -1,16 +1,16 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x61 >- RenderBlock {HTML} at (0,0) size 800x61 >- RenderBody {BODY} at (8,8) size 784x45 >+layer at (0,0) size 800x58 >+ RenderBlock {HTML} at (0,0) size 800x58 >+ RenderBody {BODY} at (8,8) size 784x42 > RenderBlock {DIV} at (0,0) size 784x20 > RenderText {#text} at (0,0) size 692x19 > text run at (0,0) width 692: "When the caret reaches the edge of the input box, on the next input if must jump to the center of the control." >- RenderBlock (anonymous) at (0,20) size 784x25 >- RenderTextControl {INPUT} at (2,2) size 75x22 [bgcolor=#FFFFFF] [border: (1px solid #4C4C4C)] >+ RenderBlock (anonymous) at (0,20) size 784x22 >+ RenderTextControl {INPUT} at (0,1) size 75x22 [bgcolor=#FFFFFF] [border: (1px solid #4C4C4C)] > RenderText {#text} at (0,0) size 0x0 > RenderText {#text} at (0,0) size 0x0 >-layer at (17,33) size 61x14 scrollX 126 scrollWidth 185 >+layer at (15,32) size 61x14 scrollX 126 scrollWidth 185 > RenderBlock {DIV} at (6,3) size 62x15 > RenderText {#text} at (0,0) size 184x14 > text run at (0,0) width 184: "012345678901234567890123456789" >diff --git a/LayoutTests/platform/ios-wk2/editing/input/reveal-caret-of-multiline-input-expected.txt b/LayoutTests/platform/ios-wk2/editing/input/reveal-caret-of-multiline-input-expected.txt >index 486eaeb55a6186120c0a2c7a2e0ba3161629193a..8668c6cbdd83c6de5507e573d5ec53e4ed8ab6ab 100644 >--- a/LayoutTests/platform/ios-wk2/editing/input/reveal-caret-of-multiline-input-expected.txt >+++ b/LayoutTests/platform/ios-wk2/editing/input/reveal-caret-of-multiline-input-expected.txt >@@ -1,16 +1,16 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x191 >- RenderBlock {HTML} at (0,0) size 800x191 >- RenderBody {BODY} at (8,8) size 784x175 >+layer at (0,0) size 800x187 >+ RenderBlock {HTML} at (0,0) size 800x187 >+ RenderBody {BODY} at (8,8) size 784x171 > RenderBlock {DIV} at (0,0) size 784x20 > RenderText {#text} at (0,0) size 610x19 > text run at (0,0) width 610: "When the caret is scrolled out, on starting typing it must be brought to the center of the control." >- RenderBlock (anonymous) at (0,20) size 784x155 >+ RenderBlock (anonymous) at (0,20) size 784x151 > RenderText {#text} at (0,0) size 0x0 > RenderText {#text} at (0,0) size 0x0 >-layer at (10,30) size 90x146 clip at (11,31) size 73x144 scrollHeight 452 >- RenderTextControl {TEXTAREA} at (2,2) size 90x146 [bgcolor=#FFFFFF] [border: (1px solid #4C4C4C)] >+layer at (8,28) size 90x146 clip at (9,29) size 73x144 scrollHeight 452 >+ RenderTextControl {TEXTAREA} at (0,0) size 90x146 [bgcolor=#FFFFFF] [border: (1px solid #4C4C4C)] > RenderBlock {DIV} at (6,3) size 63x448 > RenderText {#text} at (0,0) size 13x434 > text run at (0,0) width 13: "00" >diff --git a/LayoutTests/platform/ios-wk2/editing/inserting/4960120-1-expected.txt b/LayoutTests/platform/ios-wk2/editing/inserting/4960120-1-expected.txt >index 88fd0bf844a1d2ef43adb930f8dd0a978f00c738..8862c2180869d9ebcded51283be3b92dc2aa19a6 100644 >--- a/LayoutTests/platform/ios-wk2/editing/inserting/4960120-1-expected.txt >+++ b/LayoutTests/platform/ios-wk2/editing/inserting/4960120-1-expected.txt >@@ -6,11 +6,11 @@ layer at (0,0) size 800x600 > RenderBlock {P} at (0,0) size 784x20 > RenderText {#text} at (0,0) size 518x19 > text run at (0,0) width 518: "This tests for a bug where the first newline entered into a text area would be lost." >- RenderBlock (anonymous) at (0,36) size 784x38 >+ RenderBlock (anonymous) at (0,36) size 784x34 > RenderText {#text} at (0,0) size 0x0 > RenderText {#text} at (0,0) size 0x0 >-layer at (10,46) size 151x34 clip at (11,47) size 149x32 >- RenderTextControl {TEXTAREA} at (2,2) size 151x34 [bgcolor=#FFFFFF] [border: (1px solid #4C4C4C)] >+layer at (8,44) size 151x34 clip at (9,45) size 149x32 >+ RenderTextControl {TEXTAREA} at (0,0) size 151x34 [bgcolor=#FFFFFF] [border: (1px solid #4C4C4C)] > RenderBlock {DIV} at (6,3) size 139x28 > RenderText {#text} at (0,0) size 0x14 > text run at (0,0) width 0: " " >diff --git a/LayoutTests/platform/ios-wk2/editing/inserting/before-after-input-element-expected.txt b/LayoutTests/platform/ios-wk2/editing/inserting/before-after-input-element-expected.txt >index 5bfffd6de31aef2da548abf20498d71a5021ca6f..ff2d1c6f18bc02839638b6cd8306f3a95d9cbb17 100644 >--- a/LayoutTests/platform/ios-wk2/editing/inserting/before-after-input-element-expected.txt >+++ b/LayoutTests/platform/ios-wk2/editing/inserting/before-after-input-element-expected.txt >@@ -16,12 +16,12 @@ layer at (0,0) size 800x600 > RenderBlock {P} at (0,0) size 784x20 > RenderText {#text} at (0,0) size 343x19 > text run at (0,0) width 343: "This tests text insertion before/after an input element." >- RenderBlock {DIV} at (0,36) size 784x25 >- RenderText {#text} at (0,1) size 36x19 >- text run at (0,1) width 36: "Hello" >- RenderTextControl {INPUT} at (37,2) size 136x22 [bgcolor=#FFFFFF] [border: (1px solid #4C4C4C)] >- RenderText {#text} at (174,1) size 41x19 >- text run at (174,1) width 41: "World" >-layer at (52,49) size 122x14 >+ RenderBlock {DIV} at (0,36) size 784x22 >+ RenderText {#text} at (0,0) size 36x19 >+ text run at (0,0) width 36: "Hello" >+ RenderTextControl {INPUT} at (35,1) size 136x22 [bgcolor=#FFFFFF] [border: (1px solid #4C4C4C)] >+ RenderText {#text} at (170,0) size 41x19 >+ text run at (170,0) width 41: "World" >+layer at (50,48) size 122x14 > RenderBlock {DIV} at (6,3) size 123x15 > caret: position 5 of child 2 {#text} of child 2 {DIV} of body >diff --git a/LayoutTests/platform/ios-wk2/editing/pasteboard/4641033-expected.txt b/LayoutTests/platform/ios-wk2/editing/pasteboard/4641033-expected.txt >index d8635b2bf4cc03fcdba28837987ae13def81577f..b160678f2653c926762ddd877334f43a1792d52f 100644 >--- a/LayoutTests/platform/ios-wk2/editing/pasteboard/4641033-expected.txt >+++ b/LayoutTests/platform/ios-wk2/editing/pasteboard/4641033-expected.txt >@@ -16,20 +16,20 @@ layer at (0,0) size 800x600 > text run at (0,0) width 673: "This tests for a bug when creating markup for a selection that contained unrendered nodes with children. " > text run at (672,0) width 109: "You should see a" > text run at (0,20) width 253: "picture of abe followed by a select box." >- RenderBlock {DIV} at (0,56) size 784x111 >+ RenderBlock {DIV} at (0,56) size 784x109 > RenderImage {IMG} at (0,0) size 76x103 > RenderInline {SPAN} at (0,0) size 4x19 > RenderText {#text} at (76,88) size 4x19 > text run at (76,88) width 4: " " >- RenderMenuList {SELECT} at (82,89) size 51x20 [bgcolor=#FFFFFF02] [border: (1px solid #4C4C4C)] >+ RenderMenuList {SELECT} at (80,89) size 51x20 [bgcolor=#FFFFFF02] [border: (1px solid #4C4C4C)] > RenderBlock (anonymous) at (6,3) size 39x14 > RenderText at (0,0) size 7x14 > text run at (0,0) width 7: "1" >- RenderBlock (anonymous) at (0,167) size 784x111 >+ RenderBlock (anonymous) at (0,165) size 784x109 > RenderImage {IMG} at (0,0) size 76x103 > RenderText {#text} at (76,88) size 4x19 > text run at (76,88) width 4: " " >- RenderMenuList {SELECT} at (82,89) size 51x20 [bgcolor=#FFFFFF02] [border: (1px solid #4C4C4C)] >+ RenderMenuList {SELECT} at (80,89) size 51x20 [bgcolor=#FFFFFF02] [border: (1px solid #4C4C4C)] > RenderBlock (anonymous) at (6,3) size 39x14 > RenderText at (0,0) size 7x14 > text run at (0,0) width 7: "1" >diff --git a/LayoutTests/platform/ios/css3/flexbox/button-expected.txt b/LayoutTests/platform/ios/css3/flexbox/button-expected.txt >index cf150cb9401630bb113e6f3baa7120f4216b6f9f..123b5b0ac304646ce5de03d72555d4ac34b15c6e 100644 >--- a/LayoutTests/platform/ios/css3/flexbox/button-expected.txt >+++ b/LayoutTests/platform/ios/css3/flexbox/button-expected.txt >@@ -1,8 +1,8 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x270 >- RenderBlock {HTML} at (0,0) size 800x270 >- RenderBody {BODY} at (8,8) size 784x254 >+layer at (0,0) size 800x262 >+ RenderBlock {HTML} at (0,0) size 800x262 >+ RenderBody {BODY} at (8,8) size 784x246 > RenderBlock (anonymous) at (0,0) size 784x40 > RenderText {#text} at (0,0) size 778x39 > text run at (0,0) width 410: "Test for empty buttons, which inherit from RenderFlexibleBox. " >@@ -14,23 +14,23 @@ layer at (0,0) size 800x270 > RenderText {#text} at (572,20) size 5x19 > text run at (572,20) width 5: "." > RenderBlock {HR} at (0,48) size 784x2 [border: (1px inset #000000)] >- RenderBlock (anonymous) at (0,58) size 784x72 >+ RenderBlock (anonymous) at (0,58) size 784x68 > RenderText {#text} at (0,0) size 81x19 > text run at (0,0) width 81: "Simple case." > RenderBR {BR} at (80,0) size 1x19 >- RenderButton {BUTTON} at (2,22) size 24x20 [bgcolor=#FFFFFF02] [border: (1px solid #4C4C4C)] >- RenderBR {BR} at (28,26) size 0x19 >- RenderButton {INPUT} at (2,48) size 24x20 [bgcolor=#FFFFFF02] [border: (1px solid #4C4C4C)] >- RenderBR {BR} at (28,52) size 0x19 >- RenderBlock {HR} at (0,138) size 784x2 [border: (1px inset #000000)] >- RenderBlock (anonymous) at (0,148) size 784x106 >+ RenderButton {BUTTON} at (0,20) size 24x20 [bgcolor=#FFFFFF02] [border: (1px solid #4C4C4C)] >+ RenderBR {BR} at (24,24) size 0x19 >+ RenderButton {INPUT} at (0,44) size 24x20 [bgcolor=#FFFFFF02] [border: (1px solid #4C4C4C)] >+ RenderBR {BR} at (24,48) size 0x19 >+ RenderBlock {HR} at (0,134) size 784x2 [border: (1px inset #000000)] >+ RenderBlock (anonymous) at (0,144) size 784x102 > RenderText {#text} at (0,0) size 745x39 > text run at (0,0) width 745: "Empty <button> and <input type=button> with overflow: scroll;. The presence of the scrollbar should not shrink the" > text run at (0,20) width 45: "button." > RenderBR {BR} at (44,20) size 1x19 >- RenderBR {BR} at (43,40) size 0x19 >- RenderBR {BR} at (43,73) size 0x19 >-layer at (10,207) size 39x20 clip at (11,208) size 22x3 >- RenderButton {BUTTON} at (2,51) size 39x20 [bgcolor=#FFFFFF02] [border: (1px solid #4C4C4C)] >-layer at (10,240) size 39x20 clip at (11,241) size 22x3 >- RenderButton {INPUT} at (2,84) size 39x20 [bgcolor=#FFFFFF02] [border: (1px solid #4C4C4C)] >+ RenderBR {BR} at (39,40) size 0x19 >+ RenderBR {BR} at (39,71) size 0x19 >+layer at (8,203) size 39x20 clip at (9,204) size 22x3 >+ RenderButton {BUTTON} at (0,51) size 39x20 [bgcolor=#FFFFFF02] [border: (1px solid #4C4C4C)] >+layer at (8,234) size 39x20 clip at (9,235) size 22x3 >+ RenderButton {INPUT} at (0,82) size 39x20 [bgcolor=#FFFFFF02] [border: (1px solid #4C4C4C)] >diff --git a/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-161-expected.txt b/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-161-expected.txt >index 5c51cec31d77ae7214f06e2ff3ec91b6b2ee741a..0ca765af0c7dce548b415225db77a5049db1e92d 100644 >--- a/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-161-expected.txt >+++ b/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-161-expected.txt >@@ -1,20 +1,20 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x146 >- RenderBlock {HTML} at (0,0) size 800x146 >- RenderBody {BODY} at (8,16) size 784x122 >+layer at (0,0) size 800x143 >+ RenderBlock {HTML} at (0,0) size 800x143 >+ RenderBody {BODY} at (8,16) size 784x119 > RenderBlock {P} at (0,0) size 784x20 [bgcolor=#00FF00] > RenderText {#text} at (0,0) size 272x19 > text run at (0,0) width 272: "This line should have a green background." >- RenderBlock {P} at (0,36) size 784x44 [bgcolor=#00FF00] >+ RenderBlock {P} at (0,36) size 784x41 [bgcolor=#00FF00] > RenderText {#text} at (0,0) size 705x19 > text run at (0,0) width 705: "UAs may render the following element as a pop up menu. If so, please ensure the menu is unstyled (or green)." >- RenderMenuList {SELECT} at (2,22) size 97x20 [border: (1px solid #4C4C4C)] >+ RenderMenuList {SELECT} at (0,21) size 97x20 [border: (1px solid #4C4C4C)] > RenderBlock (anonymous) at (6,3) size 85x14 > RenderText at (0,0) size 57x14 > text run at (0,0) width 57: "This should" > RenderText {#text} at (0,0) size 0x0 >- RenderTable {TABLE} at (0,96) size 438x26 [bgcolor=#00FF00] >+ RenderTable {TABLE} at (0,93) size 438x26 [bgcolor=#00FF00] > RenderTableSection {TBODY} at (0,0) size 438x26 > RenderTableRow {TR} at (0,2) size 438x22 > RenderTableCell {TD} at (2,2) size 434x22 [r=0 c=0 rs=1 cs=1] >diff --git a/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-19b-expected.txt b/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-19b-expected.txt >index 11aed342b51ef2e3d590d317e1eadcef67da6f49..e6972f37dcd81512739a8e2717228909a9f4e968 100644 >--- a/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-19b-expected.txt >+++ b/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-19b-expected.txt >@@ -1,10 +1,10 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x56 >- RenderBlock {HTML} at (0,0) size 800x56 >- RenderBody {BODY} at (8,16) size 784x24 >- RenderBlock {P} at (0,0) size 784x24 >- RenderButton {BUTTON} at (2,2) size 449x20 [bgcolor=#FFFFFF02] [border: (1px solid #4C4C4C)] >+layer at (0,0) size 800x53 >+ RenderBlock {HTML} at (0,0) size 800x53 >+ RenderBody {BODY} at (8,16) size 784x21 >+ RenderBlock {P} at (0,0) size 784x21 >+ RenderButton {BUTTON} at (0,1) size 449x20 [bgcolor=#FFFFFF02] [border: (1px solid #4C4C4C)] > RenderBlock (anonymous) at (12,3) size 425x14 > RenderText {#text} at (0,0) size 425x14 > text run at (0,0) width 425: "Activating (e.g. holding the mouse button down on) this button should make it go green." >diff --git a/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-23-expected.txt b/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-23-expected.txt >index bda8ac1f90d97c6e1a181e6e1c2e400d9d341000..451948486f2629c39dc9aedc938f7f9dbe5b191e 100644 >--- a/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-23-expected.txt >+++ b/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-23-expected.txt >@@ -1,19 +1,19 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x78 >- RenderBlock {HTML} at (0,0) size 800x78 >- RenderBody {BODY} at (8,16) size 784x46 >- RenderBlock {P} at (0,0) size 784x46 >- RenderButton {BUTTON} at (2,3) size 229x16 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >+layer at (0,0) size 800x74 >+ RenderBlock {HTML} at (0,0) size 800x74 >+ RenderBody {BODY} at (8,16) size 784x42 >+ RenderBlock {P} at (0,0) size 784x42 >+ RenderButton {BUTTON} at (0,3) size 229x16 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] > RenderBlock (anonymous) at (12,1) size 205x14 > RenderText {#text} at (0,0) size 205x14 > text run at (0,0) width 205: "A button (enabled) with green background" >- RenderText {#text} at (232,0) size 5x19 >- text run at (232,0) width 5: " " >+ RenderText {#text} at (228,0) size 5x19 >+ text run at (228,0) width 5: " " > RenderBR {BR} at (0,0) size 0x0 >- RenderTextControl {INPUT} at (2,23) size 234x22 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >+ RenderTextControl {INPUT} at (0,21) size 234x22 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] > RenderText {#text} at (0,0) size 0x0 >-layer at (17,42) size 220x14 >+layer at (15,40) size 220x14 > RenderBlock {DIV} at (6,3) size 221x15 > RenderText {#text} at (0,0) size 216x14 > text run at (0,0) width 216: "a text area (enabled) with green background" >diff --git a/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-24-expected.txt b/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-24-expected.txt >index 632f1ff2f9d197b302b33e6a1a8e94c2b8e7ab96..de605d8969533970197172290f2e379a1060d508 100644 >--- a/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-24-expected.txt >+++ b/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-24-expected.txt >@@ -1,20 +1,20 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x78 >- RenderBlock {HTML} at (0,0) size 800x78 >- RenderBody {BODY} at (8,16) size 784x46 >- RenderBlock {P} at (0,0) size 784x46 >- RenderButton {BUTTON} at (2,3) size 231x16 [color=#808080] [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >+layer at (0,0) size 800x74 >+ RenderBlock {HTML} at (0,0) size 800x74 >+ RenderBody {BODY} at (8,16) size 784x42 >+ RenderBlock {P} at (0,0) size 784x42 >+ RenderButton {BUTTON} at (0,3) size 231x16 [color=#808080] [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] > RenderBlock (anonymous) at (12,1) size 207x14 > RenderText {#text} at (0,0) size 207x14 > text run at (0,0) width 207: "A button (disabled) with green background" >- RenderText {#text} at (234,0) size 5x19 >- text run at (234,0) width 5: " " >+ RenderText {#text} at (230,0) size 5x19 >+ text run at (230,0) width 5: " " > RenderBR {BR} at (0,0) size 0x0 > RenderText {#text} at (0,0) size 0x0 >-layer at (10,39) size 233x21 >- RenderTextControl {INPUT} at (2,23) size 234x22 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >-layer at (17,42) size 220x14 >+layer at (8,37) size 233x21 >+ RenderTextControl {INPUT} at (0,21) size 234x22 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >+layer at (15,40) size 220x14 > RenderBlock {DIV} at (6,3) size 221x15 [color=#545454] > RenderText {#text} at (0,0) size 218x14 > text run at (0,0) width 218: "a text area (disabled) with green background" >diff --git a/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-64-expected.txt b/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-64-expected.txt >index 40344e6ca01f2b8dc390e494756abfca4ce1368a..227abe1de1b857c2020bdc52e1cf0e73d3f375de 100644 >--- a/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-64-expected.txt >+++ b/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-64-expected.txt >@@ -1,16 +1,16 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x92 >- RenderBlock {HTML} at (0,0) size 800x92 >- RenderBody {BODY} at (8,16) size 784x60 >- RenderBlock {DIV} at (0,0) size 784x60 >+layer at (0,0) size 800x89 >+ RenderBlock {HTML} at (0,0) size 800x89 >+ RenderBody {BODY} at (8,16) size 784x57 >+ RenderBlock {DIV} at (0,0) size 784x57 > RenderBlock {P} at (0,0) size 784x20 [color=#00FF00] > RenderInline {A} at (0,0) size 286x19 [color=#000000] > RenderText {#text} at (0,0) size 286x19 > text run at (0,0) width 286: "This text should turn green while it is active." > RenderText {#text} at (0,0) size 0x0 >- RenderBlock {P} at (0,36) size 784x24 [color=#00FF00] >- RenderButton {BUTTON} at (2,2) size 237x20 [color=#000000] [bgcolor=#FFFFFF02] [border: (1px solid #4C4C4C)] >+ RenderBlock {P} at (0,36) size 784x21 [color=#00FF00] >+ RenderButton {BUTTON} at (0,1) size 237x20 [color=#000000] [bgcolor=#FFFFFF02] [border: (1px solid #4C4C4C)] > RenderBlock (anonymous) at (12,3) size 213x14 > RenderText {#text} at (0,0) size 213x14 > text run at (0,0) width 213: "This text should turn green while it is active." >diff --git a/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-68-expected.txt b/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-68-expected.txt >index 632f1ff2f9d197b302b33e6a1a8e94c2b8e7ab96..de605d8969533970197172290f2e379a1060d508 100644 >--- a/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-68-expected.txt >+++ b/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-68-expected.txt >@@ -1,20 +1,20 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x78 >- RenderBlock {HTML} at (0,0) size 800x78 >- RenderBody {BODY} at (8,16) size 784x46 >- RenderBlock {P} at (0,0) size 784x46 >- RenderButton {BUTTON} at (2,3) size 231x16 [color=#808080] [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >+layer at (0,0) size 800x74 >+ RenderBlock {HTML} at (0,0) size 800x74 >+ RenderBody {BODY} at (8,16) size 784x42 >+ RenderBlock {P} at (0,0) size 784x42 >+ RenderButton {BUTTON} at (0,3) size 231x16 [color=#808080] [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] > RenderBlock (anonymous) at (12,1) size 207x14 > RenderText {#text} at (0,0) size 207x14 > text run at (0,0) width 207: "A button (disabled) with green background" >- RenderText {#text} at (234,0) size 5x19 >- text run at (234,0) width 5: " " >+ RenderText {#text} at (230,0) size 5x19 >+ text run at (230,0) width 5: " " > RenderBR {BR} at (0,0) size 0x0 > RenderText {#text} at (0,0) size 0x0 >-layer at (10,39) size 233x21 >- RenderTextControl {INPUT} at (2,23) size 234x22 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >-layer at (17,42) size 220x14 >+layer at (8,37) size 233x21 >+ RenderTextControl {INPUT} at (0,21) size 234x22 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >+layer at (15,40) size 220x14 > RenderBlock {DIV} at (6,3) size 221x15 [color=#545454] > RenderText {#text} at (0,0) size 218x14 > text run at (0,0) width 218: "a text area (disabled) with green background" >diff --git a/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-69-expected.txt b/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-69-expected.txt >index bda8ac1f90d97c6e1a181e6e1c2e400d9d341000..451948486f2629c39dc9aedc938f7f9dbe5b191e 100644 >--- a/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-69-expected.txt >+++ b/LayoutTests/platform/ios/css3/selectors3/html/css3-modsel-69-expected.txt >@@ -1,19 +1,19 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x78 >- RenderBlock {HTML} at (0,0) size 800x78 >- RenderBody {BODY} at (8,16) size 784x46 >- RenderBlock {P} at (0,0) size 784x46 >- RenderButton {BUTTON} at (2,3) size 229x16 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >+layer at (0,0) size 800x74 >+ RenderBlock {HTML} at (0,0) size 800x74 >+ RenderBody {BODY} at (8,16) size 784x42 >+ RenderBlock {P} at (0,0) size 784x42 >+ RenderButton {BUTTON} at (0,3) size 229x16 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] > RenderBlock (anonymous) at (12,1) size 205x14 > RenderText {#text} at (0,0) size 205x14 > text run at (0,0) width 205: "A button (enabled) with green background" >- RenderText {#text} at (232,0) size 5x19 >- text run at (232,0) width 5: " " >+ RenderText {#text} at (228,0) size 5x19 >+ text run at (228,0) width 5: " " > RenderBR {BR} at (0,0) size 0x0 >- RenderTextControl {INPUT} at (2,23) size 234x22 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >+ RenderTextControl {INPUT} at (0,21) size 234x22 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] > RenderText {#text} at (0,0) size 0x0 >-layer at (17,42) size 220x14 >+layer at (15,40) size 220x14 > RenderBlock {DIV} at (6,3) size 221x15 > RenderText {#text} at (0,0) size 216x14 > text run at (0,0) width 216: "a text area (enabled) with green background" >diff --git a/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-161-expected.txt b/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-161-expected.txt >index 9a6e90db347578e025e1bab2faeb9d5c026184b4..5efd1b08b8ae3f9fb9695fad2e6838828a4b2df5 100644 >--- a/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-161-expected.txt >+++ b/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-161-expected.txt >@@ -1,20 +1,20 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x146 >- RenderBlock {html} at (0,0) size 800x146 >- RenderBody {body} at (8,16) size 784x122 >+layer at (0,0) size 800x143 >+ RenderBlock {html} at (0,0) size 800x143 >+ RenderBody {body} at (8,16) size 784x119 > RenderBlock {p} at (0,0) size 784x20 [bgcolor=#00FF00] > RenderText {#text} at (0,0) size 272x19 > text run at (0,0) width 272: "This line should have a green background." >- RenderBlock {p} at (0,36) size 784x44 [bgcolor=#00FF00] >+ RenderBlock {p} at (0,36) size 784x41 [bgcolor=#00FF00] > RenderText {#text} at (0,0) size 705x19 > text run at (0,0) width 705: "UAs may render the following element as a pop up menu. If so, please ensure the menu is unstyled (or green)." >- RenderMenuList {select} at (2,22) size 97x20 [border: (1px solid #4C4C4C)] >+ RenderMenuList {select} at (0,21) size 97x20 [border: (1px solid #4C4C4C)] > RenderBlock (anonymous) at (6,3) size 85x14 > RenderText at (0,0) size 57x14 > text run at (0,0) width 57: "This should" > RenderText {#text} at (0,0) size 0x0 >- RenderTable {table} at (0,96) size 438x26 [bgcolor=#00FF00] >+ RenderTable {table} at (0,93) size 438x26 [bgcolor=#00FF00] > RenderTableSection (anonymous) at (0,0) size 438x26 > RenderTableRow {tr} at (0,2) size 438x22 > RenderTableCell {td} at (2,2) size 434x22 [r=0 c=0 rs=1 cs=1] >diff --git a/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-19b-expected.txt b/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-19b-expected.txt >index d65dfbc15efda31180b92009d08058658c3093fa..268055af2b276b6a5dc4905771cdb116d9cb9360 100644 >--- a/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-19b-expected.txt >+++ b/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-19b-expected.txt >@@ -1,10 +1,10 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x56 >- RenderBlock {html} at (0,0) size 800x56 >- RenderBody {body} at (8,16) size 784x24 >- RenderBlock {p} at (0,0) size 784x24 >- RenderButton {button} at (2,2) size 449x20 [bgcolor=#FFFFFF02] [border: (1px solid #4C4C4C)] >+layer at (0,0) size 800x53 >+ RenderBlock {html} at (0,0) size 800x53 >+ RenderBody {body} at (8,16) size 784x21 >+ RenderBlock {p} at (0,0) size 784x21 >+ RenderButton {button} at (0,1) size 449x20 [bgcolor=#FFFFFF02] [border: (1px solid #4C4C4C)] > RenderBlock (anonymous) at (12,3) size 425x14 > RenderText {#text} at (0,0) size 425x14 > text run at (0,0) width 425: "Activating (e.g. holding the mouse button down on) this button should make it go green." >diff --git a/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-23-expected.txt b/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-23-expected.txt >index 01b2211e105e9787d278fd4d36a912c1e806d1ab..20ecf13bc3517ebc5918c80148e3539ac844ee38 100644 >--- a/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-23-expected.txt >+++ b/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-23-expected.txt >@@ -1,19 +1,19 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x78 >- RenderBlock {html} at (0,0) size 800x78 >- RenderBody {body} at (8,16) size 784x46 >- RenderBlock {p} at (0,0) size 784x46 >- RenderButton {button} at (2,3) size 229x16 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >+layer at (0,0) size 800x74 >+ RenderBlock {html} at (0,0) size 800x74 >+ RenderBody {body} at (8,16) size 784x42 >+ RenderBlock {p} at (0,0) size 784x42 >+ RenderButton {button} at (0,3) size 229x16 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] > RenderBlock (anonymous) at (12,1) size 205x14 > RenderText {#text} at (0,0) size 205x14 > text run at (0,0) width 205: "A button (enabled) with green background" >- RenderText {#text} at (232,0) size 5x19 >- text run at (232,0) width 5: " " >+ RenderText {#text} at (228,0) size 5x19 >+ text run at (228,0) width 5: " " > RenderBR {br} at (0,0) size 0x0 >- RenderTextControl {input} at (2,23) size 234x22 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >+ RenderTextControl {input} at (0,21) size 234x22 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] > RenderText {#text} at (0,0) size 0x0 >-layer at (17,42) size 220x14 >+layer at (15,40) size 220x14 > RenderBlock {div} at (6,3) size 221x15 > RenderText {#text} at (0,0) size 216x14 > text run at (0,0) width 216: "a text area (enabled) with green background" >diff --git a/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-24-expected.txt b/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-24-expected.txt >index 086b3ffd77e9f277c3bfe6cab4fe99d6e6d9a83e..c55ef4cf49d03a235610a32ab4df9612f648ab08 100644 >--- a/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-24-expected.txt >+++ b/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-24-expected.txt >@@ -1,20 +1,20 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x78 >- RenderBlock {html} at (0,0) size 800x78 >- RenderBody {body} at (8,16) size 784x46 >- RenderBlock {p} at (0,0) size 784x46 >- RenderButton {button} at (2,3) size 231x16 [color=#808080] [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >+layer at (0,0) size 800x74 >+ RenderBlock {html} at (0,0) size 800x74 >+ RenderBody {body} at (8,16) size 784x42 >+ RenderBlock {p} at (0,0) size 784x42 >+ RenderButton {button} at (0,3) size 231x16 [color=#808080] [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] > RenderBlock (anonymous) at (12,1) size 207x14 > RenderText {#text} at (0,0) size 207x14 > text run at (0,0) width 207: "A button (disabled) with green background" >- RenderText {#text} at (234,0) size 5x19 >- text run at (234,0) width 5: " " >+ RenderText {#text} at (230,0) size 5x19 >+ text run at (230,0) width 5: " " > RenderBR {br} at (0,0) size 0x0 > RenderText {#text} at (0,0) size 0x0 >-layer at (10,39) size 233x21 >- RenderTextControl {input} at (2,23) size 234x22 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >-layer at (17,42) size 220x14 >+layer at (8,37) size 233x21 >+ RenderTextControl {input} at (0,21) size 234x22 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >+layer at (15,40) size 220x14 > RenderBlock {div} at (6,3) size 221x15 [color=#545454] > RenderText {#text} at (0,0) size 218x14 > text run at (0,0) width 218: "a text area (disabled) with green background" >diff --git a/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-64-expected.txt b/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-64-expected.txt >index 6edaa7e152e875d7c18679a9a55d9b1226d5c7a1..8f3b2ac81e12ea755bc816b8214d242429137072 100644 >--- a/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-64-expected.txt >+++ b/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-64-expected.txt >@@ -1,16 +1,16 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x92 >- RenderBlock {html} at (0,0) size 800x92 >- RenderBody {body} at (8,16) size 784x60 >- RenderBlock {div} at (0,0) size 784x60 >+layer at (0,0) size 800x89 >+ RenderBlock {html} at (0,0) size 800x89 >+ RenderBody {body} at (8,16) size 784x57 >+ RenderBlock {div} at (0,0) size 784x57 > RenderBlock {p} at (0,0) size 784x20 [color=#00FF00] > RenderInline {a} at (0,0) size 286x19 [color=#000000] > RenderText {#text} at (0,0) size 286x19 > text run at (0,0) width 286: "This text should turn green while it is active." > RenderText {#text} at (0,0) size 0x0 >- RenderBlock {p} at (0,36) size 784x24 [color=#00FF00] >- RenderButton {button} at (2,2) size 237x20 [color=#000000] [bgcolor=#FFFFFF02] [border: (1px solid #4C4C4C)] >+ RenderBlock {p} at (0,36) size 784x21 [color=#00FF00] >+ RenderButton {button} at (0,1) size 237x20 [color=#000000] [bgcolor=#FFFFFF02] [border: (1px solid #4C4C4C)] > RenderBlock (anonymous) at (12,3) size 213x14 > RenderText {#text} at (0,0) size 213x14 > text run at (0,0) width 213: "This text should turn green while it is active." >diff --git a/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-68-expected.txt b/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-68-expected.txt >index 086b3ffd77e9f277c3bfe6cab4fe99d6e6d9a83e..c55ef4cf49d03a235610a32ab4df9612f648ab08 100644 >--- a/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-68-expected.txt >+++ b/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-68-expected.txt >@@ -1,20 +1,20 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x78 >- RenderBlock {html} at (0,0) size 800x78 >- RenderBody {body} at (8,16) size 784x46 >- RenderBlock {p} at (0,0) size 784x46 >- RenderButton {button} at (2,3) size 231x16 [color=#808080] [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >+layer at (0,0) size 800x74 >+ RenderBlock {html} at (0,0) size 800x74 >+ RenderBody {body} at (8,16) size 784x42 >+ RenderBlock {p} at (0,0) size 784x42 >+ RenderButton {button} at (0,3) size 231x16 [color=#808080] [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] > RenderBlock (anonymous) at (12,1) size 207x14 > RenderText {#text} at (0,0) size 207x14 > text run at (0,0) width 207: "A button (disabled) with green background" >- RenderText {#text} at (234,0) size 5x19 >- text run at (234,0) width 5: " " >+ RenderText {#text} at (230,0) size 5x19 >+ text run at (230,0) width 5: " " > RenderBR {br} at (0,0) size 0x0 > RenderText {#text} at (0,0) size 0x0 >-layer at (10,39) size 233x21 >- RenderTextControl {input} at (2,23) size 234x22 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >-layer at (17,42) size 220x14 >+layer at (8,37) size 233x21 >+ RenderTextControl {input} at (0,21) size 234x22 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >+layer at (15,40) size 220x14 > RenderBlock {div} at (6,3) size 221x15 [color=#545454] > RenderText {#text} at (0,0) size 218x14 > text run at (0,0) width 218: "a text area (disabled) with green background" >diff --git a/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-69-expected.txt b/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-69-expected.txt >index 01b2211e105e9787d278fd4d36a912c1e806d1ab..20ecf13bc3517ebc5918c80148e3539ac844ee38 100644 >--- a/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-69-expected.txt >+++ b/LayoutTests/platform/ios/css3/selectors3/xhtml/css3-modsel-69-expected.txt >@@ -1,19 +1,19 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x78 >- RenderBlock {html} at (0,0) size 800x78 >- RenderBody {body} at (8,16) size 784x46 >- RenderBlock {p} at (0,0) size 784x46 >- RenderButton {button} at (2,3) size 229x16 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >+layer at (0,0) size 800x74 >+ RenderBlock {html} at (0,0) size 800x74 >+ RenderBody {body} at (8,16) size 784x42 >+ RenderBlock {p} at (0,0) size 784x42 >+ RenderButton {button} at (0,3) size 229x16 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] > RenderBlock (anonymous) at (12,1) size 205x14 > RenderText {#text} at (0,0) size 205x14 > text run at (0,0) width 205: "A button (enabled) with green background" >- RenderText {#text} at (232,0) size 5x19 >- text run at (232,0) width 5: " " >+ RenderText {#text} at (228,0) size 5x19 >+ text run at (228,0) width 5: " " > RenderBR {br} at (0,0) size 0x0 >- RenderTextControl {input} at (2,23) size 234x22 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >+ RenderTextControl {input} at (0,21) size 234x22 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] > RenderText {#text} at (0,0) size 0x0 >-layer at (17,42) size 220x14 >+layer at (15,40) size 220x14 > RenderBlock {div} at (6,3) size 221x15 > RenderText {#text} at (0,0) size 216x14 > text run at (0,0) width 216: "a text area (enabled) with green background" >diff --git a/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-161-expected.txt b/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-161-expected.txt >index c792c266844744eb8b08c4812ba033a610186eb7..44c5d7ddd60ae8ffa5a036a61629163468550313 100644 >--- a/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-161-expected.txt >+++ b/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-161-expected.txt >@@ -1,19 +1,19 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x138 >- RenderBlock {test} at (0,0) size 800x138 >+layer at (0,0) size 800x135 >+ RenderBlock {test} at (0,0) size 800x135 > RenderBlock {p} at (0,16) size 800x20 [bgcolor=#00FF00] > RenderText {#text} at (0,0) size 272x19 > text run at (0,0) width 272: "This line should have a green background." >- RenderBlock {p} at (0,52) size 800x44 [bgcolor=#00FF00] >+ RenderBlock {p} at (0,52) size 800x41 [bgcolor=#00FF00] > RenderText {#text} at (0,0) size 705x19 > text run at (0,0) width 705: "UAs may render the following element as a pop up menu. If so, please ensure the menu is unstyled (or green)." >- RenderMenuList {select} at (2,22) size 97x20 [border: (1px solid #4C4C4C)] >+ RenderMenuList {select} at (0,21) size 97x20 [border: (1px solid #4C4C4C)] > RenderBlock (anonymous) at (6,3) size 85x14 > RenderText at (0,0) size 57x14 > text run at (0,0) width 57: "This should" > RenderText {#text} at (0,0) size 0x0 >- RenderTable {table} at (0,112) size 438x26 [bgcolor=#00FF00] >+ RenderTable {table} at (0,109) size 438x26 [bgcolor=#00FF00] > RenderTableSection (anonymous) at (0,0) size 438x26 > RenderTableRow {tr} at (0,2) size 438x22 > RenderTableCell {td} at (2,2) size 434x22 [r=0 c=0 rs=1 cs=1] >diff --git a/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-19b-expected.txt b/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-19b-expected.txt >index 6554e0084f1f3b509fe0409ac0b7f58513618c1c..da0efb9b9afadda54a61b7e50f83fdb778c0940a 100644 >--- a/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-19b-expected.txt >+++ b/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-19b-expected.txt >@@ -1,9 +1,9 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x56 >- RenderBlock {test} at (0,0) size 800x56 >- RenderBlock {p} at (0,16) size 800x24 >- RenderButton {button} at (2,2) size 449x20 [bgcolor=#FFFFFF02] [border: (1px solid #4C4C4C)] >+layer at (0,0) size 800x53 >+ RenderBlock {test} at (0,0) size 800x53 >+ RenderBlock {p} at (0,16) size 800x21 >+ RenderButton {button} at (0,1) size 449x20 [bgcolor=#FFFFFF02] [border: (1px solid #4C4C4C)] > RenderBlock (anonymous) at (12,3) size 425x14 > RenderText {#text} at (0,0) size 425x14 > text run at (0,0) width 425: "Activating (e.g. holding the mouse button down on) this button should make it go green." >diff --git a/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-23-expected.txt b/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-23-expected.txt >index 84e7423d247576a4ca6585d6e7939a910bfade90..8d5adb40027c0b959cc08c5f14ef3bbdfd559848 100644 >--- a/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-23-expected.txt >+++ b/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-23-expected.txt >@@ -1,18 +1,18 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x78 >- RenderBlock {test} at (0,0) size 800x78 >- RenderBlock {p} at (0,16) size 800x46 >- RenderButton {button} at (2,3) size 229x16 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >+layer at (0,0) size 800x74 >+ RenderBlock {test} at (0,0) size 800x74 >+ RenderBlock {p} at (0,16) size 800x42 >+ RenderButton {button} at (0,3) size 229x16 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] > RenderBlock (anonymous) at (12,1) size 205x14 > RenderText {#text} at (0,0) size 205x14 > text run at (0,0) width 205: "A button (enabled) with green background" >- RenderText {#text} at (232,0) size 5x19 >- text run at (232,0) width 5: " " >+ RenderText {#text} at (228,0) size 5x19 >+ text run at (228,0) width 5: " " > RenderBR {br} at (0,0) size 0x0 >- RenderTextControl {input} at (2,23) size 234x22 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >+ RenderTextControl {input} at (0,21) size 234x22 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] > RenderText {#text} at (0,0) size 0x0 >-layer at (9,42) size 220x14 >+layer at (7,40) size 220x14 > RenderBlock {div} at (6,3) size 221x15 > RenderText {#text} at (0,0) size 216x14 > text run at (0,0) width 216: "a text area (enabled) with green background" >diff --git a/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-24-expected.txt b/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-24-expected.txt >index bbe8830d81eda1b4a9cee6a0b638470790753308..edecd84dcd27b8511c06ccc6a15dd2fc4dc20236 100644 >--- a/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-24-expected.txt >+++ b/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-24-expected.txt >@@ -1,19 +1,19 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x78 >- RenderBlock {test} at (0,0) size 800x78 >- RenderBlock {p} at (0,16) size 800x46 >- RenderButton {button} at (2,3) size 231x16 [color=#808080] [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >+layer at (0,0) size 800x74 >+ RenderBlock {test} at (0,0) size 800x74 >+ RenderBlock {p} at (0,16) size 800x42 >+ RenderButton {button} at (0,3) size 231x16 [color=#808080] [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] > RenderBlock (anonymous) at (12,1) size 207x14 > RenderText {#text} at (0,0) size 207x14 > text run at (0,0) width 207: "A button (disabled) with green background" >- RenderText {#text} at (234,0) size 5x19 >- text run at (234,0) width 5: " " >+ RenderText {#text} at (230,0) size 5x19 >+ text run at (230,0) width 5: " " > RenderBR {br} at (0,0) size 0x0 > RenderText {#text} at (0,0) size 0x0 >-layer at (2,39) size 233x21 >- RenderTextControl {input} at (2,23) size 234x22 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >-layer at (9,42) size 220x14 >+layer at (0,37) size 233x21 >+ RenderTextControl {input} at (0,21) size 234x22 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >+layer at (7,40) size 220x14 > RenderBlock {div} at (6,3) size 221x15 [color=#545454] > RenderText {#text} at (0,0) size 218x14 > text run at (0,0) width 218: "a text area (disabled) with green background" >diff --git a/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-64-expected.txt b/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-64-expected.txt >index 0ddbcda6a2eb9c93d362e6d94ea3286453d4ae45..414f41a61fa3797647bcaab14ba8c22198526907 100644 >--- a/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-64-expected.txt >+++ b/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-64-expected.txt >@@ -1,15 +1,15 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x92 >- RenderBlock {test} at (0,0) size 800x92 >- RenderBlock {div} at (0,16) size 800x60 >+layer at (0,0) size 800x89 >+ RenderBlock {test} at (0,0) size 800x89 >+ RenderBlock {div} at (0,16) size 800x57 > RenderBlock {p} at (0,0) size 800x20 [color=#00FF00] > RenderInline {a} at (0,0) size 286x19 [color=#000000] > RenderText {#text} at (0,0) size 286x19 > text run at (0,0) width 286: "This text should turn green while it is active." > RenderText {#text} at (0,0) size 0x0 >- RenderBlock {p} at (0,36) size 800x24 [color=#00FF00] >- RenderButton {button} at (2,2) size 237x20 [color=#000000] [bgcolor=#FFFFFF02] [border: (1px solid #4C4C4C)] >+ RenderBlock {p} at (0,36) size 800x21 [color=#00FF00] >+ RenderButton {button} at (0,1) size 237x20 [color=#000000] [bgcolor=#FFFFFF02] [border: (1px solid #4C4C4C)] > RenderBlock (anonymous) at (12,3) size 213x14 > RenderText {#text} at (0,0) size 213x14 > text run at (0,0) width 213: "This text should turn green while it is active." >diff --git a/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-68-expected.txt b/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-68-expected.txt >index bbe8830d81eda1b4a9cee6a0b638470790753308..edecd84dcd27b8511c06ccc6a15dd2fc4dc20236 100644 >--- a/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-68-expected.txt >+++ b/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-68-expected.txt >@@ -1,19 +1,19 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x78 >- RenderBlock {test} at (0,0) size 800x78 >- RenderBlock {p} at (0,16) size 800x46 >- RenderButton {button} at (2,3) size 231x16 [color=#808080] [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >+layer at (0,0) size 800x74 >+ RenderBlock {test} at (0,0) size 800x74 >+ RenderBlock {p} at (0,16) size 800x42 >+ RenderButton {button} at (0,3) size 231x16 [color=#808080] [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] > RenderBlock (anonymous) at (12,1) size 207x14 > RenderText {#text} at (0,0) size 207x14 > text run at (0,0) width 207: "A button (disabled) with green background" >- RenderText {#text} at (234,0) size 5x19 >- text run at (234,0) width 5: " " >+ RenderText {#text} at (230,0) size 5x19 >+ text run at (230,0) width 5: " " > RenderBR {br} at (0,0) size 0x0 > RenderText {#text} at (0,0) size 0x0 >-layer at (2,39) size 233x21 >- RenderTextControl {input} at (2,23) size 234x22 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >-layer at (9,42) size 220x14 >+layer at (0,37) size 233x21 >+ RenderTextControl {input} at (0,21) size 234x22 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >+layer at (7,40) size 220x14 > RenderBlock {div} at (6,3) size 221x15 [color=#545454] > RenderText {#text} at (0,0) size 218x14 > text run at (0,0) width 218: "a text area (disabled) with green background" >diff --git a/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-69-expected.txt b/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-69-expected.txt >index 84e7423d247576a4ca6585d6e7939a910bfade90..8d5adb40027c0b959cc08c5f14ef3bbdfd559848 100644 >--- a/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-69-expected.txt >+++ b/LayoutTests/platform/ios/css3/selectors3/xml/css3-modsel-69-expected.txt >@@ -1,18 +1,18 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x78 >- RenderBlock {test} at (0,0) size 800x78 >- RenderBlock {p} at (0,16) size 800x46 >- RenderButton {button} at (2,3) size 229x16 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >+layer at (0,0) size 800x74 >+ RenderBlock {test} at (0,0) size 800x74 >+ RenderBlock {p} at (0,16) size 800x42 >+ RenderButton {button} at (0,3) size 229x16 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] > RenderBlock (anonymous) at (12,1) size 205x14 > RenderText {#text} at (0,0) size 205x14 > text run at (0,0) width 205: "A button (enabled) with green background" >- RenderText {#text} at (232,0) size 5x19 >- text run at (232,0) width 5: " " >+ RenderText {#text} at (228,0) size 5x19 >+ text run at (228,0) width 5: " " > RenderBR {br} at (0,0) size 0x0 >- RenderTextControl {input} at (2,23) size 234x22 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] >+ RenderTextControl {input} at (0,21) size 234x22 [bgcolor=#00FF00] [border: (1px solid #4C4C4C)] > RenderText {#text} at (0,0) size 0x0 >-layer at (9,42) size 220x14 >+layer at (7,40) size 220x14 > RenderBlock {div} at (6,3) size 221x15 > RenderText {#text} at (0,0) size 216x14 > text run at (0,0) width 216: "a text area (enabled) with green background" >diff --git a/LayoutTests/platform/ios/editing/pasteboard/4806874-expected.txt b/LayoutTests/platform/ios/editing/pasteboard/4806874-expected.txt >index 5f60b8ef56cf033e01a20b0359ab3df336b6cae9..7583644bd7ca14dab597cfbacc68c0660a0b8329 100644 >--- a/LayoutTests/platform/ios/editing/pasteboard/4806874-expected.txt >+++ b/LayoutTests/platform/ios/editing/pasteboard/4806874-expected.txt >@@ -7,10 +7,10 @@ layer at (0,0) size 800x600 > RenderText {#text} at (0,0) size 554x19 > text run at (0,0) width 252: "This tests for an infinite loop on Paste. " > text run at (251,0) width 303: "You should see 'Hello: ' and then an input field." >- RenderBlock {DIV} at (0,36) size 784x25 >- RenderText {#text} at (0,1) size 40x19 >- text run at (0,1) width 40: "Hello:" >- RenderTextControl {INPUT} at (41,2) size 137x22 [bgcolor=#FFFFFF] [border: (1px solid #4C4C4C)] >-layer at (56,49) size 122x14 >+ RenderBlock {DIV} at (0,36) size 784x22 >+ RenderText {#text} at (0,0) size 40x19 >+ text run at (0,0) width 40: "Hello:" >+ RenderTextControl {INPUT} at (39,1) size 137x22 [bgcolor=#FFFFFF] [border: (1px solid #4C4C4C)] >+layer at (54,48) size 122x14 > RenderBlock {DIV} at (6,3) size 123x15 > caret: position 1 of child 1 {INPUT} of child 2 {DIV} of body >diff --git a/LayoutTests/platform/mac/accessibility/form-control-value-settable-expected.txt b/LayoutTests/platform/mac/accessibility/form-control-value-settable-expected.txt >index f633269df9536ce422a9077815664c1d2bdf02a2..9946138e2433068410d5c2d85245782b57b9e7b5 100644 >--- a/LayoutTests/platform/mac/accessibility/form-control-value-settable-expected.txt >+++ b/LayoutTests/platform/mac/accessibility/form-control-value-settable-expected.txt >@@ -1,5 +1,5 @@ >- >- >+ >+ > This tests whether AXValue is writable for various form controls. > > On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". >diff --git a/LayoutTests/platform/mac/compositing/contents-opaque/control-layer-expected.txt b/LayoutTests/platform/mac/compositing/contents-opaque/control-layer-expected.txt >index fb91260d64a38a5620259305a281fff1f93999db..d52986aa8fd4deead29a6e2a3b655bf46babdcc9 100644 >--- a/LayoutTests/platform/mac/compositing/contents-opaque/control-layer-expected.txt >+++ b/LayoutTests/platform/mac/compositing/contents-opaque/control-layer-expected.txt >@@ -9,7 +9,7 @@ > (children 1 > (GraphicsLayer > (offsetFromRenderer width=-5 height=-4) >- (position 5.00 6.00) >+ (position 3.00 4.00) > (anchor 0.51 0.46) > (bounds 126.00 28.00) > (drawsContent 1) >diff --git a/LayoutTests/platform/mac/css3/flexbox/button-expected.txt b/LayoutTests/platform/mac/css3/flexbox/button-expected.txt >index 6a293aa36bf04d2c9a18ff85317ee7f84fa77abd..78ad39309b153552560b21c38c36a905fe7b6bc3 100644 >--- a/LayoutTests/platform/mac/css3/flexbox/button-expected.txt >+++ b/LayoutTests/platform/mac/css3/flexbox/button-expected.txt >@@ -1,8 +1,8 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x251 >- RenderBlock {HTML} at (0,0) size 800x251 >- RenderBody {BODY} at (8,8) size 784x235 >+layer at (0,0) size 800x243 >+ RenderBlock {HTML} at (0,0) size 800x243 >+ RenderBody {BODY} at (8,8) size 784x227 > RenderBlock (anonymous) at (0,0) size 784x36 > RenderText {#text} at (0,0) size 778x36 > text run at (0,0) width 410: "Test for empty buttons, which inherit from RenderFlexibleBox. " >@@ -14,23 +14,23 @@ layer at (0,0) size 800x251 > RenderText {#text} at (571,18) size 5x18 > text run at (571,18) width 5: "." > RenderBlock {HR} at (0,44) size 784x2 [border: (1px inset #000000)] >- RenderBlock (anonymous) at (0,54) size 784x59 >+ RenderBlock (anonymous) at (0,54) size 784x55 > RenderText {#text} at (0,0) size 81x18 > text run at (0,0) width 81: "Simple case." > RenderBR {BR} at (80,0) size 1x18 >- RenderButton {BUTTON} at (2,20) size 16x15 [color=#000000D8] [bgcolor=#C0C0C0] [border: none (2px outset #C0C0C0) none (2px outset #C0C0C0)] >- RenderBR {BR} at (20,18) size 0x18 >- RenderButton {INPUT} at (2,39) size 16x18 [color=#000000D8] [bgcolor=#C0C0C0] >- RenderBR {BR} at (20,40) size 0x18 >- RenderBlock {HR} at (0,121) size 784x2 [border: (1px inset #000000)] >- RenderBlock (anonymous) at (0,131) size 784x104 >+ RenderButton {BUTTON} at (0,20) size 16x15 [color=#000000D8] [bgcolor=#C0C0C0] [border: none (2px outset #C0C0C0) none (2px outset #C0C0C0)] >+ RenderBR {BR} at (16,18) size 0x18 >+ RenderButton {INPUT} at (0,36) size 16x18 [color=#000000D8] [bgcolor=#C0C0C0] >+ RenderBR {BR} at (16,37) size 0x18 >+ RenderBlock {HR} at (0,117) size 784x2 [border: (1px inset #000000)] >+ RenderBlock (anonymous) at (0,127) size 784x100 > RenderText {#text} at (0,0) size 744x36 > text run at (0,0) width 744: "Empty <button> and <input type=button> with overflow: scroll;. The presence of the scrollbar should not shrink the" > text run at (0,18) width 45: "button." > RenderBR {BR} at (44,18) size 1x18 >- RenderBR {BR} at (35,36) size 0x18 >- RenderBR {BR} at (35,70) size 0x18 >-layer at (10,187) size 31x20 clip at (12,187) size 12x5 >- RenderButton {BUTTON} at (2,48) size 31x20 [color=#000000D8] [bgcolor=#C0C0C0] [border: none (2px outset #C0C0C0) none (2px outset #C0C0C0)] >-layer at (10,223) size 31x18 clip at (10,223) size 16x3 >- RenderButton {INPUT} at (2,84) size 31x18 [color=#000000D8] [bgcolor=#C0C0C0] >+ RenderBR {BR} at (31,36) size 0x18 >+ RenderBR {BR} at (31,68) size 0x18 >+layer at (8,183) size 31x20 clip at (10,183) size 12x5 >+ RenderButton {BUTTON} at (0,48) size 31x20 [color=#000000D8] [bgcolor=#C0C0C0] [border: none (2px outset #C0C0C0) none (2px outset #C0C0C0)] >+layer at (8,217) size 31x18 clip at (8,217) size 16x3 >+ RenderButton {INPUT} at (0,82) size 31x18 [color=#000000D8] [bgcolor=#C0C0C0] >diff --git a/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-161-expected.txt b/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-161-expected.txt >index a153a16e10ffd70a13aa0142024210e907656654..5ea5ac49175c6eced26a767149adcb4a79e78d17 100644 >--- a/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-161-expected.txt >+++ b/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-161-expected.txt >@@ -1,20 +1,20 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x138 >- RenderBlock {HTML} at (0,0) size 800x138 >- RenderBody {BODY} at (8,16) size 784x114 >+layer at (0,0) size 800x135 >+ RenderBlock {HTML} at (0,0) size 800x135 >+ RenderBody {BODY} at (8,16) size 784x111 > RenderBlock {P} at (0,0) size 784x18 [bgcolor=#00FF00] > RenderText {#text} at (0,0) size 272x18 > text run at (0,0) width 272: "This line should have a green background." >- RenderBlock {P} at (0,34) size 784x40 [bgcolor=#00FF00] >+ RenderBlock {P} at (0,34) size 784x37 [bgcolor=#00FF00] > RenderText {#text} at (0,0) size 705x18 > text run at (0,0) width 705: "UAs may render the following element as a pop up menu. If so, please ensure the menu is unstyled (or green)." >- RenderMenuList {SELECT} at (2,20) size 99x18 [border: (1px solid #000000)] >+ RenderMenuList {SELECT} at (0,19) size 99x18 [border: (1px solid #000000)] > RenderBlock (anonymous) at (1,1) size 97x16 > RenderText at (8,1) size 61x13 > text run at (8,1) width 61: "This should" > RenderText {#text} at (0,0) size 0x0 >- RenderTable {TABLE} at (0,90) size 438x24 [bgcolor=#00FF00] >+ RenderTable {TABLE} at (0,87) size 438x24 [bgcolor=#00FF00] > RenderTableSection {TBODY} at (0,0) size 438x24 > RenderTableRow {TR} at (0,2) size 438x20 > RenderTableCell {TD} at (2,2) size 434x20 [r=0 c=0 rs=1 cs=1] >diff --git a/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-19b-expected.txt b/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-19b-expected.txt >index 9266e67b48368b6c829ad5e5cc823ea2c11fa70d..87017dcc491b4eda2c71e47437e3ad05c9f02fae 100644 >--- a/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-19b-expected.txt >+++ b/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-19b-expected.txt >@@ -1,10 +1,10 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x54 >- RenderBlock {HTML} at (0,0) size 800x54 >- RenderBody {BODY} at (8,16) size 784x22 >- RenderBlock {P} at (0,0) size 784x22 >- RenderButton {BUTTON} at (2,2) size 478x18 [color=#000000D8] [bgcolor=#C0C0C0] [border: none (2px outset #C0C0C0) none (2px outset #C0C0C0)] >+layer at (0,0) size 800x51 >+ RenderBlock {HTML} at (0,0) size 800x51 >+ RenderBody {BODY} at (8,16) size 784x19 >+ RenderBlock {P} at (0,0) size 784x19 >+ RenderButton {BUTTON} at (0,1) size 478x18 [color=#000000D8] [bgcolor=#C0C0C0] [border: none (2px outset #C0C0C0) none (2px outset #C0C0C0)] > RenderBlock (anonymous) at (8,2) size 462x13 > RenderText {#text} at (0,0) size 462x13 > text run at (0,0) width 462: "Activating (e.g. holding the mouse button down on) this button should make it go green." >diff --git a/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-23-expected.txt b/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-23-expected.txt >index b2d37309831d5cea448b714283cd3060291d4ae2..a7fcdd2ad05afb61b623dd760c5b887cc7b7b5e2 100644 >--- a/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-23-expected.txt >+++ b/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-23-expected.txt >@@ -1,19 +1,19 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x81 >- RenderBlock {HTML} at (0,0) size 800x81 >- RenderBody {BODY} at (8,16) size 784x49 >- RenderBlock {P} at (0,0) size 784x49 >- RenderButton {BUTTON} at (2,2) size 239x22 [color=#000000D8] [bgcolor=#00FF00] [border: (2px outset #C0C0C0)] >+layer at (0,0) size 800x73 >+ RenderBlock {HTML} at (0,0) size 800x73 >+ RenderBody {BODY} at (8,16) size 784x41 >+ RenderBlock {P} at (0,0) size 784x41 >+ RenderButton {BUTTON} at (0,0) size 239x22 [color=#000000D8] [bgcolor=#00FF00] [border: (2px outset #C0C0C0)] > RenderBlock (anonymous) at (8,4) size 223x13 > RenderText {#text} at (0,0) size 223x13 > text run at (0,0) width 223: "A button (enabled) with green background" >- RenderText {#text} at (242,3) size 5x18 >- text run at (242,3) width 5: " " >+ RenderText {#text} at (238,1) size 5x18 >+ text run at (238,1) width 5: " " > RenderBR {BR} at (0,0) size 0x0 >- RenderTextControl {INPUT} at (2,28) size 258x19 [bgcolor=#00FF00] [border: (2px inset #000000)] >+ RenderTextControl {INPUT} at (0,22) size 258x19 [bgcolor=#00FF00] [border: (2px inset #000000)] > RenderText {#text} at (0,0) size 0x0 >-layer at (13,47) size 252x13 >+layer at (11,41) size 252x13 > RenderBlock {DIV} at (3,3) size 252x13 > RenderText {#text} at (0,0) size 233x13 > text run at (0,0) width 233: "a text area (enabled) with green background" >diff --git a/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-24-expected.txt b/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-24-expected.txt >index e256a41dc40161ff2d026170004f84fa308960f9..612d1b6a4f8800d8f49fdb2e0995ef64693a0edb 100644 >--- a/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-24-expected.txt >+++ b/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-24-expected.txt >@@ -1,19 +1,19 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x81 >- RenderBlock {HTML} at (0,0) size 800x81 >- RenderBody {BODY} at (8,16) size 784x49 >- RenderBlock {P} at (0,0) size 784x49 >- RenderButton {BUTTON} at (2,2) size 241x22 [color=#0000003F] [bgcolor=#00FF00] [border: (2px outset #C0C0C0)] >+layer at (0,0) size 800x73 >+ RenderBlock {HTML} at (0,0) size 800x73 >+ RenderBody {BODY} at (8,16) size 784x41 >+ RenderBlock {P} at (0,0) size 784x41 >+ RenderButton {BUTTON} at (0,0) size 241x22 [color=#0000003F] [bgcolor=#00FF00] [border: (2px outset #C0C0C0)] > RenderBlock (anonymous) at (8,4) size 225x13 > RenderText {#text} at (0,0) size 225x13 > text run at (0,0) width 225: "A button (disabled) with green background" >- RenderText {#text} at (244,3) size 5x18 >- text run at (244,3) width 5: " " >+ RenderText {#text} at (240,1) size 5x18 >+ text run at (240,1) width 5: " " > RenderBR {BR} at (0,0) size 0x0 >- RenderTextControl {INPUT} at (2,28) size 258x19 [bgcolor=#00FF00] [border: (2px inset #000000)] >+ RenderTextControl {INPUT} at (0,22) size 258x19 [bgcolor=#00FF00] [border: (2px inset #000000)] > RenderText {#text} at (0,0) size 0x0 >-layer at (13,47) size 252x13 >+layer at (11,41) size 252x13 > RenderBlock {DIV} at (3,3) size 252x13 [color=#545454] > RenderText {#text} at (0,0) size 235x13 > text run at (0,0) width 235: "a text area (disabled) with green background" >diff --git a/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-64-expected.txt b/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-64-expected.txt >index 119d44d0a5eb8887529506d475168164660154c3..692302190cbb4a6530553fbd9dd9733396899580 100644 >--- a/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-64-expected.txt >+++ b/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-64-expected.txt >@@ -1,16 +1,16 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x88 >- RenderBlock {HTML} at (0,0) size 800x88 >- RenderBody {BODY} at (8,16) size 784x56 >- RenderBlock {DIV} at (0,0) size 784x56 >+layer at (0,0) size 800x85 >+ RenderBlock {HTML} at (0,0) size 800x85 >+ RenderBody {BODY} at (8,16) size 784x53 >+ RenderBlock {DIV} at (0,0) size 784x53 > RenderBlock {P} at (0,0) size 784x18 [color=#00FF00] > RenderInline {A} at (0,0) size 286x18 [color=#000000] > RenderText {#text} at (0,0) size 286x18 > text run at (0,0) width 286: "This text should turn green while it is active." > RenderText {#text} at (0,0) size 0x0 >- RenderBlock {P} at (0,34) size 784x22 [color=#00FF00] >- RenderButton {BUTTON} at (2,2) size 248x18 [color=#000000] [bgcolor=#C0C0C0] [border: none (2px outset #C0C0C0) none (2px outset #C0C0C0)] >+ RenderBlock {P} at (0,34) size 784x19 [color=#00FF00] >+ RenderButton {BUTTON} at (0,1) size 248x18 [color=#000000] [bgcolor=#C0C0C0] [border: none (2px outset #C0C0C0) none (2px outset #C0C0C0)] > RenderBlock (anonymous) at (8,2) size 232x13 > RenderText {#text} at (0,0) size 232x13 > text run at (0,0) width 232: "This text should turn green while it is active." >diff --git a/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-68-expected.txt b/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-68-expected.txt >index e256a41dc40161ff2d026170004f84fa308960f9..612d1b6a4f8800d8f49fdb2e0995ef64693a0edb 100644 >--- a/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-68-expected.txt >+++ b/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-68-expected.txt >@@ -1,19 +1,19 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x81 >- RenderBlock {HTML} at (0,0) size 800x81 >- RenderBody {BODY} at (8,16) size 784x49 >- RenderBlock {P} at (0,0) size 784x49 >- RenderButton {BUTTON} at (2,2) size 241x22 [color=#0000003F] [bgcolor=#00FF00] [border: (2px outset #C0C0C0)] >+layer at (0,0) size 800x73 >+ RenderBlock {HTML} at (0,0) size 800x73 >+ RenderBody {BODY} at (8,16) size 784x41 >+ RenderBlock {P} at (0,0) size 784x41 >+ RenderButton {BUTTON} at (0,0) size 241x22 [color=#0000003F] [bgcolor=#00FF00] [border: (2px outset #C0C0C0)] > RenderBlock (anonymous) at (8,4) size 225x13 > RenderText {#text} at (0,0) size 225x13 > text run at (0,0) width 225: "A button (disabled) with green background" >- RenderText {#text} at (244,3) size 5x18 >- text run at (244,3) width 5: " " >+ RenderText {#text} at (240,1) size 5x18 >+ text run at (240,1) width 5: " " > RenderBR {BR} at (0,0) size 0x0 >- RenderTextControl {INPUT} at (2,28) size 258x19 [bgcolor=#00FF00] [border: (2px inset #000000)] >+ RenderTextControl {INPUT} at (0,22) size 258x19 [bgcolor=#00FF00] [border: (2px inset #000000)] > RenderText {#text} at (0,0) size 0x0 >-layer at (13,47) size 252x13 >+layer at (11,41) size 252x13 > RenderBlock {DIV} at (3,3) size 252x13 [color=#545454] > RenderText {#text} at (0,0) size 235x13 > text run at (0,0) width 235: "a text area (disabled) with green background" >diff --git a/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-69-expected.txt b/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-69-expected.txt >index b2d37309831d5cea448b714283cd3060291d4ae2..a7fcdd2ad05afb61b623dd760c5b887cc7b7b5e2 100644 >--- a/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-69-expected.txt >+++ b/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-69-expected.txt >@@ -1,19 +1,19 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x81 >- RenderBlock {HTML} at (0,0) size 800x81 >- RenderBody {BODY} at (8,16) size 784x49 >- RenderBlock {P} at (0,0) size 784x49 >- RenderButton {BUTTON} at (2,2) size 239x22 [color=#000000D8] [bgcolor=#00FF00] [border: (2px outset #C0C0C0)] >+layer at (0,0) size 800x73 >+ RenderBlock {HTML} at (0,0) size 800x73 >+ RenderBody {BODY} at (8,16) size 784x41 >+ RenderBlock {P} at (0,0) size 784x41 >+ RenderButton {BUTTON} at (0,0) size 239x22 [color=#000000D8] [bgcolor=#00FF00] [border: (2px outset #C0C0C0)] > RenderBlock (anonymous) at (8,4) size 223x13 > RenderText {#text} at (0,0) size 223x13 > text run at (0,0) width 223: "A button (enabled) with green background" >- RenderText {#text} at (242,3) size 5x18 >- text run at (242,3) width 5: " " >+ RenderText {#text} at (238,1) size 5x18 >+ text run at (238,1) width 5: " " > RenderBR {BR} at (0,0) size 0x0 >- RenderTextControl {INPUT} at (2,28) size 258x19 [bgcolor=#00FF00] [border: (2px inset #000000)] >+ RenderTextControl {INPUT} at (0,22) size 258x19 [bgcolor=#00FF00] [border: (2px inset #000000)] > RenderText {#text} at (0,0) size 0x0 >-layer at (13,47) size 252x13 >+layer at (11,41) size 252x13 > RenderBlock {DIV} at (3,3) size 252x13 > RenderText {#text} at (0,0) size 233x13 > text run at (0,0) width 233: "a text area (enabled) with green background" >diff --git a/LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-19b-expected.txt b/LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-19b-expected.txt >index 597cdb9208108dbc9624de0fcf4326452b7c0703..5de1e66063dbafd7dda899cabf68e3b207a5174e 100644 >--- a/LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-19b-expected.txt >+++ b/LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-19b-expected.txt >@@ -1,10 +1,10 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x54 >- RenderBlock {html} at (0,0) size 800x54 >- RenderBody {body} at (8,16) size 784x22 >- RenderBlock {p} at (0,0) size 784x22 >- RenderButton {button} at (2,2) size 478x18 [color=#000000D8] [bgcolor=#C0C0C0] [border: none (2px outset #C0C0C0) none (2px outset #C0C0C0)] >+layer at (0,0) size 800x51 >+ RenderBlock {html} at (0,0) size 800x51 >+ RenderBody {body} at (8,16) size 784x19 >+ RenderBlock {p} at (0,0) size 784x19 >+ RenderButton {button} at (0,1) size 478x18 [color=#000000D8] [bgcolor=#C0C0C0] [border: none (2px outset #C0C0C0) none (2px outset #C0C0C0)] > RenderBlock (anonymous) at (8,2) size 462x13 > RenderText {#text} at (0,0) size 462x13 > text run at (0,0) width 462: "Activating (e.g. holding the mouse button down on) this button should make it go green." >diff --git a/LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-23-expected.txt b/LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-23-expected.txt >index 613d88c3b9bc0e6ae7c89c9ab52b7c08bff84365..134c271927f4b3765501d422724f92cfe32a86a5 100644 >--- a/LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-23-expected.txt >+++ b/LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-23-expected.txt >@@ -1,19 +1,19 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x81 >- RenderBlock {html} at (0,0) size 800x81 >- RenderBody {body} at (8,16) size 784x49 >- RenderBlock {p} at (0,0) size 784x49 >- RenderButton {button} at (2,2) size 239x22 [color=#000000D8] [bgcolor=#00FF00] [border: (2px outset #C0C0C0)] >+layer at (0,0) size 800x73 >+ RenderBlock {html} at (0,0) size 800x73 >+ RenderBody {body} at (8,16) size 784x41 >+ RenderBlock {p} at (0,0) size 784x41 >+ RenderButton {button} at (0,0) size 239x22 [color=#000000D8] [bgcolor=#00FF00] [border: (2px outset #C0C0C0)] > RenderBlock (anonymous) at (8,4) size 223x13 > RenderText {#text} at (0,0) size 223x13 > text run at (0,0) width 223: "A button (enabled) with green background" >- RenderText {#text} at (242,3) size 5x18 >- text run at (242,3) width 5: " " >+ RenderText {#text} at (238,1) size 5x18 >+ text run at (238,1) width 5: " " > RenderBR {br} at (0,0) size 0x0 >- RenderTextControl {input} at (2,28) size 258x19 [bgcolor=#00FF00] [border: (2px inset #000000)] >+ RenderTextControl {input} at (0,22) size 258x19 [bgcolor=#00FF00] [border: (2px inset #000000)] > RenderText {#text} at (0,0) size 0x0 >-layer at (13,47) size 252x13 >+layer at (11,41) size 252x13 > RenderBlock {div} at (3,3) size 252x13 > RenderText {#text} at (0,0) size 233x13 > text run at (0,0) width 233: "a text area (enabled) with green background" >diff --git a/LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-24-expected.txt b/LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-24-expected.txt >index 03f1e86a96a60dcf45fae15054771e5758cb43d3..c88be37ba855f6cd4debf6c4cf09ffa4bfe4b906 100644 >--- a/LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-24-expected.txt >+++ b/LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-24-expected.txt >@@ -1,19 +1,19 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x81 >- RenderBlock {html} at (0,0) size 800x81 >- RenderBody {body} at (8,16) size 784x49 >- RenderBlock {p} at (0,0) size 784x49 >- RenderButton {button} at (2,2) size 241x22 [color=#0000003F] [bgcolor=#00FF00] [border: (2px outset #C0C0C0)] >+layer at (0,0) size 800x73 >+ RenderBlock {html} at (0,0) size 800x73 >+ RenderBody {body} at (8,16) size 784x41 >+ RenderBlock {p} at (0,0) size 784x41 >+ RenderButton {button} at (0,0) size 241x22 [color=#0000003F] [bgcolor=#00FF00] [border: (2px outset #C0C0C0)] > RenderBlock (anonymous) at (8,4) size 225x13 > RenderText {#text} at (0,0) size 225x13 > text run at (0,0) width 225: "A button (disabled) with green background" >- RenderText {#text} at (244,3) size 5x18 >- text run at (244,3) width 5: " " >+ RenderText {#text} at (240,1) size 5x18 >+ text run at (240,1) width 5: " " > RenderBR {br} at (0,0) size 0x0 >- RenderTextControl {input} at (2,28) size 258x19 [bgcolor=#00FF00] [border: (2px inset #000000)] >+ RenderTextControl {input} at (0,22) size 258x19 [bgcolor=#00FF00] [border: (2px inset #000000)] > RenderText {#text} at (0,0) size 0x0 >-layer at (13,47) size 252x13 >+layer at (11,41) size 252x13 > RenderBlock {div} at (3,3) size 252x13 [color=#545454] > RenderText {#text} at (0,0) size 235x13 > text run at (0,0) width 235: "a text area (disabled) with green background" >diff --git a/LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-64-expected.txt b/LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-64-expected.txt >index 513fae421c418817ab6c5169f54fdf80adfa4fa0..1ba3d11205124e98deb813ee05d78b49c0b17cc0 100644 >--- a/LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-64-expected.txt >+++ b/LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-64-expected.txt >@@ -1,16 +1,16 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x88 >- RenderBlock {html} at (0,0) size 800x88 >- RenderBody {body} at (8,16) size 784x56 >- RenderBlock {div} at (0,0) size 784x56 >+layer at (0,0) size 800x85 >+ RenderBlock {html} at (0,0) size 800x85 >+ RenderBody {body} at (8,16) size 784x53 >+ RenderBlock {div} at (0,0) size 784x53 > RenderBlock {p} at (0,0) size 784x18 [color=#00FF00] > RenderInline {a} at (0,0) size 286x18 [color=#000000] > RenderText {#text} at (0,0) size 286x18 > text run at (0,0) width 286: "This text should turn green while it is active." > RenderText {#text} at (0,0) size 0x0 >- RenderBlock {p} at (0,34) size 784x22 [color=#00FF00] >- RenderButton {button} at (2,2) size 248x18 [color=#000000] [bgcolor=#C0C0C0] [border: none (2px outset #C0C0C0) none (2px outset #C0C0C0)] >+ RenderBlock {p} at (0,34) size 784x19 [color=#00FF00] >+ RenderButton {button} at (0,1) size 248x18 [color=#000000] [bgcolor=#C0C0C0] [border: none (2px outset #C0C0C0) none (2px outset #C0C0C0)] > RenderBlock (anonymous) at (8,2) size 232x13 > RenderText {#text} at (0,0) size 232x13 > text run at (0,0) width 232: "This text should turn green while it is active." >diff --git a/LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-68-expected.txt b/LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-68-expected.txt >index 03f1e86a96a60dcf45fae15054771e5758cb43d3..c88be37ba855f6cd4debf6c4cf09ffa4bfe4b906 100644 >--- a/LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-68-expected.txt >+++ b/LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-68-expected.txt >@@ -1,19 +1,19 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x81 >- RenderBlock {html} at (0,0) size 800x81 >- RenderBody {body} at (8,16) size 784x49 >- RenderBlock {p} at (0,0) size 784x49 >- RenderButton {button} at (2,2) size 241x22 [color=#0000003F] [bgcolor=#00FF00] [border: (2px outset #C0C0C0)] >+layer at (0,0) size 800x73 >+ RenderBlock {html} at (0,0) size 800x73 >+ RenderBody {body} at (8,16) size 784x41 >+ RenderBlock {p} at (0,0) size 784x41 >+ RenderButton {button} at (0,0) size 241x22 [color=#0000003F] [bgcolor=#00FF00] [border: (2px outset #C0C0C0)] > RenderBlock (anonymous) at (8,4) size 225x13 > RenderText {#text} at (0,0) size 225x13 > text run at (0,0) width 225: "A button (disabled) with green background" >- RenderText {#text} at (244,3) size 5x18 >- text run at (244,3) width 5: " " >+ RenderText {#text} at (240,1) size 5x18 >+ text run at (240,1) width 5: " " > RenderBR {br} at (0,0) size 0x0 >- RenderTextControl {input} at (2,28) size 258x19 [bgcolor=#00FF00] [border: (2px inset #000000)] >+ RenderTextControl {input} at (0,22) size 258x19 [bgcolor=#00FF00] [border: (2px inset #000000)] > RenderText {#text} at (0,0) size 0x0 >-layer at (13,47) size 252x13 >+layer at (11,41) size 252x13 > RenderBlock {div} at (3,3) size 252x13 [color=#545454] > RenderText {#text} at (0,0) size 235x13 > text run at (0,0) width 235: "a text area (disabled) with green background" >diff --git a/LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-69-expected.txt b/LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-69-expected.txt >index 613d88c3b9bc0e6ae7c89c9ab52b7c08bff84365..134c271927f4b3765501d422724f92cfe32a86a5 100644 >--- a/LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-69-expected.txt >+++ b/LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-69-expected.txt >@@ -1,19 +1,19 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x81 >- RenderBlock {html} at (0,0) size 800x81 >- RenderBody {body} at (8,16) size 784x49 >- RenderBlock {p} at (0,0) size 784x49 >- RenderButton {button} at (2,2) size 239x22 [color=#000000D8] [bgcolor=#00FF00] [border: (2px outset #C0C0C0)] >+layer at (0,0) size 800x73 >+ RenderBlock {html} at (0,0) size 800x73 >+ RenderBody {body} at (8,16) size 784x41 >+ RenderBlock {p} at (0,0) size 784x41 >+ RenderButton {button} at (0,0) size 239x22 [color=#000000D8] [bgcolor=#00FF00] [border: (2px outset #C0C0C0)] > RenderBlock (anonymous) at (8,4) size 223x13 > RenderText {#text} at (0,0) size 223x13 > text run at (0,0) width 223: "A button (enabled) with green background" >- RenderText {#text} at (242,3) size 5x18 >- text run at (242,3) width 5: " " >+ RenderText {#text} at (238,1) size 5x18 >+ text run at (238,1) width 5: " " > RenderBR {br} at (0,0) size 0x0 >- RenderTextControl {input} at (2,28) size 258x19 [bgcolor=#00FF00] [border: (2px inset #000000)] >+ RenderTextControl {input} at (0,22) size 258x19 [bgcolor=#00FF00] [border: (2px inset #000000)] > RenderText {#text} at (0,0) size 0x0 >-layer at (13,47) size 252x13 >+layer at (11,41) size 252x13 > RenderBlock {div} at (3,3) size 252x13 > RenderText {#text} at (0,0) size 233x13 > text run at (0,0) width 233: "a text area (enabled) with green background" >diff --git a/LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-19b-expected.txt b/LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-19b-expected.txt >index be05431ed73b0ff35b72e0081f44ee2a61cf4304..e3d70e5428fd90db3e88ad3346d1e5520f8b1d2c 100644 >--- a/LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-19b-expected.txt >+++ b/LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-19b-expected.txt >@@ -1,9 +1,9 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x54 >- RenderBlock {test} at (0,0) size 800x54 >- RenderBlock {p} at (0,16) size 800x22 >- RenderButton {button} at (2,2) size 478x18 [color=#000000D8] [bgcolor=#C0C0C0] [border: none (2px outset #C0C0C0) none (2px outset #C0C0C0)] >+layer at (0,0) size 800x51 >+ RenderBlock {test} at (0,0) size 800x51 >+ RenderBlock {p} at (0,16) size 800x19 >+ RenderButton {button} at (0,1) size 478x18 [color=#000000D8] [bgcolor=#C0C0C0] [border: none (2px outset #C0C0C0) none (2px outset #C0C0C0)] > RenderBlock (anonymous) at (8,2) size 462x13 > RenderText {#text} at (0,0) size 462x13 > text run at (0,0) width 462: "Activating (e.g. holding the mouse button down on) this button should make it go green." >diff --git a/LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-23-expected.txt b/LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-23-expected.txt >index 1a6f1d53d9d0047be33acf13336b0ff4afad4de7..7eaec17a7a0dd3c2efcb4cdd3b6b0aa09a4eaf3c 100644 >--- a/LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-23-expected.txt >+++ b/LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-23-expected.txt >@@ -1,18 +1,18 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x81 >- RenderBlock {test} at (0,0) size 800x81 >- RenderBlock {p} at (0,16) size 800x49 >- RenderButton {button} at (2,2) size 239x22 [color=#000000D8] [bgcolor=#00FF00] [border: (2px outset #C0C0C0)] >+layer at (0,0) size 800x73 >+ RenderBlock {test} at (0,0) size 800x73 >+ RenderBlock {p} at (0,16) size 800x41 >+ RenderButton {button} at (0,0) size 239x22 [color=#000000D8] [bgcolor=#00FF00] [border: (2px outset #C0C0C0)] > RenderBlock (anonymous) at (8,4) size 223x13 > RenderText {#text} at (0,0) size 223x13 > text run at (0,0) width 223: "A button (enabled) with green background" >- RenderText {#text} at (242,3) size 5x18 >- text run at (242,3) width 5: " " >+ RenderText {#text} at (238,1) size 5x18 >+ text run at (238,1) width 5: " " > RenderBR {br} at (0,0) size 0x0 >- RenderTextControl {input} at (2,28) size 258x19 [bgcolor=#00FF00] [border: (2px inset #000000)] >+ RenderTextControl {input} at (0,22) size 258x19 [bgcolor=#00FF00] [border: (2px inset #000000)] > RenderText {#text} at (0,0) size 0x0 >-layer at (5,47) size 252x13 >+layer at (3,41) size 252x13 > RenderBlock {div} at (3,3) size 252x13 > RenderText {#text} at (0,0) size 233x13 > text run at (0,0) width 233: "a text area (enabled) with green background" >diff --git a/LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-24-expected.txt b/LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-24-expected.txt >index e885ee109f3f17b003df0c4fa597a5d63b3f3112..521653384547e8ab28eebdde6534b0af4bb83c97 100644 >--- a/LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-24-expected.txt >+++ b/LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-24-expected.txt >@@ -1,18 +1,18 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x81 >- RenderBlock {test} at (0,0) size 800x81 >- RenderBlock {p} at (0,16) size 800x49 >- RenderButton {button} at (2,2) size 241x22 [color=#0000003F] [bgcolor=#00FF00] [border: (2px outset #C0C0C0)] >+layer at (0,0) size 800x73 >+ RenderBlock {test} at (0,0) size 800x73 >+ RenderBlock {p} at (0,16) size 800x41 >+ RenderButton {button} at (0,0) size 241x22 [color=#0000003F] [bgcolor=#00FF00] [border: (2px outset #C0C0C0)] > RenderBlock (anonymous) at (8,4) size 225x13 > RenderText {#text} at (0,0) size 225x13 > text run at (0,0) width 225: "A button (disabled) with green background" >- RenderText {#text} at (244,3) size 5x18 >- text run at (244,3) width 5: " " >+ RenderText {#text} at (240,1) size 5x18 >+ text run at (240,1) width 5: " " > RenderBR {br} at (0,0) size 0x0 >- RenderTextControl {input} at (2,28) size 258x19 [bgcolor=#00FF00] [border: (2px inset #000000)] >+ RenderTextControl {input} at (0,22) size 258x19 [bgcolor=#00FF00] [border: (2px inset #000000)] > RenderText {#text} at (0,0) size 0x0 >-layer at (5,47) size 252x13 >+layer at (3,41) size 252x13 > RenderBlock {div} at (3,3) size 252x13 [color=#545454] > RenderText {#text} at (0,0) size 235x13 > text run at (0,0) width 235: "a text area (disabled) with green background" >diff --git a/LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-64-expected.txt b/LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-64-expected.txt >index 3fc21a0a7f25fc94593cbc83fc1831931b449ad7..3333f5b8d0b59f480284525c41db3560753f1ce2 100644 >--- a/LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-64-expected.txt >+++ b/LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-64-expected.txt >@@ -1,15 +1,15 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x88 >- RenderBlock {test} at (0,0) size 800x88 >- RenderBlock {div} at (0,16) size 800x56 >+layer at (0,0) size 800x85 >+ RenderBlock {test} at (0,0) size 800x85 >+ RenderBlock {div} at (0,16) size 800x53 > RenderBlock {p} at (0,0) size 800x18 [color=#00FF00] > RenderInline {a} at (0,0) size 286x18 [color=#000000] > RenderText {#text} at (0,0) size 286x18 > text run at (0,0) width 286: "This text should turn green while it is active." > RenderText {#text} at (0,0) size 0x0 >- RenderBlock {p} at (0,34) size 800x22 [color=#00FF00] >- RenderButton {button} at (2,2) size 248x18 [color=#000000] [bgcolor=#C0C0C0] [border: none (2px outset #C0C0C0) none (2px outset #C0C0C0)] >+ RenderBlock {p} at (0,34) size 800x19 [color=#00FF00] >+ RenderButton {button} at (0,1) size 248x18 [color=#000000] [bgcolor=#C0C0C0] [border: none (2px outset #C0C0C0) none (2px outset #C0C0C0)] > RenderBlock (anonymous) at (8,2) size 232x13 > RenderText {#text} at (0,0) size 232x13 > text run at (0,0) width 232: "This text should turn green while it is active." >diff --git a/LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-68-expected.txt b/LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-68-expected.txt >index e885ee109f3f17b003df0c4fa597a5d63b3f3112..521653384547e8ab28eebdde6534b0af4bb83c97 100644 >--- a/LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-68-expected.txt >+++ b/LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-68-expected.txt >@@ -1,18 +1,18 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x81 >- RenderBlock {test} at (0,0) size 800x81 >- RenderBlock {p} at (0,16) size 800x49 >- RenderButton {button} at (2,2) size 241x22 [color=#0000003F] [bgcolor=#00FF00] [border: (2px outset #C0C0C0)] >+layer at (0,0) size 800x73 >+ RenderBlock {test} at (0,0) size 800x73 >+ RenderBlock {p} at (0,16) size 800x41 >+ RenderButton {button} at (0,0) size 241x22 [color=#0000003F] [bgcolor=#00FF00] [border: (2px outset #C0C0C0)] > RenderBlock (anonymous) at (8,4) size 225x13 > RenderText {#text} at (0,0) size 225x13 > text run at (0,0) width 225: "A button (disabled) with green background" >- RenderText {#text} at (244,3) size 5x18 >- text run at (244,3) width 5: " " >+ RenderText {#text} at (240,1) size 5x18 >+ text run at (240,1) width 5: " " > RenderBR {br} at (0,0) size 0x0 >- RenderTextControl {input} at (2,28) size 258x19 [bgcolor=#00FF00] [border: (2px inset #000000)] >+ RenderTextControl {input} at (0,22) size 258x19 [bgcolor=#00FF00] [border: (2px inset #000000)] > RenderText {#text} at (0,0) size 0x0 >-layer at (5,47) size 252x13 >+layer at (3,41) size 252x13 > RenderBlock {div} at (3,3) size 252x13 [color=#545454] > RenderText {#text} at (0,0) size 235x13 > text run at (0,0) width 235: "a text area (disabled) with green background" >diff --git a/LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-69-expected.txt b/LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-69-expected.txt >index 1a6f1d53d9d0047be33acf13336b0ff4afad4de7..7eaec17a7a0dd3c2efcb4cdd3b6b0aa09a4eaf3c 100644 >--- a/LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-69-expected.txt >+++ b/LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-69-expected.txt >@@ -1,18 +1,18 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x81 >- RenderBlock {test} at (0,0) size 800x81 >- RenderBlock {p} at (0,16) size 800x49 >- RenderButton {button} at (2,2) size 239x22 [color=#000000D8] [bgcolor=#00FF00] [border: (2px outset #C0C0C0)] >+layer at (0,0) size 800x73 >+ RenderBlock {test} at (0,0) size 800x73 >+ RenderBlock {p} at (0,16) size 800x41 >+ RenderButton {button} at (0,0) size 239x22 [color=#000000D8] [bgcolor=#00FF00] [border: (2px outset #C0C0C0)] > RenderBlock (anonymous) at (8,4) size 223x13 > RenderText {#text} at (0,0) size 223x13 > text run at (0,0) width 223: "A button (enabled) with green background" >- RenderText {#text} at (242,3) size 5x18 >- text run at (242,3) width 5: " " >+ RenderText {#text} at (238,1) size 5x18 >+ text run at (238,1) width 5: " " > RenderBR {br} at (0,0) size 0x0 >- RenderTextControl {input} at (2,28) size 258x19 [bgcolor=#00FF00] [border: (2px inset #000000)] >+ RenderTextControl {input} at (0,22) size 258x19 [bgcolor=#00FF00] [border: (2px inset #000000)] > RenderText {#text} at (0,0) size 0x0 >-layer at (5,47) size 252x13 >+layer at (3,41) size 252x13 > RenderBlock {div} at (3,3) size 252x13 > RenderText {#text} at (0,0) size 233x13 > text run at (0,0) width 233: "a text area (enabled) with green background" >diff --git a/LayoutTests/platform/mac/editing/input/caret-at-the-edge-of-input-expected.txt b/LayoutTests/platform/mac/editing/input/caret-at-the-edge-of-input-expected.txt >index ed29a29cfc09ffede1d53bd1407ac5d56b0608c7..132235e1f3f32bd449beede9fc8c70733d47cd04 100644 >--- a/LayoutTests/platform/mac/editing/input/caret-at-the-edge-of-input-expected.txt >+++ b/LayoutTests/platform/mac/editing/input/caret-at-the-edge-of-input-expected.txt >@@ -1,16 +1,16 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x57 >- RenderBlock {HTML} at (0,0) size 800x57 >- RenderBody {BODY} at (8,8) size 784x41 >+layer at (0,0) size 800x53 >+ RenderBlock {HTML} at (0,0) size 800x53 >+ RenderBody {BODY} at (8,8) size 784x37 > RenderBlock {DIV} at (0,0) size 784x18 > RenderText {#text} at (0,0) size 692x18 > text run at (0,0) width 692: "When the caret reaches the edge of the input box, on the next input if must jump to the center of the control." >- RenderBlock (anonymous) at (0,18) size 784x23 >- RenderTextControl {INPUT} at (2,2) size 76x19 [bgcolor=#FFFFFF] [border: (2px inset #000000)] >+ RenderBlock (anonymous) at (0,18) size 784x19 >+ RenderTextControl {INPUT} at (0,0) size 76x19 [bgcolor=#FFFFFF] [border: (2px inset #000000)] > RenderText {#text} at (0,0) size 0x0 > RenderText {#text} at (0,0) size 0x0 >-layer at (13,31) size 70x13 scrollX 40 scrollWidth 282 >+layer at (11,29) size 70x13 scrollX 40 scrollWidth 282 > RenderBlock {DIV} at (3,3) size 70x13 > RenderText {#text} at (0,0) size 282x13 > text run at (0,0) width 282: "012345678901012345678901234567890123456789" >diff --git a/LayoutTests/platform/mac/editing/input/reveal-caret-of-multiline-input-expected.txt b/LayoutTests/platform/mac/editing/input/reveal-caret-of-multiline-input-expected.txt >index 9806058202451f4fd500809350a67f7018dee74d..7c057858b2453065333c988d819f5b0e29c635f3 100644 >--- a/LayoutTests/platform/mac/editing/input/reveal-caret-of-multiline-input-expected.txt >+++ b/LayoutTests/platform/mac/editing/input/reveal-caret-of-multiline-input-expected.txt >@@ -1,16 +1,16 @@ > layer at (0,0) size 800x600 > RenderView at (0,0) size 800x600 >-layer at (0,0) size 800x178 >- RenderBlock {HTML} at (0,0) size 800x178 >- RenderBody {BODY} at (8,8) size 784x162 >+layer at (0,0) size 800x174 >+ RenderBlock {HTML} at (0,0) size 800x174 >+ RenderBody {BODY} at (8,8) size 784x158 > RenderBlock {DIV} at (0,0) size 784x18 > RenderText {#text} at (0,0) size 610x18 > text run at (0,0) width 610: "When the caret is scrolled out, on starting typing it must be brought to the center of the control." >- RenderBlock (anonymous) at (0,18) size 784x144 >+ RenderBlock (anonymous) at (0,18) size 784x140 > RenderText {#text} at (0,0) size 0x0 > RenderText {#text} at (0,0) size 0x0 >-layer at (10,28) size 91x136 clip at (11,29) size 74x134 scrollY 99 scrollHeight 420 >- RenderTextControl {TEXTAREA} at (2,2) size 91x136 [bgcolor=#FFFFFF] [border: (1px solid #000000)] >+layer at (8,26) size 91x136 clip at (9,27) size 74x134 scrollY 99 scrollHeight 420 >+ RenderTextControl {TEXTAREA} at (0,0) size 91x136 [bgcolor=#FFFFFF] [border: (1px solid #000000)] > RenderBlock {DIV} at (3,3) size 70x416 > RenderText {#text} at (0,0) size 20x403 > text run at (0,0) width 14: "00" >diff --git a/LayoutTests/platform/mac/editing/inserting/4960120-1-expected.txt b/LayoutTests/platform/mac/editing/inserting/4960120-1-expected.txt >index 6eab93cba825ddd16347a04b95e483159213655b..9169a01c35ce814d08c6a9581b1bb2fe32a0a44a 100644 >--- a/LayoutTests/platform/mac/editing/inserting/4960120-1-expected.txt >+++ b/LayoutTests/platform/mac/editing/inserting/4960120-1-expected.txt >@@ -6,11 +6,11 @@ layer at (0,0) size 800x600 > RenderBlock {P} at (0,0) size 784x18 > RenderText {#text} at (0,0) size 517x18 > text run at (0,0) width 517: "This tests for a bug where the first newline entered into a text area would be lost." >- RenderBlock (anonymous) at (0,34) size 784x36 >+ RenderBlock (anonymous) at (0,34) size 784x32 > RenderText {#text} at (0,0) size 0x0 > RenderText {#text} at (0,0) size 0x0 >-layer at (10,44) size 161x32 clip at (11,45) size 159x30 >- RenderTextControl {TEXTAREA} at (2,2) size 161x32 [bgcolor=#FFFFFF] [border: (1px solid #000000)] >+layer at (8,42) size 161x32 clip at (9,43) size 159x30 >+ RenderTextControl {TEXTAREA} at (0,0) size 161x32 [bgcolor=#FFFFFF] [border: (1px solid #000000)] > RenderBlock {DIV} at (3,3) size 155x26 > RenderText {#text} at (0,0) size 0x13 > text run at (0,0) width 0: " " >diff --git a/LayoutTests/platform/mac/editing/inserting/before-after-input-element-expected.txt b/LayoutTests/platform/mac/editing/inserting/before-after-input-element-expected.txt >index 9e50c386ada7059f9ed27489fc4c5022889e0caa..fdf68b4d9f81f7947be5ea2112040fd702a2a3b0 100644 >--- a/LayoutTests/platform/mac/editing/inserting/before-after-input-element-expected.txt >+++ b/LayoutTests/platform/mac/editing/inserting/before-after-input-element-expected.txt >@@ -16,12 +16,12 @@ layer at (0,0) size 800x600 > RenderBlock {P} at (0,0) size 784x18 > RenderText {#text} at (0,0) size 343x18 > text run at (0,0) width 343: "This tests text insertion before/after an input element." >- RenderBlock {DIV} at (0,34) size 784x23 >- RenderText {#text} at (0,2) size 36x18 >- text run at (0,2) width 36: "Hello" >- RenderTextControl {INPUT} at (37,2) size 147x19 [bgcolor=#FFFFFF] [border: (2px inset #000000)] >- RenderText {#text} at (185,2) size 41x18 >- text run at (185,2) width 41: "World" >-layer at (49,47) size 140x13 backgroundClip at (49,47) size 139x13 clip at (49,47) size 139x13 >+ RenderBlock {DIV} at (0,34) size 784x19 >+ RenderText {#text} at (0,0) size 36x18 >+ text run at (0,0) width 36: "Hello" >+ RenderTextControl {INPUT} at (35,0) size 147x19 [bgcolor=#FFFFFF] [border: (2px inset #000000)] >+ RenderText {#text} at (181,0) size 41x18 >+ text run at (181,0) width 41: "World" >+layer at (47,45) size 140x13 backgroundClip at (47,45) size 139x13 clip at (47,45) size 139x13 > RenderBlock {DIV} at (3,3) size 140x13 > caret: position 5 of child 2 {#text} of child 2 {DIV} of body >diff --git a/LayoutTests/platform/mac/editing/mac/spelling/autocorrection-at-beginning-of-word-1-expected.txt b/LayoutTests/platform/mac/editing/mac/spelling/autocorrection-at-beginning-of-word-1-expected.txt >index 8fefccb9bf56f8c9f919cae4ef5062a2bd087ccf..f0b908058c33a67ef8a5c6e1e8839a0bc0331af7 100644 >--- a/LayoutTests/platform/mac/editing/mac/spelling/autocorrection-at-beginning-of-word-1-expected.txt >+++ b/LayoutTests/platform/mac/editing/mac/spelling/autocorrection-at-beginning-of-word-1-expected.txt >@@ -25,11 +25,11 @@ layer at (0,0) size 800x600 > text run at (0,0) width 784: "Note, this test can fail due to user specific spell checking data. If the user has previously dismissed 'message' as the correct" > text run at (0,18) width 747: "spelling of 'mesage' several times, the spell checker will not provide 'notational' as a suggestion anymore. To fix this," > text run at (0,36) width 242: "remove all files in ~/Library/Spelling." >- RenderBlock (anonymous) at (0,122) size 784x140 >+ RenderBlock (anonymous) at (0,122) size 784x136 > RenderText {#text} at (0,0) size 0x0 > RenderText {#text} at (0,0) size 0x0 >-layer at (10,132) size 581x136 clip at (11,133) size 579x134 >- RenderTextControl {TEXTAREA} at (2,2) size 581x136 [bgcolor=#FFFFFF] [border: (1px solid #000000)] >+layer at (8,130) size 581x136 clip at (9,131) size 579x134 >+ RenderTextControl {TEXTAREA} at (0,0) size 581x136 [bgcolor=#FFFFFF] [border: (1px solid #000000)] > RenderBlock {DIV} at (3,3) size 575x13 > RenderText {#text} at (0,0) size 54x13 > text run at (0,0) width 54: "mesage m" >diff --git a/LayoutTests/platform/mac/editing/mac/spelling/autocorrection-at-beginning-of-word-2-expected.txt b/LayoutTests/platform/mac/editing/mac/spelling/autocorrection-at-beginning-of-word-2-expected.txt >index 7ed31a0529bc3c682fa5506777060b8d1ca70388..b6a7d7f390ed11d63669c01d9b92d3c5ed7ad647 100644 >--- a/LayoutTests/platform/mac/editing/mac/spelling/autocorrection-at-beginning-of-word-2-expected.txt >+++ b/LayoutTests/platform/mac/editing/mac/spelling/autocorrection-at-beginning-of-word-2-expected.txt >@@ -25,11 +25,11 @@ layer at (0,0) size 800x600 > text run at (0,0) width 784: "Note, this test can fail due to user specific spell checking data. If the user has previously dismissed 'message' as the correct" > text run at (0,18) width 747: "spelling of 'mesage' several times, the spell checker will not provide 'notational' as a suggestion anymore. To fix this," > text run at (0,36) width 242: "remove all files in ~/Library/Spelling." >- RenderBlock (anonymous) at (0,122) size 784x140 >+ RenderBlock (anonymous) at (0,122) size 784x136 > RenderText {#text} at (0,0) size 0x0 > RenderText {#text} at (0,0) size 0x0 >-layer at (10,132) size 581x136 clip at (11,133) size 579x134 >- RenderTextControl {TEXTAREA} at (2,2) size 581x136 [bgcolor=#FFFFFF] [border: (1px solid #000000)] >+layer at (8,130) size 581x136 clip at (9,131) size 579x134 >+ RenderTextControl {TEXTAREA} at (0,0) size 581x136 [bgcolor=#FFFFFF] [border: (1px solid #000000)] > RenderBlock {DIV} at (3,3) size 575x26 > RenderText {#text} at (0,0) size 45x13 > text run at (0,0) width 45: "mesage " >diff --git a/LayoutTests/platform/mac/editing/pasteboard/4641033-expected.txt b/LayoutTests/platform/mac/editing/pasteboard/4641033-expected.txt >index 3717a28461d8c050c70e577d804ee7d7ef180646..32371196cc0e1d30a7d08808407ec7e4ba54a863 100644 >--- a/LayoutTests/platform/mac/editing/pasteboard/4641033-expected.txt >+++ b/LayoutTests/platform/mac/editing/pasteboard/4641033-expected.txt >@@ -16,19 +16,19 @@ layer at (0,0) size 800x600 > text run at (0,0) width 673: "This tests for a bug when creating markup for a selection that contained unrendered nodes with children. " > text run at (672,0) width 109: "You should see a" > text run at (0,18) width 253: "picture of abe followed by a select box." >- RenderBlock {DIV} at (0,52) size 784x110 >+ RenderBlock {DIV} at (0,52) size 784x108 > RenderImage {IMG} at (0,0) size 76x103 > RenderText {#text} at (76,89) size 4x18 > text run at (76,89) width 4: " " >- RenderMenuList {SELECT} at (82,90) size 51x18 [color=#000000D8] [bgcolor=#FFFFFF] >+ RenderMenuList {SELECT} at (80,90) size 51x18 [color=#000000D8] [bgcolor=#FFFFFF] > RenderBlock (anonymous) at (0,0) size 51x18 > RenderText at (8,2) size 6x13 > text run at (8,2) width 6: "1" >- RenderBlock (anonymous) at (0,162) size 784x110 >+ RenderBlock (anonymous) at (0,160) size 784x108 > RenderImage {IMG} at (0,0) size 76x103 > RenderText {#text} at (76,89) size 4x18 > text run at (76,89) width 4: " " >- RenderMenuList {SELECT} at (82,90) size 51x18 [color=#000000D8] [bgcolor=#FFFFFF] >+ RenderMenuList {SELECT} at (80,90) size 51x18 [color=#000000D8] [bgcolor=#FFFFFF] > RenderBlock (anonymous) at (0,0) size 51x18 > RenderText at (8,2) size 6x13 > text run at (8,2) width 6: "1" >diff --git a/LayoutTests/platform/mac/editing/pasteboard/4806874-expected.txt b/LayoutTests/platform/mac/editing/pasteboard/4806874-expected.txt >index 7ac8dbd6e386eead78b35d70c5a3cfd52ebeff3d..ea0c9cd20a1c8a66ec17ab5302f9237d572d79c2 100644 >--- a/LayoutTests/platform/mac/editing/pasteboard/4806874-expected.txt >+++ b/LayoutTests/platform/mac/editing/pasteboard/4806874-expected.txt >@@ -7,12 +7,12 @@ layer at (0,0) size 800x600 > RenderText {#text} at (0,0) size 553x18 > text run at (0,0) width 251: "This tests for an infinite loop on Paste. " > text run at (250,0) width 303: "You should see 'Hello: ' and then an input field." >- RenderBlock {DIV} at (0,34) size 784x23 >- RenderText {#text} at (0,2) size 36x18 >- text run at (0,2) width 36: "Hello" >- RenderTextControl {INPUT} at (37,2) size 147x19 [bgcolor=#FFFFFF] [border: (2px inset #000000)] >- RenderText {#text} at (185,2) size 5x18 >- text run at (185,2) width 5: ":" >-layer at (49,47) size 140x13 backgroundClip at (49,47) size 139x13 clip at (49,47) size 139x13 >+ RenderBlock {DIV} at (0,34) size 784x19 >+ RenderText {#text} at (0,0) size 36x18 >+ text run at (0,0) width 36: "Hello" >+ RenderTextControl {INPUT} at (35,0) size 147x19 [bgcolor=#FFFFFF] [border: (2px inset #000000)] >+ RenderText {#text} at (181,0) size 5x18 >+ text run at (181,0) width 5: ":" >+layer at (47,45) size 140x13 backgroundClip at (47,45) size 139x13 clip at (47,45) size 139x13 > RenderBlock {DIV} at (3,3) size 140x13 > caret: position 1 of child 1 {INPUT} of child 2 {DIV} of body
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 107380
:
370736
|
370741
|
370742
|
370743
|
370744
|
370748
|
370841
|
370843
|
370844
|
370845
|
370846
|
370848
|
370896
|
392948
|
392949
|
392951
|
392960
|
393109
|
393380
|
393573
|
393598
|
393603
|
393979
|
393982
|
395043
|
395119
|
395177
|
395272
|
395375
|
395376
|
395426
|
395429
|
395433