Commit be3a5330 authored by Chris Hall's avatar Chris Hall Committed by Commit Bot

Automation docs: Fix broken ARIA links.

Links that used to be of the form wai-aria/states_and_properties#aria-controls
Have to be converted to wai-aria/#aria-controls

R=aboxhall,dmazzoni

Change-Id: I0c129b6d64631dc407a85dae73614f16efeb4581
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1924339Reviewed-by: default avatarAlice Boxhall <aboxhall@chromium.org>
Reviewed-by: default avatarDominic Mazzoni <dmazzoni@chromium.org>
Commit-Queue: Chris Hall <chrishall@chromium.org>
Cr-Commit-Position: refs/heads/master@{#718500}
parent 02061243
...@@ -585,7 +585,7 @@ ...@@ -585,7 +585,7 @@
DOMString? roleDescription; DOMString? roleDescription;
// The accessible name for this node, via the // The accessible name for this node, via the
// <a href="http://www.w3.org/TR/wai-aria/roles#namecalculation"> // <a href="http://www.w3.org/TR/wai-aria/#namecalculation">
// Accessible Name Calculation</a> process. // Accessible Name Calculation</a> process.
DOMString? name; DOMString? name;
...@@ -625,7 +625,7 @@ ...@@ -625,7 +625,7 @@
long[]? nonInlineTextWordEnds; long[]? nonInlineTextWordEnds;
// The nodes, if any, which this node is specified to control via // The nodes, if any, which this node is specified to control via
// <a href="http://www.w3.org/TR/wai-aria/states_and_properties#aria-controls"> // <a href="http://www.w3.org/TR/wai-aria/#aria-controls">
// <code>aria-controls</code></a>. // <code>aria-controls</code></a>.
AutomationNode[]? controls; AutomationNode[]? controls;
...@@ -634,7 +634,7 @@ ...@@ -634,7 +634,7 @@
// The nodes, if any, which may optionally be navigated to after this // The nodes, if any, which may optionally be navigated to after this
// one. See // one. See
// <a href="http://www.w3.org/TR/wai-aria/states_and_properties#aria-flowto"> // <a href="http://www.w3.org/TR/wai-aria/#aria-flowto">
// <code>aria-flowto</code></a>. // <code>aria-flowto</code></a>.
AutomationNode[]? flowTo; AutomationNode[]? flowTo;
......
...@@ -102,9 +102,9 @@ chrome.automation.RoleType = { ...@@ -102,9 +102,9 @@ chrome.automation.RoleType = {
CAPTION: 'caption', CAPTION: 'caption',
CARET: 'caret', CARET: 'caret',
CELL: 'cell', CELL: 'cell',
CODE: 'code',
CHECK_BOX: 'checkBox', CHECK_BOX: 'checkBox',
CLIENT: 'client', CLIENT: 'client',
CODE: 'code',
COLOR_WELL: 'colorWell', COLOR_WELL: 'colorWell',
COLUMN: 'column', COLUMN: 'column',
COLUMN_HEADER: 'columnHeader', COLUMN_HEADER: 'columnHeader',
...@@ -623,7 +623,7 @@ chrome.automation.AutomationNode.prototype.placeholder; ...@@ -623,7 +623,7 @@ chrome.automation.AutomationNode.prototype.placeholder;
chrome.automation.AutomationNode.prototype.roleDescription; chrome.automation.AutomationNode.prototype.roleDescription;
/** /**
* The accessible name for this node, via the <a href="http://www.w3.org/TR/wai-aria/roles#namecalculation"> Accessible Name Calculation</a> process. * The accessible name for this node, via the <a href="http://www.w3.org/TR/wai-aria/#namecalculation"> Accessible Name Calculation</a> process.
* @type {(string|undefined)} * @type {(string|undefined)}
* @see https://developer.chrome.com/extensions/automation#type-name * @see https://developer.chrome.com/extensions/automation#type-name
*/ */
...@@ -699,7 +699,7 @@ chrome.automation.AutomationNode.prototype.nonInlineTextWordStarts; ...@@ -699,7 +699,7 @@ chrome.automation.AutomationNode.prototype.nonInlineTextWordStarts;
chrome.automation.AutomationNode.prototype.nonInlineTextWordEnds; chrome.automation.AutomationNode.prototype.nonInlineTextWordEnds;
/** /**
* The nodes, if any, which this node is specified to control via <a href="http://www.w3.org/TR/wai-aria/states_and_properties#aria-controls"> <code>aria-controls</code></a>. * The nodes, if any, which this node is specified to control via <a href="http://www.w3.org/TR/wai-aria/#aria-controls"> <code>aria-controls</code></a>.
* @type {(!Array<!chrome.automation.AutomationNode>|undefined)} * @type {(!Array<!chrome.automation.AutomationNode>|undefined)}
* @see https://developer.chrome.com/extensions/automation#type-controls * @see https://developer.chrome.com/extensions/automation#type-controls
*/ */
...@@ -713,7 +713,7 @@ chrome.automation.AutomationNode.prototype.controls; ...@@ -713,7 +713,7 @@ chrome.automation.AutomationNode.prototype.controls;
chrome.automation.AutomationNode.prototype.describedBy; chrome.automation.AutomationNode.prototype.describedBy;
/** /**
* The nodes, if any, which may optionally be navigated to after this one. See <a href="http://www.w3.org/TR/wai-aria/states_and_properties#aria-flowto"> <code>aria-flowto</code></a>. * The nodes, if any, which may optionally be navigated to after this one. See <a href="http://www.w3.org/TR/wai-aria/#aria-flowto"> <code>aria-flowto</code></a>.
* @type {(!Array<!chrome.automation.AutomationNode>|undefined)} * @type {(!Array<!chrome.automation.AutomationNode>|undefined)}
* @see https://developer.chrome.com/extensions/automation#type-flowTo * @see https://developer.chrome.com/extensions/automation#type-flowTo
*/ */
......
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