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

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

Issue 1516553002: Remove deprecation messages for no-ops that are left in the specs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase and update tests Created 5 years 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
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 | « third_party/WebKit/LayoutTests/svg/dom/SVGSVGElement-no-op-methods.html ('k') | third_party/WebKit/Source/core/dom/Range.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698