Skip to content

Commit

Permalink
Small fixes to accessibility documentation.
Browse files Browse the repository at this point in the history
* Fix link markup.
* Latest espeak versions come compressed with .xz.

Bug: None.
Change-Id: Iefa7cfa3f51f4a5d49d7edb9edff79434fdac734
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3383347
Reviewed-by: Joanmarie Diggs <[email protected]>
Commit-Queue: Jacobo Aragunde Pérez <[email protected]>
Cr-Commit-Position: refs/heads/main@{#958620}
  • Loading branch information
jaragunde authored and Chromium LUCI CQ committed Jan 13, 2022
1 parent c7be31d commit 0af076d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions docs/accessibility/os/chromevox_on_desktop_linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ gsutil ls gs://chromeos-localmirror/distfiles/espeak*
Pick the latest version and

```
VERSION=1.49.3.7
VERSION=1.49.3.14
TMPDIR=$(mktemp -d)
gsutil cp gs://chromeos-localmirror/distfiles/espeak-ng-$VERSION.tar.gz $TMPDIR
tar -C $TMPDIR -xvf $TMPDIR/espeak-ng-$VERSION.tar.gz
gsutil cp gs://chromeos-localmirror/distfiles/espeak-ng-$VERSION.tar.xz $TMPDIR
tar -C $TMPDIR -xvf $TMPDIR/espeak-ng-$VERSION.tar.xz
sudo mkdir -p /usr/share/chromeos-assets/speech_synthesis/espeak-ng/
sudo chown -R $(whoami) /usr/share/chromeos-assets/
cp -r $TMPDIR/espeak-ng/chrome-extension/* /usr/share/chromeos-assets/speech_synthesis/espeak-ng
Expand Down
12 changes: 6 additions & 6 deletions docs/accessibility/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ if you call IAccessible::get_accRole, it returns ROLE_SYSTEM_DOCUMENT,
and if you call IAccessible::get_accName, it returns "How old are you?".
Other methods let you walk the tree.

The Linux accessibility API, (ATK)[https://gnome.pages.gitlab.gnome.org/atk/],
is similar to (IAccessible2)[https://wiki.linuxfoundation.org/accessibility/iaccessible2/start],
The Linux accessibility API, [ATK](https://gnome.pages.gitlab.gnome.org/atk/),
is similar to [IAccessible2](https://wiki.linuxfoundation.org/accessibility/iaccessible2/start),
aka IA2. Historical note: IA2 was developed to extend MSAA/IAccessible to add
richer document support, in a way that was harmonious with ATK, in order to
simplify implementing them both within the same product. Both APIs are
Expand Down Expand Up @@ -208,10 +208,10 @@ Developers can inspect the accessibility tree in several ways:
and inspecting a tree directly. Note that you may want to enable the
'Internal' option. Click 'show accessibility tree' for a particular tab,
then click again to refresh that tree.
* Using the [https://developer.chrome.com/extensions/automation](
Automation API).
* Installing the [https://github.com/google/automation-inspector](
Automation Inspector Chrome extension).
* Using the [Automation API](
https://developer.chrome.com/extensions/automation).
* Installing the [Automation Inspector Chrome extension](
https://github.com/google/automation-inspector).
* Building and using [ax_dump_tree or ax_dump_events](tools/accessibility/inspect/README.md).
These can be used to view accessibility trees and events from any application on
Windows, Mac or Linux.
Expand Down

0 comments on commit 0af076d

Please sign in to comment.