HTML: <hr> has 'overflow: hidden' by default#6115
Conversation
This causes the element to create a block formatting context, which means it will avoid floats and grow to contain floats. This matches EdgeHTML. WebKit/Chromium/Gecko avoid floats but do not create a block formatting context, which is weird. Fixes #2715. Tests: web-platform-tests/wpt#6115
|
(Please don't use Reviewable.) |
| 'marginRight', | ||
| 'marginBottom', | ||
| 'marginLeft', | ||
| 'overflow', |
|
|
||
| test(() => { | ||
| const hr = document.getElementById('test-control'); | ||
| assert_equals(hr.offsetLeft, 50 + defaultBodyMargin, 'offsetLeft'); |
There was a problem hiding this comment.
Maybe it's just me, but I think I'd prefer wrapping everything inside a relatively positioned div, rather than adding defaultBodyMargin to stuff.
| <div class=clear></div> | ||
|
|
||
| <div class=float></div> | ||
| <hr id=test-visible> |
There was a problem hiding this comment.
Would be useful with an additional floated sibling of the HR, to make sure that the float inside the HR affects that float correctly.
| <style> | ||
| #ref { | ||
| display: block; | ||
| unicode-bidi: isolate; |
There was a problem hiding this comment.
This is from Edge? Is it important? I suppose it could make a difference if the HR is inline-level, but ...
There was a problem hiding this comment.
It's what the spec requires. Gecko and EdgeHTML pass this part of the test.
There was a problem hiding this comment.
Where's the spec that says unicode-bidi: isolate?
There was a problem hiding this comment.
There was a problem hiding this comment.
Safari 10.1 also had this as default style, but is 'normal' in Safari TP.
There was a problem hiding this comment.
Thanks.
Maybe time to fix https://html.spec.whatwg.org/multipage/rendering.html#the-hr-element-2 then, because it's not mentioned there.
There was a problem hiding this comment.
It's not a spec bug, technically. Just a bit confusing if you assume a single section mentions everything that about the feature the section is about. But the spec would balloon in size if that was consistently done for everything.
Firefox (nightly)Testing web-platform-tests at revision 222e9b5 All results2 tests ran/html/rendering/non-replaced-elements/the-hr-element-0/hr.html
/html/rendering/non-replaced-elements/the-hr-element-0/setting-overflow-visible.html
|
Sauce (safari)Testing web-platform-tests at revision 222e9b5 All results2 tests ran/html/rendering/non-replaced-elements/the-hr-element-0/hr.html
/html/rendering/non-replaced-elements/the-hr-element-0/setting-overflow-visible.html
|
Chrome (unstable)Testing web-platform-tests at revision 222e9b5 All results2 tests ran/html/rendering/non-replaced-elements/the-hr-element-0/hr.html
/html/rendering/non-replaced-elements/the-hr-element-0/setting-overflow-visible.html
|
Sauce (MicrosoftEdge)Testing web-platform-tests at revision 222e9b5 All results2 tests ran/html/rendering/non-replaced-elements/the-hr-element-0/hr.html
/html/rendering/non-replaced-elements/the-hr-element-0/setting-overflow-visible.html
|
| assert_equals(hr.clientHeight, 0, 'hr.clientHeight'); | ||
| const divAfter = hr.nextElementSibling; | ||
| assert_equals(divAfter.offsetLeft, 50 + 50, 'divAfter.offsetLeft'); | ||
| assert_equals(divAfter.offsetTop, 1 + 1 /* hr border */, 'divAfter.offsetTop'); |
There was a problem hiding this comment.
I think the expectation should be "1", not "1+1".
So, you have a 50px tall floated div and a HR whose top border edges are at the same block position. Inside the HR (which does not establish a new BFC) there's another 50px tall float. It's positioned in the content box of the HR, which is just past its top border, i.e. 1px further down. Outside the HR, as the next element, we have what we call |divAfter|, another float. Its top border edge cannot be above the top border edge of any of the other floats in the BFC. The bottommost top border edge is that of the hr::before float, which is at 1px, relatively to .wrapper.
So, what I'm saying is that you shouldn't account for the bottom border of the HR.
There was a problem hiding this comment.
Hmm. Are you sure? 2px is what I see in Chromium/Gecko/WebKit/EdgeHTML using divs.
There was a problem hiding this comment.
A floating box's outer top may not be higher than the top of its containing block. When the float occurs between two collapsing margins, the float is positioned as if it had an otherwise empty anonymous block parent taking part in the flow. The position of such a parent is defined by the rules in the section on margin collapsing.
It's not super-clear to me, but maybe such an anonymous block parent is supposed to be there even if the float isn't between two collapsing margins?
There was a problem hiding this comment.
Sorry, I was wrong. Of course the last float cannot start above the bottom of any preceding in-flow block (the HR). So we start searching for space below the bottom border. Your test is correct.
This causes the element to create a block formatting context, which means it will avoid floats and grow to contain floats. This matches EdgeHTML. WebKit/Chromium/Gecko avoid floats but do not create a block formatting context, which is weird. Fixes #2715. Tests: web-platform-tests/wpt#6115
This causes the element to create a block formatting context, which means it will avoid floats and grow to contain floats. This matches EdgeHTML. WebKit/Chromium/Gecko avoid floats but do not create a block formatting context, which is weird. Fixes whatwg#2715. Tests: web-platform-tests/wpt#6115
https://bugs.webkit.org/show_bug.cgi?id=172801 <rdar://100420364> Reviewed by Alan Baradlay and Myles C. Maxfield. The hardcoded rendering rules for <hr> should be removed in favor of having 'overflow: hidden' in the UA stylesheet, which matches EdgeHTML. https://github.com/whatwg/html/issues/2715 https://github.com/whatwg/html/pull/2724 https://github.com/w3c/web-platform-tests/pull/6115 * Source/WebCore/css/html.css: (hr): * Source/WebCore/rendering/RenderBox.cpp: (WebCore::RenderBox::avoidsFloats const): * LayoutTests/editing/execCommand/insertHorizontalRule-expected.txt: * LayoutTests/fast/forms/button-inner-block-reuse-expected.txt: * LayoutTests/fast/text/international/vertical-text-glyph-test-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/rendering/non-replaced-elements/the-hr-element-0/hr-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/rendering/non-replaced-elements/the-hr-element-0/setting-overflow-visible-expected.txt: * LayoutTests/platform/gtk/css1/basic/containment-expected.txt: * LayoutTests/platform/gtk/css1/basic/contextual_selectors-expected.txt: * LayoutTests/platform/gtk/css1/basic/grouping-expected.txt: * LayoutTests/platform/gtk/css1/basic/id_as_selector-expected.txt: * LayoutTests/platform/gtk/css1/basic/inheritance-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/border_bottom_inline-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/border_bottom_width_inline-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/border_bottom_width-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/border_bottom-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/border_color_inline-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/border_color-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/border_inline-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/border_left_inline-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/border_left_width_inline-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/border_left_width-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/border_left-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/border_right_inline-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/border_right_width_inline-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/border_right_width-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/border_right-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/border_style_inline-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/border_style-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/border_top_inline-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/border_top_width_inline-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/border_top_width-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/border_top-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/border_width_inline-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/border_width-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/border-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/clear_float-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/clear-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/float_elements_in_series-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/float_margin-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/float_on_text_elements-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/float-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/height-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/margin_bottom_inline-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/margin_bottom-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/margin_inline-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/margin_left_inline-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/margin_left-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/margin_right_inline-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/margin_right-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/margin_top_inline-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/margin_top-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/margin-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/padding_bottom_inline-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/padding_bottom-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/padding_inline-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/padding_left_inline-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/padding_left-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/padding_right_inline-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/padding_right-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/padding_top_inline-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/padding_top-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/padding-expected.txt: * LayoutTests/platform/gtk/css1/box_properties/width-expected.txt: * LayoutTests/platform/gtk/css1/cascade/cascade_order-expected.txt: * LayoutTests/platform/gtk/css1/cascade/important-expected.txt: * LayoutTests/platform/gtk/css1/classification/display-expected.txt: * LayoutTests/platform/gtk/css1/classification/list_style_image-expected.txt: * LayoutTests/platform/gtk/css1/classification/list_style_position-expected.txt: * LayoutTests/platform/gtk/css1/classification/list_style_type-expected.txt: * LayoutTests/platform/gtk/css1/classification/list_style-expected.txt: * LayoutTests/platform/gtk/css1/classification/white_space-expected.txt: * LayoutTests/platform/gtk/css1/color_and_background/background_attachment-expected.txt: * LayoutTests/platform/gtk/css1/color_and_background/background_color-expected.txt: * LayoutTests/platform/gtk/css1/color_and_background/background_image-expected.txt: * LayoutTests/platform/gtk/css1/color_and_background/background_position-expected.txt: * LayoutTests/platform/gtk/css1/color_and_background/background_repeat-expected.txt: * LayoutTests/platform/gtk/css1/color_and_background/background-expected.txt: * LayoutTests/platform/gtk/css1/color_and_background/color-expected.txt: * LayoutTests/platform/gtk/css1/conformance/forward_compatible_parsing-expected.txt: * LayoutTests/platform/gtk/css1/font_properties/font_family-expected.txt: * LayoutTests/platform/gtk/css1/font_properties/font_size-expected.txt: * LayoutTests/platform/gtk/css1/font_properties/font_style-expected.txt: * LayoutTests/platform/gtk/css1/font_properties/font_variant-expected.txt: * LayoutTests/platform/gtk/css1/font_properties/font_weight-expected.txt: * LayoutTests/platform/gtk/css1/font_properties/font-expected.txt: * LayoutTests/platform/gtk/css1/formatting_model/canvas-expected.txt: * LayoutTests/platform/gtk/css1/formatting_model/floating_elements-expected.txt: * LayoutTests/platform/gtk/css1/formatting_model/height_of_lines-expected.txt: * LayoutTests/platform/gtk/css1/formatting_model/inline_elements-expected.txt: * LayoutTests/platform/gtk/css1/formatting_model/replaced_elements-expected.txt: * LayoutTests/platform/gtk/css1/formatting_model/vertical_formatting-expected.txt: * LayoutTests/platform/gtk/css1/pseudo/anchor-expected.txt: * LayoutTests/platform/gtk/css1/pseudo/firstletter-expected.txt: * LayoutTests/platform/gtk/css1/pseudo/firstline-expected.txt: * LayoutTests/platform/gtk/css1/pseudo/multiple_pseudo_elements-expected.txt: * LayoutTests/platform/gtk/css1/pseudo/pseudo_elements_in_selectors-expected.txt: * LayoutTests/platform/gtk/css1/text_properties/letter_spacing-expected.txt: * LayoutTests/platform/gtk/css1/text_properties/line_height-expected.txt: * LayoutTests/platform/gtk/css1/text_properties/text_align-expected.txt: * LayoutTests/platform/gtk/css1/text_properties/text_decoration-expected.txt: * LayoutTests/platform/gtk/css1/text_properties/text_indent-expected.txt: * LayoutTests/platform/gtk/css1/text_properties/text_transform-expected.txt: * LayoutTests/platform/gtk/css1/text_properties/vertical_align-expected.txt: * LayoutTests/platform/gtk/css1/text_properties/word_spacing-expected.txt: * LayoutTests/platform/gtk/css1/units/color_units-expected.txt: * LayoutTests/platform/gtk/css1/units/length_units-expected.txt: * LayoutTests/platform/gtk/css1/units/percentage_units-expected.txt: * LayoutTests/platform/gtk/css1/units/urls-expected.txt: * LayoutTests/platform/gtk/css3/flexbox/button-expected.txt: * LayoutTests/platform/gtk/editing/execCommand/create-list-with-hr-expected.txt: * LayoutTests/platform/gtk/editing/execCommand/insertHorizontalRule-expected.txt: * LayoutTests/platform/gtk/editing/inserting/4278698-expected.txt: * LayoutTests/platform/gtk/editing/inserting/insert-paragraph-03-expected.txt: * LayoutTests/platform/gtk/editing/inserting/insert-paragraph-04-expected.txt: * LayoutTests/platform/gtk/editing/pasteboard/3976872-expected.txt: * LayoutTests/platform/gtk/editing/pasteboard/4076267-2-expected.txt: * LayoutTests/platform/gtk/editing/pasteboard/4076267-3-expected.txt: * LayoutTests/platform/gtk/editing/pasteboard/4076267-expected.txt: * LayoutTests/platform/gtk/editing/pasteboard/undoable-fragment-removes-expected.txt: * LayoutTests/platform/gtk/editing/selection/4402375-expected.txt: * LayoutTests/platform/gtk/editing/selection/6476-expected.txt: * LayoutTests/platform/gtk/editing/selection/7152-1-expected.txt: * LayoutTests/platform/gtk/editing/selection/7152-2-expected.txt: * LayoutTests/platform/gtk/editing/selection/click-start-of-line-expected.txt: * LayoutTests/platform/gtk/editing/selection/image-before-linebreak-expected.txt: * LayoutTests/platform/gtk/editing/selection/select-from-textfield-outwards-expected.txt: * LayoutTests/platform/gtk/editing/undo/4063751-expected.txt: * LayoutTests/platform/gtk/fast/backgrounds/solid-color-context-restore-expected.txt: Added. * LayoutTests/platform/gtk/fast/block/basic/018-expected.txt: Added. * LayoutTests/platform/gtk/fast/block/basic/text-indent-rtl-expected.txt: * LayoutTests/platform/gtk/fast/block/float/025-expected.txt: Added. * LayoutTests/platform/gtk/fast/block/float/026-expected.txt: Added. * LayoutTests/platform/gtk/fast/block/float/027-expected.txt: Added. * LayoutTests/platform/gtk/fast/block/float/028-expected.txt: Added. * LayoutTests/platform/gtk/fast/block/float/float-avoidance-expected.txt: * LayoutTests/platform/gtk/fast/block/float/nopaint-after-layer-destruction-expected.txt: * LayoutTests/platform/gtk/fast/block/float/nopaint-after-layer-destruction2-expected.txt: * LayoutTests/platform/gtk/fast/block/float/shrink-to-avoid-float-complexity-expected.txt: * LayoutTests/platform/gtk/fast/block/float/table-relayout-expected.txt: * LayoutTests/platform/gtk/fast/block/float/width-update-after-clear-expected.txt: Added. * LayoutTests/platform/gtk/fast/block/margin-collapse/empty-clear-blocks-expected.txt: Added. * LayoutTests/platform/gtk/fast/block/positioning/height-change-expected.txt: * LayoutTests/platform/gtk/fast/block/positioning/relayout-on-position-change-expected.txt: * LayoutTests/platform/gtk/fast/block/positioning/window-height-change-expected.txt: * LayoutTests/platform/gtk/fast/box-sizing/box-sizing-expected.txt: Added. * LayoutTests/platform/gtk/fast/css-generated-content/014-expected.txt: * LayoutTests/platform/gtk/fast/css-generated-content/016-expected.txt: Added. * LayoutTests/platform/gtk/fast/css-generated-content/hover-style-change-expected.txt: * LayoutTests/platform/gtk/fast/css/find-next-layer-expected.txt: * LayoutTests/platform/gtk/fast/css/first-letter-detach-expected.txt: * LayoutTests/platform/gtk/fast/css/h1-in-section-elements-expected.txt: Added. * LayoutTests/platform/gtk/fast/css/hover-subselector-expected.txt: * LayoutTests/platform/gtk/fast/css/resize-corner-tracking-expected.txt: * LayoutTests/platform/gtk/fast/css/resize-corner-tracking-transformed-expected.txt: * LayoutTests/platform/gtk/fast/css/resize-corner-tracking-transformed-iframe-expected.txt: * LayoutTests/platform/gtk/fast/css/rtl-ordering-expected.txt: * LayoutTests/platform/gtk/fast/css/universal-hover-quirk-expected.txt: * LayoutTests/platform/gtk/fast/dom/34176-expected.txt: * LayoutTests/platform/gtk/fast/dom/HTMLElement/bdo-expected.txt: * LayoutTests/platform/gtk/fast/dom/HTMLLinkElement/pending-stylesheet-count-expected.txt: * LayoutTests/platform/gtk/fast/dom/HTMLTableElement/colSpan-expected.txt: * LayoutTests/platform/gtk/fast/dom/HTMLTableElement/createCaption-expected.txt: * LayoutTests/platform/gtk/fast/dynamic/012-expected.txt: * LayoutTests/platform/gtk/fast/dynamic/selection-highlight-adjust-expected.txt: * LayoutTests/platform/gtk/fast/encoding/invalid-UTF-8-expected.txt: Added. * LayoutTests/platform/gtk/fast/encoding/utf-16-big-endian-expected.txt: * LayoutTests/platform/gtk/fast/encoding/utf-16-little-endian-expected.txt: * LayoutTests/platform/gtk/fast/forms/button-generated-content-expected.txt: * LayoutTests/platform/gtk/fast/forms/button-inner-block-reuse-expected.txt: * LayoutTests/platform/gtk/fast/forms/fieldset-align-expected.txt: * LayoutTests/platform/gtk/fast/forms/floating-textfield-relayout-expected.txt: * LayoutTests/platform/gtk/fast/forms/image-border-expected.txt: * LayoutTests/platform/gtk/fast/forms/input-value-expected.txt: * LayoutTests/platform/gtk/fast/forms/select-visual-hebrew-expected.txt: * LayoutTests/platform/gtk/fast/forms/visual-hebrew-text-field-expected.txt: * LayoutTests/platform/gtk/fast/inline/inline-continuation-borders-expected.txt: * LayoutTests/platform/gtk/fast/layers/opacity-outline-expected.txt: * LayoutTests/platform/gtk/fast/lists/markers-in-selection-expected.txt: * LayoutTests/platform/gtk/fast/lists/ol-start-parsing-expected.txt: Added. * LayoutTests/platform/gtk/fast/lists/olstart-expected.txt: * LayoutTests/platform/gtk/fast/multicol/table-vertical-align-expected.txt: Added. * LayoutTests/platform/gtk/fast/overflow/image-selection-highlight-expected.txt: * LayoutTests/platform/gtk/fast/overflow/overflow-rtl-inline-scrollbar-expected.txt: * LayoutTests/platform/gtk/fast/overflow/overflow-text-hit-testing-expected.txt: * LayoutTests/platform/gtk/fast/repaint/delete-into-nested-block-expected.txt: * LayoutTests/platform/gtk/fast/repaint/flexible-box-overflow-expected.txt: * LayoutTests/platform/gtk/fast/repaint/flexible-box-overflow-horizontal-expected.txt: * LayoutTests/platform/gtk/fast/repaint/inline-block-overflow-expected.txt: * LayoutTests/platform/gtk/fast/repaint/layer-outline-expected.txt: * LayoutTests/platform/gtk/fast/repaint/layer-outline-horizontal-expected.txt: * LayoutTests/platform/gtk/fast/repaint/line-overflow-expected.txt: * LayoutTests/platform/gtk/fast/repaint/outline-child-repaint-expected.txt: * LayoutTests/platform/gtk/fast/repaint/outline-shrinking-expected.txt: * LayoutTests/platform/gtk/fast/repaint/overflow-delete-line-expected.txt: * LayoutTests/platform/gtk/fast/repaint/static-to-positioned-expected.txt: * LayoutTests/platform/gtk/fast/repaint/table-cell-move-expected.txt: * LayoutTests/platform/gtk/fast/repaint/text-shadow-expected.txt: * LayoutTests/platform/gtk/fast/repaint/text-shadow-horizontal-expected.txt: * LayoutTests/platform/gtk/fast/replaced/inline-box-wrapper-handover-expected.txt: * LayoutTests/platform/gtk/fast/table/040-expected.txt: * LayoutTests/platform/gtk/fast/table/040-vertical-expected.txt: * LayoutTests/platform/gtk/fast/table/add-before-anonymous-child-expected.txt: * LayoutTests/platform/gtk/fast/table/border-collapsing/border-collapsing-head-foot-expected.txt: * LayoutTests/platform/gtk/fast/table/border-collapsing/border-collapsing-head-foot-vertical-expected.txt: * LayoutTests/platform/gtk/fast/table/border-collapsing/rtl-border-collapsing-expected.txt: * LayoutTests/platform/gtk/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.txt: * LayoutTests/platform/gtk/fast/table/click-near-anonymous-table-expected.txt: * LayoutTests/platform/gtk/fast/table/edge-offsets-expected.txt: * LayoutTests/platform/gtk/fast/table/giantRowspan-expected.txt: Added. * LayoutTests/platform/gtk/fast/table/row-height-recalc-expected.txt: * LayoutTests/platform/gtk/fast/table/rtl-cell-display-none-assert-expected.txt: * LayoutTests/platform/gtk/fast/table/text-field-baseline-expected.txt: * LayoutTests/platform/gtk/fast/table/unbreakable-images-quirk-expected.txt: Added. * LayoutTests/platform/gtk/fast/text/atsui-kerning-and-ligatures-expected.txt: * LayoutTests/platform/gtk/fast/text/atsui-multiple-renderers-expected.txt: * LayoutTests/platform/gtk/fast/text/atsui-negative-spacing-features-expected.txt: * LayoutTests/platform/gtk/fast/text/atsui-pointtooffset-calls-cg-expected.txt: * LayoutTests/platform/gtk/fast/text/atsui-rtl-override-selection-expected.txt: * LayoutTests/platform/gtk/fast/text/atsui-small-caps-punctuation-size-expected.txt: * LayoutTests/platform/gtk/fast/text/atsui-spacing-features-expected.txt: * LayoutTests/platform/gtk/fast/text/basic/015-expected.txt: * LayoutTests/platform/gtk/fast/text/capitalize-empty-generated-string-expected.txt: * LayoutTests/platform/gtk/fast/text/cg-vs-atsui-expected.txt: * LayoutTests/platform/gtk/fast/text/in-rendered-text-rtl-expected.txt: * LayoutTests/platform/gtk/fast/text/international/bidi-european-terminators-expected.txt: * LayoutTests/platform/gtk/fast/text/international/bidi-ignored-for-first-child-inline-expected.txt: * LayoutTests/platform/gtk/fast/text/international/bidi-innertext-expected.txt: * LayoutTests/platform/gtk/fast/text/international/bidi-LDB-2-CSS-expected.txt: * LayoutTests/platform/gtk/fast/text/international/bidi-LDB-2-formatting-characters-expected.txt: * LayoutTests/platform/gtk/fast/text/international/bidi-LDB-2-HTML-expected.txt: * LayoutTests/platform/gtk/fast/text/international/hebrew-vowels-expected.txt: * LayoutTests/platform/gtk/fast/text/international/rtl-caret-expected.txt: * LayoutTests/platform/gtk/fast/text/international/rtl-white-space-pre-wrap-expected.txt: * LayoutTests/platform/gtk/fast/text/international/text-combine-image-test-expected.txt: * LayoutTests/platform/gtk/fast/text/international/vertical-text-glyph-test-expected.txt: * LayoutTests/platform/gtk/fast/text/midword-break-hang-expected.txt: * LayoutTests/platform/gtk/fast/text/should-use-atsui-expected.txt: * LayoutTests/platform/gtk/fast/text/whitespace/pre-wrap-overflow-selection-expected.txt: * LayoutTests/platform/gtk/fast/text/whitespace/pre-wrap-spaces-after-newline-expected.txt: * LayoutTests/platform/gtk/http/tests/navigation/javascriptlink-frames-expected.txt: * LayoutTests/platform/gtk/svg/custom/svg-float-border-padding-expected.txt: * LayoutTests/platform/gtk/svg/zoom/text/zoom-svg-float-border-padding-expected.txt: * LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/97619-expected.txt: Added. * LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug10140-expected.txt: * LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug1055-2-expected.txt: * LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug1647-expected.txt: Added. * LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug21518-expected.txt: * LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug22122-expected.txt: * LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug2479-5-expected.txt: * LayoutTests/platform/gtk/tables/mozilla_expected_failures/core/captions3-expected.txt: * LayoutTests/platform/gtk/tables/mozilla_expected_failures/core/col_span2-expected.txt: * LayoutTests/platform/gtk/tables/mozilla_expected_failures/core/conflicts-expected.txt: Added. * LayoutTests/platform/gtk/tables/mozilla_expected_failures/other/empty_cells-expected.txt: Added. * LayoutTests/platform/gtk/tables/mozilla/bugs/bug10269-2-expected.txt: * LayoutTests/platform/gtk/tables/mozilla/bugs/bug10296-1-expected.txt: * LayoutTests/platform/gtk/tables/mozilla/bugs/bug1055-1-expected.txt: * LayoutTests/platform/gtk/tables/mozilla/bugs/bug1067-2-expected.txt: Added. * LayoutTests/platform/gtk/tables/mozilla/bugs/bug113235-3-expected.txt: Added. * LayoutTests/platform/gtk/tables/mozilla/bugs/bug1188-expected.txt: * LayoutTests/platform/gtk/tables/mozilla/bugs/bug119786-expected.txt: Added. * LayoutTests/platform/gtk/tables/mozilla/bugs/bug1302-expected.txt: * LayoutTests/platform/gtk/tables/mozilla/bugs/bug14323-expected.txt: * LayoutTests/platform/gtk/tables/mozilla/bugs/bug14929-expected.txt: * LayoutTests/platform/gtk/tables/mozilla/bugs/bug16252-expected.txt: * LayoutTests/platform/gtk/tables/mozilla/bugs/bug17548-expected.txt: Added. * LayoutTests/platform/gtk/tables/mozilla/bugs/bug1800-expected.txt: Added. * LayoutTests/platform/gtk/tables/mozilla/bugs/bug18359-expected.txt: * LayoutTests/platform/gtk/tables/mozilla/bugs/bug2479-1-expected.txt: * LayoutTests/platform/gtk/tables/mozilla/bugs/bug2479-3-expected.txt: * LayoutTests/platform/gtk/tables/mozilla/bugs/bug2479-4-expected.txt: * LayoutTests/platform/gtk/tables/mozilla/bugs/bug27038-2-expected.txt: * LayoutTests/platform/gtk/tables/mozilla/bugs/bug2886-2-expected.txt: * LayoutTests/platform/gtk/tables/mozilla/bugs/bug28928-expected.txt: * LayoutTests/platform/gtk/tables/mozilla/bugs/bug2947-expected.txt: * LayoutTests/platform/gtk/tables/mozilla/bugs/bug30692-expected.txt: * LayoutTests/platform/gtk/tables/mozilla/bugs/bug32841-expected.txt: Added. * LayoutTests/platform/gtk/tables/mozilla/bugs/bug33137-expected.txt: Added. * LayoutTests/platform/gtk/tables/mozilla/bugs/bug3977-expected.txt: * LayoutTests/platform/gtk/tables/mozilla/bugs/bug42187-expected.txt: * LayoutTests/platform/gtk/tables/mozilla/bugs/bug47432-expected.txt: Added. * LayoutTests/platform/gtk/tables/mozilla/bugs/bug60992-expected.txt: Added. * LayoutTests/platform/gtk/tables/mozilla/bugs/bug625-expected.txt: Added. * LayoutTests/platform/gtk/tables/mozilla/bugs/bug6304-expected.txt: * LayoutTests/platform/gtk/tables/mozilla/bugs/bug7112-1-expected.txt: * LayoutTests/platform/gtk/tables/mozilla/bugs/bug7112-2-expected.txt: * LayoutTests/platform/gtk/tables/mozilla/bugs/bug727-expected.txt: Added. * LayoutTests/platform/gtk/tables/mozilla/core/col_widths_fix_autoFix-expected.txt: Added. * LayoutTests/platform/gtk/tables/mozilla/core/col_widths_fix_fix-expected.txt: Added. * LayoutTests/platform/gtk/tables/mozilla/core/misc-expected.txt: Added. * LayoutTests/platform/gtk/tables/mozilla/core/table_widths-expected.txt: Added. * LayoutTests/platform/gtk/tables/mozilla/other/wa_table_thtd_rowspan-expected.txt: * LayoutTests/platform/gtk/tables/mozilla/other/wa_table_tr_align-expected.txt: * LayoutTests/platform/ios-wk2/editing/inserting/4278698-expected.txt: * LayoutTests/platform/ios-wk2/editing/inserting/insert-paragraph-03-expected.txt: * LayoutTests/platform/ios-wk2/editing/inserting/insert-paragraph-04-expected.txt: * LayoutTests/platform/ios-wk2/editing/pasteboard/3976872-expected.txt: * LayoutTests/platform/ios-wk2/editing/pasteboard/4076267-2-expected.txt: * LayoutTests/platform/ios-wk2/editing/pasteboard/4076267-3-expected.txt: * LayoutTests/platform/ios-wk2/editing/pasteboard/4076267-expected.txt: * LayoutTests/platform/ios-wk2/editing/pasteboard/undoable-fragment-removes-expected.txt: * LayoutTests/platform/ios-wk2/editing/selection/6476-expected.txt: * LayoutTests/platform/ios-wk2/editing/selection/click-start-of-line-expected.txt: * LayoutTests/platform/ios-wk2/editing/selection/select-from-textfield-outwards-expected.txt: * LayoutTests/platform/ios-wk2/editing/undo/4063751-expected.txt: * LayoutTests/platform/ios-wk2/fast/block/float/025-expected.txt: * LayoutTests/platform/ios-wk2/fast/block/float/026-expected.txt: * LayoutTests/platform/ios-wk2/fast/block/float/027-expected.txt: * LayoutTests/platform/ios-wk2/fast/block/float/028-expected.txt: * LayoutTests/platform/ios-wk2/fast/css-generated-content/hover-style-change-expected.txt: * LayoutTests/platform/ios-wk2/fast/css/hover-subselector-expected.txt: * LayoutTests/platform/ios-wk2/fast/css/resize-corner-tracking-transformed-expected.txt: * LayoutTests/platform/ios-wk2/fast/css/universal-hover-quirk-expected.txt: * LayoutTests/platform/ios-wk2/fast/dynamic/012-expected.txt: * LayoutTests/platform/ios-wk2/fast/encoding/utf-16-big-endian-expected.txt: * LayoutTests/platform/ios-wk2/fast/encoding/utf-16-little-endian-expected.txt: * LayoutTests/platform/ios-wk2/fast/overflow/image-selection-highlight-expected.txt: * LayoutTests/platform/ios-wk2/fast/overflow/overflow-text-hit-testing-expected.txt: * LayoutTests/platform/ios-wk2/fast/replaced/inline-box-wrapper-handover-expected.txt: * LayoutTests/platform/ios-wk2/fast/table/click-near-anonymous-table-expected.txt: * LayoutTests/platform/ios-wk2/fast/text/international/hebrew-vowels-expected.txt: * LayoutTests/platform/ios-wk2/fast/text/international/text-combine-image-test-expected.txt: * LayoutTests/platform/ios/css1/basic/containment-expected.txt: * LayoutTests/platform/ios/css1/basic/contextual_selectors-expected.txt: * LayoutTests/platform/ios/css1/basic/grouping-expected.txt: * LayoutTests/platform/ios/css1/basic/id_as_selector-expected.txt: * LayoutTests/platform/ios/css1/basic/inheritance-expected.txt: * LayoutTests/platform/ios/css1/box_properties/border_bottom_inline-expected.txt: * LayoutTests/platform/ios/css1/box_properties/border_bottom_width_inline-expected.txt: * LayoutTests/platform/ios/css1/box_properties/border_bottom_width-expected.txt: * LayoutTests/platform/ios/css1/box_properties/border_bottom-expected.txt: * LayoutTests/platform/ios/css1/box_properties/border_color_inline-expected.txt: * LayoutTests/platform/ios/css1/box_properties/border_color-expected.txt: * LayoutTests/platform/ios/css1/box_properties/border_inline-expected.txt: * LayoutTests/platform/ios/css1/box_properties/border_left_inline-expected.txt: * LayoutTests/platform/ios/css1/box_properties/border_left_width_inline-expected.txt: * LayoutTests/platform/ios/css1/box_properties/border_left_width-expected.txt: * LayoutTests/platform/ios/css1/box_properties/border_left-expected.txt: * LayoutTests/platform/ios/css1/box_properties/border_right_inline-expected.txt: * LayoutTests/platform/ios/css1/box_properties/border_right_width_inline-expected.txt: * LayoutTests/platform/ios/css1/box_properties/border_right_width-expected.txt: * LayoutTests/platform/ios/css1/box_properties/border_right-expected.txt: * LayoutTests/platform/ios/css1/box_properties/border_style_inline-expected.txt: * LayoutTests/platform/ios/css1/box_properties/border_style-expected.txt: * LayoutTests/platform/ios/css1/box_properties/border_top_inline-expected.txt: * LayoutTests/platform/ios/css1/box_properties/border_top_width_inline-expected.txt: * LayoutTests/platform/ios/css1/box_properties/border_top_width-expected.txt: * LayoutTests/platform/ios/css1/box_properties/border_top-expected.txt: * LayoutTests/platform/ios/css1/box_properties/border_width_inline-expected.txt: * LayoutTests/platform/ios/css1/box_properties/border_width-expected.txt: * LayoutTests/platform/ios/css1/box_properties/border-expected.txt: * LayoutTests/platform/ios/css1/box_properties/clear_float-expected.txt: * LayoutTests/platform/ios/css1/box_properties/clear-expected.txt: * LayoutTests/platform/ios/css1/box_properties/float_elements_in_series-expected.txt: * LayoutTests/platform/ios/css1/box_properties/float_margin-expected.txt: * LayoutTests/platform/ios/css1/box_properties/float_on_text_elements-expected.txt: * LayoutTests/platform/ios/css1/box_properties/float-expected.txt: * LayoutTests/platform/ios/css1/box_properties/height-expected.txt: * LayoutTests/platform/ios/css1/box_properties/margin_bottom_inline-expected.txt: * LayoutTests/platform/ios/css1/box_properties/margin_bottom-expected.txt: * LayoutTests/platform/ios/css1/box_properties/margin_inline-expected.txt: * LayoutTests/platform/ios/css1/box_properties/margin_left_inline-expected.txt: * LayoutTests/platform/ios/css1/box_properties/margin_left-expected.txt: * LayoutTests/platform/ios/css1/box_properties/margin_right_inline-expected.txt: * LayoutTests/platform/ios/css1/box_properties/margin_right-expected.txt: * LayoutTests/platform/ios/css1/box_properties/margin_top_inline-expected.txt: * LayoutTests/platform/ios/css1/box_properties/margin_top-expected.txt: * LayoutTests/platform/ios/css1/box_properties/margin-expected.txt: * LayoutTests/platform/ios/css1/box_properties/padding_bottom_inline-expected.txt: * LayoutTests/platform/ios/css1/box_properties/padding_bottom-expected.txt: * LayoutTests/platform/ios/css1/box_properties/padding_inline-expected.txt: * LayoutTests/platform/ios/css1/box_properties/padding_left_inline-expected.txt: * LayoutTests/platform/ios/css1/box_properties/padding_left-expected.txt: * LayoutTests/platform/ios/css1/box_properties/padding_right_inline-expected.txt: * LayoutTests/platform/ios/css1/box_properties/padding_right-expected.txt: * LayoutTests/platform/ios/css1/box_properties/padding_top_inline-expected.txt: * LayoutTests/platform/ios/css1/box_properties/padding_top-expected.txt: * LayoutTests/platform/ios/css1/box_properties/padding-expected.txt: * LayoutTests/platform/ios/css1/box_properties/width-expected.txt: * LayoutTests/platform/ios/css1/cascade/cascade_order-expected.txt: * LayoutTests/platform/ios/css1/cascade/important-expected.txt: * LayoutTests/platform/ios/css1/classification/display-expected.txt: * LayoutTests/platform/ios/css1/classification/list_style_image-expected.txt: * LayoutTests/platform/ios/css1/classification/list_style_position-expected.txt: * LayoutTests/platform/ios/css1/classification/list_style_type-expected.txt: * LayoutTests/platform/ios/css1/classification/list_style-expected.txt: * LayoutTests/platform/ios/css1/classification/white_space-expected.txt: * LayoutTests/platform/ios/css1/color_and_background/background_attachment-expected.txt: * LayoutTests/platform/ios/css1/color_and_background/background_color-expected.txt: * LayoutTests/platform/ios/css1/color_and_background/background_image-expected.txt: * LayoutTests/platform/ios/css1/color_and_background/background_position-expected.txt: * LayoutTests/platform/ios/css1/color_and_background/background_repeat-expected.txt: * LayoutTests/platform/ios/css1/color_and_background/background-expected.txt: * LayoutTests/platform/ios/css1/color_and_background/color-expected.txt: * LayoutTests/platform/ios/css1/conformance/forward_compatible_parsing-expected.txt: * LayoutTests/platform/ios/css1/font_properties/font_family-expected.txt: * LayoutTests/platform/ios/css1/font_properties/font_size-expected.txt: * LayoutTests/platform/ios/css1/font_properties/font_style-expected.txt: * LayoutTests/platform/ios/css1/font_properties/font_variant-expected.txt: * LayoutTests/platform/ios/css1/font_properties/font_weight-expected.txt: * LayoutTests/platform/ios/css1/font_properties/font-expected.txt: * LayoutTests/platform/ios/css1/formatting_model/canvas-expected.txt: * LayoutTests/platform/ios/css1/formatting_model/floating_elements-expected.txt: * LayoutTests/platform/ios/css1/formatting_model/height_of_lines-expected.txt: * LayoutTests/platform/ios/css1/formatting_model/inline_elements-expected.txt: * LayoutTests/platform/ios/css1/formatting_model/replaced_elements-expected.txt: * LayoutTests/platform/ios/css1/formatting_model/vertical_formatting-expected.txt: * LayoutTests/platform/ios/css1/pseudo/anchor-expected.txt: * LayoutTests/platform/ios/css1/pseudo/firstletter-expected.txt: * LayoutTests/platform/ios/css1/pseudo/firstline-expected.txt: * LayoutTests/platform/ios/css1/pseudo/multiple_pseudo_elements-expected.txt: * LayoutTests/platform/ios/css1/pseudo/pseudo_elements_in_selectors-expected.txt: * LayoutTests/platform/ios/css1/text_properties/letter_spacing-expected.txt: * LayoutTests/platform/ios/css1/text_properties/line_height-expected.txt: * LayoutTests/platform/ios/css1/text_properties/text_align-expected.txt: * LayoutTests/platform/ios/css1/text_properties/text_decoration-expected.txt: * LayoutTests/platform/ios/css1/text_properties/text_indent-expected.txt: * LayoutTests/platform/ios/css1/text_properties/text_transform-expected.txt: * LayoutTests/platform/ios/css1/text_properties/vertical_align-expected.txt: * LayoutTests/platform/ios/css1/text_properties/word_spacing-expected.txt: * LayoutTests/platform/ios/css1/units/color_units-expected.txt: * LayoutTests/platform/ios/css1/units/length_units-expected.txt: * LayoutTests/platform/ios/css1/units/percentage_units-expected.txt: * LayoutTests/platform/ios/css1/units/urls-expected.txt: * LayoutTests/platform/ios/css3/flexbox/button-expected.txt: * LayoutTests/platform/ios/editing/execCommand/create-list-with-hr-expected.txt: * LayoutTests/platform/ios/editing/execCommand/insertHorizontalRule-expected.txt: * LayoutTests/platform/ios/editing/selection/4402375-expected.txt: * LayoutTests/platform/ios/editing/selection/7152-1-expected.txt: * LayoutTests/platform/ios/editing/selection/7152-2-expected.txt: * LayoutTests/platform/ios/editing/selection/image-before-linebreak-expected.txt: * LayoutTests/platform/ios/fast/backgrounds/background-inherit-color-bug-expected.txt: * LayoutTests/platform/ios/fast/backgrounds/solid-color-context-restore-expected.txt: * LayoutTests/platform/ios/fast/block/basic/018-expected.txt: * LayoutTests/platform/ios/fast/block/basic/text-indent-rtl-expected.txt: * LayoutTests/platform/ios/fast/block/float/float-avoidance-expected.txt: * LayoutTests/platform/ios/fast/block/float/nopaint-after-layer-destruction-expected.txt: * LayoutTests/platform/ios/fast/block/float/nopaint-after-layer-destruction2-expected.txt: * LayoutTests/platform/ios/fast/block/float/shrink-to-avoid-float-complexity-expected.txt: * LayoutTests/platform/ios/fast/block/float/table-relayout-expected.txt: * LayoutTests/platform/ios/fast/block/float/width-update-after-clear-expected.txt: * LayoutTests/platform/ios/fast/block/margin-collapse/empty-clear-blocks-expected.txt: * LayoutTests/platform/ios/fast/block/positioning/height-change-expected.txt: * LayoutTests/platform/ios/fast/block/positioning/relayout-on-position-change-expected.txt: * LayoutTests/platform/ios/fast/block/positioning/window-height-change-expected.txt: * LayoutTests/platform/ios/fast/css-generated-content/014-expected.txt: * LayoutTests/platform/ios/fast/css-generated-content/016-expected.txt: * LayoutTests/platform/ios/fast/css/find-next-layer-expected.txt: * LayoutTests/platform/ios/fast/css/first-letter-detach-expected.txt: * LayoutTests/platform/ios/fast/css/h1-in-section-elements-expected.txt: * LayoutTests/platform/ios/fast/css/resize-corner-tracking-transformed-iframe-expected.txt: * LayoutTests/platform/ios/fast/css/rtl-ordering-expected.txt: * LayoutTests/platform/ios/fast/dom/34176-expected.txt: * LayoutTests/platform/ios/fast/dom/HTMLElement/bdo-expected.txt: * LayoutTests/platform/ios/fast/dom/HTMLLinkElement/pending-stylesheet-count-expected.txt: * LayoutTests/platform/ios/fast/dom/HTMLTableElement/colSpan-expected.txt: * LayoutTests/platform/ios/fast/dom/HTMLTableElement/createCaption-expected.txt: * LayoutTests/platform/ios/fast/dynamic/selection-highlight-adjust-expected.txt: * LayoutTests/platform/ios/fast/encoding/invalid-UTF-8-expected.txt: * LayoutTests/platform/ios/fast/forms/button-generated-content-expected.txt: * LayoutTests/platform/ios/fast/forms/fieldset-align-expected.txt: * LayoutTests/platform/ios/fast/forms/floating-textfield-relayout-expected.txt: * LayoutTests/platform/ios/fast/forms/image-border-expected.txt: * LayoutTests/platform/ios/fast/forms/input-value-expected.txt: * LayoutTests/platform/ios/fast/forms/select-visual-hebrew-expected.txt: * LayoutTests/platform/ios/fast/gradients/list-item-gradient-expected.txt: * LayoutTests/platform/ios/fast/inline/inline-box-background-expected.txt: * LayoutTests/platform/ios/fast/inline/inline-box-background-long-image-expected.txt: * LayoutTests/platform/ios/fast/inline/inline-box-background-repeat-x-expected.txt: * LayoutTests/platform/ios/fast/inline/inline-box-background-repeat-y-expected.txt: * LayoutTests/platform/ios/fast/inline/inline-continuation-borders-expected.txt: * LayoutTests/platform/ios/fast/layers/opacity-outline-expected.txt: * LayoutTests/platform/ios/fast/lists/markers-in-selection-expected.txt: * LayoutTests/platform/ios/fast/lists/ol-start-parsing-expected.txt: * LayoutTests/platform/ios/fast/lists/olstart-expected.txt: * LayoutTests/platform/ios/fast/multicol/table-vertical-align-expected.txt: * LayoutTests/platform/ios/fast/overflow/overflow-rtl-inline-scrollbar-expected.txt: * LayoutTests/platform/ios/fast/table/040-expected.txt: * LayoutTests/platform/ios/fast/table/040-vertical-expected.txt: * LayoutTests/platform/ios/fast/table/add-before-anonymous-child-expected.txt: * LayoutTests/platform/ios/fast/table/border-collapsing/border-collapsing-head-foot-expected.txt: * LayoutTests/platform/ios/fast/table/border-collapsing/border-collapsing-head-foot-vertical-expected.txt: * LayoutTests/platform/ios/fast/table/border-collapsing/rtl-border-collapsing-expected.txt: * LayoutTests/platform/ios/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.txt: * LayoutTests/platform/ios/fast/table/edge-offsets-expected.txt: * LayoutTests/platform/ios/fast/table/giantRowspan-expected.txt: * LayoutTests/platform/ios/fast/table/row-height-recalc-expected.txt: * LayoutTests/platform/ios/fast/table/rtl-cell-display-none-assert-expected.txt: * LayoutTests/platform/ios/fast/table/text-field-baseline-expected.txt: * LayoutTests/platform/ios/fast/table/unbreakable-images-quirk-expected.txt: * LayoutTests/platform/ios/fast/text/atsui-kerning-and-ligatures-expected.txt: * LayoutTests/platform/ios/fast/text/atsui-multiple-renderers-expected.txt: * LayoutTests/platform/ios/fast/text/atsui-negative-spacing-features-expected.txt: * LayoutTests/platform/ios/fast/text/atsui-small-caps-punctuation-size-expected.txt: * LayoutTests/platform/ios/fast/text/atsui-spacing-features-expected.txt: * LayoutTests/platform/ios/fast/text/basic/015-expected.txt: * LayoutTests/platform/ios/fast/text/capitalize-empty-generated-string-expected.txt: * LayoutTests/platform/ios/fast/text/cg-vs-atsui-expected.txt: * LayoutTests/platform/ios/fast/text/international/bidi-european-terminators-expected.txt: * LayoutTests/platform/ios/fast/text/international/bidi-ignored-for-first-child-inline-expected.txt: * LayoutTests/platform/ios/fast/text/international/bidi-innertext-expected.txt: * LayoutTests/platform/ios/fast/text/international/bidi-LDB-2-CSS-expected.txt: * LayoutTests/platform/ios/fast/text/international/bidi-LDB-2-formatting-characters-expected.txt: * LayoutTests/platform/ios/fast/text/international/bidi-LDB-2-HTML-expected.txt: * LayoutTests/platform/ios/fast/text/international/rtl-caret-expected.txt: * LayoutTests/platform/ios/fast/text/international/rtl-white-space-pre-wrap-expected.txt: * LayoutTests/platform/ios/fast/text/midword-break-hang-expected.txt: * LayoutTests/platform/ios/fast/text/should-use-atsui-expected.txt: * LayoutTests/platform/ios/fast/text/whitespace/pre-wrap-overflow-selection-expected.txt: * LayoutTests/platform/ios/fast/text/whitespace/pre-wrap-spaces-after-newline-expected.txt: * LayoutTests/platform/ios/svg/custom/svg-float-border-padding-expected.txt: * LayoutTests/platform/ios/tables/mozilla_expected_failures/bugs/97619-expected.txt: * LayoutTests/platform/ios/tables/mozilla_expected_failures/bugs/bug10140-expected.txt: * LayoutTests/platform/ios/tables/mozilla_expected_failures/bugs/bug1055-2-expected.txt: * LayoutTests/platform/ios/tables/mozilla_expected_failures/bugs/bug1647-expected.txt: * LayoutTests/platform/ios/tables/mozilla_expected_failures/bugs/bug21518-expected.txt: * LayoutTests/platform/ios/tables/mozilla_expected_failures/bugs/bug22122-expected.txt: * LayoutTests/platform/ios/tables/mozilla_expected_failures/bugs/bug2479-5-expected.txt: * LayoutTests/platform/ios/tables/mozilla_expected_failures/core/captions3-expected.txt: * LayoutTests/platform/ios/tables/mozilla_expected_failures/core/col_span2-expected.txt: * LayoutTests/platform/ios/tables/mozilla_expected_failures/core/conflicts-expected.txt: * LayoutTests/platform/ios/tables/mozilla_expected_failures/other/empty_cells-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug10269-2-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug10296-1-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug1055-1-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug1067-2-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug113235-3-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug1188-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug119786-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug1302-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug14323-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug14929-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug16252-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug17548-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug1800-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug18359-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug2479-1-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug2479-3-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug2479-4-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug27038-2-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug2886-2-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug28928-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug2947-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug30692-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug32841-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug33137-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug3977-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug42187-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug47432-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug60992-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug625-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug6304-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug7112-1-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug7112-2-expected.txt: * LayoutTests/platform/ios/tables/mozilla/bugs/bug727-expected.txt: * LayoutTests/platform/ios/tables/mozilla/core/col_widths_fix_autoFix-expected.txt: * LayoutTests/platform/ios/tables/mozilla/core/col_widths_fix_fix-expected.txt: * LayoutTests/platform/ios/tables/mozilla/core/misc-expected.txt: * LayoutTests/platform/ios/tables/mozilla/core/table_widths-expected.txt: * LayoutTests/platform/ios/tables/mozilla/other/wa_table_thtd_rowspan-expected.txt: * LayoutTests/platform/ios/tables/mozilla/other/wa_table_tr_align-expected.txt: * LayoutTests/platform/mac-bigsur/tables/mozilla/bugs/bug2479-3-expected.txt: * LayoutTests/platform/mac-wk2/fast/dynamic/012-expected.txt: * LayoutTests/platform/mac/css1/basic/containment-expected.txt: * LayoutTests/platform/mac/css1/basic/contextual_selectors-expected.txt: * LayoutTests/platform/mac/css1/basic/grouping-expected.txt: * LayoutTests/platform/mac/css1/basic/id_as_selector-expected.txt: * LayoutTests/platform/mac/css1/basic/inheritance-expected.txt: * LayoutTests/platform/mac/css1/box_properties/border_bottom_inline-expected.txt: * LayoutTests/platform/mac/css1/box_properties/border_bottom_width_inline-expected.txt: * LayoutTests/platform/mac/css1/box_properties/border_bottom_width-expected.txt: * LayoutTests/platform/mac/css1/box_properties/border_bottom-expected.txt: * LayoutTests/platform/mac/css1/box_properties/border_color_inline-expected.txt: * LayoutTests/platform/mac/css1/box_properties/border_color-expected.txt: * LayoutTests/platform/mac/css1/box_properties/border_inline-expected.txt: * LayoutTests/platform/mac/css1/box_properties/border_left_inline-expected.txt: * LayoutTests/platform/mac/css1/box_properties/border_left_width_inline-expected.txt: * LayoutTests/platform/mac/css1/box_properties/border_left_width-expected.txt: * LayoutTests/platform/mac/css1/box_properties/border_left-expected.txt: * LayoutTests/platform/mac/css1/box_properties/border_right_inline-expected.txt: * LayoutTests/platform/mac/css1/box_properties/border_right_width_inline-expected.txt: * LayoutTests/platform/mac/css1/box_properties/border_right_width-expected.txt: * LayoutTests/platform/mac/css1/box_properties/border_right-expected.txt: * LayoutTests/platform/mac/css1/box_properties/border_style_inline-expected.txt: * LayoutTests/platform/mac/css1/box_properties/border_style-expected.txt: * LayoutTests/platform/mac/css1/box_properties/border_top_inline-expected.txt: * LayoutTests/platform/mac/css1/box_properties/border_top_width_inline-expected.txt: * LayoutTests/platform/mac/css1/box_properties/border_top_width-expected.txt: * LayoutTests/platform/mac/css1/box_properties/border_top-expected.txt: * LayoutTests/platform/mac/css1/box_properties/border_width_inline-expected.txt: * LayoutTests/platform/mac/css1/box_properties/border_width-expected.txt: * LayoutTests/platform/mac/css1/box_properties/border-expected.txt: * LayoutTests/platform/mac/css1/box_properties/clear_float-expected.txt: * LayoutTests/platform/mac/css1/box_properties/clear-expected.txt: * LayoutTests/platform/mac/css1/box_properties/float_elements_in_series-expected.txt: * LayoutTests/platform/mac/css1/box_properties/float_margin-expected.txt: * LayoutTests/platform/mac/css1/box_properties/float_on_text_elements-expected.txt: * LayoutTests/platform/mac/css1/box_properties/float-expected.txt: * LayoutTests/platform/mac/css1/box_properties/height-expected.txt: * LayoutTests/platform/mac/css1/box_properties/margin_bottom_inline-expected.txt: * LayoutTests/platform/mac/css1/box_properties/margin_bottom-expected.txt: * LayoutTests/platform/mac/css1/box_properties/margin_inline-expected.txt: * LayoutTests/platform/mac/css1/box_properties/margin_left_inline-expected.txt: * LayoutTests/platform/mac/css1/box_properties/margin_left-expected.txt: * LayoutTests/platform/mac/css1/box_properties/margin_right_inline-expected.txt: * LayoutTests/platform/mac/css1/box_properties/margin_right-expected.txt: * LayoutTests/platform/mac/css1/box_properties/margin_top_inline-expected.txt: * LayoutTests/platform/mac/css1/box_properties/margin_top-expected.txt: * LayoutTests/platform/mac/css1/box_properties/margin-expected.txt: * LayoutTests/platform/mac/css1/box_properties/padding_bottom_inline-expected.txt: * LayoutTests/platform/mac/css1/box_properties/padding_bottom-expected.txt: * LayoutTests/platform/mac/css1/box_properties/padding_inline-expected.txt: * LayoutTests/platform/mac/css1/box_properties/padding_left_inline-expected.txt: * LayoutTests/platform/mac/css1/box_properties/padding_left-expected.txt: * LayoutTests/platform/mac/css1/box_properties/padding_right_inline-expected.txt: * LayoutTests/platform/mac/css1/box_properties/padding_right-expected.txt: * LayoutTests/platform/mac/css1/box_properties/padding_top_inline-expected.txt: * LayoutTests/platform/mac/css1/box_properties/padding_top-expected.txt: * LayoutTests/platform/mac/css1/box_properties/padding-expected.txt: * LayoutTests/platform/mac/css1/box_properties/width-expected.txt: * LayoutTests/platform/mac/css1/cascade/cascade_order-expected.txt: * LayoutTests/platform/mac/css1/cascade/important-expected.txt: * LayoutTests/platform/mac/css1/classification/display-expected.txt: * LayoutTests/platform/mac/css1/classification/list_style_image-expected.txt: * LayoutTests/platform/mac/css1/classification/list_style_position-expected.txt: * LayoutTests/platform/mac/css1/classification/list_style_type-expected.txt: * LayoutTests/platform/mac/css1/classification/list_style-expected.txt: * LayoutTests/platform/mac/css1/classification/white_space-expected.txt: * LayoutTests/platform/mac/css1/color_and_background/background_attachment-expected.txt: * LayoutTests/platform/mac/css1/color_and_background/background_color-expected.txt: * LayoutTests/platform/mac/css1/color_and_background/background_image-expected.txt: * LayoutTests/platform/mac/css1/color_and_background/background_position-expected.txt: * LayoutTests/platform/mac/css1/color_and_background/background_repeat-expected.txt: * LayoutTests/platform/mac/css1/color_and_background/background-expected.txt: * LayoutTests/platform/mac/css1/color_and_background/color-expected.txt: * LayoutTests/platform/mac/css1/conformance/forward_compatible_parsing-expected.txt: * LayoutTests/platform/mac/css1/font_properties/font_family-expected.txt: * LayoutTests/platform/mac/css1/font_properties/font_size-expected.txt: * LayoutTests/platform/mac/css1/font_properties/font_style-expected.txt: * LayoutTests/platform/mac/css1/font_properties/font_variant-expected.txt: * LayoutTests/platform/mac/css1/font_properties/font_weight-expected.txt: * LayoutTests/platform/mac/css1/font_properties/font-expected.txt: * LayoutTests/platform/mac/css1/formatting_model/canvas-expected.txt: * LayoutTests/platform/mac/css1/formatting_model/floating_elements-expected.txt: * LayoutTests/platform/mac/css1/formatting_model/height_of_lines-expected.txt: * LayoutTests/platform/mac/css1/formatting_model/inline_elements-expected.txt: * LayoutTests/platform/mac/css1/formatting_model/replaced_elements-expected.txt: * LayoutTests/platform/mac/css1/formatting_model/vertical_formatting-expected.txt: * LayoutTests/platform/mac/css1/pseudo/anchor-expected.txt: * LayoutTests/platform/mac/css1/pseudo/firstletter-expected.txt: * LayoutTests/platform/mac/css1/pseudo/firstline-expected.txt: * LayoutTests/platform/mac/css1/pseudo/multiple_pseudo_elements-expected.txt: * LayoutTests/platform/mac/css1/pseudo/pseudo_elements_in_selectors-expected.txt: * LayoutTests/platform/mac/css1/text_properties/letter_spacing-expected.txt: * LayoutTests/platform/mac/css1/text_properties/line_height-expected.txt: * LayoutTests/platform/mac/css1/text_properties/text_align-expected.txt: * LayoutTests/platform/mac/css1/text_properties/text_decoration-expected.txt: * LayoutTests/platform/mac/css1/text_properties/text_indent-expected.txt: * LayoutTests/platform/mac/css1/text_properties/text_transform-expected.txt: * LayoutTests/platform/mac/css1/text_properties/vertical_align-expected.txt: * LayoutTests/platform/mac/css1/text_properties/word_spacing-expected.txt: * LayoutTests/platform/mac/css1/units/color_units-expected.txt: * LayoutTests/platform/mac/css1/units/length_units-expected.txt: * LayoutTests/platform/mac/css1/units/percentage_units-expected.txt: * LayoutTests/platform/mac/css1/units/urls-expected.txt: * LayoutTests/platform/mac/css3/flexbox/button-expected.txt: * LayoutTests/platform/mac/editing/execCommand/create-list-with-hr-expected.txt: * LayoutTests/platform/mac/editing/execCommand/insertHorizontalRule-expected.txt: * LayoutTests/platform/mac/editing/inserting/4278698-expected.txt: * LayoutTests/platform/mac/editing/inserting/insert-paragraph-03-expected.txt: * LayoutTests/platform/mac/editing/inserting/insert-paragraph-04-expected.txt: * LayoutTests/platform/mac/editing/pasteboard/3976872-expected.txt: * LayoutTests/platform/mac/editing/pasteboard/4076267-2-expected.txt: * LayoutTests/platform/mac/editing/pasteboard/4076267-3-expected.txt: * LayoutTests/platform/mac/editing/pasteboard/4076267-expected.txt: * LayoutTests/platform/mac/editing/pasteboard/undoable-fragment-removes-expected.txt: * LayoutTests/platform/mac/editing/selection/4402375-expected.txt: * LayoutTests/platform/mac/editing/selection/6476-expected.txt: * LayoutTests/platform/mac/editing/selection/7152-1-expected.txt: * LayoutTests/platform/mac/editing/selection/7152-2-expected.txt: * LayoutTests/platform/mac/editing/selection/click-start-of-line-expected.txt: * LayoutTests/platform/mac/editing/selection/image-before-linebreak-expected.txt: * LayoutTests/platform/mac/editing/selection/select-from-textfield-outwards-expected.txt: * LayoutTests/platform/mac/editing/undo/4063751-expected.txt: * LayoutTests/platform/mac/fast/backgrounds/background-inherit-color-bug-expected.txt: * LayoutTests/platform/mac/fast/backgrounds/solid-color-context-restore-expected.txt: * LayoutTests/platform/mac/fast/block/basic/018-expected.txt: * LayoutTests/platform/mac/fast/block/basic/text-indent-rtl-expected.txt: * LayoutTests/platform/mac/fast/block/float/025-expected.txt: * LayoutTests/platform/mac/fast/block/float/026-expected.txt: * LayoutTests/platform/mac/fast/block/float/027-expected.txt: * LayoutTests/platform/mac/fast/block/float/028-expected.txt: * LayoutTests/platform/mac/fast/block/float/float-avoidance-expected.txt: * LayoutTests/platform/mac/fast/block/float/nopaint-after-layer-destruction-expected.txt: * LayoutTests/platform/mac/fast/block/float/nopaint-after-layer-destruction2-expected.txt: * LayoutTests/platform/mac/fast/block/float/shrink-to-avoid-float-complexity-expected.txt: * LayoutTests/platform/mac/fast/block/float/table-relayout-expected.txt: * LayoutTests/platform/mac/fast/block/float/width-update-after-clear-expected.txt: * LayoutTests/platform/mac/fast/block/margin-collapse/empty-clear-blocks-expected.txt: * LayoutTests/platform/mac/fast/block/positioning/height-change-expected.txt: * LayoutTests/platform/mac/fast/block/positioning/relayout-on-position-change-expected.txt: * LayoutTests/platform/mac/fast/block/positioning/window-height-change-expected.txt: * LayoutTests/platform/mac/fast/box-sizing/box-sizing-expected.txt: * LayoutTests/platform/mac/fast/css-generated-content/014-expected.png: Added. * LayoutTests/platform/mac/fast/css-generated-content/014-expected.txt: * LayoutTests/platform/mac/fast/css-generated-content/016-expected.txt: * LayoutTests/platform/mac/fast/css-generated-content/hover-style-change-expected.txt: * LayoutTests/platform/mac/fast/css/find-next-layer-expected.txt: * LayoutTests/platform/mac/fast/css/first-letter-detach-expected.txt: * LayoutTests/platform/mac/fast/css/h1-in-section-elements-expected.txt: * LayoutTests/platform/mac/fast/css/hover-subselector-expected.txt: * LayoutTests/platform/mac/fast/css/resize-corner-tracking-expected.txt: * LayoutTests/platform/mac/fast/css/resize-corner-tracking-transformed-expected.txt: * LayoutTests/platform/mac/fast/css/resize-corner-tracking-transformed-iframe-expected.txt: * LayoutTests/platform/mac/fast/css/rtl-ordering-expected.txt: * LayoutTests/platform/mac/fast/css/universal-hover-quirk-expected.txt: * LayoutTests/platform/mac/fast/dom/34176-expected.png: Added. * LayoutTests/platform/mac/fast/dom/34176-expected.txt: * LayoutTests/platform/mac/fast/dom/HTMLElement/bdo-expected.txt: * LayoutTests/platform/mac/fast/dom/HTMLLinkElement/pending-stylesheet-count-expected.txt: * LayoutTests/platform/mac/fast/dom/HTMLTableElement/colSpan-expected.txt: * LayoutTests/platform/mac/fast/dom/HTMLTableElement/createCaption-expected.txt: * LayoutTests/platform/mac/fast/dynamic/012-expected.txt: * LayoutTests/platform/mac/fast/dynamic/selection-highlight-adjust-expected.txt: * LayoutTests/platform/mac/fast/encoding/invalid-UTF-8-expected.txt: * LayoutTests/platform/mac/fast/encoding/utf-16-big-endian-expected.txt: * LayoutTests/platform/mac/fast/encoding/utf-16-little-endian-expected.txt: * LayoutTests/platform/mac/fast/forms/button-generated-content-expected.txt: * LayoutTests/platform/mac/fast/forms/button-inner-block-reuse-expected.txt: * LayoutTests/platform/mac/fast/forms/fieldset-align-expected.txt: * LayoutTests/platform/mac/fast/forms/floating-textfield-relayout-expected.txt: * LayoutTests/platform/mac/fast/forms/image-border-expected.txt: * LayoutTests/platform/mac/fast/forms/input-value-expected.png: Added. * LayoutTests/platform/mac/fast/forms/input-value-expected.txt: * LayoutTests/platform/mac/fast/forms/select-visual-hebrew-expected.txt: * LayoutTests/platform/mac/fast/forms/visual-hebrew-text-field-expected.txt: * LayoutTests/platform/mac/fast/inline/inline-box-background-expected.txt: * LayoutTests/platform/mac/fast/inline/inline-box-background-long-image-expected.txt: * LayoutTests/platform/mac/fast/inline/inline-box-background-repeat-x-expected.txt: * LayoutTests/platform/mac/fast/inline/inline-box-background-repeat-y-expected.txt: * LayoutTests/platform/mac/fast/inline/inline-continuation-borders-expected.txt: * LayoutTests/platform/mac/fast/layers/opacity-outline-expected.txt: * LayoutTests/platform/mac/fast/lists/markers-in-selection-expected.txt: * LayoutTests/platform/mac/fast/lists/ol-start-parsing-expected.txt: * LayoutTests/platform/mac/fast/lists/olstart-expected.txt: * LayoutTests/platform/mac/fast/multicol/table-vertical-align-expected.txt: * LayoutTests/platform/mac/fast/overflow/image-selection-highlight-expected.txt: * LayoutTests/platform/mac/fast/overflow/overflow-rtl-inline-scrollbar-expected.txt: * LayoutTests/platform/mac/fast/overflow/overflow-text-hit-testing-expected.txt: * LayoutTests/platform/mac/fast/repaint/delete-into-nested-block-expected.txt: * LayoutTests/platform/mac/fast/repaint/flexible-box-overflow-expected.txt: * LayoutTests/platform/mac/fast/repaint/flexible-box-overflow-horizontal-expected.txt: * LayoutTests/platform/mac/fast/repaint/inline-block-overflow-expected.txt: * LayoutTests/platform/mac/fast/repaint/layer-outline-expected.txt: * LayoutTests/platform/mac/fast/repaint/layer-outline-horizontal-expected.txt: * LayoutTests/platform/mac/fast/repaint/line-overflow-expected.txt: * LayoutTests/platform/mac/fast/repaint/outline-child-repaint-expected.txt: * LayoutTests/platform/mac/fast/repaint/outline-shrinking-expected.txt: * LayoutTests/platform/mac/fast/repaint/overflow-delete-line-expected.txt: * LayoutTests/platform/mac/fast/repaint/static-to-positioned-expected.txt: * LayoutTests/platform/mac/fast/repaint/table-cell-move-expected.txt: * LayoutTests/platform/mac/fast/repaint/text-shadow-expected.txt: * LayoutTests/platform/mac/fast/repaint/text-shadow-horizontal-expected.txt: * LayoutTests/platform/mac/fast/replaced/inline-box-wrapper-handover-expected.txt: * LayoutTests/platform/mac/fast/table/040-expected.txt: * LayoutTests/platform/mac/fast/table/040-vertical-expected.txt: * LayoutTests/platform/mac/fast/table/add-before-anonymous-child-expected.txt: * LayoutTests/platform/mac/fast/table/border-collapsing/border-collapsing-head-foot-expected.txt: * LayoutTests/platform/mac/fast/table/border-collapsing/border-collapsing-head-foot-vertical-expected.txt: * LayoutTests/platform/mac/fast/table/border-collapsing/rtl-border-collapsing-expected.txt: * LayoutTests/platform/mac/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.txt: * LayoutTests/platform/mac/fast/table/click-near-anonymous-table-expected.txt: * LayoutTests/platform/mac/fast/table/edge-offsets-expected.txt: * LayoutTests/platform/mac/fast/table/giantRowspan-expected.txt: * LayoutTests/platform/mac/fast/table/row-height-recalc-expected.txt: * LayoutTests/platform/mac/fast/table/rtl-cell-display-none-assert-expected.txt: * LayoutTests/platform/mac/fast/table/text-field-baseline-expected.txt: * LayoutTests/platform/mac/fast/table/unbreakable-images-quirk-expected.txt: * LayoutTests/platform/mac/fast/text/atsui-kerning-and-ligatures-expected.txt: * LayoutTests/platform/mac/fast/text/atsui-multiple-renderers-expected.txt: * LayoutTests/platform/mac/fast/text/atsui-negative-spacing-features-expected.txt: * LayoutTests/platform/mac/fast/text/atsui-pointtooffset-calls-cg-expected.txt: * LayoutTests/platform/mac/fast/text/atsui-rtl-override-selection-expected.txt: * LayoutTests/platform/mac/fast/text/atsui-small-caps-punctuation-size-expected.txt: * LayoutTests/platform/mac/fast/text/atsui-spacing-features-expected.txt: * LayoutTests/platform/mac/fast/text/basic/015-expected.txt: * LayoutTests/platform/mac/fast/text/capitalize-empty-generated-string-expected.txt: * LayoutTests/platform/mac/fast/text/cg-vs-atsui-expected.txt: * LayoutTests/platform/mac/fast/text/hyphenate-avoid-orphaned-word-expected.png: Added. * LayoutTests/platform/mac/fast/text/in-rendered-text-rtl-expected.txt: * LayoutTests/platform/mac/fast/text/international/bidi-european-terminators-expected.txt: * LayoutTests/platform/mac/fast/text/international/bidi-ignored-for-first-child-inline-expected.txt: * LayoutTests/platform/mac/fast/text/international/bidi-innertext-expected.txt: * LayoutTests/platform/mac/fast/text/international/bidi-LDB-2-CSS-expected.txt: * LayoutTests/platform/mac/fast/text/international/bidi-LDB-2-formatting-characters-expected.txt: * LayoutTests/platform/mac/fast/text/international/bidi-LDB-2-HTML-expected.txt: * LayoutTests/platform/mac/fast/text/international/hebrew-vowels-expected.txt: * LayoutTests/platform/mac/fast/text/international/rtl-caret-expected.txt: * LayoutTests/platform/mac/fast/text/international/rtl-white-space-pre-wrap-expected.txt: * LayoutTests/platform/mac/fast/text/international/text-combine-image-test-expected.txt: * LayoutTests/platform/mac/fast/text/international/vertical-text-glyph-test-expected.png: Added. * LayoutTests/platform/mac/fast/text/international/vertical-text-glyph-test-expected.txt: * LayoutTests/platform/mac/fast/text/midword-break-hang-expected.txt: * LayoutTests/platform/mac/fast/text/should-use-atsui-expected.txt: * LayoutTests/platform/mac/fast/text/whitespace/pre-wrap-overflow-selection-expected.txt: * LayoutTests/platform/mac/fast/text/whitespace/pre-wrap-spaces-after-newline-expected.txt: * LayoutTests/platform/mac/http/tests/navigation/javascriptlink-frames-expected.txt: * LayoutTests/platform/mac/svg/custom/svg-float-border-padding-expected.txt: * LayoutTests/platform/mac/svg/zoom/page/zoom-svg-float-border-padding-expected.txt: * LayoutTests/platform/mac/svg/zoom/text/zoom-svg-float-border-padding-expected.txt: * LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/97619-expected.txt: * LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug10140-expected.txt: * LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug1055-2-expected.txt: * LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug1647-expected.txt: * LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug21518-expected.txt: * LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug22122-expected.txt: * LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png: Added. * LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug2479-5-expected.txt: * LayoutTests/platform/mac/tables/mozilla_expected_failures/core/captions3-expected.txt: * LayoutTests/platform/mac/tables/mozilla_expected_failures/core/col_span2-expected.txt: * LayoutTests/platform/mac/tables/mozilla_expected_failures/core/conflicts-expected.txt: * LayoutTests/platform/mac/tables/mozilla_expected_failures/other/empty_cells-expected.txt: * LayoutTests/platform/mac/tables/mozilla/bugs/bug10269-2-expected.txt: * LayoutTests/platform/mac/tables/mozilla/bugs/bug10296-1-expected.png: Added. * LayoutTests/platform/mac/tables/mozilla/bugs/bug10296-1-expected.txt: * LayoutTests/platform/mac/tables/mozilla/bugs/bug1055-1-expected.txt: * LayoutTests/platform/mac/tables/mozilla/bugs/bug1067-2-expected.txt: * LayoutTests/platform/mac/tables/mozilla/bugs/bug113235-3-expected.txt: * LayoutTests/platform/mac/tables/mozilla/bugs/bug1188-expected.txt: * LayoutTests/platform/mac/tables/mozilla/bugs/bug119786-expected.txt: * LayoutTests/platform/mac/tables/mozilla/bugs/bug1302-expected.txt: * LayoutTests/platform/mac/tables/mozilla/bugs/bug14323-expected.txt: * LayoutTests/platform/mac/tables/mozilla/bugs/bug14929-expected.txt: * LayoutTests/platform/mac/tables/mozilla/bugs/bug16252-expected.txt: * LayoutTests/platform/mac/tables/mozilla/bugs/bug17548-expected.txt: * LayoutTests/platform/mac/tables/mozilla/bugs/bug1800-expected.txt: * LayoutTests/platform/mac/tables/mozilla/bugs/bug18359-expected.png: Added. * LayoutTests/platform/mac/tables/mozilla/bugs/bug18359-expected.txt: * LayoutTests/platform/mac/tables/mozilla/bugs/bug2479-1-expected.txt: * LayoutTests/platform/mac/tables/mozilla/bugs/bug2479-3-expected.txt: * LayoutTests/platform/mac/tables/mozilla/bugs/bug2479-4-expected.txt: * LayoutTests/platform/mac/tables/mozilla/bugs/bug27038-2-expected.txt: * LayoutTests/platform/mac/tables/mozilla/bugs/bug2886-2-expected.txt: * LayoutTests/platform/mac/tables/mozilla/bugs/bug28928-expected.txt: * LayoutTests/platform/mac/tables/mozilla/bugs/bug2947-expected.txt: * LayoutTests/platform/mac/tables/mozilla/bugs/bug30692-expected.txt: * LayoutTests/platform/mac/tables/mozilla/bugs/bug32841-expected.txt: * LayoutTests/platform/mac/tables/mozilla/bugs/bug33137-expected.txt: * LayoutTests/platform/mac/tables/mozilla/bugs/bug3977-expected.txt: * LayoutTests/platform/mac/tables/mozilla/bugs/bug42187-expected.txt: * LayoutTests/platform/mac/tables/mozilla/bugs/bug47432-e…
Follows whatwg/html#2724