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

Side by Side Diff: client/dom/generated/src/frog/Element.dart

Issue 8820004: Work-around for FireFox: patch non-leaf types statically if possible. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 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
OLDNEW
1 1
2 class Element extends Node native "*Element" { 2 class Element extends Node native "Element" {
3 3
4 int childElementCount; 4 int childElementCount;
5 5
6 int clientHeight; 6 int clientHeight;
7 7
8 int clientLeft; 8 int clientLeft;
9 9
10 int clientTop; 10 int clientTop;
11 11
12 int clientWidth; 12 int clientWidth;
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 void setAttribute(String name, String value) native; 88 void setAttribute(String name, String value) native;
89 89
90 void setAttributeNS(String namespaceURI, String qualifiedName, String value) n ative; 90 void setAttributeNS(String namespaceURI, String qualifiedName, String value) n ative;
91 91
92 Attr setAttributeNode(Attr newAttr) native; 92 Attr setAttributeNode(Attr newAttr) native;
93 93
94 Attr setAttributeNodeNS(Attr newAttr) native; 94 Attr setAttributeNodeNS(Attr newAttr) native;
95 95
96 bool webkitMatchesSelector(String selectors) native; 96 bool webkitMatchesSelector(String selectors) native;
97 } 97 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698