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

Side by Side Diff: third_party/WebKit/Source/core/dom/AccessibleNodeList.idl

Issue 2967193003: Relation list properties for Accessibility Object Model phase 1 (Closed)
Patch Set: Get rid of accidental duplication in inspector output Created 3 years, 5 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
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Accessibility Object Model node list
6 // Explainer: https://github.com/WICG/aom/blob/master/explainer.md
7 // Spec: https://wicg.github.io/aom/spec/
8 [
9 Constructor(optional sequence<AccessibleNode> nodes = []),
10 RuntimeEnabled=AccessibilityObjectModel
11 ] interface AccessibleNodeList {
12 attribute unsigned long length;
13 getter AccessibleNode? item(unsigned long index);
14 [RaisesException] setter void (unsigned long index, AccessibleNode node);
15 void add(AccessibleNode node, optional AccessibleNode? before = null);
16 void remove(long index);
17 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/AccessibleNodeList.cpp ('k') | third_party/WebKit/Source/core/dom/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698