Browse Source

* TXHTMLDocument is now derived from THTMLDocument instead of TXMLDocument.
Probably future versions of DOM_HTML will be able to completely replace
this unit.

sg 22 years ago
parent
commit
8ea2009376
1 changed files with 8 additions and 3 deletions
  1. 8 3
      fcl/xml/xhtml.pp

+ 8 - 3
fcl/xml/xhtml.pp

@@ -23,7 +23,7 @@ unit XHTML;
 
 
 interface
 interface
 
 
-uses DOM;
+uses DOM, DOM_HTML;
 
 
 type
 type
 
 
@@ -42,7 +42,7 @@ type
 
 
   TXHTMLType = (xhtmlStrict, xhtmlTransitional);
   TXHTMLType = (xhtmlStrict, xhtmlTransitional);
 
 
-  TXHTMLDocument = class(TXMLDocument)
+  TXHTMLDocument = class(THTMLDocument)
   private
   private
     function GetHeadElement: TXHTMLHeadElement;
     function GetHeadElement: TXHTMLHeadElement;
     function GetBodyElement: TXHTMLBodyElement;
     function GetBodyElement: TXHTMLBodyElement;
@@ -132,7 +132,12 @@ end.
 
 
 {
 {
   $Log$
   $Log$
-  Revision 1.2  2002-09-07 15:15:29  peter
+  Revision 1.3  2002-12-11 21:11:58  sg
+  * TXHTMLDocument is now derived from THTMLDocument instead of TXMLDocument.
+    Probably future versions of DOM_HTML will be able to completely replace
+    this unit.
+
+  Revision 1.2  2002/09/07 15:15:29  peter
     * old logs removed and tabs fixed
     * old logs removed and tabs fixed
 
 
 }
 }