The Text interface represents the textual content of web.Element
web.Attr
. If an element has no markup within its content, it
a single child implementing Text that contains the element's
However, if the element contains markup, it is parsed into information
and Text nodes that form its children.
The Text interface represents the textual content of `web.Element` `web.Attr`. If an element has no markup within its content, it a single child implementing Text that contains the element's However, if the element contains markup, it is parsed into information and Text nodes that form its children.
(assigned-slot this)
Property.
[Read Only] [Experimental]
The assignedSlot property of the web.Text
interface returns
web.shadow-dom.HTMLSlotElement
object associated with the element.
var htmlSlotElement = text.assignedSlot
See also: https://developer.mozilla.org/en-US/docs/Web/API/Text/assignedSlot
Property. [Read Only] [Experimental] The assignedSlot property of the `web.Text` interface returns `web.shadow-dom.HTMLSlotElement` object associated with the element. `var htmlSlotElement = text.assignedSlot` See also: `https://developer.mozilla.org/en-US/docs/Web/API/Text/assignedSlot`
(is-element-content-whitespace this)
Property.
[Read Only] [Obsolute]
The Text.isElementContentWhitespace read-only property returns
js.Boolean
flag indicating whether or not the text node's content
solely of whitespace.
b = textnode.isElementContentWhitespace;
See also: https://developer.mozilla.org/en-US/docs/Web/API/Text/isElementContentWhitespace
Property. [Read Only] [Obsolute] The Text.isElementContentWhitespace read-only property returns `js.Boolean` flag indicating whether or not the text node's content solely of whitespace. `b = textnode.isElementContentWhitespace;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/Text/isElementContentWhitespace`
(replace-whole-text this content)
Method.
[Obsolute]
The Text.replaceWholeText() method replaces the text of the node all of its logically adjacent text nodes with the specified text. replaced nodes are removed, including the current node, unless was the recipient of the replacement text.
replacementNode = textnode.replaceWholeText(content)
See also: https://developer.mozilla.org/en-US/docs/Web/API/Text/replaceWholeText
Method. [Obsolute] The Text.replaceWholeText() method replaces the text of the node all of its logically adjacent text nodes with the specified text. replaced nodes are removed, including the current node, unless was the recipient of the replacement text. `replacementNode = textnode.replaceWholeText(content)` See also: `https://developer.mozilla.org/en-US/docs/Web/API/Text/replaceWholeText`
(split-text this & args)
Method.
Breaks the node into two nodes at a specified offset.
Method. Breaks the node into two nodes at a specified offset.
(whole-text this)
Property.
[Read Only]
The Text.wholeText read-only property returns the full text of
web.Text
nodes logically adjacent to the node.
str = textnode.wholeText;
See also: https://developer.mozilla.org/en-US/docs/Web/API/Text/wholeText
Property. [Read Only] The Text.wholeText read-only property returns the full text of `web.Text` nodes logically adjacent to the node. `str = textnode.wholeText;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/Text/wholeText`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close