forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ax_mac_merge: merge AXAccessKey and AXAutocompleteValue implementations
Change-Id: Ib2a483f5e9a8d8f75ebfef8303fde8028b2c8cea Bug: 1237915 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3223163 Reviewed-by: Nektarios Paisios <nektar@chromium.org> Commit-Queue: Alexander Surkov <asurkov@igalia.com> Cr-Commit-Position: refs/heads/main@{#932041}
- Loading branch information
Showing
8 changed files
with
63 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
content/test/data/accessibility/mac/attributes/ax-access-key-expected-mac.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
focusable.AXAccessKey='s' | ||
restriction.AXAccessKey='s' | ||
invalid.AXAccessKey='s' | ||
not_applicable.AXAccessKey=ERROR:FAILED_TO_PARSE |
12 changes: 12 additions & 0 deletions
12
content/test/data/accessibility/mac/attributes/ax-access-key.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<!-- | ||
@MAC-SCRIPT: | ||
focusable.AXAccessKey | ||
restriction.AXAccessKey | ||
invalid.AXAccessKey | ||
not_applicable.AXAccessKey | ||
--> | ||
<!DOCTYPE html> | ||
<input id="focusable" accesskey="s"> | ||
<input id="restriction" readonly accesskey="s"> | ||
<div id="invalid" aria-invalid="true" accesskey="s"> | ||
<div id="not_applicable" accesskey="s"> |
2 changes: 2 additions & 0 deletions
2
content/test/data/accessibility/mac/attributes/ax-autocomplete-value-expected-mac.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
autocomplete.AXAutocompleteValue='list' | ||
not_applicable.AXAutocompleteValue=ERROR:FAILED_TO_PARSE |
8 changes: 8 additions & 0 deletions
8
content/test/data/accessibility/mac/attributes/ax-autocomplete-value.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<!-- | ||
@MAC-SCRIPT: | ||
autocomplete.AXAutocompleteValue | ||
not_applicable.AXAutocompleteValue | ||
--> | ||
<!DOCTYPE html> | ||
<input id="autocomplete" aria-autocomplete="list"> | ||
<div id="not_applicable"></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters