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

Issue 1416873015: Text controls should expose their value instead of their name via IAccessibleText (Closed)

Created:
5 years, 1 month ago by nektarios
Modified:
5 years, 1 month ago
Reviewers:
dmazzoni, aboxhall
CC:
aboxhall+watch_chromium.org, chromium-reviews, darin-cc_chromium.org, dmazzoni+watch_chromium.org, dtseng+watch_chromium.org, jam, je_julie, nektar+watch_chromium.org, plundblad+watch_chromium.org, yuzo+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Text controls should expose their value instead of their name via IAccessibleText. Otherwise the user could potentially cursor through their value while listenning to their name/label. Example: data:text/html,<input type="text" role="combobox" value="test" aria-label="name"> This issue affects the NVDA screen reader. TESTED=NVDA Python console,unit test,browser tests BUG=440653 R=dmazzoni@chromium.org, aboxhall@chromium.org Committed: https://crrev.com/ede890769a7bcc9dabb673f7332948946c76de99 Cr-Commit-Position: refs/heads/master@{#357849}

Patch Set 1 #

Patch Set 2 : Added unit tests. #

Total comments: 7

Patch Set 3 : Added browser tests. #

Total comments: 1

Patch Set 4 : Added browser tests and re-introduced IsControl. Expanded unit test. #

Total comments: 2

Patch Set 5 : Changed to exposing the value of only text fields instead of all controls that have a visible value. #

Patch Set 6 : Fixed browser tests. #

Total comments: 2

Patch Set 7 : Fixed test expectations. #

Patch Set 8 : Fixed test expectations. #

Patch Set 9 : Fixed radio menu items test on Android. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+528 lines, -400 lines) Patch
M content/browser/accessibility/browser_accessibility.h View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M content/browser/accessibility/browser_accessibility.cc View 1 2 3 4 1 chunk +13 lines, -0 lines 0 comments Download
M content/browser/accessibility/browser_accessibility_win.h View 1 1 chunk +0 lines, -4 lines 0 comments Download
M content/browser/accessibility/browser_accessibility_win.cc View 1 2 3 4 19 chunks +27 lines, -32 lines 0 comments Download
M content/browser/accessibility/browser_accessibility_win_unittest.cc View 1 2 3 4 2 chunks +128 lines, -75 lines 0 comments Download
M content/test/data/accessibility/aria/aria-button.html View 1 2 3 1 chunk +7 lines, -6 lines 0 comments Download
M content/test/data/accessibility/aria/aria-button-expected-android.txt View 1 2 3 4 5 6 1 chunk +5 lines, -5 lines 0 comments Download
M content/test/data/accessibility/aria/aria-button-expected-mac.txt View 1 2 3 4 5 1 chunk +5 lines, -5 lines 0 comments Download
M content/test/data/accessibility/aria/aria-button-expected-win.txt View 1 2 3 4 5 1 chunk +6 lines, -6 lines 0 comments Download
M content/test/data/accessibility/aria/aria-checkbox.html View 1 2 3 1 chunk +7 lines, -6 lines 0 comments Download
M content/test/data/accessibility/aria/aria-checkbox-expected-android.txt View 1 2 3 4 5 6 1 chunk +4 lines, -4 lines 0 comments Download
M content/test/data/accessibility/aria/aria-checkbox-expected-mac.txt View 1 2 3 4 5 1 chunk +4 lines, -4 lines 0 comments Download
M content/test/data/accessibility/aria/aria-checkbox-expected-win.txt View 1 2 3 4 5 1 chunk +5 lines, -5 lines 0 comments Download
M content/test/data/accessibility/aria/aria-combobox.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M content/test/data/accessibility/aria/aria-listbox.html View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M content/test/data/accessibility/aria/aria-listbox-aria-selected.html View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M content/test/data/accessibility/aria/aria-listbox-expected-win.txt View 1 2 3 1 chunk +4 lines, -4 lines 0 comments Download
M content/test/data/accessibility/aria/aria-menuitemcheckbox.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M content/test/data/accessibility/aria/aria-menuitemradio.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M content/test/data/accessibility/aria/aria-radio.html View 1 2 3 1 chunk +3 lines, -2 lines 0 comments Download
M content/test/data/accessibility/aria/aria-radio-expected-android.txt View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M content/test/data/accessibility/aria/aria-radio-expected-mac.txt View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M content/test/data/accessibility/aria/aria-radio-expected-win.txt View 1 2 3 4 5 1 chunk +2 lines, -2 lines 0 comments Download
M content/test/data/accessibility/aria/aria-scrollbar.html View 1 2 3 1 chunk +4 lines, -3 lines 0 comments Download
M content/test/data/accessibility/aria/aria-scrollbar-expected-win.txt View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M content/test/data/accessibility/aria/aria-searchbox.html View 1 2 1 chunk +3 lines, -1 line 0 comments Download
M content/test/data/accessibility/aria/aria-searchbox-expected-win.txt View 1 2 3 1 chunk +3 lines, -3 lines 0 comments Download
M content/test/data/accessibility/aria/aria-searchbox-with-selection.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M content/test/data/accessibility/aria/aria-searchbox-with-selection-expected-win.txt View 1 2 3 1 chunk +3 lines, -3 lines 0 comments Download
M content/test/data/accessibility/aria/aria-slider.html View 1 2 1 chunk +4 lines, -3 lines 0 comments Download
M content/test/data/accessibility/aria/aria-slider-expected-win.txt View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M content/test/data/accessibility/aria/aria-spinbutton.html View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M content/test/data/accessibility/aria/aria-switch.html View 1 2 3 1 chunk +5 lines, -4 lines 0 comments Download
M content/test/data/accessibility/aria/aria-switch-expected-android.txt View 1 2 3 4 5 6 1 chunk +3 lines, -3 lines 0 comments Download
M content/test/data/accessibility/aria/aria-switch-expected-mac.txt View 1 2 3 4 5 1 chunk +3 lines, -3 lines 0 comments Download
M content/test/data/accessibility/aria/aria-switch-expected-win.txt View 1 2 3 4 5 1 chunk +4 lines, -4 lines 0 comments Download
M content/test/data/accessibility/aria/aria-textbox.html View 1 2 3 1 chunk +6 lines, -5 lines 0 comments Download
M content/test/data/accessibility/aria/aria-textbox-expected-android.txt View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M content/test/data/accessibility/aria/aria-textbox-expected-mac.txt View 1 2 3 4 5 1 chunk +2 lines, -2 lines 0 comments Download
M content/test/data/accessibility/aria/aria-textbox-expected-win.txt View 1 2 3 4 5 1 chunk +3 lines, -3 lines 0 comments Download
M content/test/data/accessibility/aria/aria-textbox-with-selection.html View 1 2 1 chunk +4 lines, -3 lines 0 comments Download
M content/test/data/accessibility/aria/aria-textbox-with-selection-expected-win.txt View 1 2 3 1 chunk +4 lines, -3 lines 0 comments Download
M content/test/data/accessibility/html/button.html View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M content/test/data/accessibility/html/button-expected-win.txt View 1 2 3 1 chunk +3 lines, -3 lines 0 comments Download
M content/test/data/accessibility/html/contenteditable-descendants.html View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M content/test/data/accessibility/html/input-button.html View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M content/test/data/accessibility/html/input-button-expected-win.txt View 1 2 3 1 chunk +3 lines, -3 lines 0 comments Download
M content/test/data/accessibility/html/input-checkbox.html View 1 2 3 4 5 1 chunk +6 lines, -5 lines 0 comments Download
M content/test/data/accessibility/html/input-checkbox-expected-android.txt View 1 2 3 4 5 6 1 chunk +3 lines, -3 lines 0 comments Download
M content/test/data/accessibility/html/input-checkbox-expected-mac.txt View 1 2 3 4 5 6 1 chunk +3 lines, -3 lines 0 comments Download
M content/test/data/accessibility/html/input-checkbox-expected-win.txt View 1 2 3 4 5 6 1 chunk +5 lines, -5 lines 0 comments Download
M content/test/data/accessibility/html/input-checkbox-in-menu.html View 1 2 3 4 5 1 chunk +5 lines, -4 lines 0 comments Download
M content/test/data/accessibility/html/input-checkbox-in-menu-expected-android.txt View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M content/test/data/accessibility/html/input-checkbox-in-menu-expected-mac.txt View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M content/test/data/accessibility/html/input-checkbox-in-menu-expected-win.txt View 1 2 3 4 5 6 1 chunk +5 lines, -5 lines 0 comments Download
M content/test/data/accessibility/html/input-color.html View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M content/test/data/accessibility/html/input-color-expected-win.txt View 1 2 3 4 5 1 chunk +2 lines, -2 lines 0 comments Download
M content/test/data/accessibility/html/input-date.html View 1 2 3 1 chunk +1 line, -2 lines 0 comments Download
M content/test/data/accessibility/html/input-date-expected-win.txt View 1 2 3 1 chunk +3 lines, -3 lines 0 comments Download
M content/test/data/accessibility/html/input-datetime.html View 1 2 3 1 chunk +2 lines, -3 lines 0 comments Download
M content/test/data/accessibility/html/input-datetime-expected-android.txt View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M content/test/data/accessibility/html/input-datetime-expected-mac.txt View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M content/test/data/accessibility/html/input-datetime-expected-win.txt View 1 2 3 1 chunk +3 lines, -3 lines 0 comments Download
M content/test/data/accessibility/html/input-datetime-local.html View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M content/test/data/accessibility/html/input-datetime-local-expected-win.txt View 1 2 3 4 5 1 chunk +15 lines, -15 lines 0 comments Download
M content/test/data/accessibility/html/input-email.html View 1 2 3 1 chunk +3 lines, -2 lines 0 comments Download
M content/test/data/accessibility/html/input-email-expected-android.txt View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M content/test/data/accessibility/html/input-email-expected-mac.txt View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M content/test/data/accessibility/html/input-email-expected-win.txt View 1 2 3 4 5 1 chunk +3 lines, -3 lines 0 comments Download
M content/test/data/accessibility/html/input-file.html View 1 2 1 chunk +3 lines, -0 lines 0 comments Download
M content/test/data/accessibility/html/input-file-expected-win.txt View 1 2 3 1 chunk +3 lines, -3 lines 0 comments Download
M content/test/data/accessibility/html/input-month.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M content/test/data/accessibility/html/input-password.html View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M content/test/data/accessibility/html/input-password-expected-win.txt View 1 2 3 1 chunk +3 lines, -3 lines 0 comments Download
M content/test/data/accessibility/html/input-radio.html View 1 2 3 4 5 1 chunk +5 lines, -4 lines 0 comments Download
M content/test/data/accessibility/html/input-radio-expected-android.txt View 1 2 3 4 5 6 1 chunk +6 lines, -2 lines 0 comments Download
M content/test/data/accessibility/html/input-radio-expected-mac.txt View 1 2 3 4 5 6 1 chunk +7 lines, -2 lines 0 comments Download
M content/test/data/accessibility/html/input-radio-expected-win.txt View 1 2 3 4 5 6 1 chunk +11 lines, -5 lines 0 comments Download
M content/test/data/accessibility/html/input-radio-in-menu.html View 1 2 3 4 5 6 1 chunk +5 lines, -2 lines 0 comments Download
M content/test/data/accessibility/html/input-radio-in-menu-expected-android.txt View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -0 lines 0 comments Download
M content/test/data/accessibility/html/input-radio-in-menu-expected-mac.txt View 1 2 3 4 5 6 1 chunk +2 lines, -0 lines 0 comments Download
M content/test/data/accessibility/html/input-radio-in-menu-expected-win.txt View 1 2 3 4 5 6 7 1 chunk +6 lines, -3 lines 0 comments Download
M content/test/data/accessibility/html/input-range.html View 1 2 1 chunk +3 lines, -2 lines 0 comments Download
M content/test/data/accessibility/html/input-range-expected-win.txt View 1 2 3 4 5 1 chunk +2 lines, -2 lines 0 comments Download
M content/test/data/accessibility/html/input-search.html View 1 2 3 2 chunks +2 lines, -1 line 0 comments Download
M content/test/data/accessibility/html/input-search-expected-android.txt View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M content/test/data/accessibility/html/input-search-expected-mac.txt View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M content/test/data/accessibility/html/input-search-expected-win.txt View 1 2 3 4 5 1 chunk +3 lines, -3 lines 0 comments Download
M content/test/data/accessibility/html/input-tel.html View 1 2 3 1 chunk +3 lines, -2 lines 0 comments Download
M content/test/data/accessibility/html/input-tel-expected-android.txt View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M content/test/data/accessibility/html/input-tel-expected-mac.txt View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M content/test/data/accessibility/html/input-tel-expected-win.txt View 1 2 3 4 5 1 chunk +3 lines, -3 lines 0 comments Download
M content/test/data/accessibility/html/input-text.html View 1 2 1 chunk +3 lines, -2 lines 0 comments Download
M content/test/data/accessibility/html/input-text-expected-win.txt View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
M content/test/data/accessibility/html/input-text-with-selection.html View 1 2 1 chunk +3 lines, -2 lines 0 comments Download
M content/test/data/accessibility/html/input-text-with-selection-expected-win.txt View 1 2 3 1 chunk +3 lines, -3 lines 0 comments Download
M content/test/data/accessibility/html/input-time.html View 1 2 1 chunk +2 lines, -0 lines 0 comments Download
M content/test/data/accessibility/html/input-time-expected-win.txt View 1 2 3 4 5 1 chunk +10 lines, -10 lines 0 comments Download
M content/test/data/accessibility/html/input-url.html View 1 2 3 1 chunk +3 lines, -2 lines 0 comments Download
M content/test/data/accessibility/html/input-url-expected-android.txt View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M content/test/data/accessibility/html/input-url-expected-mac.txt View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M content/test/data/accessibility/html/input-url-expected-win.txt View 1 2 3 4 5 1 chunk +3 lines, -3 lines 0 comments Download
M content/test/data/accessibility/html/input-week.html View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M content/test/data/accessibility/html/input-week-expected-win.txt View 1 2 3 4 5 1 chunk +10 lines, -10 lines 0 comments Download
M content/test/data/accessibility/html/select.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M content/test/data/accessibility/html/select-expected-win.txt View 1 2 3 1 chunk +25 lines, -25 lines 0 comments Download
M content/test/data/accessibility/html/textarea.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M content/test/data/accessibility/html/textarea-expected-win.txt View 1 2 3 4 5 6 7 1 chunk +4 lines, -3 lines 0 comments Download
M content/test/data/accessibility/html/textarea-with-selection.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M content/test/data/accessibility/html/textarea-with-selection-expected-win.txt View 1 2 3 4 5 6 7 1 chunk +4 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/modules/accessibility/AXObject.cpp View 1 1 chunk +1 line, -0 lines 0 comments Download
M ui/accessibility/ax_enums.idl View 1 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 45 (15 generated)
nektarios
5 years, 1 month ago (2015-10-27 23:37:08 UTC) #1
aboxhall
https://codereview.chromium.org/1416873015/diff/20001/content/browser/accessibility/browser_accessibility.cc File content/browser/accessibility/browser_accessibility.cc (left): https://codereview.chromium.org/1416873015/diff/20001/content/browser/accessibility/browser_accessibility.cc#oldcode688 content/browser/accessibility/browser_accessibility.cc:688: bool BrowserAccessibility::IsControl() const { So this method was never ...
5 years, 1 month ago (2015-10-29 17:58:49 UTC) #4
dmazzoni
https://codereview.chromium.org/1416873015/diff/40001/content/browser/accessibility/browser_accessibility_win.cc File content/browser/accessibility/browser_accessibility_win.cc (right): https://codereview.chromium.org/1416873015/diff/40001/content/browser/accessibility/browser_accessibility_win.cc#newcode3531 content/browser/accessibility/browser_accessibility_win.cc:3531: if (IsControlWithValue()) I like the idea behind this change, ...
5 years, 1 month ago (2015-10-29 20:15:29 UTC) #5
chromium-reviews
I included sliders and scrollbars because the ARIA Spec has the aria-valuetext attribute which sounded ...
5 years, 1 month ago (2015-10-29 20:42:57 UTC) #6
chromium-reviews
On 10/29/2015 1:58 PM, aboxhall@chromium.org wrote: > > https://codereview.chromium.org/1416873015/diff/20001/content/browser/accessibility/browser_accessibility.cc > > File content/browser/accessibility/browser_accessibility.cc (left): > ...
5 years, 1 month ago (2015-10-29 21:13:44 UTC) #7
dmazzoni
Perhaps the best would be to check what Firefox does. I'd be really surprised if ...
5 years, 1 month ago (2015-10-29 21:39:03 UTC) #8
chromium-reviews
In any case, something would need to be changed because the current implementation provides the ...
5 years, 1 month ago (2015-10-29 21:47:44 UTC) #9
dmazzoni
Interesting. I'm not sure what it should return. I guess you could make the argument ...
5 years, 1 month ago (2015-10-29 22:09:48 UTC) #10
chromium-reviews
I created a page in Firefox with multiple controls including native and ARIA-based combo boxes, ...
5 years, 1 month ago (2015-10-30 19:32:36 UTC) #11
aboxhall
https://codereview.chromium.org/1416873015/diff/60001/content/browser/accessibility/browser_accessibility.h File content/browser/accessibility/browser_accessibility.h (right): https://codereview.chromium.org/1416873015/diff/60001/content/browser/accessibility/browser_accessibility.h#newcode277 content/browser/accessibility/browser_accessibility.h:277: bool IsControl() const; Perhaps reinstate the method comment as ...
5 years, 1 month ago (2015-10-30 19:40:46 UTC) #12
dmazzoni
Thanks for doing the detailed test! Note that in Chrome we can easily not expose ...
5 years, 1 month ago (2015-10-30 19:42:31 UTC) #13
chromium-reviews
I'll test thoroughly before submitting, but this patch is not the end of the story. ...
5 years, 1 month ago (2015-10-30 19:45:22 UTC) #14
chromium-reviews
According to IA2 Spec: > The IAccessibleText interface should be implemented by all components > ...
5 years, 1 month ago (2015-10-30 20:45:33 UTC) #15
chromium-reviews
After discussing offline with dmazzoni, I have modified my patch to return the value for ...
5 years, 1 month ago (2015-10-30 23:08:41 UTC) #16
chromium-reviews
https://codereview.chromium.org/1416873015/diff/60001/content/browser/accessibility/browser_accessibility.h > File content/browser/accessibility/browser_accessibility.h (right): > > https://codereview.chromium.org/1416873015/diff/60001/content/browser/accessibility/browser_accessibility.h#newcode277 > > content/browser/accessibility/browser_accessibility.h:277: bool > IsControl() const; ...
5 years, 1 month ago (2015-10-30 23:12:30 UTC) #17
chromium-reviews
Browser tests updated. You may have another look. To unsubscribe from this group and stop ...
5 years, 1 month ago (2015-11-02 23:06:11 UTC) #19
dmazzoni
lgtm
5 years, 1 month ago (2015-11-02 23:17:48 UTC) #20
aboxhall
lgtm I'm still not clear on when hypertext should and should not show up, but ...
5 years, 1 month ago (2015-11-02 23:22:47 UTC) #21
chromium-reviews
On 11/2/2015 6:22 PM, aboxhall@chromium.org wrote: > I'm still not clear on when hypertext should ...
5 years, 1 month ago (2015-11-03 02:37:50 UTC) #22
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1416873015/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1416873015/120001
5 years, 1 month ago (2015-11-03 03:06:33 UTC) #25
commit-bot: I haz the power
Try jobs failed on following builders: ios_dbg_simulator_ninja on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_dbg_simulator_ninja/builds/89246)
5 years, 1 month ago (2015-11-03 03:59:41 UTC) #27
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1416873015/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1416873015/120001
5 years, 1 month ago (2015-11-03 15:02:59 UTC) #29
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/129535)
5 years, 1 month ago (2015-11-03 16:06:02 UTC) #31
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1416873015/140001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1416873015/140001
5 years, 1 month ago (2015-11-03 16:18:39 UTC) #34
commit-bot: I haz the power
Try jobs failed on following builders: linux_android_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_android_rel_ng/builds/90697)
5 years, 1 month ago (2015-11-03 18:29:58 UTC) #36
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1416873015/160001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1416873015/160001
5 years, 1 month ago (2015-11-03 22:27:57 UTC) #39
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/129827)
5 years, 1 month ago (2015-11-04 02:35:43 UTC) #41
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1416873015/160001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1416873015/160001
5 years, 1 month ago (2015-11-04 16:26:54 UTC) #43
commit-bot: I haz the power
Committed patchset #9 (id:160001)
5 years, 1 month ago (2015-11-04 18:05:03 UTC) #44
commit-bot: I haz the power
5 years, 1 month ago (2015-11-04 18:06:15 UTC) #45
Message was sent while issue was closed.
Patchset 9 (id:??) landed as
https://crrev.com/ede890769a7bcc9dabb673f7332948946c76de99
Cr-Commit-Position: refs/heads/master@{#357849}

Powered by Google App Engine
This is Rietveld 408576698