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

Side by Side Diff: core/dom/NodeIterator.idl

Issue 2786203002: Roll 50: Copied IDLs, PYTHON scripts from WebKit removed deleted files in WebCore (Closed)
Patch Set: Created 3 years, 8 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 | « core/dom/NodeFilter.idl ('k') | core/dom/NodeList.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 15 matching lines...) Expand all
26 ] interface NodeIterator { 26 ] interface NodeIterator {
27 [SameObject] readonly attribute Node root; 27 [SameObject] readonly attribute Node root;
28 readonly attribute Node referenceNode; 28 readonly attribute Node referenceNode;
29 readonly attribute boolean pointerBeforeReferenceNode; 29 readonly attribute boolean pointerBeforeReferenceNode;
30 readonly attribute unsigned long whatToShow; 30 readonly attribute unsigned long whatToShow;
31 readonly attribute NodeFilter? filter; 31 readonly attribute NodeFilter? filter;
32 32
33 [RaisesException] Node? nextNode(); 33 [RaisesException] Node? nextNode();
34 [RaisesException] Node? previousNode(); 34 [RaisesException] Node? previousNode();
35 35
36 [DeprecateAs=NodeIteratorDetach] void detach(); 36 [MeasureAs=NodeIteratorDetach] void detach();
37 }; 37 };
OLDNEW
« no previous file with comments | « core/dom/NodeFilter.idl ('k') | core/dom/NodeList.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698