Adds:
isWhitespaceInElementContent()
wholeText()
Java binding:
package org.w3c.dom;
public interface Text extends Node {
public boolean getIsWhitespaceInElementContent();
public String getWholeText();
public Text replaceWholeText(String content) throws DOMException;
}
In IDL:
interface Text : Node {
readonly attribute boolean isWhitespaceInElementContent;
readonly attribute DOMString wholeText;
Text replaceWholeText(in DOMString content) raises(DOMException);
};