You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ar...@locus.apache.org on 2000/02/04 04:30:29 UTC

cvs commit: xml-xerces/java/src/org/apache/html/dom HTMLDocumentImpl.java

arkin       00/02/03 19:30:29

  Modified:    java/src/org/apache/html/dom HTMLDocumentImpl.java
  Log:
  Added TH as a cell element.
  
  Revision  Changes    Path
  1.2       +2 -1      xml-xerces/java/src/org/apache/html/dom/HTMLDocumentImpl.java
  
  Index: HTMLDocumentImpl.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLDocumentImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- HTMLDocumentImpl.java	1999/12/14 21:27:04	1.1
  +++ HTMLDocumentImpl.java	2000/02/04 03:30:29	1.2
  @@ -27,7 +27,7 @@
    * methods ({@link #getURL}, {@link #getCookie}).
    *
    *
  - * @version $Revision: 1.1 $ $Date: 1999/12/14 21:27:04 $
  + * @version $Revision: 1.2 $ $Date: 2000/02/04 03:30:29 $
    * @author <a href="mailto:arkin@exoffice.com">Assaf Arkin</a>
    * @see org.w3c.dom.html.HTMLDocument
    */
  @@ -670,6 +670,7 @@
   	populateElementType( "TABLE", "HTMLTableElementImpl" );
   	populateElementType( "CAPTION", "HTMLTableCaptionElementImpl" );
   	populateElementType( "TD", "HTMLTableCellElementImpl" );
  +	populateElementType( "TH", "HTMLTableCellElementImpl" );
   	populateElementType( "COL", "HTMLTableColElementImpl" );
   	populateElementType( "COLGROUP", "HTMLTableColElementImpl" );
   	populateElementType( "TR", "HTMLTableRowElementImpl" );