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

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

Issue 2043503002: Add [CEReactions] IDL attributes for Custom Elements V1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: yukishiino review Created 4 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> 2 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
3 * Copyright (C) 2007, 2009 Apple Inc. All rights reserved. 3 * Copyright (C) 2007, 2009 Apple Inc. All rights reserved.
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 11 matching lines...) Expand all
22 22
23 [ 23 [
24 SetWrapperReferenceFrom=element, 24 SetWrapperReferenceFrom=element,
25 ] interface NamedNodeMap { 25 ] interface NamedNodeMap {
26 readonly attribute unsigned long length; 26 readonly attribute unsigned long length;
27 [MeasureAs=NamedNodeMapItem] getter Attr? item(unsigned long index); 27 [MeasureAs=NamedNodeMapItem] getter Attr? item(unsigned long index);
28 // FIXME: getNamedItem should be an enumerable getter. 28 // FIXME: getNamedItem should be an enumerable getter.
29 [MeasureAs=NamedNodeMapGetNamedItem] Attr? getNamedItem(DOMString name); 29 [MeasureAs=NamedNodeMapGetNamedItem] Attr? getNamedItem(DOMString name);
30 [NotEnumerable, ImplementedAs=getNamedItem] getter Attr? (DOMString name); 30 [NotEnumerable, ImplementedAs=getNamedItem] getter Attr? (DOMString name);
31 [MeasureAs=NamedNodeMapGetNamedItemNS] Attr? getNamedItemNS(DOMString? names paceURI, DOMString localName); 31 [MeasureAs=NamedNodeMapGetNamedItemNS] Attr? getNamedItemNS(DOMString? names paceURI, DOMString localName);
32 [RaisesException, CustomElementCallbacks, MeasureAs=NamedNodeMapSetNamedItem ] Attr? setNamedItem(Attr attr); 32 [RaisesException, CEReactions, CustomElementCallbacks, MeasureAs=NamedNodeMa pSetNamedItem] Attr? setNamedItem(Attr attr);
33 [RaisesException, CustomElementCallbacks, MeasureAs=NamedNodeMapSetNamedItem NS] Attr? setNamedItemNS(Attr attr); 33 [RaisesException, CEReactions, CustomElementCallbacks, MeasureAs=NamedNodeMa pSetNamedItemNS] Attr? setNamedItemNS(Attr attr);
34 [RaisesException, CustomElementCallbacks, MeasureAs=NamedNodeMapRemoveNamedI tem] Attr removeNamedItem(DOMString name); 34 [RaisesException, CEReactions, CustomElementCallbacks, MeasureAs=NamedNodeMa pRemoveNamedItem] Attr removeNamedItem(DOMString name);
35 [RaisesException, CustomElementCallbacks, MeasureAs=NamedNodeMapRemoveNamedI temNS] Attr removeNamedItemNS(DOMString? namespaceURI, DOMString localName); 35 [RaisesException, CEReactions, CustomElementCallbacks, MeasureAs=NamedNodeMa pRemoveNamedItemNS] Attr removeNamedItemNS(DOMString? namespaceURI, DOMString lo calName);
36 }; 36 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/Element.idl ('k') | third_party/WebKit/Source/core/dom/Node.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698