Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(345)

Side by Side Diff: chrome/common/extensions/api/automation.idl

Issue 651133003: Make HTML5 <mark> accessible. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updating mac expectations Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | components/test_runner/web_ax_object_proxy.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // The <code>chrome.automation</code> API allows developers to access the 5 // The <code>chrome.automation</code> API allows developers to access the
6 // automation (accessibility) tree for the browser. The tree resembles the DOM 6 // automation (accessibility) tree for the browser. The tree resembles the DOM
7 // tree, but only exposes the <em>semantic</em> structure of a page. It can be 7 // tree, but only exposes the <em>semantic</em> structure of a page. It can be
8 // used to programmatically interact with a page by examining names, roles, and 8 // used to programmatically interact with a page by examining names, roles, and
9 // states, listening for events, and performing actions on nodes. 9 // states, listening for events, and performing actions on nodes.
10 [nocompile] namespace automation { 10 [nocompile] namespace automation {
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 lineBreak, 107 lineBreak,
108 link, 108 link,
109 listBoxOption, 109 listBoxOption,
110 listBox, 110 listBox,
111 listItem, 111 listItem,
112 listMarker, 112 listMarker,
113 list, 113 list,
114 locationBar, 114 locationBar,
115 log, 115 log,
116 main, 116 main,
117 mark,
117 marquee, 118 marquee,
118 math, 119 math,
119 menuBar, 120 menuBar,
120 menuButton, 121 menuButton,
121 menuItem, 122 menuItem,
122 menuItemCheckBox, 123 menuItemCheckBox,
123 menuItemRadio, 124 menuItemRadio,
124 menuListOption, 125 menuListOption,
125 menuListPopup, 126 menuListPopup,
126 menu, 127 menu,
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after
555 // Add a tree change observer. Tree change observers are static/global, they 556 // Add a tree change observer. Tree change observers are static/global, they
556 // listen to changes across all trees. 557 // listen to changes across all trees.
557 [nocompile] static void addTreeChangeObserver( 558 [nocompile] static void addTreeChangeObserver(
558 TreeChangeObserver observer); 559 TreeChangeObserver observer);
559 560
560 // Remove a tree change observer. 561 // Remove a tree change observer.
561 [nocompile] static void removeTreeChangeObserver( 562 [nocompile] static void removeTreeChangeObserver(
562 TreeChangeObserver observer); 563 TreeChangeObserver observer);
563 }; 564 };
564 }; 565 };
OLDNEW
« no previous file with comments | « no previous file | components/test_runner/web_ax_object_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698