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

Side by Side Diff: Source/core/dom/Element.idl

Issue 107093007: Add a UseCounter for Element.setAttributeNodeNS (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/frame/UseCounter.h » ('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, 2007, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2009 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 DOMString getAttributeNS([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI, 42 DOMString getAttributeNS([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI,
43 [Default=Undefined] optional DOMString localName); 43 [Default=Undefined] optional DOMString localName);
44 [RaisesException, CustomElementCallbacks] void setAttributeNS([TreatNullAs=N ullString,Default=Undefined] optional DOMString namespaceURI, 44 [RaisesException, CustomElementCallbacks] void setAttributeNS([TreatNullAs=N ullString,Default=Undefined] optional DOMString namespaceURI,
45 [Default=Undef ined] optional DOMString qualifiedName, 45 [Default=Undef ined] optional DOMString qualifiedName,
46 [Default=Undef ined] optional DOMString value); 46 [Default=Undef ined] optional DOMString value);
47 [CustomElementCallbacks] void removeAttributeNS([TreatNullAs=NullString] DOM String namespaceURI, DOMString localName); 47 [CustomElementCallbacks] void removeAttributeNS([TreatNullAs=NullString] DOM String namespaceURI, DOMString localName);
48 NodeList getElementsByTagNameNS([TreatNullAs=NullString,Default=Undefined] o ptional DOMString namespaceURI, 48 NodeList getElementsByTagNameNS([TreatNullAs=NullString,Default=Undefined] o ptional DOMString namespaceURI,
49 [Default=Undefined] optional DOMString local Name); 49 [Default=Undefined] optional DOMString local Name);
50 [MeasureAs=ElementGetAttributeNodeNS] Attr getAttributeNodeNS([TreatNullAs=N ullString,Default=Undefined] optional DOMString namespaceURI, 50 [MeasureAs=ElementGetAttributeNodeNS] Attr getAttributeNodeNS([TreatNullAs=N ullString,Default=Undefined] optional DOMString namespaceURI,
51 [Default=Undef ined] optional DOMString localName); // Removed from DOM4. 51 [Default=Undef ined] optional DOMString localName); // Removed from DOM4.
52 [RaisesException, CustomElementCallbacks] Attr setAttributeNodeNS([Default=U ndefined, StrictTypeChecking] optional Attr newAttr); 52 [RaisesException, CustomElementCallbacks, MeasureAs=ElementSetAttributeNodeN S] Attr setAttributeNodeNS([Default=Undefined, StrictTypeChecking] optional Attr newAttr); // Removed from DOM4.
53 boolean hasAttribute(DOMString name); 53 boolean hasAttribute(DOMString name);
54 boolean hasAttributeNS([TreatNullAs=NullString,Default=Undefined] optional D OMString namespaceURI, 54 boolean hasAttributeNS([TreatNullAs=NullString,Default=Undefined] optional D OMString namespaceURI,
55 [Default=Undefined] optional DOMString localName); 55 [Default=Undefined] optional DOMString localName);
56 56
57 [PerWorldBindings] readonly attribute CSSStyleDeclaration style; 57 [PerWorldBindings] readonly attribute CSSStyleDeclaration style;
58 58
59 // DOM4 59 // DOM4
60 [Reflect] attribute DOMString id; 60 [Reflect] attribute DOMString id;
61 [TreatReturnedNullStringAs=Null, PerWorldBindings] readonly attribute DOMStr ing namespaceURI; 61 [TreatReturnedNullStringAs=Null, PerWorldBindings] readonly attribute DOMStr ing namespaceURI;
62 [TreatReturnedNullStringAs=Null, TreatNullAs=NullString, PerWorldBindings, R aisesException=Setter] attribute DOMString prefix; 62 [TreatReturnedNullStringAs=Null, TreatNullAs=NullString, PerWorldBindings, R aisesException=Setter] attribute DOMString prefix;
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; 146 [RuntimeEnabled=Touch] attribute EventHandler ontouchend;
147 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; 147 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove;
148 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; 148 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart;
149 attribute EventHandler onwebkitfullscreenchange; 149 attribute EventHandler onwebkitfullscreenchange;
150 attribute EventHandler onwebkitfullscreenerror; 150 attribute EventHandler onwebkitfullscreenerror;
151 [PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventH andler onwheel; 151 [PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventH andler onwheel;
152 }; 152 };
153 153
154 Element implements ParentNode; 154 Element implements ParentNode;
155 Element implements ChildNode; 155 Element implements ChildNode;
OLDNEW
« no previous file with comments | « no previous file | Source/core/frame/UseCounter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698