summaryrefslogtreecommitdiff
path: root/gnu/xml/dom/html2/DomHTMLParser.java
diff options
context:
space:
mode:
authorLillian Angel <langel@redhat.com>2006-04-18 21:32:19 +0000
committerLillian Angel <langel@redhat.com>2006-04-18 21:32:19 +0000
commitd7ac6fb0387191b2a8d9b4c2d1043aabeb3c4257 (patch)
tree686afecb93f9a4a12002372827bf4df1d5ff9f77 /gnu/xml/dom/html2/DomHTMLParser.java
parent1bddca0f013fd66a8e6d174e9323ca1029b7262d (diff)
downloadclasspath-d7ac6fb0387191b2a8d9b4c2d1043aabeb3c4257.tar.gz
2006-04-18 Lillian Angel <langel@redhat.com>
* gnu/xml/dom/DomDocument.java (setCheckingCharacters): New function used to set checkingCharacters flag. * gnu/xml/dom/html2/DomHTMLParser.java (parseDocument): Added call to set checkingCharacters flag to false.
Diffstat (limited to 'gnu/xml/dom/html2/DomHTMLParser.java')
-rw-r--r--gnu/xml/dom/html2/DomHTMLParser.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/xml/dom/html2/DomHTMLParser.java b/gnu/xml/dom/html2/DomHTMLParser.java
index 2164e052c..2d329fd4c 100644
--- a/gnu/xml/dom/html2/DomHTMLParser.java
+++ b/gnu/xml/dom/html2/DomHTMLParser.java
@@ -125,6 +125,7 @@ public class DomHTMLParser
{
document = new DomHTMLDocument();
document.setCheckWellformedness(false);
+ document.setCheckingCharacters(false);
cursor = document;