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

Unified Diff: client/dom/generated/src/frog/Element.dart

Issue 8387057: Forgot generated code for frog dom. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: client/dom/generated/src/frog/Element.dart
diff --git a/client/dom/generated/src/frog/Element.dart b/client/dom/generated/src/frog/Element.dart
new file mode 100644
index 0000000000000000000000000000000000000000..9769122af06630be2778d29234dc96da387e9196
--- /dev/null
+++ b/client/dom/generated/src/frog/Element.dart
@@ -0,0 +1,185 @@
+
+class Element extends Node native "Element" {
+
+ int childElementCount;
+
+ int clientHeight;
+
+ int clientLeft;
+
+ int clientTop;
+
+ int clientWidth;
+
+ Element firstElementChild;
+
+ Element lastElementChild;
+
+ Element nextElementSibling;
+
+ int offsetHeight;
+
+ int offsetLeft;
+
+ Element offsetParent;
+
+ int offsetTop;
+
+ int offsetWidth;
+
+ EventListener onabort;
+
+ EventListener onbeforecopy;
+
+ EventListener onbeforecut;
+
+ EventListener onbeforepaste;
+
+ EventListener onblur;
+
+ EventListener onchange;
+
+ EventListener onclick;
+
+ EventListener oncontextmenu;
+
+ EventListener oncopy;
+
+ EventListener oncut;
+
+ EventListener ondblclick;
+
+ EventListener ondrag;
+
+ EventListener ondragend;
+
+ EventListener ondragenter;
+
+ EventListener ondragleave;
+
+ EventListener ondragover;
+
+ EventListener ondragstart;
+
+ EventListener ondrop;
+
+ EventListener onerror;
+
+ EventListener onfocus;
+
+ EventListener oninput;
+
+ EventListener oninvalid;
+
+ EventListener onkeydown;
+
+ EventListener onkeypress;
+
+ EventListener onkeyup;
+
+ EventListener onload;
+
+ EventListener onmousedown;
+
+ EventListener onmousemove;
+
+ EventListener onmouseout;
+
+ EventListener onmouseover;
+
+ EventListener onmouseup;
+
+ EventListener onmousewheel;
+
+ EventListener onpaste;
+
+ EventListener onreset;
+
+ EventListener onscroll;
+
+ EventListener onsearch;
+
+ EventListener onselect;
+
+ EventListener onselectstart;
+
+ EventListener onsubmit;
+
+ EventListener ontouchcancel;
+
+ EventListener ontouchend;
+
+ EventListener ontouchmove;
+
+ EventListener ontouchstart;
+
+ EventListener onwebkitfullscreenchange;
+
+ Element previousElementSibling;
+
+ int scrollHeight;
+
+ int scrollLeft;
+
+ int scrollTop;
+
+ int scrollWidth;
+
+ CSSStyleDeclaration style;
+
+ String tagName;
+
+ void blur() native;
+
+ void focus() native;
+
+ String getAttribute(String name) native;
+
+ String getAttributeNS(String namespaceURI, String localName) native;
+
+ Attr getAttributeNode(String name) native;
+
+ Attr getAttributeNodeNS(String namespaceURI, String localName) native;
+
+ ClientRect getBoundingClientRect() native;
+
+ ClientRectList getClientRects() native;
+
+ NodeList getElementsByClassName(String name) native;
+
+ NodeList getElementsByTagName(String name) native;
+
+ NodeList getElementsByTagNameNS(String namespaceURI, String localName) native;
+
+ bool hasAttribute(String name) native;
+
+ bool hasAttributeNS(String namespaceURI, String localName) native;
+
+ Element querySelector(String selectors) native;
+
+ NodeList querySelectorAll(String selectors) native;
+
+ void removeAttribute(String name) native;
+
+ void removeAttributeNS(String namespaceURI, String localName) native;
+
+ Attr removeAttributeNode(Attr oldAttr) native;
+
+ void scrollByLines(int lines) native;
+
+ void scrollByPages(int pages) native;
+
+ void scrollIntoView([bool alignWithTop = null]) native;
+
+ void scrollIntoViewIfNeeded([bool centerIfNeeded = null]) native;
+
+ void setAttribute(String name, String value) native;
+
+ void setAttributeNS(String namespaceURI, String qualifiedName, String value) native;
+
+ Attr setAttributeNode(Attr newAttr) native;
+
+ Attr setAttributeNodeNS(Attr newAttr) native;
+
+ bool webkitMatchesSelector(String selectors) native;
+}
« no previous file with comments | « client/dom/generated/src/frog/DocumentType.dart ('k') | client/dom/generated/src/frog/ElementTraversal.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698