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

Issue 11363170: Add an accessibility audit test for WebUI pages (Closed)

Created:
8 years, 1 month ago by aboxhall
Modified:
7 years, 11 months ago
CC:
chromium-reviews, hashimoto+watch_chromium.org, aboxhall+watch_chromium.org, yoshiki+watch_chromium.org, yuzo+watch_chromium.org, davidbarr+watch_chromium.org, dmazzoni+watch_chromium.org, dtseng+watch_chromium.org, ctguil+watch_chromium.org, zork+watch_chromium.org, dmazzoni, Sheridan Rawlins, Dan Beam, rkc, Yaron, Jay Civelli
Visibility:
Public.

Description

Add an accessibility audit for WebUI pages. This change adds an accessibility audit which runs just before tearDown() on any WebUI browser test that uses the chrome/test/data/webui/test_api.js framework. As of this change, the test will run by default for each test case, but not cause any errors in the case of accessibility issues. As we fix accessibility issues, we can set the a11yIssuesAreErrors flag on a per-test and per-fixture basis, to catch regressions. Once the majority of WebUI pages are passing the accessibility audit, and we have a mechanism in place for ignoring false positives, we will transition to treating accessibility issues as errors by default. http://www.chromium.org/developers/accessibility/webui-accessibility-audit has more information. BUG=162740 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=175866

Patch Set 1 #

Patch Set 2 : Working test (but doesn't conform with style rules etc.) #

Patch Set 3 : Pull audit code in from third_party #

Patch Set 4 : Actually add the third_party library, and remove the old accessibility_audit.js" #

Patch Set 5 : Run accessibility audit on all WebUI pages #

Patch Set 6 : Rebase #

Patch Set 7 : Moving accessibility-developer-tools to src/third_party #

Total comments: 2

Patch Set 8 : Remove reference to obsolete a11y_audit.js #

Total comments: 14

Patch Set 9 : First, very incomplete pass at doing accessibility check in Javascript only #

Total comments: 3

Patch Set 10 : Doing accessibility check in javascript, with flags for whether to run a11y checks and whether to t… #

Total comments: 8

Patch Set 11 : Just addressing comments #

Patch Set 12 : Added some test cases for the test test #

Total comments: 3

Patch Set 13 : Working test for a11y audit #

Total comments: 26

Patch Set 14 : Addressing review comments and adding documentation. #

Patch Set 15 : Change a11y to accessibility in public API #

Total comments: 51

Patch Set 16 : Addressed scr's comments (mostly) #

Patch Set 17 : Rebase #

Total comments: 1

Patch Set 18 : Next round of review comments (including Dominic's) #

Patch Set 19 : Rebase #

Total comments: 11

Patch Set 20 : Addressing review comments, and ensuring that expects* during tearDown generates errors #

Patch Set 21 : Sync DEPS to latest accessibility-developer-tools (fixing one bug in a test) #

Total comments: 2

Patch Set 22 : Sheridan's patch and order change for imports in web_ui_browsertest #

Total comments: 2

Patch Set 23 : Add accessibility-developer-tools to v8_unit_test.cc, and check for undefined |document| before run… #

Patch Set 24 : Fix comments on a11yErrors_ and a11yWarnings_ #

Patch Set 25 : Add axs_testing to test_files in build/android/pylib/single_test_runner.py #

Patch Set 26 : Rebase #

Total comments: 19

Patch Set 27 : Sort test_files in single_test_runner.py and remove unused constant in web_ui_browsertest.cc #

Patch Set 28 : Nits #

Total comments: 4

Patch Set 29 : Addressed remaining comments. #

Total comments: 6

Patch Set 30 : Remove unnecessary {} #

Total comments: 4

Patch Set 31 : chrome/test/data/webui/test_api.js #

Patch Set 32 : Remove copyright boilerplate, s/Test that/Tests that/g #

Patch Set 33 : Rebase to master #

Patch Set 34 : Reinstate copyright header #

Unified diffs Side-by-side diffs Delta from patch set Stats (+567 lines, -21 lines) Patch
M DEPS 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 33 1 chunk +1 line, -1 line 0 comments Download
M build/android/pylib/gtest/single_test_runner.py 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 33 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/ui/webui/web_ui_browsertest.cc 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 3 chunks +17 lines, -8 lines 0 comments Download
M chrome/chrome_tests.gypi 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 33 1 chunk +1 line, -0 lines 0 comments Download
M chrome/test/base/v8_unit_test.cc 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 33 1 chunk +9 lines, -0 lines 0 comments Download
A chrome/test/data/webui/accessibility_audit_browsertest.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 29 30 31 32 33 1 chunk +330 lines, -0 lines 0 comments Download
M chrome/test/data/webui/test_api.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 29 9 chunks +208 lines, -12 lines 0 comments Download

Messages

Total messages: 61 (0 generated)
aboxhall
+scr, dbeam Hi Sheridan, Dan; This is my work-in-progress to add an accessibility audit which ...
8 years ago (2012-11-28 04:24:35 UTC) #1
Sheridan Rawlins
https://codereview.chromium.org/11363170/diff/12002/chrome/browser/ui/webui/web_ui_browsertest.cc File chrome/browser/ui/webui/web_ui_browsertest.cc (right): https://codereview.chromium.org/11363170/diff/12002/chrome/browser/ui/webui/web_ui_browsertest.cc#newcode50 chrome/browser/ui/webui/web_ui_browsertest.cc:50: const FilePath::CharType kMockJS[] = FILE_PATH_LITERAL("mock4js.js"); unused right? if so, ...
8 years ago (2012-11-29 17:43:48 UTC) #2
dmazzoni
https://codereview.chromium.org/11363170/diff/12002/chrome/test/base/js2gtest.js File chrome/test/base/js2gtest.js (right): https://codereview.chromium.org/11363170/diff/12002/chrome/test/base/js2gtest.js#newcode190 chrome/test/base/js2gtest.js:190: print(' ' + testPredicate + '(RunJavascriptTestF(' + isAsyncParam + ...
8 years ago (2012-11-29 18:44:33 UTC) #3
Sheridan Rawlins
https://codereview.chromium.org/11363170/diff/12002/chrome/test/base/js2gtest.js File chrome/test/base/js2gtest.js (right): https://codereview.chromium.org/11363170/diff/12002/chrome/test/base/js2gtest.js#newcode192 chrome/test/base/js2gtest.js:192: '"accessibilityAudit"));'); This js test infra generates C++ gtest tests ...
8 years ago (2012-11-29 18:58:54 UTC) #4
aboxhall
https://codereview.chromium.org/11363170/diff/12002/chrome/js_unittest_vars.gypi File chrome/js_unittest_vars.gypi (right): https://codereview.chromium.org/11363170/diff/12002/chrome/js_unittest_vars.gypi#newcode11 chrome/js_unittest_vars.gypi:11: 'accessibility_audit_js': '<(DEPTH)/third_party/accessibility-developer-tools/gen/axs_testing.js', On 2012/11/29 17:43:48, Sheridan Rawlins wrote: > ...
8 years ago (2012-11-30 00:56:26 UTC) #5
dmazzoni
Based on our discussions, I think here should be the plan for this initial change: ...
8 years ago (2012-11-30 19:22:30 UTC) #6
aboxhall
Sheridan: this is a very incomplete first cut of doing what we chatted about yesterday. ...
8 years ago (2012-12-06 00:51:58 UTC) #7
aboxhall
Obviously still has a way to go (including testing the test), but this is closer ...
8 years ago (2012-12-07 02:14:15 UTC) #8
scr
Some comments… not complete on review either, but you said you had more to do ...
8 years ago (2012-12-07 06:11:34 UTC) #9
aboxhall
https://codereview.chromium.org/11363170/diff/6002/chrome/test/base/js2gtest.js File chrome/test/base/js2gtest.js (right): https://codereview.chromium.org/11363170/diff/6002/chrome/test/base/js2gtest.js#newcode192 chrome/test/base/js2gtest.js:192: '"accessibilityAudit"));'); On 2012/12/07 06:11:35, scr wrote: > We don't ...
8 years ago (2012-12-07 19:23:50 UTC) #10
aboxhall
scr: Obviously this still needs some polish, but it's complete and tested now. Could you ...
8 years ago (2012-12-14 02:22:21 UTC) #11
dmazzoni
Please update the change title and description now that this is basically finished. Please summarize ...
8 years ago (2012-12-14 18:45:41 UTC) #12
aboxhall
Sheridan: I've fixed up the FIXMEs and addressed Dominic's comments; just waiting on your review ...
8 years ago (2012-12-14 23:26:44 UTC) #13
Sheridan Rawlins
https://codereview.chromium.org/11363170/diff/20001/chrome/browser/ui/webui/web_ui_browsertest.cc File chrome/browser/ui/webui/web_ui_browsertest.cc (right): https://codereview.chromium.org/11363170/diff/20001/chrome/browser/ui/webui/web_ui_browsertest.cc#newcode49 chrome/browser/ui/webui/web_ui_browsertest.cc:49: const std::string kMockJSPath = "chrome/third_party/mock4js/mock4js.js"; Why aren't these also ...
8 years ago (2012-12-18 01:43:34 UTC) #14
aboxhall
https://codereview.chromium.org/11363170/diff/38014/chrome/browser/ui/webui/web_ui_browsertest.cc File chrome/browser/ui/webui/web_ui_browsertest.cc (right): https://codereview.chromium.org/11363170/diff/38014/chrome/browser/ui/webui/web_ui_browsertest.cc#newcode49 chrome/browser/ui/webui/web_ui_browsertest.cc:49: const FilePath::CharType kMockJSPath[] = On 2012/12/18 01:43:35, Sheridan Rawlins ...
8 years ago (2012-12-18 19:21:35 UTC) #15
scr
https://codereview.chromium.org/11363170/diff/33001/chrome/browser/ui/webui/web_ui_browsertest.h File chrome/browser/ui/webui/web_ui_browsertest.h (right): https://codereview.chromium.org/11363170/diff/33001/chrome/browser/ui/webui/web_ui_browsertest.h#newcode56 chrome/browser/ui/webui/web_ui_browsertest.h:56: void AddLibraryFromPath(const FilePath path); const FilePath& path // (the ...
8 years ago (2012-12-18 23:13:43 UTC) #16
scr
https://codereview.chromium.org/11363170/diff/33001/chrome/browser/ui/webui/web_ui_browsertest.h File chrome/browser/ui/webui/web_ui_browsertest.h (right): https://codereview.chromium.org/11363170/diff/33001/chrome/browser/ui/webui/web_ui_browsertest.h#newcode56 chrome/browser/ui/webui/web_ui_browsertest.h:56: void AddLibraryFromPath(const FilePath path); Weird - I don't know ...
8 years ago (2012-12-18 23:15:09 UTC) #17
dmazzoni
One tiny request: I want to really set apart the accessibility audit from other errors, ...
8 years ago (2012-12-19 17:59:51 UTC) #18
aboxhall
https://codereview.chromium.org/11363170/diff/33001/chrome/browser/ui/webui/web_ui_browsertest.h File chrome/browser/ui/webui/web_ui_browsertest.h (right): https://codereview.chromium.org/11363170/diff/33001/chrome/browser/ui/webui/web_ui_browsertest.h#newcode56 chrome/browser/ui/webui/web_ui_browsertest.h:56: void AddLibraryFromPath(const FilePath path); On 2012/12/18 23:15:09, scr wrote: ...
8 years ago (2012-12-19 19:10:04 UTC) #19
aboxhall
scr: ping?
8 years ago (2012-12-20 18:07:04 UTC) #20
scr
LGTM with nits (fine to commit after Dominic's LG and addressing nits). https://codereview.chromium.org/11363170/diff/57003/chrome/test/data/webui/accessibility_audit_browsertest.js File chrome/test/data/webui/accessibility_audit_browsertest.js ...
8 years ago (2012-12-20 20:27:48 UTC) #21
scr
Hey, I don't see a try run on this CL - please run with git ...
8 years ago (2012-12-20 21:42:03 UTC) #22
aboxhall
https://codereview.chromium.org/11363170/diff/57003/chrome/test/data/webui/accessibility_audit_browsertest.js File chrome/test/data/webui/accessibility_audit_browsertest.js (right): https://codereview.chromium.org/11363170/diff/57003/chrome/test/data/webui/accessibility_audit_browsertest.js#newcode5 chrome/test/data/webui/accessibility_audit_browsertest.js:5: function WebUIAccessibilityAuditBrowserTest() {} On 2012/12/20 20:27:49, scr wrote: > ...
8 years ago (2012-12-20 21:56:36 UTC) #23
dmazzoni
lgtm https://codereview.chromium.org/11363170/diff/60003/chrome/test/data/webui/test_api.js File chrome/test/data/webui/test_api.js (right): https://codereview.chromium.org/11363170/diff/60003/chrome/test/data/webui/test_api.js#newcode1604 chrome/test/data/webui/test_api.js:1604: exports.assertAccessibilityOk = assertAccessibilityOk; Nit: sort alphabetically
8 years ago (2012-12-20 22:05:06 UTC) #24
aboxhall
https://codereview.chromium.org/11363170/diff/60003/chrome/test/data/webui/test_api.js File chrome/test/data/webui/test_api.js (right): https://codereview.chromium.org/11363170/diff/60003/chrome/test/data/webui/test_api.js#newcode1604 chrome/test/data/webui/test_api.js:1604: exports.assertAccessibilityOk = assertAccessibilityOk; On 2012/12/20 22:05:06, Dominic Mazzoni wrote: ...
8 years ago (2012-12-20 23:01:41 UTC) #25
aboxhall
8 years ago (2012-12-20 23:01:43 UTC) #26
aboxhall
Sheridan, is this good to go now?
8 years ago (2012-12-21 02:03:55 UTC) #27
scr
Just a commenting change AFAICT; still LGTM especially if tests pass on trybots :D https://codereview.chromium.org/11363170/diff/52015/chrome/test/data/webui/test_api.js ...
8 years ago (2012-12-21 02:13:39 UTC) #28
aboxhall
https://codereview.chromium.org/11363170/diff/52015/chrome/test/data/webui/test_api.js File chrome/test/data/webui/test_api.js (right): https://codereview.chromium.org/11363170/diff/52015/chrome/test/data/webui/test_api.js#newcode142 chrome/test/data/webui/test_api.js:142: * Like |errors|, cleared when results are reported. On ...
8 years ago (2012-12-21 02:19:05 UTC) #29
Dan Beam
FYI: There are lots of test failures in the try jobs that have to do ...
8 years ago (2012-12-21 03:21:03 UTC) #30
aboxhall
On 2012/12/21 03:21:03, Dan Beam wrote: > FYI: There are lots of test failures in ...
8 years ago (2012-12-21 03:31:22 UTC) #31
aboxhall
On 2012/12/21 03:31:22, aboxhall wrote: > On 2012/12/21 03:21:03, Dan Beam wrote: > > FYI: ...
8 years ago (2012-12-21 16:59:08 UTC) #32
aboxhall
On 2012/12/21 16:59:08, aboxhall wrote: > On 2012/12/21 03:31:22, aboxhall wrote: > > On 2012/12/21 ...
8 years ago (2012-12-21 19:33:53 UTC) #33
dmazzoni
Adding some Chrome/Android folks: yfriedman, jcivelli, dtrainor Can any of you help figure out why ...
8 years ago (2012-12-21 22:52:30 UTC) #34
David Trainor- moved to gerrit
On 2012/12/21 22:52:30, Dominic Mazzoni wrote: > Adding some Chrome/Android folks: yfriedman, jcivelli, dtrainor > ...
8 years ago (2012-12-21 23:23:03 UTC) #35
aboxhall
On 2012/12/21 23:23:03, dtrainor wrote: > On 2012/12/21 22:52:30, Dominic Mazzoni wrote: > > Adding ...
8 years ago (2012-12-22 00:43:46 UTC) #36
aboxhall
phajdan.jr, jhawkins: would you mind reviewing for OWNERS approval in chrome/test and chrome/browser/ui/webui?
7 years, 11 months ago (2013-01-03 21:18:01 UTC) #37
James Hawkins
https://codereview.chromium.org/11363170/diff/79001/chrome/browser/ui/webui/web_ui_browsertest.h File chrome/browser/ui/webui/web_ui_browsertest.h (right): https://codereview.chromium.org/11363170/diff/79001/chrome/browser/ui/webui/web_ui_browsertest.h#newcode56 chrome/browser/ui/webui/web_ui_browsertest.h:56: void AddLibraryFromPath(const FilePath& path); How is this different from ...
7 years, 11 months ago (2013-01-03 21:23:38 UTC) #38
Paweł Hajdan Jr.
https://codereview.chromium.org/11363170/diff/79001/build/android/pylib/single_test_runner.py File build/android/pylib/single_test_runner.py (right): https://codereview.chromium.org/11363170/diff/79001/build/android/pylib/single_test_runner.py#newcode162 build/android/pylib/single_test_runner.py:162: 'third_party/accessibility-developer-tools/gen/axs_testing.js', nit: This should probably be sorted. https://codereview.chromium.org/11363170/diff/79001/chrome/browser/ui/webui/web_ui_browsertest.h File ...
7 years, 11 months ago (2013-01-03 21:40:56 UTC) #39
aboxhall
https://codereview.chromium.org/11363170/diff/79001/build/android/pylib/single_test_runner.py File build/android/pylib/single_test_runner.py (right): https://codereview.chromium.org/11363170/diff/79001/build/android/pylib/single_test_runner.py#newcode162 build/android/pylib/single_test_runner.py:162: 'third_party/accessibility-developer-tools/gen/axs_testing.js', On 2013/01/03 21:40:56, Paweł Hajdan Jr. wrote: > ...
7 years, 11 months ago (2013-01-03 22:11:22 UTC) #40
scr
https://codereview.chromium.org/11363170/diff/79001/chrome/test/base/js2gtest.js File chrome/test/base/js2gtest.js (right): https://codereview.chromium.org/11363170/diff/79001/chrome/test/base/js2gtest.js#newcode156 chrome/test/base/js2gtest.js:156: testFunction.match(/_shouldFail$/); Either subclass and set testShouldFail to true or ...
7 years, 11 months ago (2013-01-03 22:18:52 UTC) #41
aboxhall
Oops, missed the nits last time. https://codereview.chromium.org/11363170/diff/79001/chrome/test/data/webui/accessibility_audit_browsertest.js File chrome/test/data/webui/accessibility_audit_browsertest.js (right): https://codereview.chromium.org/11363170/diff/79001/chrome/test/data/webui/accessibility_audit_browsertest.js#newcode45 chrome/test/data/webui/accessibility_audit_browsertest.js:45: expectEquals(this.expectedWarnings, On 2013/01/03 ...
7 years, 11 months ago (2013-01-04 00:26:50 UTC) #42
aboxhall
phajdan.jr, jhawkins: Would you be able to take another look at this?
7 years, 11 months ago (2013-01-04 18:10:03 UTC) #43
James Hawkins
https://codereview.chromium.org/11363170/diff/79001/chrome/browser/ui/webui/web_ui_browsertest.h File chrome/browser/ui/webui/web_ui_browsertest.h (right): https://codereview.chromium.org/11363170/diff/79001/chrome/browser/ui/webui/web_ui_browsertest.h#newcode56 chrome/browser/ui/webui/web_ui_browsertest.h:56: void AddLibraryFromPath(const FilePath& path); On 2013/01/03 22:11:22, aboxhall wrote: ...
7 years, 11 months ago (2013-01-04 18:25:17 UTC) #44
Paweł Hajdan Jr.
https://codereview.chromium.org/11363170/diff/79001/chrome/browser/ui/webui/web_ui_browsertest.h File chrome/browser/ui/webui/web_ui_browsertest.h (right): https://codereview.chromium.org/11363170/diff/79001/chrome/browser/ui/webui/web_ui_browsertest.h#newcode56 chrome/browser/ui/webui/web_ui_browsertest.h:56: void AddLibraryFromPath(const FilePath& path); On 2013/01/03 22:11:22, aboxhall wrote: ...
7 years, 11 months ago (2013-01-04 18:57:03 UTC) #45
scr
Repeated some of the comments/tasks on latest patch. https://codereview.chromium.org/11363170/diff/91001/chrome/browser/ui/webui/web_ui_browsertest.h File chrome/browser/ui/webui/web_ui_browsertest.h (right): https://codereview.chromium.org/11363170/diff/91001/chrome/browser/ui/webui/web_ui_browsertest.h#newcode56 chrome/browser/ui/webui/web_ui_browsertest.h:56: void ...
7 years, 11 months ago (2013-01-04 19:02:55 UTC) #46
aboxhall
https://codereview.chromium.org/11363170/diff/79001/chrome/test/base/js2gtest.js File chrome/test/base/js2gtest.js (right): https://codereview.chromium.org/11363170/diff/79001/chrome/test/base/js2gtest.js#newcode156 chrome/test/base/js2gtest.js:156: testFunction.match(/_shouldFail$/); On 2013/01/03 22:18:53, scr wrote: > Either subclass ...
7 years, 11 months ago (2013-01-04 22:26:51 UTC) #47
Paweł Hajdan Jr.
https://codereview.chromium.org/11363170/diff/94001/chrome/browser/ui/webui/web_ui_browsertest.cc File chrome/browser/ui/webui/web_ui_browsertest.cc (right): https://codereview.chromium.org/11363170/diff/94001/chrome/browser/ui/webui/web_ui_browsertest.cc#newcode86 chrome/browser/ui/webui/web_ui_browsertest.cc:86: ASSERT_TRUE(PathService::Get(base::DIR_SOURCE_ROOT, &filePath)); nit: I'd prefer to make this helper ...
7 years, 11 months ago (2013-01-07 17:33:50 UTC) #48
aboxhall
https://codereview.chromium.org/11363170/diff/94001/chrome/browser/ui/webui/web_ui_browsertest.cc File chrome/browser/ui/webui/web_ui_browsertest.cc (right): https://codereview.chromium.org/11363170/diff/94001/chrome/browser/ui/webui/web_ui_browsertest.cc#newcode86 chrome/browser/ui/webui/web_ui_browsertest.cc:86: ASSERT_TRUE(PathService::Get(base::DIR_SOURCE_ROOT, &filePath)); On 2013/01/07 17:33:51, Paweł Hajdan Jr. wrote: ...
7 years, 11 months ago (2013-01-07 18:20:03 UTC) #49
aboxhall
Is this looking ok?
7 years, 11 months ago (2013-01-08 17:28:56 UTC) #50
James Hawkins
LGTM with nits, but please wait for everyone else to LG. https://codereview.chromium.org/11363170/diff/99001/chrome/test/data/webui/accessibility_audit_browsertest.js File chrome/test/data/webui/accessibility_audit_browsertest.js (right): ...
7 years, 11 months ago (2013-01-08 18:38:07 UTC) #51
aboxhall
https://codereview.chromium.org/11363170/diff/99001/chrome/test/data/webui/accessibility_audit_browsertest.js File chrome/test/data/webui/accessibility_audit_browsertest.js (right): https://codereview.chromium.org/11363170/diff/99001/chrome/test/data/webui/accessibility_audit_browsertest.js#newcode1 chrome/test/data/webui/accessibility_audit_browsertest.js:1: // Copyright (c) 2012 The Chromium Authors. All rights ...
7 years, 11 months ago (2013-01-08 19:35:50 UTC) #52
aboxhall
phajdan.jr: ping?
7 years, 11 months ago (2013-01-08 22:59:22 UTC) #53
Paweł Hajdan Jr.
LGTM
7 years, 11 months ago (2013-01-09 17:21:52 UTC) #54
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/aboxhall@chromium.org/11363170/110001
7 years, 11 months ago (2013-01-09 17:22:51 UTC) #55
commit-bot: I haz the power
Presubmit check for 11363170-110001 failed and returned exit status 1. Running presubmit commit checks ...
7 years, 11 months ago (2013-01-09 17:22:58 UTC) #56
aboxhall
@jhawkins Is this an out of date presubmit? On 2013/01/09 17:22:58, I haz the power ...
7 years, 11 months ago (2013-01-09 17:25:05 UTC) #57
dmazzoni
On Tue, Jan 8, 2013 at 10:38 AM, <jhawkins@chromium.org> wrote: > https://codereview.chromium.**org/11363170/diff/99001/** > chrome/test/data/webui/**accessibility_audit_**browsertest.js#newcode1<https://codereview.chromium.org/11363170/diff/99001/chrome/test/data/webui/accessibility_audit_browsertest.js#newcode1> > ...
7 years, 11 months ago (2013-01-09 17:41:02 UTC) #58
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/aboxhall@chromium.org/11363170/115002
7 years, 11 months ago (2013-01-09 17:54:29 UTC) #59
James Hawkins
On 2013/01/09 17:41:02, Dominic Mazzoni wrote: > On Tue, Jan 8, 2013 at 10:38 AM, ...
7 years, 11 months ago (2013-01-09 18:34:57 UTC) #60
commit-bot: I haz the power
7 years, 11 months ago (2013-01-09 20:07:11 UTC) #61
Message was sent while issue was closed.
Change committed as 175866

Powered by Google App Engine
This is Rietveld 408576698