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

Unified Diff: sdk/lib/html/dartium/html_dartium.dart

Issue 11855014: Removing the exclusion of all NamedNodeMap members as they were being used. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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:
Download patch
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tools/dom/scripts/htmlrenamer.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dartium/html_dartium.dart
diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
index cce397dbb9d1be32522371d1cf60840ce112bc53..640533d5c17b47beab52e46efe260d704d963684 100644
--- a/sdk/lib/html/dartium/html_dartium.dart
+++ b/sdk/lib/html/dartium/html_dartium.dart
@@ -17369,6 +17369,10 @@ class MutationRecord extends NativeFieldWrapperClass1 {
class NamedNodeMap extends NativeFieldWrapperClass1 implements List<Node> {
NamedNodeMap.internal();
+
+ /** @domName NamedNodeMap.length */
+ int get length native "NamedNodeMap_length_Getter";
+
Node operator[](int index) native "NamedNodeMap_item_Callback";
void operator[]=(int index, Node value) {
@@ -17518,8 +17522,32 @@ class NamedNodeMap extends NativeFieldWrapperClass1 implements List<Node> {
// -- end List<Node> mixins.
+ /** @domName NamedNodeMap.getNamedItem */
+ Node getNamedItem(String name) native "NamedNodeMap_getNamedItem_Callback";
+
+
+ /** @domName NamedNodeMap.getNamedItemNS */
+ Node getNamedItemNS(String namespaceURI, String localName) native "NamedNodeMap_getNamedItemNS_Callback";
+
+
/** @domName NamedNodeMap.item */
- Node _item(int index) native "NamedNodeMap_item_Callback";
+ Node item(int index) native "NamedNodeMap_item_Callback";
+
+
+ /** @domName NamedNodeMap.removeNamedItem */
+ Node removeNamedItem(String name) native "NamedNodeMap_removeNamedItem_Callback";
+
+
+ /** @domName NamedNodeMap.removeNamedItemNS */
+ Node removeNamedItemNS(String namespaceURI, String localName) native "NamedNodeMap_removeNamedItemNS_Callback";
+
+
+ /** @domName NamedNodeMap.setNamedItem */
+ Node setNamedItem(Node node) native "NamedNodeMap_setNamedItem_Callback";
+
+
+ /** @domName NamedNodeMap.setNamedItemNS */
+ Node setNamedItemNS(Node node) native "NamedNodeMap_setNamedItemNS_Callback";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tools/dom/scripts/htmlrenamer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698