Document

Module:
core
Inherits from:
Declared In:

Overview

Use the links in the table of contents to the left to access the documentation.



Functions

adoptNode
createAttribute
createAttributeNS
createCDATASection
createComment
createCSSStyleDeclaration
createDocumentFragment
createElement
createElementNS
createEntityReference
createEvent
createExpression
createNodeIterator
createNSResolver
createProcessingInstruction
createRange
createTextNode
createTreeWalker
elementFromPoint
evaluate
execCommand
getCSSCanvasContext
getElementById
getElementsByClassName
getElementsByName
getElementsByTagName
getElementsByTagNameNS
getOverrideStyle
getSelection
importNode
queryCommandEnabled
queryCommandIndeterm
queryCommandState
queryCommandSupported
queryCommandValue
querySelector
querySelectorAll
resetWMLPageState

adoptNode


Node adoptNode(
    in Node source) raises (DOMException); 


createAttribute


Attr createAttribute(
    in DOMString name) raises (DOMException); 


createAttributeNS


Attr createAttributeNS(
    in DOMString namespaceURI, 
    in DOMString qualifiedName) raises (DOMException); 


createCDATASection


CDATASection createCDATASection(
    in DOMString data) raises(DOMException); 


createComment


Comment createComment(
    in DOMString data); 


createCSSStyleDeclaration


CSSStyleDeclaration createCSSStyleDeclaration(); 


createDocumentFragment


DocumentFragment createDocumentFragment(); 


createElement


Element createElement(
    in DOMString tagName) raises (DOMException); 


createElementNS


Element createElementNS(
    in DOMString namespaceURI, 
    in DOMString qualifiedName) raises (DOMException); 


createEntityReference


EntityReference createEntityReference(
    in DOMString name) raises(DOMException); 


createEvent


Event createEvent(
    in DOMString eventType) raises(DOMException); 


createExpression


XPathExpression createExpression(
    in DOMString expression, 
    in XPathNSResolver resolver) raises(DOMException); 


createNodeIterator


NodeIterator createNodeIterator(
    in Node root, 
    in unsigned long whatToShow, 
    in NodeFilter filter, 
    in boolean expandEntityReferences) raises(DOMException); 


createNSResolver


XPathNSResolver createNSResolver(
    in Node nodeResolver); 


createProcessingInstruction


ProcessingInstruction createProcessingInstruction(
    in DOMString target, 
    in DOMString data) raises (DOMException); 


createRange


Range createRange(); 


createTextNode


Text createTextNode(
    in DOMString data); 


createTreeWalker


TreeWalker createTreeWalker(
    in Node root, 
    in unsigned long whatToShow, 
    in NodeFilter filter, 
    in boolean expandEntityReferences) raises(DOMException); 


elementFromPoint


Element elementFromPoint(
    in long x,
    in long y); 


evaluate


XPathResult evaluate(
    in DOMString expression, 
    in Node contextNode, 
    in XPathNSResolver resolver, 
    in unsigned short type, 
    in XPathResult inResult) raises(DOMException); 


execCommand


boolean execCommand(
    in DOMString command, 
    in boolean userInterface, 
    in DOMString value); 


getCSSCanvasContext


DOMObject getCSSCanvasContext(
    in DOMString contextId,
    in DOMString name,
    in long width,
    in long height); 


getElementById


Element getElementById(
    in DOMString elementId); 


getElementsByClassName


NodeList getElementsByClassName(
    in DOMString tagname); 


getElementsByName


NodeList getElementsByName(
    in DOMString elementName); 


getElementsByTagName


NodeList getElementsByTagName(
    in DOMString tagname); 


getElementsByTagNameNS


NodeList getElementsByTagNameNS(
    in DOMString namespaceURI, 
    in DOMString localName); 


getOverrideStyle


CSSStyleDeclaration getOverrideStyle(
    in Element element, 
    in DOMString pseudoElement); 


getSelection


DOMSelection getSelection(); 


importNode


Node importNode(
    in Node importedNode, 
    in boolean deep) raises (DOMException); 


queryCommandEnabled


boolean queryCommandEnabled(
    in DOMString command); 


queryCommandIndeterm


boolean queryCommandIndeterm(
    in DOMString command); 


queryCommandState


boolean queryCommandState(
    in DOMString command); 


queryCommandSupported


boolean queryCommandSupported(
    in DOMString command); 


queryCommandValue


DOMString queryCommandValue(
    in DOMString command); 


querySelector


Element querySelector(
    in DOMString selectors) raises(DOMException); 


querySelectorAll


NodeList querySelectorAll(
    in DOMString selectors) raises(DOMException); 


resetWMLPageState


void resetWMLPageState(); 

Member Data

anchors
applets
body
characterSet
charset
cookie
defaultCharset
defaultView
doctype
documentElement
documentURI
domain
forms
images
implementation
inputEncoding
lastModified
links
location
preferredStylesheetSet
readyState
referrer
selectedStylesheetSet
styleSheets
title
URL
xmlEncoding
xmlStandalone
xmlVersion

anchors


readonly attribute HTMLCollection anchors; 


applets


readonly attribute HTMLCollection applets; 


body


attribute HTMLElement body setter raises (DOMException); 


characterSet


readonly attribute DOMString characterSet; 


charset


attribute DOMString charset; 


cookie


attribute DOMString cookie /*setter raises (DOMException)*/; 


defaultCharset


readonly attribute DOMString defaultCharset; 


defaultView


readonly attribute DOMWindow defaultView; 


doctype


readonly attribute DocumentType doctype; 


documentElement


readonly attribute Element documentElement; 


documentURI


attribute DOMString documentURI; 


domain


attribute DOMString domain; 


forms


readonly attribute HTMLCollection forms; 


images


readonly attribute HTMLCollection images; 


implementation


readonly attribute DOMImplementation implementation; 


inputEncoding


readonly attribute DOMString inputEncoding; 


lastModified


readonly attribute DOMString lastModified; 


links


readonly attribute HTMLCollection links; 


location


attribute Location location; 


preferredStylesheetSet


readonly attribute DOMString preferredStylesheetSet; 


readyState


readonly attribute DOMString readyState; 


referrer


readonly attribute DOMString referrer; 


selectedStylesheetSet


attribute DOMString selectedStylesheetSet; 


styleSheets


readonly attribute StyleSheetList styleSheets; 


title


attribute DOMString title; 


URL


readonly attribute DOMString URL; 


xmlEncoding


readonly attribute DOMString xmlEncoding; 


xmlStandalone


attribute boolean xmlStandalone setter raises (DOMException); 


xmlVersion


attribute DOMString xmlVersion setter raises (DOMException); 

 

Last Updated: 2009-05-29