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