Difference between revisions of "lure.dom.text"

(Created page with "Documentation does not yet exist")
 
 
Line 1: Line 1:
Documentation does not yet exist
+
== Text Object ==
 +
 
 +
Desc
 +
 
 +
== Text Properties ==
 +
 
 +
Properties present in this table are properties currently planned for implementation. Not all W3C DOM Properties will be implemented.
 +
 
 +
{|
 +
! align="left" | Property
 +
! align="left" style="padding-left:10px;" | Description
 +
! align="left" style="padding-left:10px;" | Implemented
 +
|-
 +
| isElementContentWhitespace
 +
|style="padding-left:10px;"|Returns true if the text node contains content whitespace, otherwise it returns false
 +
|style="padding-left:10px;"|No
 +
|-
 +
| wholeText
 +
|style="padding-left:10px;"|Returns all text of text nodes adjacent to this node, concatenated in document order
 +
|style="padding-left:10px;"|No
 +
|}
 +
 
 +
== Text Methods ==
 +
 
 +
Methods present in this table are methods currently planned for implementation. Not all W3C DOM methods will be implemented.
 +
 
 +
{|
 +
! align="left" | Method
 +
! align="left" style="padding-left:10px;" | Description
 +
! align="left" style="padding-left:10px;" | Implemented
 +
|-
 +
| replaceWholeText()
 +
| align="left" style="padding-left:10px;" |Replaces the text of this node and all adjacent text nodes with the specified text
 +
| align="left" style="padding-left:10px;" |No
 +
|}
 +
 
 +
== Text Inherited Properties ==
 +
 
 +
This Object inherits the following properties from [[lure.dom.cdata|DOM CData]]
 +
 
 +
{|
 +
! align="left" | Property
 +
|-
 +
| Data
 +
|-
 +
| length
 +
|-
 +
| nodeName
 +
|-
 +
| nodeValue
 +
|}
 +
 
 +
== Text Inherited Methods ==
 +
 
 +
This Object inherits the following Methods from [[lure.dom.cdata|DOM CData]]
 +
 
 +
{|
 +
! align="left" | Method
 +
|-
 +
| appendData()
 +
|-
 +
| deleteData()
 +
|-
 +
| insertData()
 +
|-
 +
| replaceData()
 +
|-
 +
| splitText()
 +
|-
 +
| substringData()
 +
|}

Latest revision as of 10:53, 5 November 2011

Text Object

Desc

Text Properties

Properties present in this table are properties currently planned for implementation. Not all W3C DOM Properties will be implemented.

Property Description Implemented
isElementContentWhitespace Returns true if the text node contains content whitespace, otherwise it returns false No
wholeText Returns all text of text nodes adjacent to this node, concatenated in document order No

Text Methods

Methods present in this table are methods currently planned for implementation. Not all W3C DOM methods will be implemented.

Method Description Implemented
replaceWholeText() Replaces the text of this node and all adjacent text nodes with the specified text No

Text Inherited Properties

This Object inherits the following properties from DOM CData

Property
Data
length
nodeName
nodeValue

Text Inherited Methods

This Object inherits the following Methods from DOM CData

Method
appendData()
deleteData()
insertData()
replaceData()
splitText()
substringData()