Obsolete
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.
The Text.isElementContentWhitespace
read-only property returns a Boolean
flag indicating whether or not the text node's content consists solely of whitespace.
b = textnode.isElementContentWhitespace;
In the example below, we create a node with mixed display and whitespace characters and the attribute is false
.
var tn = document.createTextNode("Hello world"); tn.isElementContentWhitespace; /* evaluates to false */
For a node that is all whitespace characters, the isElementContentWhitespace
evaluates to true.
var ws = document.createTextNode(" \t \r\n ") ws.isElementContentWhitespace; /* evaluates to true */
Specification | Status | Comment |
---|---|---|
DOM The definition of 'Text' in that specification. | Living Standard | Removed from the spec. |
Document Object Model (DOM) Level 3 Core Specification The definition of 'Text.isElementContentWhitespace' in that specification. | Obsolete | Initial definition. |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | No support |
(Yes) Removed in 10 (10) | No support | No support | No support |
Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | No support |
(Yes) Removed in 10.0 (10) | No support | No support | No support |
Text
interface it belongs to.
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Text/isElementContentWhitespace