| Index: client/dom/generated/src/interface/Document.dart
|
| diff --git a/client/dom/generated/src/interface/Document.dart b/client/dom/generated/src/interface/Document.dart
|
| deleted file mode 100644
|
| index 2fab5df9256d1c591cc57c26860b5983a53f5c13..0000000000000000000000000000000000000000
|
| --- a/client/dom/generated/src/interface/Document.dart
|
| +++ /dev/null
|
| @@ -1,162 +0,0 @@
|
| -// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -
|
| -// WARNING: Do not edit - generated code.
|
| -
|
| -interface Document extends Node, NodeSelector {
|
| -
|
| - final String URL;
|
| -
|
| - final HTMLCollection anchors;
|
| -
|
| - final HTMLCollection applets;
|
| -
|
| - HTMLElement body;
|
| -
|
| - final String characterSet;
|
| -
|
| - String charset;
|
| -
|
| - final String compatMode;
|
| -
|
| - String cookie;
|
| -
|
| - final String defaultCharset;
|
| -
|
| - final DOMWindow defaultView;
|
| -
|
| - final DocumentType doctype;
|
| -
|
| - final Element documentElement;
|
| -
|
| - String documentURI;
|
| -
|
| - String domain;
|
| -
|
| - final HTMLCollection forms;
|
| -
|
| - final HTMLHeadElement head;
|
| -
|
| - final HTMLCollection images;
|
| -
|
| - final DOMImplementation implementation;
|
| -
|
| - final String inputEncoding;
|
| -
|
| - final String lastModified;
|
| -
|
| - final HTMLCollection links;
|
| -
|
| - Location location;
|
| -
|
| - final String preferredStylesheetSet;
|
| -
|
| - final String readyState;
|
| -
|
| - final String referrer;
|
| -
|
| - String selectedStylesheetSet;
|
| -
|
| - final StyleSheetList styleSheets;
|
| -
|
| - String title;
|
| -
|
| - final Element webkitCurrentFullScreenElement;
|
| -
|
| - final bool webkitFullScreenKeyboardInputAllowed;
|
| -
|
| - final bool webkitHidden;
|
| -
|
| - final bool webkitIsFullScreen;
|
| -
|
| - final String webkitVisibilityState;
|
| -
|
| - final String xmlEncoding;
|
| -
|
| - bool xmlStandalone;
|
| -
|
| - String xmlVersion;
|
| -
|
| - Node adoptNode(Node source);
|
| -
|
| - Range caretRangeFromPoint(int x, int y);
|
| -
|
| - Attr createAttribute(String name);
|
| -
|
| - Attr createAttributeNS(String namespaceURI, String qualifiedName);
|
| -
|
| - CDATASection createCDATASection(String data);
|
| -
|
| - Comment createComment(String data);
|
| -
|
| - DocumentFragment createDocumentFragment();
|
| -
|
| - Element createElement(String tagName);
|
| -
|
| - Element createElementNS(String namespaceURI, String qualifiedName);
|
| -
|
| - EntityReference createEntityReference(String name);
|
| -
|
| - Event createEvent(String eventType);
|
| -
|
| - XPathExpression createExpression(String expression, XPathNSResolver resolver);
|
| -
|
| - XPathNSResolver createNSResolver(Node nodeResolver);
|
| -
|
| - NodeIterator createNodeIterator(Node root, int whatToShow, NodeFilter filter, bool expandEntityReferences);
|
| -
|
| - ProcessingInstruction createProcessingInstruction(String target, String data);
|
| -
|
| - Range createRange();
|
| -
|
| - Text createTextNode(String data);
|
| -
|
| - Touch createTouch(DOMWindow window, EventTarget target, int identifier, int pageX, int pageY, int screenX, int screenY, int webkitRadiusX, int webkitRadiusY, num webkitRotationAngle, num webkitForce);
|
| -
|
| - TouchList createTouchList();
|
| -
|
| - TreeWalker createTreeWalker(Node root, int whatToShow, NodeFilter filter, bool expandEntityReferences);
|
| -
|
| - Element elementFromPoint(int x, int y);
|
| -
|
| - XPathResult evaluate(String expression, Node contextNode, XPathNSResolver resolver, int type, XPathResult inResult);
|
| -
|
| - bool execCommand(String command, bool userInterface, String value);
|
| -
|
| - CanvasRenderingContext getCSSCanvasContext(String contextId, String name, int width, int height);
|
| -
|
| - Element getElementById(String elementId);
|
| -
|
| - NodeList getElementsByClassName(String tagname);
|
| -
|
| - NodeList getElementsByName(String elementName);
|
| -
|
| - NodeList getElementsByTagName(String tagname);
|
| -
|
| - NodeList getElementsByTagNameNS(String namespaceURI, String localName);
|
| -
|
| - CSSStyleDeclaration getOverrideStyle(Element element, String pseudoElement);
|
| -
|
| - DOMSelection getSelection();
|
| -
|
| - Node importNode(Node importedNode, [bool deep]);
|
| -
|
| - bool queryCommandEnabled(String command);
|
| -
|
| - bool queryCommandIndeterm(String command);
|
| -
|
| - bool queryCommandState(String command);
|
| -
|
| - bool queryCommandSupported(String command);
|
| -
|
| - String queryCommandValue(String command);
|
| -
|
| - Element querySelector(String selectors);
|
| -
|
| - NodeList querySelectorAll(String selectors);
|
| -
|
| - void webkitCancelFullScreen();
|
| -
|
| - WebKitNamedFlow webkitGetFlowByName(String name);
|
| -}
|
|
|