Commit 11d85ccf authored by Mason Freed's avatar Mason Freed Committed by Commit Bot

Enable visually-refreshed form controls on Mac

*** SHERIFFS: if this CL triggers a flaky layout test, PLEASE do not
*** revert this CL. Instead, please disable the offending test(s) and
*** add them to the crbug.com/1053725 section of TestExpectations. I
*** will then take care of them as I fix up the remainder of these
*** tests. Feel free to cc me if you create a bug. Thanks.

This CL enables the FormControlsRefresh flag by default on all Desktop
platforms. The launch bug is crbug.com/1051552.

Because many layout tests use form controls, including tests that are
not directly testing form controls, this CL requires many tests
to be rebaselined. The bug at [1] tracks the effort to re-baseline all
of these tests and remove these new lines from TestExpectations. This
will be done in pieces, to reduce the code review burden. The bug at
[2] tracks cleaning up some of these tests eventually, as there are
new tests (see [3]) that directly test the appearance of the new form
controls, and those likely supersede many rebaselines in this CL.
However, I would like to get this landed first, as it might require
several Revert/Reland cycles to get landed for good, and then I can
come back and do the cleanup.

[1] https://crbug.com/1053725
[2] https://crbug.com/1034611
[3] https://source.chromium.org/chromium/chromium/src/+/master:third_party/blink/web_tests/virtual/controls-refresh/

Bug: 1012108, 1053725, 1034611, 1051552
Change-Id: I2d6da06c21567506cf1fc601b90c686c74310376
Cq-Do-Not-Cancel-Tryjobs: true
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2063530
Commit-Queue: Mason Freed <masonfreed@chromium.org>
Commit-Queue: Sadrul Chowdhury <sadrul@chromium.org>
Commit-Queue: Chris Harrelson <chrishtr@chromium.org>
Auto-Submit: Mason Freed <masonfreed@chromium.org>
Reviewed-by: default avatarSadrul Chowdhury <sadrul@chromium.org>
Reviewed-by: default avatarChris Harrelson <chrishtr@chromium.org>
Reviewed-by: default avatarStephen Chenney <schenney@chromium.org>
Cr-Commit-Position: refs/heads/master@{#743185}
parent 98f2a89e
...@@ -392,12 +392,7 @@ TEST_P(LayoutBoxTest, ControlClip) { ...@@ -392,12 +392,7 @@ TEST_P(LayoutBoxTest, ControlClip) {
EXPECT_TRUE(target->HasControlClip()); EXPECT_TRUE(target->HasControlClip());
EXPECT_TRUE(target->HasClipRelatedProperty()); EXPECT_TRUE(target->HasClipRelatedProperty());
EXPECT_TRUE(target->ShouldClipOverflow()); EXPECT_TRUE(target->ShouldClipOverflow());
#if defined(OS_MACOSX)
EXPECT_EQ(PhysicalRect(0, 0, 100, 18),
target->ClippingRect(PhysicalOffset()));
#else
EXPECT_EQ(PhysicalRect(2, 2, 96, 46), target->ClippingRect(PhysicalOffset())); EXPECT_EQ(PhysicalRect(2, 2, 96, 46), target->ClippingRect(PhysicalOffset()));
#endif
} }
TEST_P(LayoutBoxTest, LocalVisualRectWithMask) { TEST_P(LayoutBoxTest, LocalVisualRectWithMask) {
......
...@@ -319,8 +319,10 @@ Color LayoutThemeMacRefresh::PlatformGrammarMarkerUnderlineColor() const { ...@@ -319,8 +319,10 @@ Color LayoutThemeMacRefresh::PlatformGrammarMarkerUnderlineColor() const {
Color LayoutThemeMacRefresh::FocusRingColor() const { Color LayoutThemeMacRefresh::FocusRingColor() const {
static const RGBA32 kDefaultFocusRingColor = 0xFF101010; static const RGBA32 kDefaultFocusRingColor = 0xFF101010;
if (UsesTestModeFocusRingColor()) if (UsesTestModeFocusRingColor()) {
return kDefaultFocusRingColor; return HasCustomFocusRingColor() ? GetCustomFocusRingColor()
: kDefaultFocusRingColor;
}
Color keyboard_focus_indicator = Color keyboard_focus_indicator =
GetSystemColor(MacSystemColorID::kKeyboardFocusIndicator); GetSystemColor(MacSystemColorID::kKeyboardFocusIndicator);
......
...@@ -183,21 +183,12 @@ TEST_F(PaintLayerClipperTest, ControlClip) { ...@@ -183,21 +183,12 @@ TEST_F(PaintLayerClipperTest, ControlClip) {
.CalculateRects(context, .CalculateRects(context,
&target_paint_layer->GetLayoutObject().FirstFragment(), &target_paint_layer->GetLayoutObject().FirstFragment(),
nullptr, layer_bounds, background_rect, foreground_rect); nullptr, layer_bounds, background_rect, foreground_rect);
#if defined(OS_MACOSX)
// If the PaintLayer clips overflow, the background rect is intersected with
// the PaintLayer bounds...
EXPECT_EQ(PhysicalRect(3, 4, 210, 28), background_rect.Rect());
// and the foreground rect is intersected with the control clip in this case.
EXPECT_EQ(PhysicalRect(8, 8, 200, 18), foreground_rect.Rect());
EXPECT_EQ(PhysicalRect(8, 8, 200, 18), layer_bounds);
#else
// If the PaintLayer clips overflow, the background rect is intersected with // If the PaintLayer clips overflow, the background rect is intersected with
// the PaintLayer bounds... // the PaintLayer bounds...
EXPECT_EQ(PhysicalRect(8, 8, 200, 300), background_rect.Rect()); EXPECT_EQ(PhysicalRect(8, 8, 200, 300), background_rect.Rect());
// and the foreground rect is intersected with the control clip in this case. // and the foreground rect is intersected with the control clip in this case.
EXPECT_EQ(PhysicalRect(10, 10, 196, 296), foreground_rect.Rect()); EXPECT_EQ(PhysicalRect(10, 10, 196, 296), foreground_rect.Rect());
EXPECT_EQ(PhysicalRect(8, 8, 200, 300), layer_bounds); EXPECT_EQ(PhysicalRect(8, 8, 200, 300), layer_bounds);
#endif
} }
TEST_F(PaintLayerClipperTest, RoundedClip) { TEST_F(PaintLayerClipperTest, RoundedClip) {
......
...@@ -291,13 +291,13 @@ TEST_F(LocaleMacTest, monthLabels) { ...@@ -291,13 +291,13 @@ TEST_F(LocaleMacTest, monthLabels) {
} }
TEST_F(LocaleMacTest, weekDayShortLabels) { TEST_F(LocaleMacTest, weekDayShortLabels) {
EXPECT_EQ("Sun", WeekDayShortLabel("en_US", kSunday)); EXPECT_EQ("S", WeekDayShortLabel("en_US", kSunday));
EXPECT_EQ("Wed", WeekDayShortLabel("en_US", kWednesday)); EXPECT_EQ("W", WeekDayShortLabel("en_US", kWednesday));
EXPECT_EQ("Sat", WeekDayShortLabel("en_US", kSaturday)); EXPECT_EQ("S", WeekDayShortLabel("en_US", kSaturday));
EXPECT_EQ("dim.", WeekDayShortLabel("fr_FR", kSunday)); EXPECT_EQ("D", WeekDayShortLabel("fr_FR", kSunday));
EXPECT_EQ("mer.", WeekDayShortLabel("fr_FR", kWednesday)); EXPECT_EQ("M", WeekDayShortLabel("fr_FR", kWednesday));
EXPECT_EQ("sam.", WeekDayShortLabel("fr_FR", kSaturday)); EXPECT_EQ("S", WeekDayShortLabel("fr_FR", kSaturday));
EXPECT_EQ("\xE6\x97\xA5", WeekDayShortLabel("ja_JP", kSunday).Utf8()); EXPECT_EQ("\xE6\x97\xA5", WeekDayShortLabel("ja_JP", kSunday).Utf8());
EXPECT_EQ("\xE6\xB0\xB4", WeekDayShortLabel("ja_JP", kWednesday).Utf8()); EXPECT_EQ("\xE6\xB0\xB4", WeekDayShortLabel("ja_JP", kWednesday).Utf8());
......
...@@ -1888,6 +1888,931 @@ crbug.com/987224 [ IOS ] virtual/cascade/external/wpt/css/css-paint-api/idlharne ...@@ -1888,6 +1888,931 @@ crbug.com/987224 [ IOS ] virtual/cascade/external/wpt/css/css-paint-api/idlharne
# ====== Cascade failures until here ====== # ====== Cascade failures until here ======
# ====== Form Controls Refresh (chrome://flags/#form-controls-refresh) failures from here ======
# ======
# From this point until the end of the Form Controls Refresh section, these are
# in-progress rebaselines, tracked at crbug.com/1053725.
#
# PLEASE DO NOT PUT ANYTHING INSIDE THIS SECTION!!
# ======
crbug.com/1053725 [ Mac ] compositing/contents-opaque/control-layer.html [ Skip ]
crbug.com/1053725 [ Mac ] compositing/gestures/gesture-tapHighlight-with-box-shadow.html [ Skip ]
crbug.com/1053725 [ Mac ] compositing/overflow/do-not-paint-outline-into-composited-scrolling-contents.html [ Skip ]
crbug.com/1053725 [ Mac ] compositing/overflow/textarea-scroll-touch.html [ Skip ]
crbug.com/1053725 [ Mac ] compositing/overflow/theme-affects-visual-overflow.html [ Skip ]
crbug.com/1053725 [ Mac ] compositing/overflow/update-widget-positions-on-nested-frames-and-scrollers.html [ Skip ]
crbug.com/1053725 [ Mac ] css1/box_properties/acid_test.html [ Skip ]
crbug.com/1053725 [ Mac ] css2.1/t09-c5526c-display-00-e.html [ Skip ]
crbug.com/1053725 [ Mac ] css3/flexbox/button.html [ Skip ]
crbug.com/1053725 [ Mac ] css3/selectors3/html/css3-modsel-161.html [ Skip ]
crbug.com/1053725 [ Mac ] css3/selectors3/html/css3-modsel-19b.html [ Skip ]
crbug.com/1053725 [ Mac ] css3/selectors3/html/css3-modsel-23.html [ Skip ]
crbug.com/1053725 [ Mac ] css3/selectors3/html/css3-modsel-24.html [ Skip ]
crbug.com/1053725 [ Mac ] css3/selectors3/html/css3-modsel-25.html [ Skip ]
crbug.com/1053725 [ Mac ] css3/selectors3/html/css3-modsel-64.html [ Skip ]
crbug.com/1053725 [ Mac ] css3/selectors3/html/css3-modsel-68.html [ Skip ]
crbug.com/1053725 [ Mac ] css3/selectors3/html/css3-modsel-69.html [ Skip ]
crbug.com/1053725 [ Mac ] css3/selectors3/html/css3-modsel-70.html [ Skip ]
crbug.com/1053725 [ Mac ] css3/selectors3/xhtml/css3-modsel-161.xml [ Skip ]
crbug.com/1053725 [ Mac ] css3/selectors3/xhtml/css3-modsel-19b.xml [ Skip ]
crbug.com/1053725 [ Mac ] css3/selectors3/xhtml/css3-modsel-23.xml [ Skip ]
crbug.com/1053725 [ Mac ] css3/selectors3/xhtml/css3-modsel-24.xml [ Skip ]
crbug.com/1053725 [ Mac ] css3/selectors3/xhtml/css3-modsel-25.xml [ Skip ]
crbug.com/1053725 [ Mac ] css3/selectors3/xhtml/css3-modsel-64.xml [ Skip ]
crbug.com/1053725 [ Mac ] css3/selectors3/xhtml/css3-modsel-68.xml [ Skip ]
crbug.com/1053725 [ Mac ] css3/selectors3/xhtml/css3-modsel-69.xml [ Skip ]
crbug.com/1053725 [ Mac ] css3/selectors3/xhtml/css3-modsel-70.xml [ Skip ]
crbug.com/1053725 [ Mac ] css3/selectors3/xml/css3-modsel-161.xml [ Skip ]
crbug.com/1053725 [ Mac ] css3/selectors3/xml/css3-modsel-19b.xml [ Skip ]
crbug.com/1053725 [ Mac ] css3/selectors3/xml/css3-modsel-23.xml [ Skip ]
crbug.com/1053725 [ Mac ] css3/selectors3/xml/css3-modsel-24.xml [ Skip ]
crbug.com/1053725 [ Mac ] css3/selectors3/xml/css3-modsel-25.xml [ Skip ]
crbug.com/1053725 [ Mac ] css3/selectors3/xml/css3-modsel-64.xml [ Skip ]
crbug.com/1053725 [ Mac ] css3/selectors3/xml/css3-modsel-68.xml [ Skip ]
crbug.com/1053725 [ Mac ] css3/selectors3/xml/css3-modsel-69.xml [ Skip ]
crbug.com/1053725 [ Mac ] css3/selectors3/xml/css3-modsel-70.xml [ Skip ]
crbug.com/1053725 [ Mac ] custom-elements/form-validation-bubble-appearance.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/caret/caret-color-001.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/caret/caret-color-002.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/caret/caret-color-003.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/caret/caret-color-004.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/caret/caret-color-005.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/caret/caret-color-007.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/caret/caret-color-010.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/caret/caret-color-011.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/caret/caret-color-012.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/caret/caret-color-014.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/caret/caret-color-015.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/caret/caret-color.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/caret/caret-height.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/caret/caret-painting-low-dpi.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/caret/caret-position.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/deleting/5369009.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/deleting/5433862-2.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/deleting/5483370.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/deleting/delete-at-paragraph-boundaries-011.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/deleting/delete-br-013.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/deleting/delete-line-015.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/deleting/delete-line-016.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/deleting/delete-line-017.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/deleting/merge-different-styles.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/deleting/merge-endOfParagraph.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/deleting/merge-no-br.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/deleting/table-cells.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/execCommand/4916541.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/execCommand/5142012-1.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/execCommand/format-block-with-trailing-br.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/execCommand/insertImage.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/input/caret-at-the-edge-of-contenteditable.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/input/caret-at-the-edge-of-input.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/input/caret-read-only-after-editable.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/input/emacs-ctrl-o.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/input/reveal-caret-of-multiline-contenteditable.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/input/reveal-caret-of-multiline-input.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/inserting/4278698.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/inserting/4840662.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/inserting/4960120-1.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/inserting/5002441.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/inserting/5058163-1.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/inserting/5058163-2.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/inserting/5549929-2.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/inserting/5549929-3.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/inserting/insert-3800346-fix.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/inserting/insert-space-in-empty-doc.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/inserting/insert-text-at-tabspan-001.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/inserting/insert-text-at-tabspan-003.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/inserting/line-break.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/inserting/paragraph-separator-in-table-1.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/inserting/paragraph-separator-in-table-2.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/pasteboard/4631972.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/pasteboard/4806874.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/pasteboard/4947130.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/pasteboard/5071074-2.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/pasteboard/5071074.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/pasteboard/5134759.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/pasteboard/5156401-1.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/pasteboard/5478250.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/pasteboard/5601583-1.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/pasteboard/bad-placeholder.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/pasteboard/copy-standalone-image.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/pasteboard/drag-selected-image-to-contenteditable.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/pasteboard/emacs-cntl-y-001.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/pasteboard/emacs-ctrl-k-y-001.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/pasteboard/input-field-1.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/pasteboard/paste-blockquote-after-blockquote.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/pasteboard/paste-blockquote-into-blockquote-4.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/pasteboard/paste-line-endings-001.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/pasteboard/paste-line-endings-002.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/pasteboard/paste-line-endings-003.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/pasteboard/paste-line-endings-004.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/pasteboard/paste-line-endings-005.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/pasteboard/paste-text-at-tabspan-003.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/pasteboard/pasting-tabs.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/pasteboard/quirks-mode-br-1.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/pasteboard/styled-element-markup.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/4975120.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/5099303.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/5195166-2.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/6476.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/caret-ltr-2-left.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/caret-ltr-2.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/caret-ltr-right.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/caret-ltr.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/caret-rtl-2-left.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/caret-rtl-2.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/caret-rtl-right.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/caret-rtl.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/click-start-of-line.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/contains-boundaries.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/contenteditable-click-inside.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/extend-selection-bidi.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/leave-requested-block.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/line-wrap-2.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/move-backwords-by-word-001.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/move-by-line-002.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/move-by-sentence-001.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/move-past-trailing-space.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/previous-line-position.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/replaced-boundaries-1.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/replaced-boundaries-2.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/replaced-boundaries-3.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/select-missing-image.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/selection-background.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/selection-button-text.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/selection-linebreaks-rtl-writing-modes.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/triple-click-in-pre.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/wrapped-line-caret-1.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/selection/wrapped-line-caret-2.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/style/4916887.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/style/5065910.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/style/5084241.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/style/5228141.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/style/5279521.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/style/block-styles-007.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/style/highlight.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/unsupported-content/list-delete-001.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/unsupported-content/list-delete-003.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/unsupported-content/list-type-after.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/unsupported-content/list-type-before.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/unsupported-content/table-type-after.html [ Skip ]
crbug.com/1053725 [ Mac ] editing/unsupported-content/table-type-before.html [ Skip ]
crbug.com/1053725 [ Mac ] external/wpt/IndexedDB/idlharness.any.serviceworker.html [ Skip ]
crbug.com/1053725 [ Mac ] external/wpt/css/css-pseudo/spelling-error-002-manual.html [ Skip ]
crbug.com/1053725 [ Mac ] external/wpt/css/css-pseudo/spelling-error-003-manual.html [ Skip ]
crbug.com/1053725 [ Mac ] external/wpt/css/css-tables/height-distribution/percentage-sizing-of-table-cell-children.html [ Skip ]
crbug.com/1053725 [ Mac ] external/wpt/dom/events/Event-dispatch-redispatch.html [ Skip ]
# Put back commented version at line 7066:
crbug.com/1053725 [ Mac ] external/wpt/dom/ranges/Range-mutations-dataChange.html [ Skip ]
crbug.com/1053725 [ Mac ] external/wpt/html/rendering/widgets/baseline-alignment-and-overflow.tentative.html [ Skip ]
crbug.com/1053725 [ Mac ] external/wpt/html/rendering/widgets/button-layout/abspos.html [ Skip ]
# Put back commented version at line 7275:
crbug.com/1053725 [ Mac ] external/wpt/html/semantics/forms/constraints/form-validation-reportValidity.html [ Skip ]
crbug.com/1053725 [ Mac ] external/wpt/webxr/idlharness.https.window.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/block/basic/011.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/block/float/032.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/block/float/float-avoidance.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/block/float/overhanging-tall-block.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/block/margin-collapse/103.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/block/positioning/inline-block-relposition.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/css/button-height.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/css/continuationCrash.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/css/css2-system-color.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/css/css2-system-fonts.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/css/focus-ring-continuations.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/css/focus-ring-detached.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/css/focus-ring-multiline-writingmode-vertical.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/css/focus-ring-multiline.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/css/focus-ring-outline-color.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/css/focus-ring-outline-offset.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/css/focus-ring-outline-width.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/css/ignore-empty-focus-ring-rects.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/css/input-search-padding.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/css/line-height.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/css/margin-top-bottom-dynamic.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/css/non-standard-checkbox-size.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/css/outline-auto-empty-rects.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/css/outline-auto-location.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/css/resize-corner-tracking.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/css/rtl-ordering.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/css/text-overflow-ellipsis-button.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/css/text-overflow-input.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/css-grid-layout/preferred-width-computed-after-layout.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/dom/52776.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/dom/focus-contenteditable.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/dom/HTMLMeterElement/meter-boundary-values.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/dom/HTMLMeterElement/meter-element-repaint-on-update-value.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/dom/HTMLMeterElement/meter-element.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/dom/HTMLMeterElement/meter-optimums.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/dom/HTMLMeterElement/meter-styles-changing-pseudo.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/dom/HTMLMeterElement/meter-styles.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/dom/HTMLProgressElement/progress-element.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/dynamic/008.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/events/reveal-link-when-focused.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/files/file-in-input-display.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/001.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/basic-buttons.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/basic-inputs.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/blankbuttons.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/button-default-title.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/button-positioned.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/button-sizes.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/button-style-color.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/button-table-styles.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/button-text-transform.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/control-clip-overflow.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/control-clip.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/control-restrict-line-height.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/encoding-test.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/floating-textfield-relayout.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/form-element-geometry.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/formmove.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/formmove2.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/formmove3.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/huge-mac-input-clamped-height.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/huge-mac-input-clamped-width.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/implicit-submission.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/indeterminate.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/input-align.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/input-appearance-height.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/input-button-sizes.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/input-first-letter.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/input-type-text-min-width.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/input-value.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/minWidthPercent.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/placeholder-position.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/plaintext-mode-2.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/stuff-on-my-optgroup.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/suggested-value.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/tabbing-input-iframe.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/targeted-frame-submission.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text-control-intrinsic-widths.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text-style-color.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/validation-bubble-appearance-edge.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/validation-bubble-appearance-escape.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/validation-bubble-appearance-iframe.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/validation-bubble-appearance-rtl-ui.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/validation-bubble-appearance-wrap.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/validation-bubble-device-emulation-change.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/validation-bubble-device-emulation.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/visual-hebrew-text-field.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/button/button-align.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/button/button-cannot-be-nested.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/button/button-inner-block-reuse.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/button/button-white-space.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/calendar-picker/calendar-picker-appearance-ar.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/calendar-picker/calendar-picker-appearance-coarse.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/calendar-picker/calendar-picker-appearance-minimum-date.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/calendar-picker/calendar-picker-appearance-required-ar.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/calendar-picker/calendar-picker-appearance-required.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/calendar-picker/calendar-picker-appearance-ru.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/calendar-picker/calendar-picker-appearance-step.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/calendar-picker/calendar-picker-appearance-zoom200.html [ Skip ]
# Put back commented version at line 7518:
crbug.com/1053725 [ Mac ] fast/forms/calendar-picker/calendar-picker-appearance.html [ Skip ]
# Put back commented version at line 7519:
crbug.com/1053725 [ Mac ] fast/forms/calendar-picker/month-picker-appearance-step.html [ Skip ]
# Put back commented version at line 7523:
crbug.com/1053725 [ Mac ] fast/forms/calendar-picker/month-picker-appearance.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/calendar-picker/week-picker-appearance-step.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/calendar-picker/week-picker-appearance.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/checkbox/checkbox-appearance-basic.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/color/color-suggestion-picker-appearance-zoom125.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/color/color-suggestion-picker-appearance-zoom200.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/color/color-suggestion-picker-appearance.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/color/color-suggestion-picker-one-row-appearance.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/color/color-suggestion-picker-two-row-appearance.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/color/color-suggestion-picker-with-scrollbar-appearance.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/color/input-appearance-color.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/color/input-color-choose-default-value-after-set-value.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/color/input-color-onchange-event.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/datalist/input-appearance-range-with-datalist-zoomed.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/datalist/input-appearance-range-with-datalist.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/datalist/input-appearance-range-with-padding-with-datalist.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/datalist/input-appearance-range-with-transform.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/date/date-appearance-l10n.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/date/date-appearance-pseudo-elements.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/datetimelocal/datetimelocal-appearance-basic.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/datetimelocal/datetimelocal-appearance-l10n.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/fieldset/fieldset-align.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/file/file-appearance-basic.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/file/file-input-direction.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/file/file-input-pressed-state.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/file/input-file-re-render.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/image/002.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/image/005.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/image/image-alt-text.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/month/month-appearance-basic.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/month/month-appearance-l10n.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/month/month-appearance-pseudo-elements.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/number/number-appearance-datalist.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/number/number-appearance-rtl.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/number/number-appearance-spinbutton-disabled-readonly.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/number/number-appearance-spinbutton-layer.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/radio/radio-appearance-basic.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/range/input-appearance-range.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/range/range-appearance-basic.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/range/range-update.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/range/slider-padding.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/range/slider-thumb-shared-style.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/search/search-appearance-basic.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/search/search-cancel-button-style-sharing.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/search/search-display-none-cancel-button.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/search/search-rtl.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/search/search-vertical-alignment.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/search/searchfield-heights.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/003.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/004.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/HTMLOptionElement_label01.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/HTMLOptionElement_label02.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/HTMLOptionElement_label03.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/HTMLOptionElement_label04.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/HTMLOptionElement_label05.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/HTMLOptionElement_label06.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/HTMLOptionElement_label07.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/basic-selects.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/disabled-select-change-index.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/input-select-after-resize.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/listbox-appearance-basic.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/listbox-appearance-separator.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/listbox-bidi-align.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/listbox-clip.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/listbox-scrollbar-incremental-load.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/listbox-width-change.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/listbox-with-display-none-option.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/menulist-appearance-basic.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/menulist-appearance-none.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/menulist-appearance-rtl.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/menulist-clip.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/menulist-deselect-update.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/menulist-narrow-width.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/menulist-no-overflow.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/menulist-option-wrap.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/menulist-popup-open-hide-using-keyboard.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/menulist-restrict-line-height.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/menulist-separator-painting.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/menulist-style-color.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/menulist-type-ahead-find-original-item.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/menulist-update-text-popup.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/menulist-width-change.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/multiselect-in-listbox-keyboard-focusring.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/optgroup-clicking.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/optgroup-rendering.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/option-mouseevents.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/option-script.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/option-strip-whitespace.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/option-text-clip.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/select-align.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/select-autofilled.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/select-background-none.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/select-baseline.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/select-block-background.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/select-change-listbox-size.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/select-change-listbox-to-popup.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/select-change-popup-to-listbox.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/select-clientheight-large-size.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/select-dirty-parent-pref-widths.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/select-disabled-appearance.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/select-empty-option-height.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/select-initial-position.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/select-item-background-clip.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/select-list-box-with-height.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/select-listbox-multiple-no-focusring.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/select-multiple-rtl.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/select-overflow-scroll-inherited.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/select-overflow-scroll.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/select-popup-pagekeys.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/select-selected.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/select-size-invalid.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/select-style.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/select-visual-hebrew.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/select-writing-direction-natural.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/select/selectlist-minsize.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/submit/submit-appearance-basic.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/suggestion-picker/date-suggestion-picker-appearance-rtl.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/suggestion-picker/date-suggestion-picker-appearance-with-scroll-bar.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/suggestion-picker/date-suggestion-picker-appearance.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/suggestion-picker/datetimelocal-suggestion-picker-appearance-locale-hebrew.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/suggestion-picker/datetimelocal-suggestion-picker-appearance-rtl.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/suggestion-picker/datetimelocal-suggestion-picker-appearance-with-scroll-bar.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/suggestion-picker/datetimelocal-suggestion-picker-appearance.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/suggestion-picker/month-suggestion-picker-appearance-rtl.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/suggestion-picker/month-suggestion-picker-appearance-with-scroll-bar.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/suggestion-picker/month-suggestion-picker-appearance.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/suggestion-picker/time-suggestion-picker-appearance-locale-hebrew.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/suggestion-picker/time-suggestion-picker-appearance-rtl.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/suggestion-picker/time-suggestion-picker-appearance-with-scroll-bar.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/suggestion-picker/time-suggestion-picker-appearance.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/suggestion-picker/week-suggestion-picker-appearance-rtl.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/suggestion-picker/week-suggestion-picker-appearance-with-scroll-bar.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/suggestion-picker/week-suggestion-picker-appearance.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-appearance-bkcolor.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-appearance-default-bkcolor.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-appearance-disabled.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-appearance-focus.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-appearance-preventDefault.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-appearance-readonly.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-appearance-selection.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-appearance-visibility.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-appearance-width.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-baseline.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-disabled-color.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-double-click-selection-gap-bug.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-field-text-truncated.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-placeholder-paint-order.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-placeholder-visibility-1.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-placeholder-visibility-3.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-readonly-autoscroll.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-readonly-dimmed.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-readonly-empty.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-spaces.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-tab-shows-caret.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-table.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-text-click-inside.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-text-click-outside.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-text-double-click.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-text-drag-down.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-text-option-delete.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-text-scroll-left-on-blur.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-text-self-emptying-click.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-text-word-wrap.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/input-width.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/text-appearance-basic.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/text-appearance-datalist.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/text-font-height-mismatch.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/textfield-focus-ring.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/textfield-outline.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/textfield-overflow-by-value-update.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/text/textfield-overflow.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/textarea/basic-textareas-quirks.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/textarea/basic-textareas.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/textarea/onselect-textarea.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/textarea/placeholder-appearance-textarea.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/textarea/reset-textarea.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/textarea/textAreaLineHeight.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/textarea/textarea-align.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/textarea/textarea-appearance-basic.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/textarea/textarea-metrics.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/textarea/textarea-placeholder-paint-order.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/textarea/textarea-placeholder-visibility-1.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/textarea/textarea-placeholder-visibility-2.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/textarea/textarea-scroll-height.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/textarea/textarea-scrollbar.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/textarea/textarea-scrolled-focus-ring.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/textarea/textarea-scrolled-mask.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/textarea/textarea-scrolled-type.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/textarea/textarea-setinnerhtml.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/textarea/textarea-width.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/time/time-appearance-basic.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/time/time-appearance-pseudo-elements.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/week/week-appearance-basic.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/forms/week/week-appearance-pseudo-elements.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/hidpi/focus-rings.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/hidpi/resize-corner-hidpi.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/inline/25277-2.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/inline/25277.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/inline/continuation-outlines-with-layers-2.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/inline/continuation-outlines-with-layers.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/inline/continuation-outlines.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/inline/inline-focus-ring.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/inline/positionedLifetime.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/invalid/014.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/lists/dynamic-marker-crash.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/multicol/input-with-overflow-second-column.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/multicol/multicol-with-child-renderLayer-for-input.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/overflow/overflow-focus-ring.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/overflow/overflow-x-y.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/overflow/scroll-nested-positioned-layer-in-overflow.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/overflow/scrollRevealButton.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/parser/bad-xml-slash.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/parser/entity-comment-in-textarea.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/parser/open-comment-in-textarea.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/replaced/replaced-breaking-mixture.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/replaced/replaced-breaking.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/replaced/three-selects-break.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/replaced/width100percent-button.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/replaced/width100percent-checkbox.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/replaced/width100percent-menulist.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/replaced/width100percent-radio.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/replaced/width100percent-searchfield.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/replaced/width100percent-textarea.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/replaced/width100percent-textfield.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/ruby/select-ruby.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/selectors/064.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/spatial-navigation/snav-multiple-select-focusring.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/table/003.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/table/append-cells2.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/table/colspanMinWidth-vertical.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/table/colspanMinWidth.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/table/remove-td-display-none.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/table/spanOverlapRepaint.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/table/table-row-focus-ring-paint.html [ Skip ]
crbug.com/1053725 [ Mac ] fast/table/text-field-baseline.html [ Skip ]
crbug.com/1053725 [ Mac ] fragmentation/outline-crossing-columns.html [ Skip ]
crbug.com/1053725 [ Mac ] html/details_summary/details-add-summary-1-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] html/details_summary/details-add-summary-10-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] html/details_summary/details-add-summary-2-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] html/details_summary/details-add-summary-3-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] html/details_summary/details-add-summary-4-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] html/details_summary/details-add-summary-5-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] html/details_summary/details-add-summary-6-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] html/details_summary/details-add-summary-7-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] html/details_summary/details-add-summary-8-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] html/details_summary/details-add-summary-9-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] html/details_summary/details-no-summary4.html [ Skip ]
crbug.com/1053725 [ Mac ] html/details_summary/details-open-javascript.html [ Skip ]
crbug.com/1053725 [ Mac ] html/details_summary/details-open2.html [ Skip ]
crbug.com/1053725 [ Mac ] html/details_summary/details-open4.html [ Skip ]
crbug.com/1053725 [ Mac ] html/details_summary/details-remove-summary-1-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] html/details_summary/details-remove-summary-2-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] html/details_summary/details-remove-summary-3-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] html/details_summary/details-remove-summary-4-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] html/details_summary/details-remove-summary-5-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] html/details_summary/details-remove-summary-6-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] html/details_summary/details-replace-summary-child.html [ Skip ]
crbug.com/1053725 [ Mac ] html/details_summary/details-replace-text.html [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/console-cd-completions.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/console-show-all-messages.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/copy-network-request.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/database-table-name-excaping.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/har-importer.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/input-event-warning.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/inspect-element.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/syntax-highlight-javascript.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/tabbed-editors-history.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/text-source-map.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/user-metrics-perf.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/animation/animation-empty-web-animations.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/animation/animation-group-matching.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/animation/animation-timeline.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/animation/animation-web-anim-negative-start-time.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/appcache/appcache-swap.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/application-panel/resources-panel-idb-clear-for-origin.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/application-panel/resources-panel-selection-on-reload.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/application-panel/resources-panel-websql.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/background-services/background-service-grid.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/bindings/contentscripts-navigator-multiple-frames.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/bindings/navigator-frame-navigate.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/bindings/navigator-main-frame-navigated.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/bindings/navigator-multiple-frames.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/bindings/shadowdom-navigator.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/bindings/sourcemap-navigator-multiple-frames.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/cache-storage/cache-live-update-cache-content.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/cache-storage/cache-live-update-list.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/components/color.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/components/cookies-table.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/components/parsed-url.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/components/utilities.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/components/viewport-datagrid.js [ Skip ]
# Put back commented version at line 7057:
crbug.com/1053725 [ Mac ] http/tests/devtools/console/console-search.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/coverage/coverage-events.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/coverage/coverage-export.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/coverage/coverage-repeated-per-function.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/coverage/coverage-repeated.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/coverage/coverage-view-filter-per-function.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/coverage/coverage-view-filter.js [ Skip ]
# Put back commented version at line 7253:
crbug.com/1053725 [ Mac ] http/tests/devtools/coverage/coverage-view-unused.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/coverage/decorations-after-script-formatter.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/editor/text-editor-ctrl-d-2.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/editor/text-editor-goto-matching-bracket.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/editor/text-editor-mark-clean.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/editor/text-editor-smart-braces.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/editor/text-editor-token-at-position.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/breadcrumb-updates.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/dom-search-crash.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/elements-child-node-count-mismatch.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/elements-css-path.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/elements-hide-html-comments.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/elements-iframe-base-url.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/elements-img-tooltip.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/elements-panel-selection-after-delete.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/elements-panel-structure.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/elements-save-to-temp-var.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/elements-treeoutline-copy.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/event-listener-sidebar-jquery2.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/event-listener-sidebar.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/html-link-import.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/insert-node.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/inspect-mode-shadow-text.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/inspect-pointer-events-none.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/resolve-alien-node.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/accessibility/autocomplete-attribute.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/css-variables/resolve-css-variables.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/edit/blur-while-edit-as-html.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/edit/edit-style-attribute.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/edit/remove-node.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/edit/set-outer-html-whitespace.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/edit/undo-set-outer-html.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/highlight/highlight-css-shapes-outside-scroll.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/highlight/highlight-node-scaled.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/highlight/highlight-svg-root-zoomed.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/shadow/shadow-root.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/styles/edit-css-with-source-url.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/styles/styles-do-not-add-inline-stylesheets-in-navigator.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/styles/styles-mouse-test.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/styles/updates-during-dom-traversal.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/styles-1/cached-sync-computed-styles.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/styles-1/case-sensitive-suggestions.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/styles-1/css-outline.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/styles-2/force-pseudo-state.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/styles-2/media-queries.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/styles-3/style-autocomplete-swatches.js [ Skip ]
# Put back commented version at line 6579:
crbug.com/1053725 http/tests/devtools/elements/styles-3/styles-change-node-while-editing.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/styles-3/styles-disable-then-delete.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/elements/styles-4/styles-edit-slow-completions.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/network/failed-request-preview.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/devtools/oopif/oopif-elements-nesting.js [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/filesystem/input-display.html [ Skip ]
crbug.com/1053725 [ Mac ] http/tests/webfont/popup-menu-load-webfont-after-open.html [ Skip ]
crbug.com/1053725 [ Mac ] images/12-55.html [ Skip ]
crbug.com/1053725 [ Mac ] images/182.html [ Skip ]
crbug.com/1053725 [ Mac ] images/2-dht.html [ Skip ]
crbug.com/1053725 [ Mac ] images/23-55.html [ Skip ]
crbug.com/1053725 [ Mac ] images/55.html [ Skip ]
crbug.com/1053725 [ Mac ] images/imagemap-circle-focus-ring.html [ Skip ]
crbug.com/1053725 [ Mac ] images/imagemap-focus-ring-in-positioned-container.html [ Skip ]
crbug.com/1053725 [ Mac ] images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map.html [ Skip ]
crbug.com/1053725 [ Mac ] images/imagemap-focus-ring-outline-color-not-inherited-from-map.html [ Skip ]
crbug.com/1053725 [ Mac ] images/imagemap-focus-ring-outline-color.html [ Skip ]
crbug.com/1053725 [ Mac ] images/imagemap-focus-ring-with-paint-root-offset.html [ Skip ]
crbug.com/1053725 [ Mac ] images/imagemap-focus-ring-with-scale-transform.html [ Skip ]
crbug.com/1053725 [ Mac ] images/imagemap-focus-ring-zoom.html [ Skip ]
crbug.com/1053725 [ Mac ] images/imagemap-focus-ring.html [ Skip ]
crbug.com/1053725 [ Mac ] images/imagemap-overflowing-circle-focus-ring.html [ Skip ]
crbug.com/1053725 [ Mac ] images/imagemap-overflowing-polygon-focus-ring.html [ Skip ]
crbug.com/1053725 [ Mac ] images/imagemap-polygon-focus-ring.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/float/float-under-inline-self-painting-change.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/4776765.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/caret-subpixel.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/delete-into-nested-block.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/details-open-repaint.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/float-offscreen.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/invalidate-caret-before-text-node-update.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/multi-layout-one-frame.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/renderer-destruction-by-invalidateSelection-crash.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/search-field-cancel.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/subtree-root-skipped.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/background/change-text-content-and-background-color.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/clip/caret-ancestor-clip-change.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/clip/control-clip.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/forms/button-checkbox-click-method-repaint.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/forms/button-reset-focus-by-mouse-then-keydown.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/forms/checkbox-focus-by-mouse-then-keydown.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/forms/radio-focus-by-mouse-then-keydown.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/forms/range-focus-by-mouse-then-keydown.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/forms/select-option-background-color.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/forms/slider-thumb-drag-release.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/forms/slider-thumb-float.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/forms/textarea-caret.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/outline/focus-continuations.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/outline/focus-enable-continuations.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/outline/focus-layers.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/outline/focus-ring-on-continuation-move.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/outline/focus-ring-on-inline-continuation-move.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/outline/focus-ring.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/outline/outline-become-affected-by-descendant.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/outline/outline-become-not-affected-by-descendant.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/repaint-overlay/layers-overlay.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/scroll/caret-invalidation-in-overflow-scroll.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/scroll/caret-with-composited-scroll.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/scroll/invalidate-caret-in-composited-scrolling-container.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/scroll/invalidate-caret-in-non-composited-scrolling-container.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/selection/selection-change-in-iframe-with-relative-parent.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/selection/selection-in-composited-scrolling-container.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/selection/selection-in-non-composited-scrolling-container.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/svg/focus-element.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/svg/scrolling-embedded-svg-file-image-repaint-problem.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/svg/transform-focus-ring-repaint.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/table/caret-contenteditable-content-after.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/invalidation/transform/caret-with-transformation.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/markers/document-markers-font-64px.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/markers/document-markers-font-8px.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/markers/document-markers-zoom-125.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/markers/document-markers-zoom-150.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/markers/document-markers-zoom-175.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/markers/document-markers-zoom-200.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/markers/document-markers-zoom-2000.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/markers/document-markers-zoom-250.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/markers/document-markers.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/roundedrects/input-with-rounded-rect-and-shadow.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/selection/text-selection-with-composition.html [ Skip ]
crbug.com/1053725 [ Mac ] paint/theme/adjust-progress-bar-size.html [ Skip ]
crbug.com/1053725 [ Mac ] plugins/embed-attributes-style.html [ Skip ]
crbug.com/1053725 [ Mac ] scrollbars/listbox-scrollbar-combinations.html [ Skip ]
crbug.com/1053725 [ Mac ] shadow-dom/focus-slide-on-shadow-host.html [ Skip ]
crbug.com/1053725 [ Mac ] svg/custom/focus-ring-text.svg [ Skip ]
crbug.com/1053725 [ Mac ] svg/custom/focus-ring.svg [ Skip ]
crbug.com/1053725 [ Mac ] svg/custom/foreign-object-skew.svg [ Skip ]
crbug.com/1053725 [ Mac ] svg/custom/inline-svg-in-xhtml.xml [ Skip ]
crbug.com/1053725 [ Mac ] svg/hixie/mixed/003.xml [ Skip ]
crbug.com/1053725 [ Mac ] svg/text/foreignObject-text-clipping-bug.xml [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/45621.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug1188.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug12384.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug1318.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug138725.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug18359.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug194024.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug24200.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug2479-2.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug2479-3.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug2479-4.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug26178.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug28928.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug29326.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug30559.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug30692.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug33855.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug39209.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug4382.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug4429.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug44505.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug4527.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug46368-1.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug46368-2.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug51037.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug51727.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug52505.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug52506.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug55545.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug59354.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug60749.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug68912.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug7342.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug92647-2.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug96334.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/bugs/bug99948.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/collapsing_borders/bug41262-4.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/core/margins.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/dom/tableDom.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla/other/move_row.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla_expected_failures/bugs/bug1725.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla_expected_failures/bugs/bug2479-5.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla_expected_failures/bugs/bug45621.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla_expected_failures/bugs/bug58402-2.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla_expected_failures/bugs/bug92647-1.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla_expected_failures/collapsing_borders/bug41262-5.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla_expected_failures/collapsing_borders/bug41262-6.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla_expected_failures/core/captions1.html [ Skip ]
crbug.com/1053725 [ Mac ] tables/mozilla_expected_failures/core/captions2.html [ Skip ]
crbug.com/1053725 [ Mac ] transforms/transformed-caret.html [ Skip ]
crbug.com/1053725 [ Mac ] transforms/transformed-focused-text-input.html [ Skip ]
crbug.com/1053725 [ Mac ] transforms/2d/zoom-menulist.html [ Skip ]
crbug.com/1053725 [ Mac ] transforms/3d/general/perspective-non-layer.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/cascade/fast/forms/001.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/cascade/fast/forms/button-style-color.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/cascade/fast/forms/color/color-suggestion-picker-appearance.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/cascade/fast/forms/date/date-appearance-basic.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/cascade/fast/forms/datetimelocal/datetimelocal-appearance-basic.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/cascade/fast/forms/fieldset/fieldset-align.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/cascade/fast/forms/month/month-appearance-basic.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/cascade/fast/forms/select/basic-selects.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/cascade/fast/forms/select/select-autofilled.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/cascade/fast/forms/submit/submit-appearance-basic.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/cascade/fast/forms/text/text-appearance-basic.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/cascade/fast/forms/textarea/textarea-appearance-basic.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/dark-mode-native-theme-off/text-input-elements.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/dark-mode-native-theme-on/text-input-elements.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/exotic-color-space/images/12-55.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/exotic-color-space/images/182.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/exotic-color-space/images/2-dht.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/exotic-color-space/images/23-55.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/exotic-color-space/images/55.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/exotic-color-space/images/imagemap-circle-focus-ring.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/exotic-color-space/images/imagemap-focus-ring-in-positioned-container.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/exotic-color-space/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/exotic-color-space/images/imagemap-focus-ring-outline-color-not-inherited-from-map.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/exotic-color-space/images/imagemap-focus-ring-outline-color.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/exotic-color-space/images/imagemap-focus-ring-with-paint-root-offset.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/exotic-color-space/images/imagemap-focus-ring-with-scale-transform.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/exotic-color-space/images/imagemap-focus-ring-zoom.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/exotic-color-space/images/imagemap-focus-ring.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/exotic-color-space/images/imagemap-overflowing-circle-focus-ring.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/exotic-color-space/images/imagemap-overflowing-polygon-focus-ring.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/exotic-color-space/images/imagemap-polygon-focus-ring.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/gpu-rasterization/images/12-55.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/gpu-rasterization/images/182.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/gpu-rasterization/images/2-dht.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/gpu-rasterization/images/23-55.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/gpu-rasterization/images/55.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/gpu-rasterization/images/imagemap-circle-focus-ring.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/gpu-rasterization/images/imagemap-focus-ring-in-positioned-container.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/gpu-rasterization/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/gpu-rasterization/images/imagemap-focus-ring-outline-color.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/gpu-rasterization/images/imagemap-focus-ring-with-paint-root-offset.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/gpu-rasterization/images/imagemap-focus-ring-with-scale-transform.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/gpu-rasterization/images/imagemap-focus-ring-zoom.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/gpu-rasterization/images/imagemap-focus-ring.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/gpu-rasterization/images/imagemap-overflowing-circle-focus-ring.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/gpu-rasterization/images/imagemap-overflowing-polygon-focus-ring.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/gpu-rasterization/images/imagemap-polygon-focus-ring.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/layout_ng_block_frag/fast/multicol/input-with-overflow-second-column.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/layout_ng_block_frag/fast/multicol/multicol-with-child-renderLayer-for-input.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/layout_ng_block_frag/fragmentation/outline-crossing-columns.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/layout_ng_fragment_traversal/fast/block/basic/011.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/layout_ng_fragment_traversal/fast/block/float/032.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/layout_ng_fragment_traversal/fast/block/float/float-avoidance.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/layout_ng_fragment_traversal/fast/block/float/overhanging-tall-block.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/layout_ng_fragment_traversal/fast/block/margin-collapse/103.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/layout_ng_fragment_traversal/fast/block/positioning/inline-block-relposition.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/layout_ng_fragment_traversal/fast/table/003.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/layout_ng_fragment_traversal/fast/table/append-cells2.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/layout_ng_fragment_traversal/fast/table/colspanMinWidth-vertical.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/layout_ng_fragment_traversal/fast/table/colspanMinWidth.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/layout_ng_fragment_traversal/fast/table/remove-td-display-none.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/layout_ng_fragment_traversal/fast/table/spanOverlapRepaint.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/layout_ng_fragment_traversal/fast/table/table-row-focus-ring-paint.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/layout_ng_fragment_traversal/fast/table/text-field-baseline.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/prefer_compositing_to_lcd_text/compositing/overflow/do-not-paint-outline-into-composited-scrolling-contents.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/prefer_compositing_to_lcd_text/compositing/overflow/textarea-scroll-touch.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/prefer_compositing_to_lcd_text/compositing/overflow/theme-affects-visual-overflow.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/prefer_compositing_to_lcd_text/compositing/overflow/update-widget-positions-on-nested-frames-and-scrollers.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/prefer_compositing_to_lcd_text/scrollbars/listbox-scrollbar-combinations.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/text-antialias/caps-lock-indicator-disabled.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/text-antialias/caps-lock-indicator-enabled-rtl.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/text-antialias/caps-lock-indicator-enabled.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/text-antialias/drawBidiText.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/text-antialias/ellipsis-ltr-text-in-ltr-flow-underline-composition.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/text-antialias/ellipsis-ltr-text-in-rtl-flow-underline-composition.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/text-antialias/ellipsis-rtl-text-in-ltr-flow-underline-composition.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/text-antialias/ellipsis-rtl-text-in-rtl-flow-underline-composition.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/text-antialias/textIteratorNilRenderer.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/text-antialias/updateNewFont.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/text-antialias/international/bidi-listbox-atsui.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/text-antialias/international/bidi-listbox.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/text-antialias/international/hindi-spacing.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/text-antialias/international/rtl-white-space-pre-wrap.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/text-antialias/international/unicode-bidi-plaintext-in-textarea.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/text-antialias/selection/delete-hard-break-character.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/text-antialias/selection/khmer-selection.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/text-antialias/selection/mixed-directionality-selection.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/text-antialias/selection/rtl-caret.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/text-antialias/selection/select-new-line-with-line-break-normal.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/text-antialias/selection/selection-hard-linebreak.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/text-antialias/whitespace/normal-after-nowrap-breaking.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/unified-autoplay/external/wpt/feature-policy/idlharness.window.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/external/wpt/dom/events/Event-dispatch-redispatch.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/fast/dom/52776.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/fast/dom/focus-contenteditable.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/fast/dom/HTMLMeterElement/meter-boundary-values.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/fast/dom/HTMLMeterElement/meter-element-repaint-on-update-value.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/fast/dom/HTMLMeterElement/meter-element.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/fast/dom/HTMLMeterElement/meter-optimums.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/fast/dom/HTMLMeterElement/meter-styles-changing-pseudo.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/fast/dom/HTMLMeterElement/meter-styles.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/fast/dom/HTMLProgressElement/progress-element.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/fast/parser/bad-xml-slash.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/fast/parser/entity-comment-in-textarea.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/fast/parser/open-comment-in-textarea.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/html/details_summary/details-add-summary-1-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/html/details_summary/details-add-summary-10-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/html/details_summary/details-add-summary-2-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/html/details_summary/details-add-summary-3-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/html/details_summary/details-add-summary-4-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/html/details_summary/details-add-summary-5-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/html/details_summary/details-add-summary-6-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/html/details_summary/details-add-summary-7-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/html/details_summary/details-add-summary-8-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/html/details_summary/details-add-summary-9-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/html/details_summary/details-no-summary4.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/html/details_summary/details-open-javascript.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/html/details_summary/details-open2.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/html/details_summary/details-open4.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/html/details_summary/details-remove-summary-1-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/html/details_summary/details-remove-summary-2-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/html/details_summary/details-remove-summary-3-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/html/details_summary/details-remove-summary-4-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/html/details_summary/details-remove-summary-5-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/html/details_summary/details-remove-summary-6-and-click.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/html/details_summary/details-replace-summary-child.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/html/details_summary/details-replace-text.html [ Skip ]
crbug.com/1053725 [ Mac ] virtual/web-components-v0-disabled/shadow-dom/focus-slide-on-shadow-host.html [ Skip ]
crbug.com/1053725 [ Mac10.14 ] fast/box-sizing/percentage-height.html [ Skip ]
crbug.com/1053725 [ Mac10.14 ] fast/css/test-setting-canvas-color.html [ Skip ]
# ======
# ====== End of rebaselines for crbug.com/1053725 ======
# ======
#
# PLEASE put new 1053725-related files below this line (AND NOT ABOVE IT!!)...
#
#crbug.com/1053725 ...
# ====== Form Controls Refresh failures until here ======
crbug.com/1035582 [ Mac10.10 ] virtual/controls-refresh-hc/virtual/controls-refresh/color-scheme/select/select-multiple-hover-focused-unselected.html [ Skip ] crbug.com/1035582 [ Mac10.10 ] virtual/controls-refresh-hc/virtual/controls-refresh/color-scheme/select/select-multiple-hover-focused-unselected.html [ Skip ]
crbug.com/1035582 [ Mac10.10 ] virtual/controls-refresh-hc/virtual/controls-refresh/color-scheme/select/select-multiple-appearance-basic.html [ Skip ] crbug.com/1035582 [ Mac10.10 ] virtual/controls-refresh-hc/virtual/controls-refresh/color-scheme/select/select-multiple-appearance-basic.html [ Skip ]
...@@ -3162,13 +4087,7 @@ crbug.com/626703 external/wpt/webvtt/rendering/cues-with-video/processing-model/ ...@@ -3162,13 +4087,7 @@ crbug.com/626703 external/wpt/webvtt/rendering/cues-with-video/processing-model/
crbug.com/626703 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/vertical_lr.html [ Failure ] crbug.com/626703 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/vertical_lr.html [ Failure ]
crbug.com/626703 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/vertical_text-combine-upright.html [ Failure ] crbug.com/626703 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/vertical_text-combine-upright.html [ Failure ]
crbug.com/626703 virtual/speech-with-unified-autoplay/external/wpt/speech-api/SpeechSynthesisUtterance-volume-manual.html [ Skip ] crbug.com/626703 virtual/speech-with-unified-autoplay/external/wpt/speech-api/SpeechSynthesisUtterance-volume-manual.html [ Skip ]
crbug.com/626703 [ Linux ] external/wpt/speech-api/SpeechSynthesisUtterance-volume-manual.html [ Skip ] crbug.com/626703 external/wpt/speech-api/SpeechSynthesisUtterance-volume-manual.html [ Skip ]
crbug.com/626703 [ Mac10.10 ] external/wpt/speech-api/SpeechSynthesisUtterance-volume-manual.html [ Skip ]
crbug.com/626703 [ Mac10.12 ] external/wpt/speech-api/SpeechSynthesisUtterance-volume-manual.html [ Skip ]
crbug.com/626703 [ Mac10.13 ] external/wpt/speech-api/SpeechSynthesisUtterance-volume-manual.html [ Skip ]
crbug.com/626703 [ Retina ] external/wpt/speech-api/SpeechSynthesisUtterance-volume-manual.html [ Skip ]
crbug.com/626703 [ Win ] external/wpt/speech-api/SpeechSynthesisUtterance-volume-manual.html [ Skip ]
crbug.com/626703 [ Mac10.11 ] external/wpt/speech-api/SpeechSynthesisUtterance-volume-manual.html [ Skip ]
crbug.com/626703 [ Mac10.10 ] external/wpt/animation-worklet/worklet-animation-with-scroll-timeline-and-display-none.https.html [ Failure ] crbug.com/626703 [ Mac10.10 ] external/wpt/animation-worklet/worklet-animation-with-scroll-timeline-and-display-none.https.html [ Failure ]
crbug.com/626703 [ Mac10.11 ] external/wpt/animation-worklet/worklet-animation-with-scroll-timeline-and-display-none.https.html [ Failure ] crbug.com/626703 [ Mac10.11 ] external/wpt/animation-worklet/worklet-animation-with-scroll-timeline-and-display-none.https.html [ Failure ]
crbug.com/626703 [ Mac10.11 ] external/wpt/webrtc/no-media-call.html [ Timeout ] crbug.com/626703 [ Mac10.11 ] external/wpt/webrtc/no-media-call.html [ Timeout ]
...@@ -5573,7 +6492,7 @@ crbug.com/945665 http/tests/devtools/elements/styles-3/styles-add-new-rule-tab.j ...@@ -5573,7 +6492,7 @@ crbug.com/945665 http/tests/devtools/elements/styles-3/styles-add-new-rule-tab.j
crbug.com/945665 http/tests/devtools/elements/styles-3/styles-add-new-rule.js [ Pass Failure Timeout ] crbug.com/945665 http/tests/devtools/elements/styles-3/styles-add-new-rule.js [ Pass Failure Timeout ]
crbug.com/945665 http/tests/devtools/elements/styles-3/styles-disable-inherited.js [ Pass Failure ] crbug.com/945665 http/tests/devtools/elements/styles-3/styles-disable-inherited.js [ Pass Failure ]
crbug.com/945665 [ Win7 ] http/tests/devtools/elements/styles-3/style-rule-from-imported-stylesheet.js [ Failure Pass ] crbug.com/945665 [ Win7 ] http/tests/devtools/elements/styles-3/style-rule-from-imported-stylesheet.js [ Failure Pass ]
crbug.com/945665 http/tests/devtools/elements/styles-3/styles-change-node-while-editing.js [ Pass Failure ] #crbug.com/945665 http/tests/devtools/elements/styles-3/styles-change-node-while-editing.js [ Pass Failure ]
crbug.com/945629 http/tests/devtools/network/network-filters.js [ Pass Failure Timeout ] crbug.com/945629 http/tests/devtools/network/network-filters.js [ Pass Failure Timeout ]
# Sheriff 2019-03-26 # Sheriff 2019-03-26
...@@ -6059,9 +6978,9 @@ crbug.com/1015975 virtual/audio-service/media/video-currentTime.html [ Pass Fail ...@@ -6059,9 +6978,9 @@ crbug.com/1015975 virtual/audio-service/media/video-currentTime.html [ Pass Fail
# Sheriff 2019-10-21 # Sheriff 2019-10-21
crbug.com/1016364 [ Linux Debug ] http/tests/devtools/console/console-search.js [ Pass Timeout ] crbug.com/1016364 [ Linux Debug ] http/tests/devtools/console/console-search.js [ Pass Timeout ]
crbug.com/1016364 [ Mac Debug ] http/tests/devtools/console/console-search.js [ Pass Timeout ] #crbug.com/1016364 [ Mac Debug ] http/tests/devtools/console/console-search.js [ Pass Timeout ]
crbug.com/1016457 [ Linux Debug ] external/wpt/dom/ranges/Range-mutations-dataChange.html [ Pass Timeout ] crbug.com/1016457 [ Linux Debug ] external/wpt/dom/ranges/Range-mutations-dataChange.html [ Pass Timeout ]
crbug.com/1016457 [ Mac Debug ] external/wpt/dom/ranges/Range-mutations-dataChange.html [ Pass Timeout ] #crbug.com/1016457 [ Mac Debug ] external/wpt/dom/ranges/Range-mutations-dataChange.html [ Pass Timeout ]
crbug.com/1016457 [ Linux Debug ] virtual/web-components-v0-disabled/external/wpt/dom/ranges/Range-mutations-dataChange.html [ Pass Timeout ] crbug.com/1016457 [ Linux Debug ] virtual/web-components-v0-disabled/external/wpt/dom/ranges/Range-mutations-dataChange.html [ Pass Timeout ]
crbug.com/1016457 [ Mac Debug ] virtual/web-components-v0-disabled/external/wpt/dom/ranges/Range-mutations-dataChange.html [ Pass Timeout ] crbug.com/1016457 [ Mac Debug ] virtual/web-components-v0-disabled/external/wpt/dom/ranges/Range-mutations-dataChange.html [ Pass Timeout ]
...@@ -6250,7 +7169,7 @@ crbug.com/1038354 fast/scroll-snap/snaps-after-scrollbar-scrolling.html [ Pass F ...@@ -6250,7 +7169,7 @@ crbug.com/1038354 fast/scroll-snap/snaps-after-scrollbar-scrolling.html [ Pass F
crbug.com/1018640 external/wpt/web-bundle/* [ Skip ] crbug.com/1018640 external/wpt/web-bundle/* [ Skip ]
# Sheriff 2020-01-02 # Sheriff 2020-01-02
crbug.com/1038656 [ Mac ] http/tests/devtools/coverage/coverage-view-unused.js [ Pass Failure ] #crbug.com/1038656 [ Mac ] http/tests/devtools/coverage/coverage-view-unused.js [ Pass Failure ]
crbug.com/1038656 [ Win ] http/tests/devtools/coverage/coverage-view-unused.js [ Pass Failure ] crbug.com/1038656 [ Win ] http/tests/devtools/coverage/coverage-view-unused.js [ Pass Failure ]
# Temporarily disabled to land Linkifier changes in DevTools # Temporarily disabled to land Linkifier changes in DevTools
...@@ -6272,7 +7191,7 @@ crbug.com/963183 http/tests/devtools/sources/debugger-breakpoints/disable-breakp ...@@ -6272,7 +7191,7 @@ crbug.com/963183 http/tests/devtools/sources/debugger-breakpoints/disable-breakp
crbug.com/836300 fast/css3-text/css3-text-decoration/text-decoration-skip-ink-links.html [ Pass Failure ] crbug.com/836300 fast/css3-text/css3-text-decoration/text-decoration-skip-ink-links.html [ Pass Failure ]
# Sheriff 2020-01-14 # Sheriff 2020-01-14
crbug.com/1041973 external/wpt/html/semantics/forms/constraints/form-validation-reportValidity.html [ Pass Failure ] #crbug.com/1041973 external/wpt/html/semantics/forms/constraints/form-validation-reportValidity.html [ Pass Failure ]
crbug.com/1041973 virtual/web-components-v0-disabled/external/wpt/html/semantics/forms/constraints/form-validation-reportValidity.html [ Pass Failure ] crbug.com/1041973 virtual/web-components-v0-disabled/external/wpt/html/semantics/forms/constraints/form-validation-reportValidity.html [ Pass Failure ]
# Disabled for landing devtools changes # Disabled for landing devtools changes
...@@ -6515,12 +7434,12 @@ crbug.com/1048149 external/wpt/html/browsers/the-window-object/apis-for-creating ...@@ -6515,12 +7434,12 @@ crbug.com/1048149 external/wpt/html/browsers/the-window-object/apis-for-creating
crbug.com/1048149 external/wpt/html/browsers/the-window-object/apis-for-creating-and-navigating-browsing-contexts-by-name/open-features-non-integer-screeny.html [ Crash Timeout ] crbug.com/1048149 external/wpt/html/browsers/the-window-object/apis-for-creating-and-navigating-browsing-contexts-by-name/open-features-non-integer-screeny.html [ Crash Timeout ]
crbug.com/1048149 external/wpt/html/browsers/the-window-object/apis-for-creating-and-navigating-browsing-contexts-by-name/open-features-non-integer-width.html [ Crash Timeout ] crbug.com/1048149 external/wpt/html/browsers/the-window-object/apis-for-creating-and-navigating-browsing-contexts-by-name/open-features-non-integer-width.html [ Crash Timeout ]
crbug.com/1048149 [ Mac ] http/tests/inspector-protocol/emulation/emulation-oopifs.js [ Crash ] crbug.com/1048149 [ Mac ] http/tests/inspector-protocol/emulation/emulation-oopifs.js [ Crash ]
crbug.com/1048149 [ Mac ] fast/forms/calendar-picker/calendar-picker-appearance.html [ Pass Crash ] #crbug.com/1048149 [ Mac ] fast/forms/calendar-picker/calendar-picker-appearance.html [ Pass Crash ]
crbug.com/1048149 [ Mac ] fast/forms/calendar-picker/calendar-picker-mouse-operations.html [ Pass Crash ] crbug.com/1048149 [ Mac ] fast/forms/calendar-picker/calendar-picker-mouse-operations.html [ Pass Crash ]
crbug.com/1048149 [ Mac ] fast/forms/calendar-picker/calendar-picker-touch-operations.html [ Pass Crash ] crbug.com/1048149 [ Mac ] fast/forms/calendar-picker/calendar-picker-touch-operations.html [ Pass Crash ]
crbug.com/1048149 [ Mac ] fast/forms/calendar-picker/date-picker-choose-default-value-after-set-value.html [ Pass Crash ] crbug.com/1048149 [ Mac ] fast/forms/calendar-picker/date-picker-choose-default-value-after-set-value.html [ Pass Crash ]
crbug.com/1048149 [ Mac ] fast/forms/calendar-picker/month-picker-appearance.html [ Pass Crash ] #crbug.com/1048149 [ Mac ] fast/forms/calendar-picker/month-picker-appearance.html [ Pass Crash ]
crbug.com/1048149 [ Mac ] fast/forms/calendar-picker/month-picker-appearance-step.html [ Pass Crash ] #crbug.com/1048149 [ Mac ] fast/forms/calendar-picker/month-picker-appearance-step.html [ Pass Crash ]
crbug.com/1048149 [ Mac ] virtual/controls-refresh/color/color-picker-appearance-zoom125.html [ Pass Crash ] crbug.com/1048149 [ Mac ] virtual/controls-refresh/color/color-picker-appearance-zoom125.html [ Pass Crash ]
crbug.com/1048149 [ Mac ] virtual/controls-refresh/color/color-picker-top-left-selection-position-after-reopen.html [ Pass Crash ] crbug.com/1048149 [ Mac ] virtual/controls-refresh/color/color-picker-top-left-selection-position-after-reopen.html [ Pass Crash ]
crbug.com/1048149 [ Mac ] virtual/controls-refresh/color/color-picker-zoom150-bottom-edge-no-nan.html [ Pass Crash ] crbug.com/1048149 [ Mac ] virtual/controls-refresh/color/color-picker-zoom150-bottom-edge-no-nan.html [ Pass Crash ]
......
...@@ -125,12 +125,13 @@ const base::Feature kDirectManipulationStylus = { ...@@ -125,12 +125,13 @@ const base::Feature kDirectManipulationStylus = {
}; };
#endif // defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX) #endif // defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX)
// Enable the FormControlsRefresh feature for Windows, ChromeOS, and Linux. // Enable the FormControlsRefresh feature for Windows, ChromeOS, Linux, and Mac.
// This feature will be released for Mac and Android in later milestones. // This feature will be released for Android in later milestones. See
// See crbug.com/1012106 for the Windows launch bug, and crbug.com/1012108 for // crbug.com/1012106 for the Windows launch bug, and crbug.com/1012108 for the
// the Mac launch bug. // Mac launch bug.
const base::Feature kFormControlsRefresh = {"FormControlsRefresh", const base::Feature kFormControlsRefresh = {"FormControlsRefresh",
#if defined(OS_WIN) || defined(OS_CHROMEOS) || defined(OS_LINUX) #if defined(OS_WIN) || defined(OS_CHROMEOS) || defined(OS_LINUX) || \
defined(OS_MACOSX)
base::FEATURE_ENABLED_BY_DEFAULT base::FEATURE_ENABLED_BY_DEFAULT
#else #else
base::FEATURE_DISABLED_BY_DEFAULT base::FEATURE_DISABLED_BY_DEFAULT
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment