All Downloads are FREE. Search and download functionalities are using the official Maven repository.

elemental.dom.Document Maven / Gradle / Ivy

Go to download

Vaadin is a web application framework for Rich Internet Applications (RIA). Vaadin enables easy development and maintenance of fast and secure rich web applications with a stunning look and feel and a wide browser support. It features a server-side architecture with the majority of the logic running on the server. Ajax technology is used at the browser-side to ensure a rich and interactive user experience.

There is a newer version: 8.26.0
Show newest version
/*
 * Copyright 2012 Google Inc.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */
package elemental.dom;
import elemental.html.HTMLAllCollection;
import elemental.stylesheets.StyleSheetList;
import elemental.html.CanvasRenderingContext;
import elemental.events.EventTarget;
import elemental.html.HTMLCollection;
import elemental.traversal.NodeFilter;
import elemental.css.CSSStyleDeclaration;
import elemental.events.Touch;
import elemental.xpath.XPathNSResolver;
import elemental.xpath.XPathResult;
import elemental.ranges.Range;
import elemental.html.Location;
import elemental.html.Selection;
import elemental.html.Window;
import elemental.xpath.XPathExpression;
import elemental.traversal.NodeIterator;
import elemental.events.Event;
import elemental.traversal.TreeWalker;
import elemental.html.HeadElement;
import elemental.events.TouchList;
import elemental.events.EventListener;

import elemental.events.*;
import elemental.util.*;
import elemental.dom.*;
import elemental.html.*;
import elemental.css.*;
import elemental.stylesheets.*;
import elemental.svg.*;

import java.util.Date;

/**
  * 

Each web page loaded in the browser has its own document object. This object serves as an entry point to the web page's content (the DOM tree, including elements such as <body> and <table> ) and provides functionality global to the document (such as obtaining the page's URL and creating new elements in the document).

A document object can be obtained from various APIs:

Depending on the kind of the document (e.g. HTML or XML) different APIs may be available on the document object. This theoretical availability of APIs is usually described in terms of implementing interfaces defined in the relevant W3C DOM specifications:

  • All document objects implement the DOM Core Document and Node interfaces, meaning that the "core" properties and methods are available for all kinds of documents.
  • In addition to the generalized DOM Core document interface, HTML documents also implement the HTMLDocument interface, which is a more specialized interface for dealing with HTML documents (e.g., document.cookie, document.alinkColor).
  • XUL documents (available to Mozilla add-on and application developers) implement their own additions to the core Document functionality.

Methods or properties listed here that are part of a more specialized interface have an asterisk (*) next to them and have additional information in the  Availability column.

Note that some APIs listed below are not available in all browsers for various reasons:

  • Obsolete: on its way of being removed from supporting browsers.
  • Non-standard: either an experimental feature not (yet?) agreed upon by all vendors, or a feature targeted specifically at the code running in a specific browser (e.g. Mozilla has a few DOM APIs created for its add-ons and application development).
  • Part of a completed or an emerging standard, but not (yet?) implemented in all browsers or implemented in the newest versions of the browsers.

Detailed browser compatibility tables are located at the pages describing each property or method.

*/ public interface Document extends Node, NodeSelector { /** * Contains the set of standard values used with {@link #createEvent}. */ public interface Events { public static final String CUSTOM = "CustomEvent"; public static final String KEYBOARD = "KeyboardEvent"; public static final String MESSAGE = "MessageEvent"; public static final String MOUSE = "MouseEvent"; public static final String MUTATION = "MutationEvent"; public static final String OVERFLOW = "OverflowEvent"; public static final String PAGE_TRANSITION = "PageTransitionEvent"; public static final String PROGRESS = "ProgressEvent"; public static final String STORAGE = "StorageEvent"; public static final String TEXT = "TextEvent"; public static final String UI = "UIEvent"; public static final String WEBKIT_ANIMATION = "WebKitAnimationEvent"; public static final String WEBKIT_TRANSITION = "WebKitTransitionEvent"; public static final String WHEEL = "WheelEvent"; public static final String SVGS = "SVGEvents"; public static final String SVG_ZOOMS = "SVGZoomEvents"; public static final String TOUCH = "TouchEvent"; } /** * Contains the set of standard values returned by {@link #readyState}. */ public interface ReadyState { /** * Indicates the document is still loading and parsing. */ public static final String LOADING = "loading"; /** * Indicates the document is finished parsing but is still loading * subresources. */ public static final String INTERACTIVE = "interactive"; /** * Indicates the document and all subresources have been loaded. */ public static final String COMPLETE = "complete"; } /** * Returns a string containing the URL of the current document. */ String getURL(); /** * Returns the currently focused element */ Element getActiveElement(); /** * Returns or sets the color of active links in the document body. */ String getAlinkColor(); void setAlinkColor(String arg); HTMLAllCollection getAll(); void setAll(HTMLAllCollection arg); /** * Returns a list of all of the anchors in the document. */ HTMLCollection getAnchors(); /** * Returns an ordered list of the applets within a document. */ HTMLCollection getApplets(); /** * Gets/sets the background color of the current document. */ String getBgColor(); void setBgColor(String arg); /** * Returns the BODY node of the current document. */ Element getBody(); void setBody(Element arg); /** * Returns the character set being used by the document. */ String getCharacterSet(); String getCharset(); void setCharset(String arg); /** * Indicates whether the document is rendered in Quirks or Strict mode. */ String getCompatMode(); /** * Returns a semicolon-separated list of the cookies for that document or sets a single cookie. */ String getCookie(); void setCookie(String arg); String getDefaultCharset(); /** * Returns a reference to the window object. */ Window getDefaultView(); /** * Gets/sets WYSYWIG editing capability of Midas. It can only be used for HTML documents. */ String getDesignMode(); void setDesignMode(String arg); /** * Gets/sets directionality (rtl/ltr) of the document */ String getDir(); void setDir(String arg); /** * Returns the Document Type Definition (DTD) of the current document. */ DocumentType getDoctype(); /** * Returns the Element that is a direct child of document. For HTML documents, this is normally the HTML element. */ Element getDocumentElement(); /** * Returns the document location. */ String getDocumentURI(); void setDocumentURI(String arg); /** * Returns the domain of the current document. */ String getDomain(); void setDomain(String arg); /** * Returns a list of the embedded OBJECTS within the current document. */ HTMLCollection getEmbeds(); /** * Gets/sets the foreground color, or text color, of the current document. */ String getFgColor(); void setFgColor(String arg); /** * Returns a list of the FORM elements within the current document. */ HTMLCollection getForms(); /** * Returns the HEAD node of the current document. */ HeadElement getHead(); /** * Gets/sets the height of the current document. */ int getHeight(); /** * Returns a list of the images in the current document. */ HTMLCollection getImages(); /** * Returns the DOM implementation associated with the current document. */ DOMImplementation getImplementation(); /** * Returns the encoding used when the document was parsed. */ String getInputEncoding(); /** * Returns the date on which the document was last modified. */ String getLastModified(); /** * Gets/sets the color of hyperlinks in the document. */ String getLinkColor(); void setLinkColor(String arg); /** * Returns a list of all the hyperlinks in the document. */ HTMLCollection getLinks(); /** * Returns the URI of the current document. */ Location getLocation(); void setLocation(Location arg); EventListener getOnabort(); void setOnabort(EventListener arg); EventListener getOnbeforecopy(); void setOnbeforecopy(EventListener arg); EventListener getOnbeforecut(); void setOnbeforecut(EventListener arg); EventListener getOnbeforepaste(); void setOnbeforepaste(EventListener arg); EventListener getOnblur(); void setOnblur(EventListener arg); EventListener getOnchange(); void setOnchange(EventListener arg); EventListener getOnclick(); void setOnclick(EventListener arg); EventListener getOncontextmenu(); void setOncontextmenu(EventListener arg); EventListener getOncopy(); void setOncopy(EventListener arg); EventListener getOncut(); void setOncut(EventListener arg); EventListener getOndblclick(); void setOndblclick(EventListener arg); EventListener getOndrag(); void setOndrag(EventListener arg); EventListener getOndragend(); void setOndragend(EventListener arg); EventListener getOndragenter(); void setOndragenter(EventListener arg); EventListener getOndragleave(); void setOndragleave(EventListener arg); EventListener getOndragover(); void setOndragover(EventListener arg); EventListener getOndragstart(); void setOndragstart(EventListener arg); EventListener getOndrop(); void setOndrop(EventListener arg); EventListener getOnerror(); void setOnerror(EventListener arg); EventListener getOnfocus(); void setOnfocus(EventListener arg); EventListener getOninput(); void setOninput(EventListener arg); EventListener getOninvalid(); void setOninvalid(EventListener arg); EventListener getOnkeydown(); void setOnkeydown(EventListener arg); EventListener getOnkeypress(); void setOnkeypress(EventListener arg); EventListener getOnkeyup(); void setOnkeyup(EventListener arg); EventListener getOnload(); void setOnload(EventListener arg); EventListener getOnmousedown(); void setOnmousedown(EventListener arg); EventListener getOnmousemove(); void setOnmousemove(EventListener arg); EventListener getOnmouseout(); void setOnmouseout(EventListener arg); EventListener getOnmouseover(); void setOnmouseover(EventListener arg); EventListener getOnmouseup(); void setOnmouseup(EventListener arg); EventListener getOnmousewheel(); void setOnmousewheel(EventListener arg); EventListener getOnpaste(); void setOnpaste(EventListener arg); /** *
Returns the event handling code for the readystatechange event.

Gecko 9.0 note
(Firefox 9.0 / Thunderbird 9.0 / SeaMonkey 2.6)

Starting in Gecko 9.0 (Firefox 9.0 / Thunderbird 9.0 / SeaMonkey 2.6) , you can now use the syntax if ("onabort" in document) to determine whether or not a given event handler property exists. This is because event handler interfaces have been updated to be proper web IDL interfaces. See DOM event handlers for details.

*/ EventListener getOnreadystatechange(); void setOnreadystatechange(EventListener arg); EventListener getOnreset(); void setOnreset(EventListener arg); EventListener getOnscroll(); void setOnscroll(EventListener arg); EventListener getOnsearch(); void setOnsearch(EventListener arg); EventListener getOnselect(); void setOnselect(EventListener arg); EventListener getOnselectionchange(); void setOnselectionchange(EventListener arg); EventListener getOnselectstart(); void setOnselectstart(EventListener arg); EventListener getOnsubmit(); void setOnsubmit(EventListener arg); EventListener getOntouchcancel(); void setOntouchcancel(EventListener arg); EventListener getOntouchend(); void setOntouchend(EventListener arg); EventListener getOntouchmove(); void setOntouchmove(EventListener arg); EventListener getOntouchstart(); void setOntouchstart(EventListener arg); EventListener getOnwebkitfullscreenchange(); void setOnwebkitfullscreenchange(EventListener arg); EventListener getOnwebkitfullscreenerror(); void setOnwebkitfullscreenerror(EventListener arg); /** * Returns a list of the available plugins. */ HTMLCollection getPlugins(); String getPreferredStylesheetSet(); /** * Returns loading status of the document */ String getReadyState(); /** * Returns the URI of the page that linked to this page. */ String getReferrer(); /** * Returns all the <script> elements on the document. */ HTMLCollection getScripts(); String getSelectedStylesheetSet(); void setSelectedStylesheetSet(String arg); /** * Returns a list of the stylesheet objects on the current document. */ StyleSheetList getStyleSheets(); /** * Returns the title of the current document. */ String getTitle(); void setTitle(String arg); /** * Gets/sets the color of visited hyperlinks. */ String getVlinkColor(); void setVlinkColor(String arg); Element getWebkitCurrentFullScreenElement(); boolean isWebkitFullScreenKeyboardInputAllowed(); Element getWebkitFullscreenElement(); boolean isWebkitFullscreenEnabled(); boolean isWebkitHidden(); boolean isWebkitIsFullScreen(); String getWebkitVisibilityState(); /** * Returns the width of the current document. */ int getWidth(); /** * Returns the encoding as determined by the XML declaration.
Firefox 10 and later don't implement it anymore.
*/ String getXmlEncoding(); /** * Returns true if the XML declaration specifies the document is standalone (e.g., An external part of the DTD affects the document's content), else false. */ boolean isXmlStandalone(); void setXmlStandalone(boolean arg); /** * Returns the version number as specified in the XML declaration or "1.0" if the declaration is absent. */ String getXmlVersion(); void setXmlVersion(String arg); /** *
Adopt node from an external document
Node.appendChild
Adds a node to the end of the list of children of a specified parent node.
*/ Node adoptNode(Node source); Range caretRangeFromPoint(int x, int y); /** * Creates a new attribute node and returns it. */ Attr createAttribute(String name); /** * Creates a new attribute node in a given namespace and returns it. */ Attr createAttributeNS(String namespaceURI, String qualifiedName); /** * Creates a new CDATA node and returns it. */ CDATASection createCDATASection(String data); /** * Creates a new comment node and returns it. */ Comment createComment(String data); /** * Creates a new document fragment. */ DocumentFragment createDocumentFragment(); /** * Creates a new element with the given tag name. */ Element createElement(String tagName); /** * Creates a new element with the given tag name and namespace URI. */ Element createElementNS(String namespaceURI, String qualifiedName); /** * Creates a new entity reference object and returns it. */ EntityReference createEntityReference(String name); /** * Creates an event. */ Event createEvent(String eventType); /** * Compiles an XPathExpression which can then be used for (repeated) evaluations. */ XPathExpression createExpression(String expression, XPathNSResolver resolver); /** * Creates an XPathNSResolver. */ XPathNSResolver createNSResolver(Node nodeResolver); NodeIterator createNodeIterator(Node root, int whatToShow, NodeFilter filter, boolean expandEntityReferences); /** * Creates a new processing instruction element and returns it. */ ProcessingInstruction createProcessingInstruction(String target, String data); /** * Creates a Range object. */ Range createRange(); /** * Creates a text node. */ Text createTextNode(String data); Touch createTouch(Window window, EventTarget target, int identifier, int pageX, int pageY, int screenX, int screenY, int webkitRadiusX, int webkitRadiusY, float webkitRotationAngle, float webkitForce); TouchList createTouchList(); /** * Creates a treeWalker object. */ TreeWalker createTreeWalker(Node root, int whatToShow, NodeFilter filter, boolean expandEntityReferences); /** * Returns the element visible at the specified coordinates. */ Element elementFromPoint(int x, int y); /** * Evaluates an XPath expression. */ XPathResult evaluate(String expression, Node contextNode, XPathNSResolver resolver, int type, XPathResult inResult); /** * Executes a Midas command. */ boolean execCommand(String command, boolean userInterface, String value); CanvasRenderingContext getCSSCanvasContext(String contextId, String name, int width, int height); /** * Returns an object reference to the identified element. */ Element getElementById(String elementId); /** * Returns a list of elements with the given class name. */ NodeList getElementsByClassName(String tagname); /** * Returns a list of elements with the given name. */ NodeList getElementsByName(String elementName); /** * Returns a list of elements with the given tag name. */ NodeList getElementsByTagName(String tagname); /** *
Returns a list of elements with the given tag name and namespace.
Node.getFeature
*/ NodeList getElementsByTagNameNS(String namespaceURI, String localName); CSSStyleDeclaration getOverrideStyle(Element element, String pseudoElement); /** *
Returns a Selection object related to text selected in the document.
Node.getUserData
Returns any data previously set on the node via setUserData() by key
Node.hasAttributes
Indicates whether the node possesses attributes
Node.hasChildNodes
Returns a Boolean value indicating whether the current element has child nodes or not.
*/ Selection getSelection(); /** *
Returns a clone of a node from an external document
Node.insertBefore
Inserts the specified node before a reference node as a child of the current node.
Node.isDefaultNamespace
Returns true if the namespace is the default namespace on the given node
Node.isEqualNode
Indicates whether the node is equal to the given node
Node.isSameNode
Indicates whether the node is the same as the given node
Node.isSupported
Tests whether the DOM implementation implements a specific feature and that feature is supported by this node or document
*/ Node importNode(Node importedNode); /** *
Returns a clone of a node from an external document
Node.insertBefore
Inserts the specified node before a reference node as a child of the current node.
Node.isDefaultNamespace
Returns true if the namespace is the default namespace on the given node
Node.isEqualNode
Indicates whether the node is equal to the given node
Node.isSameNode
Indicates whether the node is the same as the given node
Node.isSupported
Tests whether the DOM implementation implements a specific feature and that feature is supported by this node or document
*/ Node importNode(Node importedNode, boolean deep); /** * Returns true if the Midas command can be executed on the current range. */ boolean queryCommandEnabled(String command); /** * Returns true if the Midas command is in a indeterminate state on the current range. */ boolean queryCommandIndeterm(String command); /** * Returns true if the Midas command has been executed on the current range. */ boolean queryCommandState(String command); boolean queryCommandSupported(String command); /** * Returns the current value of the current range for Midas command. As of Firefox 2.0.0.2, queryCommandValue will return an empty string when a command value has not been explicitly set. */ String queryCommandValue(String command); /** * Returns the first Element node within the document, in document order, that matches the specified selectors. */ Element querySelector(String selectors); /** * Returns a list of all the Element nodes within the document that match the specified selectors. */ NodeList querySelectorAll(String selectors); void webkitCancelFullScreen(); void webkitExitFullscreen(); void captureEvents(); /** *
In majority of modern browsers, including recent versions of Firefox and Internet Explorer, this method does nothing.
Node.cloneNode
Makes a copy of a node or document
*/ void clear(); /** *
Closes a document stream for writing.
Node.compareDocumentPosition
Compares the position of the current node against another node in any other document.
*/ void close(); /** * Returns true if the focus is currently located anywhere inside the specified document. */ boolean hasFocus(); /** * Opens a document stream for writing. */ void open(); /** *
Node.removeChild
Removes a child node from the DOM
*/ void releaseEvents(); /** * Writes text to a document. */ void write(String text); /** * Write a line of text to a document. */ void writeln(String text); AnchorElement createAnchorElement(); AppletElement createAppletElement(); AreaElement createAreaElement(); AudioElement createAudioElement(); BRElement createBRElement(); BaseElement createBaseElement(); BaseFontElement createBaseFontElement(); BodyElement createBodyElement(); ButtonElement createButtonElement(); CanvasElement createCanvasElement(); ContentElement createContentElement(); DListElement createDListElement(); DetailsElement createDetailsElement(); DirectoryElement createDirectoryElement(); DivElement createDivElement(); EmbedElement createEmbedElement(); FieldSetElement createFieldSetElement(); FontElement createFontElement(); FormElement createFormElement(); FrameElement createFrameElement(); FrameSetElement createFrameSetElement(); HRElement createHRElement(); HeadElement createHeadElement(); HeadingElement createHeadingElement(); HtmlElement createHtmlElement(); IFrameElement createIFrameElement(); ImageElement createImageElement(); InputElement createInputElement(); KeygenElement createKeygenElement(); LIElement createLIElement(); LabelElement createLabelElement(); LegendElement createLegendElement(); LinkElement createLinkElement(); MapElement createMapElement(); MarqueeElement createMarqueeElement(); MediaElement createMediaElement(); MenuElement createMenuElement(); MetaElement createMetaElement(); MeterElement createMeterElement(); ModElement createModElement(); OListElement createOListElement(); ObjectElement createObjectElement(); OptGroupElement createOptGroupElement(); OptionElement createOptionElement(); OutputElement createOutputElement(); ParagraphElement createParagraphElement(); ParamElement createParamElement(); PreElement createPreElement(); ProgressElement createProgressElement(); QuoteElement createQuoteElement(); SVGAElement createSVGAElement(); SVGAltGlyphDefElement createSVGAltGlyphDefElement(); SVGAltGlyphElement createSVGAltGlyphElement(); SVGAltGlyphItemElement createSVGAltGlyphItemElement(); SVGAnimateColorElement createSVGAnimateColorElement(); SVGAnimateElement createSVGAnimateElement(); SVGAnimateMotionElement createSVGAnimateMotionElement(); SVGAnimateTransformElement createSVGAnimateTransformElement(); SVGAnimationElement createSVGAnimationElement(); SVGCircleElement createSVGCircleElement(); SVGClipPathElement createSVGClipPathElement(); SVGComponentTransferFunctionElement createSVGComponentTransferFunctionElement(); SVGCursorElement createSVGCursorElement(); SVGDefsElement createSVGDefsElement(); SVGDescElement createSVGDescElement(); SVGEllipseElement createSVGEllipseElement(); SVGFEBlendElement createSVGFEBlendElement(); SVGFEColorMatrixElement createSVGFEColorMatrixElement(); SVGFEComponentTransferElement createSVGFEComponentTransferElement(); SVGFECompositeElement createSVGFECompositeElement(); SVGFEConvolveMatrixElement createSVGFEConvolveMatrixElement(); SVGFEDiffuseLightingElement createSVGFEDiffuseLightingElement(); SVGFEDisplacementMapElement createSVGFEDisplacementMapElement(); SVGFEDistantLightElement createSVGFEDistantLightElement(); SVGFEDropShadowElement createSVGFEDropShadowElement(); SVGFEFloodElement createSVGFEFloodElement(); SVGFEFuncAElement createSVGFEFuncAElement(); SVGFEFuncBElement createSVGFEFuncBElement(); SVGFEFuncGElement createSVGFEFuncGElement(); SVGFEFuncRElement createSVGFEFuncRElement(); SVGFEGaussianBlurElement createSVGFEGaussianBlurElement(); SVGFEImageElement createSVGFEImageElement(); SVGFEMergeElement createSVGFEMergeElement(); SVGFEMergeNodeElement createSVGFEMergeNodeElement(); SVGFEMorphologyElement createSVGFEMorphologyElement(); SVGFEOffsetElement createSVGFEOffsetElement(); SVGFEPointLightElement createSVGFEPointLightElement(); SVGFESpecularLightingElement createSVGFESpecularLightingElement(); SVGFESpotLightElement createSVGFESpotLightElement(); SVGFETileElement createSVGFETileElement(); SVGFETurbulenceElement createSVGFETurbulenceElement(); SVGFilterElement createSVGFilterElement(); SVGFontElement createSVGFontElement(); SVGFontFaceElement createSVGFontFaceElement(); SVGFontFaceFormatElement createSVGFontFaceFormatElement(); SVGFontFaceNameElement createSVGFontFaceNameElement(); SVGFontFaceSrcElement createSVGFontFaceSrcElement(); SVGFontFaceUriElement createSVGFontFaceUriElement(); SVGForeignObjectElement createSVGForeignObjectElement(); SVGGElement createSVGGElement(); SVGGlyphElement createSVGGlyphElement(); SVGGlyphRefElement createSVGGlyphRefElement(); SVGGradientElement createSVGGradientElement(); SVGHKernElement createSVGHKernElement(); SVGImageElement createSVGImageElement(); SVGLineElement createSVGLineElement(); SVGLinearGradientElement createSVGLinearGradientElement(); SVGMPathElement createSVGMPathElement(); SVGMarkerElement createSVGMarkerElement(); SVGMaskElement createSVGMaskElement(); SVGMetadataElement createSVGMetadataElement(); SVGMissingGlyphElement createSVGMissingGlyphElement(); SVGPathElement createSVGPathElement(); SVGPatternElement createSVGPatternElement(); SVGPolygonElement createSVGPolygonElement(); SVGPolylineElement createSVGPolylineElement(); SVGRadialGradientElement createSVGRadialGradientElement(); SVGRectElement createSVGRectElement(); SVGSVGElement createSVGElement(); SVGScriptElement createSVGScriptElement(); SVGSetElement createSVGSetElement(); SVGStopElement createSVGStopElement(); SVGStyleElement createSVGStyleElement(); SVGSwitchElement createSVGSwitchElement(); SVGSymbolElement createSVGSymbolElement(); SVGTRefElement createSVGTRefElement(); SVGTSpanElement createSVGTSpanElement(); SVGTextContentElement createSVGTextContentElement(); SVGTextElement createSVGTextElement(); SVGTextPathElement createSVGTextPathElement(); SVGTextPositioningElement createSVGTextPositioningElement(); SVGTitleElement createSVGTitleElement(); SVGUseElement createSVGUseElement(); SVGVKernElement createSVGVKernElement(); SVGViewElement createSVGViewElement(); ScriptElement createScriptElement(); SelectElement createSelectElement(); ShadowElement createShadowElement(); SourceElement createSourceElement(); SpanElement createSpanElement(); StyleElement createStyleElement(); TableCaptionElement createTableCaptionElement(); TableCellElement createTableCellElement(); TableColElement createTableColElement(); TableElement createTableElement(); TableRowElement createTableRowElement(); TableSectionElement createTableSectionElement(); TextAreaElement createTextAreaElement(); TitleElement createTitleElement(); TrackElement createTrackElement(); UListElement createUListElement(); UnknownElement createUnknownElement(); VideoElement createVideoElement(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy