Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(380)

Issue 347773002: Implement select listbox using shadow DOM (Closed)

Created:
6 years, 6 months ago by keishi
Modified:
6 years, 5 months ago
Reviewers:
tkent, esprehn
CC:
aboxhall, darktears, apavlov+blink_chromium.org, blink-layers+watch_chromium.org, blink-reviews, blink-reviews-css, blink-reviews-html_chromium.org, blink-reviews-rendering, dglazkov+blink, dmazzoni, eae+blinkwatch, ed+blinkwatch_opera.com, jchaffraix+rendering, leviw+renderwatch, pdr., rwlbuis, rune+blink, zoltan1
Project:
blink
Visibility:
Public.

Description

Implement select listbox using shadow DOM User visible behavior changes. - Old listbox could only scroll in itemHeight increments but now we have smooth scroll. - Mouse events need to be dispatched on the option element, not select element. - Select element height is determined based on the height of the first item, not the font size. - Spatial navigation now draws a black dashed outline around the active selection instead of a focus ring. We can no longer let RenderListBox draw the focus ring for spatial navigation mode because the items are drawn on another RenderLayer. I added a user agent stylesheet only :-internal-spatial-navigation-focus pseudo type so a style can be applied to the spatial navigation active element. If we add the default focus ring on the option element, it gets clipped to the select element so I changed it to a black dashed outline. Option and optgroups were represented as AXListBoxOptions but now only options are AXListBoxOptions and optgroups are represented by the optgroup-label AXNodeObject. We let AXRenderObject handle hit testing so we can remove the custom hit testing. BUG=234871 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=178354

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : #

Patch Set 4 : #

Patch Set 5 : #

Patch Set 6 : #

Total comments: 14

Patch Set 7 : #

Patch Set 8 : Rebased #

Patch Set 9 : gixed slow select-max-length.html #

Total comments: 49

Patch Set 10 : Fixed #

Total comments: 3

Patch Set 11 : #

Patch Set 12 : #

Total comments: 4

Patch Set 13 : Added test expectations #

Patch Set 14 : #

Patch Set 15 : #

Patch Set 16 : Added spatial navigation support #

Total comments: 2

Patch Set 17 : White background #

Total comments: 35

Patch Set 18 : #

Patch Set 19 : #

Patch Set 20 : Fixed accessibility #

Total comments: 1

Patch Set 21 : Moved entries in TestExpectations #

Patch Set 22 : Rebased #

Patch Set 23 : #

Patch Set 24 : #

Patch Set 25 : #

Patch Set 26 : #

Patch Set 27 : #

Patch Set 28 : #

Patch Set 29 : #

Patch Set 30 : #

Patch Set 31 : Rebased #

Patch Set 32 : #

Patch Set 33 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+5740 lines, -1808 lines) Patch
M LayoutTests/TestExpectations View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 2 chunks +56 lines, -1 line 0 comments Download
D LayoutTests/fast/css/recalc-optgroup-inherit.html View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -14 lines 0 comments Download
M LayoutTests/fast/dom/HTMLKeygenElement/keygen.html View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -1 line 0 comments Download
M LayoutTests/fast/dom/HTMLKeygenElement/keygen-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +0 lines, -1 line 0 comments Download
M LayoutTests/fast/events/touch/gesture/touch-gesture-scroll-listbox.html View 1 2 3 4 5 6 7 8 9 3 chunks +3 lines, -3 lines 0 comments Download
M LayoutTests/fast/events/touch/gesture/touch-gesture-scroll-listbox-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +2 lines, -2 lines 0 comments Download
M LayoutTests/fast/forms/listbox-hit-test-zoomed.html View 1 2 3 4 1 chunk +7 lines, -7 lines 0 comments Download
M LayoutTests/fast/forms/listbox-onchange.html View 2 chunks +4 lines, -10 lines 0 comments Download
M LayoutTests/fast/forms/listbox-selection-2.html View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +4 lines, -4 lines 0 comments Download
M LayoutTests/fast/forms/option-mouseevents.html View 1 2 3 4 5 6 7 8 9 2 chunks +11 lines, -22 lines 0 comments Download
M LayoutTests/fast/forms/option-mouseevents-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +16 lines, -16 lines 0 comments Download
M LayoutTests/fast/forms/resources/select-live-pseudo-selectors.js View 1 2 3 4 5 6 1 chunk +0 lines, -2 lines 0 comments Download
M LayoutTests/fast/forms/select-clientheight-large-size.html View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 2 chunks +4 lines, -4 lines 0 comments Download
M LayoutTests/fast/forms/select-clientheight-large-size-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +3 lines, -3 lines 0 comments Download
M LayoutTests/fast/forms/select-live-pseudo-selectors-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +0 lines, -2 lines 0 comments Download
M LayoutTests/fast/forms/select/listbox-overlay-scrollbar.html View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/fast/forms/select/listbox-overlay-scrollbar-expected.html View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M LayoutTests/fast/forms/select/listbox-tap.html View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M LayoutTests/fast/forms/suggested-value-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +7 lines, -0 lines 0 comments Download
M LayoutTests/fast/scroll-behavior/listbox-scrollTop.html View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 1 chunk +1 line, -2 lines 0 comments Download
M LayoutTests/fast/scroll-behavior/resources/scroll-behavior-test.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 1 chunk +0 lines, -1 line 0 comments Download
M LayoutTests/fast/text/international/listbox-width-rtl.html View 1 2 3 4 1 chunk +7 lines, -4 lines 0 comments Download
M LayoutTests/fast/text/updateNewFont-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +8 lines, -4 lines 0 comments Download
M LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-161-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +1 line, -1 line 0 comments Download
M LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-161-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +1 line, -1 line 0 comments Download
M LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-161-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +1 line, -1 line 0 comments Download
M LayoutTests/platform/mac/fast/forms/HTMLOptionElement_label05-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +5 lines, -1 line 0 comments Download
M LayoutTests/platform/mac/fast/forms/basic-selects-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +2 lines, -2 lines 0 comments Download
M LayoutTests/platform/mac/fast/forms/disabled-select-change-index-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +60 lines, -32 lines 0 comments Download
M LayoutTests/platform/mac/fast/forms/form-element-geometry-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 14 chunks +55 lines, -39 lines 0 comments Download
M LayoutTests/platform/mac/fast/forms/hidden-listbox-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +5 lines, -1 line 0 comments Download
M LayoutTests/platform/mac/fast/forms/listbox-bidi-align-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +260 lines, -60 lines 0 comments Download
M LayoutTests/platform/mac/fast/forms/listbox-clip-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +17 lines, -1 line 0 comments Download
M LayoutTests/platform/mac/fast/forms/listbox-hit-test-zoomed-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +53 lines, -1 line 0 comments Download
M LayoutTests/platform/mac/fast/forms/listbox-scrollbar-incremental-load-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +24 lines, -2 lines 0 comments Download
M LayoutTests/platform/mac/fast/forms/listbox-width-change-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +5 lines, -1 line 0 comments Download
M LayoutTests/platform/mac/fast/forms/menulist-option-wrap-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +1 line, -1 line 0 comments Download
M LayoutTests/platform/mac/fast/forms/option-strip-whitespace-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +32 lines, -24 lines 0 comments Download
M LayoutTests/platform/mac/fast/forms/select-block-background-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +5 lines, -1 line 0 comments Download
M LayoutTests/platform/mac/fast/forms/select-change-listbox-size-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +21 lines, -2 lines 0 comments Download
M LayoutTests/platform/mac/fast/forms/select-change-listbox-to-popup-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -1 line 0 comments Download
M LayoutTests/platform/mac/fast/forms/select-change-popup-to-listbox-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +5 lines, -1 line 0 comments Download
A + LayoutTests/platform/mac/fast/forms/select-clientheight-large-size-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1 chunk +3 lines, -3 lines 0 comments Download
M LayoutTests/platform/mac/fast/forms/select-initial-position-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +145 lines, -34 lines 0 comments Download
M LayoutTests/platform/mac/fast/forms/select-item-background-clip-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +15 lines, -2 lines 0 comments Download
M LayoutTests/platform/mac/fast/forms/select-list-box-with-height-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +41 lines, -1 line 0 comments Download
M LayoutTests/platform/mac/fast/forms/select-listbox-multiple-no-focusring-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +11 lines, -4 lines 0 comments Download
M LayoutTests/platform/mac/fast/forms/select-multiple-rtl-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +21 lines, -5 lines 0 comments Download
M LayoutTests/platform/mac/fast/forms/select-overflow-scroll-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +32 lines, -2 lines 0 comments Download
M LayoutTests/platform/mac/fast/forms/select-overflow-scroll-inherited-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +34 lines, -4 lines 0 comments Download
M LayoutTests/platform/mac/fast/forms/select-size-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -1 line 0 comments Download
M LayoutTests/platform/mac/fast/forms/select/listbox-appearance-basic-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +116 lines, -48 lines 0 comments Download
M LayoutTests/platform/mac/fast/forms/select/listbox-with-display-none-option-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +131 lines, -20 lines 0 comments Download
M LayoutTests/platform/mac/fast/forms/select/menulist-appearance-basic-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +3822 lines, -17 lines 0 comments Download
M LayoutTests/platform/mac/fast/forms/select/optgroup-rendering-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +58 lines, -9 lines 0 comments Download
M LayoutTests/platform/mac/fast/frames/iframe-option-crash-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +7 lines, -6 lines 0 comments Download
M LayoutTests/platform/mac/fast/repaint/select-option-background-color-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +3 lines, -1 line 0 comments Download
M LayoutTests/platform/mac/fast/replaced/replaced-breaking-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 3 chunks +23 lines, -15 lines 0 comments Download
M LayoutTests/platform/mac/fast/spatial-navigation/snav-multiple-select-focusring-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +11 lines, -4 lines 0 comments Download
M LayoutTests/platform/mac/fast/text/drawBidiText-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +48 lines, -2 lines 0 comments Download
M LayoutTests/platform/mac/fast/text/international/bidi-listbox-atsui-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +28 lines, -13 lines 0 comments Download
M LayoutTests/platform/mac/fast/text/international/bidi-listbox-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +28 lines, -13 lines 0 comments Download
M LayoutTests/platform/win/fast/forms/listbox-onchange-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +0 lines, -14 lines 0 comments Download
M LayoutTests/scrollbars/listbox-scrollbar-combinations-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +110 lines, -7 lines 0 comments Download
M Source/core/accessibility/AXListBox.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +0 lines, -6 lines 0 comments Download
M Source/core/accessibility/AXListBox.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +0 lines, -62 lines 0 comments Download
M Source/core/accessibility/AXListBoxOption.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 2 chunks +6 lines, -14 lines 0 comments Download
M Source/core/accessibility/AXListBoxOption.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 8 chunks +18 lines, -70 lines 0 comments Download
M Source/core/accessibility/AXObjectCache.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/css/CSSSelector.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +2 lines, -1 line 0 comments Download
M Source/core/css/CSSSelector.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 4 chunks +4 lines, -0 lines 0 comments Download
M Source/core/css/ElementRuleCollector.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/css/SelectorChecker.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 3 chunks +3 lines, -0 lines 0 comments Download
M Source/core/css/SelectorChecker.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 chunks +7 lines, -0 lines 0 comments Download
M Source/core/css/html.css View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +37 lines, -2 lines 0 comments Download
M Source/core/css/resolver/SharedStyleFinder.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +5 lines, -0 lines 0 comments Download
M Source/core/css/themeMac.css View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +8 lines, -2 lines 0 comments Download
M Source/core/dom/NodeRenderStyle.h View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M Source/core/editing/TextIterator.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 1 chunk +5 lines, -0 lines 0 comments Download
M Source/core/html/HTMLOptGroupElement.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +6 lines, -16 lines 0 comments Download
M Source/core/html/HTMLOptGroupElement.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 5 chunks +41 lines, -47 lines 0 comments Download
M Source/core/html/HTMLOptionElement.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +6 lines, -7 lines 0 comments Download
M Source/core/html/HTMLOptionElement.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 8 chunks +34 lines, -21 lines 0 comments Download
M Source/core/html/HTMLSelectElement.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 6 chunks +12 lines, -0 lines 0 comments Download
M Source/core/html/HTMLSelectElement.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 20 chunks +126 lines, -31 lines 0 comments Download
M Source/core/html/shadow/ShadowElementNames.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/html/shadow/ShadowElementNames.cpp View 1 2 3 4 5 6 7 8 9 1 chunk +6 lines, -0 lines 0 comments Download
M Source/core/rendering/RenderLayerScrollableArea.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 4 chunks +5 lines, -9 lines 0 comments Download
M Source/core/rendering/RenderListBox.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 2 chunks +2 lines, -102 lines 0 comments Download
M Source/core/rendering/RenderListBox.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 4 chunks +20 lines, -905 lines 0 comments Download
M Source/core/rendering/RenderTheme.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 4 chunks +1 line, -4 lines 0 comments Download
M Source/core/rendering/RenderThemeChromiumMac.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +1 line, -1 line 0 comments Download
M Source/core/rendering/RenderThemeChromiumMac.mm View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 51 (0 generated)
keishi
I added comments to Patch set 6 but I fixed a couple of places so ...
6 years, 6 months ago (2014-06-22 11:59:56 UTC) #1
keishi
https://codereview.chromium.org/347773002/diff/160001/Source/core/html/HTMLSelectElement.cpp File Source/core/html/HTMLSelectElement.cpp (right): https://codereview.chromium.org/347773002/diff/160001/Source/core/html/HTMLSelectElement.cpp#newcode901 Source/core/html/HTMLSelectElement.cpp:901: int listIndex = optionToListIndex(option->index()); fast/forms/select-max-length.html was slow because this ...
6 years, 6 months ago (2014-06-23 20:42:01 UTC) #2
esprehn
You should not be using ConfusingAndOftenMisusedDisallowShadowContent, you just broke all <select>'s in Shadow DOM. Also ...
6 years, 6 months ago (2014-06-23 21:59:57 UTC) #3
keishi
> Also I'm not sure why you're manually > calling detach() or ensureUserAgentShadowRoot() (and ignoring ...
6 years, 5 months ago (2014-07-01 04:53:33 UTC) #4
keishi
Adding some explanation. https://codereview.chromium.org/347773002/diff/180001/LayoutTests/fast/css/recalc-optgroup-inherit.html File LayoutTests/fast/css/recalc-optgroup-inherit.html (left): https://codereview.chromium.org/347773002/diff/180001/LayoutTests/fast/css/recalc-optgroup-inherit.html#oldcode9 LayoutTests/fast/css/recalc-optgroup-inherit.html:9: description("Check that OPTION inherits the modified ...
6 years, 5 months ago (2014-07-01 05:06:35 UTC) #5
tkent
Quick review. I'll review more later. https://codereview.chromium.org/347773002/diff/220001/LayoutTests/TestExpectations File LayoutTests/TestExpectations (right): https://codereview.chromium.org/347773002/diff/220001/LayoutTests/TestExpectations#newcode1115 LayoutTests/TestExpectations:1115: crbug.com/234871 fast/forms/select/listbox-appearance-basic.html [ ...
6 years, 5 months ago (2014-07-01 06:45:41 UTC) #6
keishi
https://codereview.chromium.org/347773002/diff/220001/LayoutTests/TestExpectations File LayoutTests/TestExpectations (right): https://codereview.chromium.org/347773002/diff/220001/LayoutTests/TestExpectations#newcode1115 LayoutTests/TestExpectations:1115: crbug.com/234871 fast/forms/select/listbox-appearance-basic.html [ NeedsRebaseline ] On 2014/07/01 06:45:41, tkent ...
6 years, 5 months ago (2014-07-02 04:27:22 UTC) #7
keishi
On 2014/07/02 04:27:22, keishi wrote: > https://codereview.chromium.org/347773002/diff/220001/LayoutTests/TestExpectations > File LayoutTests/TestExpectations (right): > > https://codereview.chromium.org/347773002/diff/220001/LayoutTests/TestExpectations#newcode1115 > ...
6 years, 5 months ago (2014-07-03 09:42:44 UTC) #8
tkent
https://codereview.chromium.org/347773002/diff/290001/Source/core/css/themeMac.css File Source/core/css/themeMac.css (right): https://codereview.chromium.org/347773002/diff/290001/Source/core/css/themeMac.css#newcode14 Source/core/css/themeMac.css:14: background-color: white; This is white, but background in the ...
6 years, 5 months ago (2014-07-04 02:14:12 UTC) #9
keishi
https://codereview.chromium.org/347773002/diff/290001/Source/core/css/themeMac.css File Source/core/css/themeMac.css (right): https://codereview.chromium.org/347773002/diff/290001/Source/core/css/themeMac.css#newcode14 Source/core/css/themeMac.css:14: background-color: white; On 2014/07/04 02:14:12, tkent wrote: > This ...
6 years, 5 months ago (2014-07-04 04:09:05 UTC) #10
tkent
On 2014/07/04 04:09:05, keishi wrote: > https://codereview.chromium.org/347773002/diff/290001/Source/core/css/themeMac.css > File Source/core/css/themeMac.css (right): > > https://codereview.chromium.org/347773002/diff/290001/Source/core/css/themeMac.css#newcode14 > ...
6 years, 5 months ago (2014-07-04 04:39:32 UTC) #11
keishi
On 2014/07/04 04:39:32, tkent wrote: > On 2014/07/04 04:09:05, keishi wrote: > > > https://codereview.chromium.org/347773002/diff/290001/Source/core/css/themeMac.css ...
6 years, 5 months ago (2014-07-04 04:44:42 UTC) #12
tkent
first round. You may remove -expected.* from the CL. https://codereview.chromium.org/347773002/diff/310001/Source/core/css/SelectorChecker.cpp File Source/core/css/SelectorChecker.cpp (right): https://codereview.chromium.org/347773002/diff/310001/Source/core/css/SelectorChecker.cpp#newcode1132 Source/core/css/SelectorChecker.cpp:1132: ...
6 years, 5 months ago (2014-07-08 02:21:00 UTC) #13
tkent
On 2014/07/08 02:21:00, tkent wrote: > You may remove -expected.* from the CL. for pixel ...
6 years, 5 months ago (2014-07-08 03:15:29 UTC) #14
tkent
> Implement select listbox using shadow DOM > > BUG=234871 Please write details to the ...
6 years, 5 months ago (2014-07-08 03:22:43 UTC) #15
tkent
https://codereview.chromium.org/347773002/diff/310001/Source/core/editing/TextIterator.cpp File Source/core/editing/TextIterator.cpp (right): https://codereview.chromium.org/347773002/diff/310001/Source/core/editing/TextIterator.cpp#newcode905 Source/core/editing/TextIterator.cpp:905: if (isHTMLOptionElement(&node) || isHTMLOptGroupElement(&node)) &s are unnecessary. https://codereview.chromium.org/347773002/diff/310001/Source/core/html/HTMLOptGroupElement.cpp File ...
6 years, 5 months ago (2014-07-08 04:43:46 UTC) #16
keishi
Even though accessibility tests were passing, there was a regression when used with a screen ...
6 years, 5 months ago (2014-07-10 09:48:04 UTC) #17
tkent
lgtm. Probably the CL still have some regressions. But it's hard to find them in ...
6 years, 5 months ago (2014-07-11 00:35:33 UTC) #18
keishi
The CQ bit was checked by keishi@chromium.org
6 years, 5 months ago (2014-07-11 07:59:27 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/keishi@chromium.org/347773002/380001
6 years, 5 months ago (2014-07-11 08:00:03 UTC) #20
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: linux_blink_dbg on tryserver.blink ...
6 years, 5 months ago (2014-07-11 09:16:21 UTC) #21
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 5 months ago (2014-07-11 09:23:26 UTC) #22
commit-bot: I haz the power
Try jobs failed on following builders: mac_blink_rel on tryserver.blink (http://build.chromium.org/p/tryserver.blink/builders/mac_blink_rel/builds/15048)
6 years, 5 months ago (2014-07-11 09:23:27 UTC) #23
keishi
The CQ bit was checked by keishi@chromium.org
6 years, 5 months ago (2014-07-14 08:06:00 UTC) #24
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/keishi@chromium.org/347773002/400001
6 years, 5 months ago (2014-07-14 08:06:28 UTC) #25
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: linux_blink_dbg on tryserver.blink ...
6 years, 5 months ago (2014-07-14 09:12:16 UTC) #26
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 5 months ago (2014-07-14 09:22:41 UTC) #27
commit-bot: I haz the power
Try jobs failed on following builders: win_blink_rel on tryserver.blink (http://build.chromium.org/p/tryserver.blink/builders/win_blink_rel/builds/16706)
6 years, 5 months ago (2014-07-14 09:22:43 UTC) #28
keishi
The CQ bit was checked by keishi@chromium.org
6 years, 5 months ago (2014-07-16 14:05:34 UTC) #29
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/keishi@chromium.org/347773002/540001
6 years, 5 months ago (2014-07-16 14:05:57 UTC) #30
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: linux_blink_dbg on tryserver.blink ...
6 years, 5 months ago (2014-07-16 15:00:59 UTC) #31
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 5 months ago (2014-07-16 15:28:46 UTC) #32
commit-bot: I haz the power
Try jobs failed on following builders: linux_blink_rel on tryserver.blink (http://build.chromium.org/p/tryserver.blink/builders/linux_blink_rel/builds/16320)
6 years, 5 months ago (2014-07-16 15:28:51 UTC) #33
keishi
The CQ bit was checked by keishi@chromium.org
6 years, 5 months ago (2014-07-17 02:06:14 UTC) #34
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/keishi@chromium.org/347773002/560001
6 years, 5 months ago (2014-07-17 02:07:23 UTC) #35
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 5 months ago (2014-07-17 02:07:57 UTC) #36
commit-bot: I haz the power
Failed to apply patch for Source/core/rendering/RenderListBox.cpp: While running patch -p1 --forward --force --no-backup-if-mismatch; patching file ...
6 years, 5 months ago (2014-07-17 02:07:59 UTC) #37
keishi
The CQ bit was checked by keishi@chromium.org
6 years, 5 months ago (2014-07-17 04:35:26 UTC) #38
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/keishi@chromium.org/347773002/580001
6 years, 5 months ago (2014-07-17 04:36:33 UTC) #39
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: mac_blink_rel on tryserver.blink ...
6 years, 5 months ago (2014-07-17 05:48:58 UTC) #40
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 5 months ago (2014-07-17 06:37:42 UTC) #41
commit-bot: I haz the power
Try jobs failed on following builders: win_blink_rel on tryserver.blink (http://build.chromium.org/p/tryserver.blink/builders/win_blink_rel/builds/17406)
6 years, 5 months ago (2014-07-17 06:37:46 UTC) #42
keishi
The CQ bit was checked by keishi@chromium.org
6 years, 5 months ago (2014-07-17 07:26:04 UTC) #43
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/keishi@chromium.org/347773002/600001
6 years, 5 months ago (2014-07-17 07:26:47 UTC) #44
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: win_blink_rel on tryserver.blink ...
6 years, 5 months ago (2014-07-17 08:38:23 UTC) #45
keishi
The CQ bit was checked by keishi@chromium.org
6 years, 5 months ago (2014-07-17 08:51:32 UTC) #46
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/keishi@chromium.org/347773002/620001
6 years, 5 months ago (2014-07-17 08:52:22 UTC) #47
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: win_blink_rel on tryserver.blink ...
6 years, 5 months ago (2014-07-17 10:03:10 UTC) #48
commit-bot: I haz the power
Change committed as 178354
6 years, 5 months ago (2014-07-17 10:44:29 UTC) #49
johnme
On 2014/07/17 10:44:29, I haz the power (commit-bot) wrote: > Change committed as 178354 Oddly, ...
6 years, 5 months ago (2014-07-17 13:28:44 UTC) #50
tkent
6 years, 5 months ago (2014-07-17 23:36:53 UTC) #51
Message was sent while issue was closed.
On 2014/07/17 13:28:44, johnme wrote:
> However they passed on the following build, so I'm not sure what to make of
> that; is it possible the bot was using the updated test expectations, but
still
> using the old code?

Yeah, it's possible if we have separated builder bot and tester bot.

Powered by Google App Engine
This is Rietveld 408576698