Extends DOM2 Text interface
Adds:
isWhitespaceInElementContent()In IDL:
interface Text3 : Text {
  readonly attribute boolean isWhitespaceInElementContent;
};
Java binding:
package org.w3c.dom;
  
  public interface Text3 extends Text {
  
    public boolean getIsWhitespaceInElementContent();
  }