Commit 617cebed authored by Aaron Leventhal's avatar Aaron Leventhal Committed by Commit Bot

Ship ARIA Annotations

Intent to Ship thread on blink-dev with 3 approving reviewers:
https://groups.google.com/a/chromium.org/g/blink-dev/c/2uume_z0n8M

Bug: 1006767
Change-Id: I08eb0468d69d9c989d08b53c83c71dde2d0dab87
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2067471
Auto-Submit: Aaron Leventhal <aleventhal@chromium.org>
Reviewed-by: default avatarMike West <mkwst@chromium.org>
Reviewed-by: default avatarDominic Mazzoni <dmazzoni@chromium.org>
Commit-Queue: Aaron Leventhal <aleventhal@chromium.org>
Cr-Commit-Position: refs/heads/master@{#743580}
parent ec4bbcd9
...@@ -108,11 +108,12 @@ void DumpAccessibilityTestBase::SetUp() { ...@@ -108,11 +108,12 @@ void DumpAccessibilityTestBase::SetUp() {
std::vector<base::Feature> enabled_features; std::vector<base::Feature> enabled_features;
std::vector<base::Feature> disabled_features; std::vector<base::Feature> disabled_features;
// Enable exposing "display: none" nodes to the browser process for testing.
enabled_features.emplace_back(
features::kEnableAccessibilityExposeARIAAnnotations);
// Enable exposing ARIA Annotation roles. // Enable exposing ARIA Annotation roles.
// TODO(aleventhal) Remove when we completely remove runtime flag around m83.
// enabled_features.emplace_back(
// features::kEnableAccessibilityExposeARIAAnnotations);
// Enable exposing "display: none" nodes to the browser process for testing.
enabled_features.emplace_back( enabled_features.emplace_back(
features::kEnableAccessibilityExposeDisplayNone); features::kEnableAccessibilityExposeDisplayNone);
......
...@@ -116,7 +116,7 @@ ...@@ -116,7 +116,7 @@
}, },
{ {
name: "AccessibilityExposeARIAAnnotations", name: "AccessibilityExposeARIAAnnotations",
status: "experimental", status: "stable",
}, },
{ {
name: "AccessibilityExposeDisplayNone", name: "AccessibilityExposeDisplayNone",
......
...@@ -37,6 +37,7 @@ namespace http://www.w3.org/1999/xhtml ...@@ -37,6 +37,7 @@ namespace http://www.w3.org/1999/xhtml
property ariaColIndex property ariaColIndex
property ariaColSpan property ariaColSpan
property ariaCurrent property ariaCurrent
property ariaDescription
property ariaDisabled property ariaDisabled
property ariaExpanded property ariaExpanded
property ariaHasPopup property ariaHasPopup
...@@ -1192,6 +1193,7 @@ namespace http://www.w3.org/2000/svg ...@@ -1192,6 +1193,7 @@ namespace http://www.w3.org/2000/svg
property ariaColIndex property ariaColIndex
property ariaColSpan property ariaColSpan
property ariaCurrent property ariaCurrent
property ariaDescription
property ariaDisabled property ariaDisabled
property ariaExpanded property ariaExpanded
property ariaHasPopup property ariaHasPopup
......
...@@ -1640,6 +1640,7 @@ interface Element : Node ...@@ -1640,6 +1640,7 @@ interface Element : Node
getter ariaColIndex getter ariaColIndex
getter ariaColSpan getter ariaColSpan
getter ariaCurrent getter ariaCurrent
getter ariaDescription
getter ariaDisabled getter ariaDisabled
getter ariaExpanded getter ariaExpanded
getter ariaHasPopup getter ariaHasPopup
...@@ -1765,6 +1766,7 @@ interface Element : Node ...@@ -1765,6 +1766,7 @@ interface Element : Node
setter ariaColIndex setter ariaColIndex
setter ariaColSpan setter ariaColSpan
setter ariaCurrent setter ariaCurrent
setter ariaDescription
setter ariaDisabled setter ariaDisabled
setter ariaExpanded setter ariaExpanded
setter ariaHasPopup setter ariaHasPopup
...@@ -1821,6 +1823,7 @@ interface ElementInternals ...@@ -1821,6 +1823,7 @@ interface ElementInternals
getter ariaColIndex getter ariaColIndex
getter ariaColSpan getter ariaColSpan
getter ariaCurrent getter ariaCurrent
getter ariaDescription
getter ariaDisabled getter ariaDisabled
getter ariaExpanded getter ariaExpanded
getter ariaHasPopup getter ariaHasPopup
...@@ -1867,6 +1870,7 @@ interface ElementInternals ...@@ -1867,6 +1870,7 @@ interface ElementInternals
setter ariaColIndex setter ariaColIndex
setter ariaColSpan setter ariaColSpan
setter ariaCurrent setter ariaCurrent
setter ariaDescription
setter ariaDisabled setter ariaDisabled
setter ariaExpanded setter ariaExpanded
setter ariaHasPopup setter ariaHasPopup
......
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