HTMLBlockquoteElement was present in the

published DOM Level 1 spec, but was subsequently
*DROPPED*. There's an erratum covering this:

Section 2.5.5 Interface HTMLBlockquoteElement
    This interface is an error and must be ignored.
    The Interface HTMLQuoteElement is used for both
    the Q and BLOCKQUOTE elements.

This interface is being removed from xml-commons
to comply with that erratum.


git-svn-id: https://svn.apache.org/repos/asf/xml/commons/trunk@226039 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
jkesselm 2003-01-13 22:12:32 +00:00
parent 1705557b9e
commit 8c274f41e3

View File

@ -1,23 +0,0 @@
/*
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
* Technology, Institut National de Recherche en Informatique et en
* Automatique, Keio University).
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
*/
package org.w3c.dom.html;
import org.w3c.dom.*;
/**
* ??? See the BLOCKQUOTE element definition in HTML 4.0.
*/
public interface HTMLBlockquoteElement extends HTMLElement {
/**
* A URI designating a document that describes the reason forthe change. See
* the cite attribute definition in HTML 4.0.
*/
public String getCite();
public void setCite(String cite);
}