You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by mr...@apache.org on 2009/12/14 05:54:29 UTC

svn commit: r890178 - /xerces/java/branches/xml-schema-1.1-dev/src/org/apache/html/dom/HTMLAreaElementImpl.java

Author: mrglavas
Date: Mon Dec 14 04:54:29 2009
New Revision: 890178

URL: http://svn.apache.org/viewvc?rev=890178&view=rev
Log:
Fixing JIRA Issue #1385: http://issues.apache.org/jira/browse/XERCESJ-1385. Should be checking whether "nohref" is present in getNoHref().

Modified:
    xerces/java/branches/xml-schema-1.1-dev/src/org/apache/html/dom/HTMLAreaElementImpl.java

Modified: xerces/java/branches/xml-schema-1.1-dev/src/org/apache/html/dom/HTMLAreaElementImpl.java
URL: http://svn.apache.org/viewvc/xerces/java/branches/xml-schema-1.1-dev/src/org/apache/html/dom/HTMLAreaElementImpl.java?rev=890178&r1=890177&r2=890178&view=diff
==============================================================================
--- xerces/java/branches/xml-schema-1.1-dev/src/org/apache/html/dom/HTMLAreaElementImpl.java (original)
+++ xerces/java/branches/xml-schema-1.1-dev/src/org/apache/html/dom/HTMLAreaElementImpl.java Mon Dec 14 04:54:29 2009
@@ -90,7 +90,7 @@
     
     public boolean getNoHref()
     {
-        return getBinary( "href" );
+        return getBinary( "nohref" );
     }
     
     



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xerces.apache.org
For additional commands, e-mail: commits-help@xerces.apache.org