From 8c274f41e371fab6f7a8ccc9d6ca90bfce80d562 Mon Sep 17 00:00:00 2001 From: jkesselm Date: Mon, 13 Jan 2003 22:12:32 +0000 Subject: [PATCH] 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 --- .../w3c/dom/html/HTMLBlockquoteElement.java | 23 ------------------- 1 file changed, 23 deletions(-) delete mode 100644 java/external/src/org/w3c/dom/html/HTMLBlockquoteElement.java diff --git a/java/external/src/org/w3c/dom/html/HTMLBlockquoteElement.java b/java/external/src/org/w3c/dom/html/HTMLBlockquoteElement.java deleted file mode 100644 index da8b868..0000000 --- a/java/external/src/org/w3c/dom/html/HTMLBlockquoteElement.java +++ /dev/null @@ -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); -} -