Skip to content

Commit

Permalink
Update Accessibility comments (#1125)
Browse files Browse the repository at this point in the history
  • Loading branch information
kblok authored May 19, 2019
1 parent 432bbbe commit 6d995c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/PuppeteerSharp/PageAccessibility/Accessibility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ namespace PuppeteerSharp.PageAccessibility
{
/// <summary>
/// The Accessibility class provides methods for inspecting Chromium's accessibility tree.
/// The accessibility tree is used by assistive technology such as screen readers.
/// The accessibility tree is used by assistive technology such as screen readers or switches.
///
/// Accessibility is a very platform-specific thing. On different platforms, there are different screen readers that might have wildly different output.
/// Blink - Chrome's rendering engine - has a concept of "accessibility tree", which is than translated into different platform-specific APIs.
/// Accessibility namespace gives users access to the Blink Accessibility Tree.
/// Most of the accessibility tree gets filtered out when converting from Blink AX Tree to Platform-specific AX-Tree or by screen readers themselves.
/// Most of the accessibility tree gets filtered out when converting from Blink AX Tree to Platform-specific AX-Tree or by assistive technologies themselves.
/// By default, Puppeteer tries to approximate this filtering, exposing only the "interesting" nodes of the tree.
/// </summary>
public class Accessibility
Expand Down

0 comments on commit 6d995c4

Please sign in to comment.