xerces2-java-HTMLObjectElementImpl.patch 589 B

12345678910111213141516171819
  1. --- xerces-2_11_0.orig/src/org/apache/html/dom/HTMLElementImpl.java 2010-11-26 15:42:05.000000000 -0500
  2. +++ xerces-2_11_0/src/org/apache/html/dom/HTMLElementImpl.java 2015-12-02 09:54:52.042144620 -0500
  3. @@ -20,6 +20,7 @@
  4. import org.apache.xerces.dom.ElementImpl;
  5. import org.w3c.dom.Attr;
  6. +import org.w3c.dom.Document;
  7. import org.w3c.dom.Node;
  8. import org.w3c.dom.NodeList;
  9. import org.w3c.dom.html.HTMLElement;
  10. @@ -254,4 +255,7 @@
  11. return null;
  12. }
  13. + public Document getContentDocument() {
  14. + throw new UnsupportedOperationException();
  15. + }
  16. }