| OLD | NEW |
| 1 # Accessibility Overview | 1 # Accessibility Overview |
| 2 | 2 |
| 3 Accessibility means ensuring that all users, including users with disabilities, | 3 Accessibility means ensuring that all users, including users with disabilities, |
| 4 have equal access to software. One piece of this involves basic design | 4 have equal access to software. One piece of this involves basic design |
| 5 principles such as using appropriate font sizes and color contrast, | 5 principles such as using appropriate font sizes and color contrast, |
| 6 avoiding using color to convey important information, and providing keyboard | 6 avoiding using color to convey important information, and providing keyboard |
| 7 alternatives for anything that is normally accomplished with a pointing device. | 7 alternatives for anything that is normally accomplished with a pointing device. |
| 8 However, when you see the word "accessibility" in a directory name in Chromium, | 8 However, when you see the word "accessibility" in a directory name in Chromium, |
| 9 that code's purpose is to provide full access to Chromium's UI via external | 9 that code's purpose is to provide full access to Chromium's UI via external |
| 10 accessibility APIs that are utilized by assistive technology. | 10 accessibility APIs that are utilized by assistive technology. |
| (...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 [Node]: https://cs.chromium.org/chromium/src/third_party/WebKit/Source/core/dom/
Node.h | 506 [Node]: https://cs.chromium.org/chromium/src/third_party/WebKit/Source/core/dom/
Node.h |
| 507 [RenderAccessibilityImpl]: https://cs.chromium.org/chromium/src/content/renderer
/accessibility/render_accessibility_impl.h | 507 [RenderAccessibilityImpl]: https://cs.chromium.org/chromium/src/content/renderer
/accessibility/render_accessibility_impl.h |
| 508 [RenderFrameHostImpl]: https://cs.chromium.org/chromium/src/content/browser/fram
e_host/render_frame_host_impl.h | 508 [RenderFrameHostImpl]: https://cs.chromium.org/chromium/src/content/browser/fram
e_host/render_frame_host_impl.h |
| 509 [ui::AXNodeData]: https://cs.chromium.org/chromium/src/ui/accessibility/ax_node_
data.h | 509 [ui::AXNodeData]: https://cs.chromium.org/chromium/src/ui/accessibility/ax_node_
data.h |
| 510 [WebAXObject]: https://cs.chromium.org/chromium/src/third_party/WebKit/public/we
b/WebAXObject.h | 510 [WebAXObject]: https://cs.chromium.org/chromium/src/third_party/WebKit/public/we
b/WebAXObject.h |
| 511 [automation API]: https://cs.chromium.org/chromium/src/chrome/renderer/resources
/extensions/automation | 511 [automation API]: https://cs.chromium.org/chromium/src/chrome/renderer/resources
/extensions/automation |
| 512 [automation.idl]: https://cs.chromium.org/chromium/src/chrome/common/extensions/
api/automation.idl | 512 [automation.idl]: https://cs.chromium.org/chromium/src/chrome/common/extensions/
api/automation.idl |
| 513 [ax_enums.idl]: https://cs.chromium.org/chromium/src/ui/accessibility/ax_enums.i
dl | 513 [ax_enums.idl]: https://cs.chromium.org/chromium/src/ui/accessibility/ax_enums.i
dl |
| 514 [chrome.automation API]: https://developer.chrome.com/extensions/automation | 514 [chrome.automation API]: https://developer.chrome.com/extensions/automation |
| 515 [webui-js]: https://cs.chromium.org/chromium/src/ui/webui/resources/js/cr/ui/ | 515 [webui-js]: https://cs.chromium.org/chromium/src/ui/webui/resources/js/cr/ui/ |
| OLD | NEW |