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

Issue 2058323002: Add ARIA panel to accessibility sidebar pane (Closed)

Created:
4 years, 6 months ago by aboxhall
Modified:
4 years, 4 months ago
Reviewers:
dgozman
CC:
chromium-reviews, caseq+blink_chromium.org, aboxhall+watch_chromium.org, nektar+watch_chromium.org, lushnikov+blink_chromium.org, yuzo+watch_chromium.org, pfeldman+blink_chromium.org, nektarios, dmazzoni, apavlov+blink_chromium.org, dmazzoni+watch_chromium.org, dtseng+watch_chromium.org, devtools-reviews_chromium.org, blink-reviews, je_julie, sergeyv+blink_chromium.org, pfeldman, kozyatinskiy+blink_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Add ARIA panel to accessibility sidebar pane. Incomplete, but usable: - Can edit attribute values only. - Can not add extra attributes yet. - No autocomplete yet. - No validation yet. - No moving between attributes via keyboard yet. Minimal usable version to get started, will add missing features in follow-ups. BUG=616950 Committed: https://crrev.com/c9d64446c281cd18bb374ac0370bf9fb4cf5cb32 Cr-Commit-Position: refs/heads/master@{#407891}

Patch Set 1 #

Patch Set 2 : Only values can be edited. #

Patch Set 3 : Preliminary cleanup #

Total comments: 42

Patch Set 4 : dgozman comments #

Total comments: 8

Patch Set 5 : Add test scaffolding and test #

Total comments: 2

Patch Set 6 : logspam #

Patch Set 7 : Fix test and add test expectation #

Total comments: 24

Patch Set 8 : dgozman comments #

Patch Set 9 : Rename local functions #

Patch Set 10 : Rebase and fix test #

Unified diffs Side-by-side diffs Delta from patch set Stats (+532 lines, -4 lines) Patch
A third_party/WebKit/LayoutTests/inspector/elements/accessibility/accessibility-pane-test.js View 1 2 3 4 5 6 7 8 9 1 chunk +136 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector/elements/accessibility/edit-aria-attributes.html View 1 2 3 4 5 6 1 chunk +57 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector/elements/accessibility/edit-aria-attributes-expected.txt View 1 2 3 4 5 6 1 chunk +10 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/devtools/devtools.gypi View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -0 lines 0 comments Download
A third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js View 1 2 3 4 5 6 7 1 chunk +285 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/devtools/front_end/accessibility/AccessibilityNodeView.js View 1 2 3 4 5 6 7 8 9 2 chunks +12 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/devtools/front_end/accessibility/AccessibilitySidebarView.js View 1 2 3 4 5 6 7 8 9 4 chunks +10 lines, -1 line 0 comments Download
M third_party/WebKit/Source/devtools/front_end/accessibility/accessibilityNode.css View 1 2 3 4 5 1 chunk +4 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/devtools/front_end/accessibility/module.json View 1 2 3 4 5 1 chunk +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js View 1 2 3 4 5 6 7 8 9 2 chunks +9 lines, -1 line 0 comments Download
M third_party/WebKit/Source/devtools/front_end/main/Main.js View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/devtools/front_end/sdk/DOMModel.js View 1 2 3 4 5 2 chunks +4 lines, -1 line 0 comments Download

Messages

Total messages: 33 (16 generated)
aboxhall
4 years, 5 months ago (2016-07-18 21:42:59 UTC) #4
dgozman
https://codereview.chromium.org/2058323002/diff/40001/third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js File third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js (right): https://codereview.chromium.org/2058323002/diff/40001/third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js#newcode9 third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js:9: WebInspector.AXARIAAttributesSubPane = function() ARIAAttributesPane https://codereview.chromium.org/2058323002/diff/40001/third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js#newcode30 third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js:30: var foundARIAAttr = ...
4 years, 5 months ago (2016-07-18 22:38:20 UTC) #5
aboxhall
https://codereview.chromium.org/2058323002/diff/40001/third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js File third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js (right): https://codereview.chromium.org/2058323002/diff/40001/third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js#newcode9 third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js:9: WebInspector.AXARIAAttributesSubPane = function() On 2016/07/18 22:38:19, dgozman wrote: > ...
4 years, 5 months ago (2016-07-19 17:20:54 UTC) #6
dgozman
This looks pretty good, but let's add a test which will dump the new treeoutline ...
4 years, 5 months ago (2016-07-19 18:13:12 UTC) #7
aboxhall
On 2016/07/19 18:13:12, dgozman wrote: > This looks pretty good, but let's add a test ...
4 years, 5 months ago (2016-07-20 22:11:34 UTC) #8
dgozman
On 2016/07/20 22:11:34, aboxhall wrote: > On 2016/07/19 18:13:12, dgozman wrote: > > This looks ...
4 years, 5 months ago (2016-07-20 22:14:32 UTC) #9
aboxhall
On 2016/07/20 22:14:32, dgozman wrote: > On 2016/07/20 22:11:34, aboxhall wrote: > > On 2016/07/19 ...
4 years, 5 months ago (2016-07-21 21:38:48 UTC) #10
aboxhall
https://codereview.chromium.org/2058323002/diff/60001/third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js File third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js (right): https://codereview.chromium.org/2058323002/diff/60001/third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js#newcode168 third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js:168: _editingEnded: function() On 2016/07/19 18:13:12, dgozman wrote: > Looks ...
4 years, 5 months ago (2016-07-21 21:39:27 UTC) #11
dgozman
https://codereview.chromium.org/2058323002/diff/80001/third_party/WebKit/LayoutTests/inspector/elements/accessibility/accessibility-pane-test.js File third_party/WebKit/LayoutTests/inspector/elements/accessibility/accessibility-pane-test.js (right): https://codereview.chromium.org/2058323002/diff/80001/third_party/WebKit/LayoutTests/inspector/elements/accessibility/accessibility-pane-test.js#newcode7 third_party/WebKit/LayoutTests/inspector/elements/accessibility/accessibility-pane-test.js:7: var sidebarPaneWrappers = WebInspector.panels.elements._elementsSidebarViewWrappers; These panes are loaded asynchronously. ...
4 years, 5 months ago (2016-07-22 16:44:30 UTC) #12
aboxhall
On 2016/07/22 16:44:30, dgozman wrote: > https://codereview.chromium.org/2058323002/diff/80001/third_party/WebKit/LayoutTests/inspector/elements/accessibility/accessibility-pane-test.js > File > third_party/WebKit/LayoutTests/inspector/elements/accessibility/accessibility-pane-test.js > (right): > > ...
4 years, 5 months ago (2016-07-22 23:58:52 UTC) #13
aboxhall
On 2016/07/22 23:58:52, aboxhall wrote: > On 2016/07/22 16:44:30, dgozman wrote: > > > https://codereview.chromium.org/2058323002/diff/80001/third_party/WebKit/LayoutTests/inspector/elements/accessibility/accessibility-pane-test.js ...
4 years, 5 months ago (2016-07-25 16:53:16 UTC) #14
dgozman
https://codereview.chromium.org/2058323002/diff/120001/third_party/WebKit/LayoutTests/inspector/elements/accessibility/accessibility-pane-test.js File third_party/WebKit/LayoutTests/inspector/elements/accessibility/accessibility-pane-test.js (right): https://codereview.chromium.org/2058323002/diff/120001/third_party/WebKit/LayoutTests/inspector/elements/accessibility/accessibility-pane-test.js#newcode14 third_party/WebKit/LayoutTests/inspector/elements/accessibility/accessibility-pane-test.js:14: .then(() => { I think we can just pass ...
4 years, 5 months ago (2016-07-25 17:39:38 UTC) #15
aboxhall
https://codereview.chromium.org/2058323002/diff/120001/third_party/WebKit/LayoutTests/inspector/elements/accessibility/accessibility-pane-test.js File third_party/WebKit/LayoutTests/inspector/elements/accessibility/accessibility-pane-test.js (right): https://codereview.chromium.org/2058323002/diff/120001/third_party/WebKit/LayoutTests/inspector/elements/accessibility/accessibility-pane-test.js#newcode14 third_party/WebKit/LayoutTests/inspector/elements/accessibility/accessibility-pane-test.js:14: .then(() => { On 2016/07/25 17:39:38, dgozman wrote: > ...
4 years, 5 months ago (2016-07-25 19:49:20 UTC) #17
dgozman
lgtm https://codereview.chromium.org/2058323002/diff/120001/third_party/WebKit/LayoutTests/inspector/elements/accessibility/accessibility-pane-test.js File third_party/WebKit/LayoutTests/inspector/elements/accessibility/accessibility-pane-test.js (right): https://codereview.chromium.org/2058323002/diff/120001/third_party/WebKit/LayoutTests/inspector/elements/accessibility/accessibility-pane-test.js#newcode14 third_party/WebKit/LayoutTests/inspector/elements/accessibility/accessibility-pane-test.js:14: .then(() => { On 2016/07/25 19:49:19, aboxhall wrote: ...
4 years, 5 months ago (2016-07-25 22:41:53 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2058323002/200001
4 years, 4 months ago (2016-07-26 20:00:45 UTC) #29
commit-bot: I haz the power
Committed patchset #10 (id:200001)
4 years, 4 months ago (2016-07-26 20:05:28 UTC) #31
commit-bot: I haz the power
4 years, 4 months ago (2016-07-26 20:10:24 UTC) #33
Message was sent while issue was closed.
Patchset 10 (id:??) landed as
https://crrev.com/c9d64446c281cd18bb374ac0370bf9fb4cf5cb32
Cr-Commit-Position: refs/heads/master@{#407891}

Powered by Google App Engine
This is Rietveld 408576698