You are viewing a plain text version of this content. The canonical link for it is here.
Posted to j-dev@xerces.apache.org by "Michael Glavassevich (JIRA)" <xe...@xml.apache.org> on 2006/09/12 04:30:23 UTC

[jira] Assigned: (XERCESJ-1187) HTMLCollectionImpl checks against lower-case "tbody". Should be "TBODY" - patch provided

     [ http://issues.apache.org/jira/browse/XERCESJ-1187?page=all ]

Michael Glavassevich reassigned XERCESJ-1187:
---------------------------------------------

    Assignee: Michael Glavassevich

> HTMLCollectionImpl checks against lower-case "tbody".  Should be "TBODY" - patch provided
> -----------------------------------------------------------------------------------------
>
>                 Key: XERCESJ-1187
>                 URL: http://issues.apache.org/jira/browse/XERCESJ-1187
>             Project: Xerces2-J
>          Issue Type: Bug
>          Components: DOM (HTML)
>    Affects Versions: 2.8.0
>            Reporter: Jacob Kjome
>         Assigned To: Michael Glavassevich
>            Priority: Minor
>         Attachments: HTMLCollectionImpl.java.patch
>
>
> The following code is incorrect given the HTML DOM's upper-case element names....
>     case TBODY:
>                 // Any <TBODY> element (one of three table section types).
>                 match = ( elem instanceof HTMLTableSectionElement &&
>                           elem.getTagName().equals( "tbody" ) );
>                 break;
> Should be...
>     case TBODY:
>                 // Any <TBODY> element (one of three table section types).
>                 match = ( elem instanceof HTMLTableSectionElement &&
>                           elem.getTagName().equals( "TBODY" ) );
>                 break;
> Patch coming up...
> Jake

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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