<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "https://www.w3.org/Bugs/Public/page.cgi?id=bugzilla.dtd">

<bugzilla version="5.0.4"
          urlbase="https://www.w3.org/Bugs/Public/"
          
          maintainer="sysbot+bugzilla@w3.org"
>

    <bug>
          <bug_id>13776</bug_id>
          
          <creation_ts>2011-08-15 07:01:08 +0000</creation_ts>
          <short_desc>Browser inconsistencies in implementing name getters on forms and form element collections</short_desc>
          <delta_ts>2011-10-21 21:36:58 +0000</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>HTML WG</product>
          <component>HTML5 spec</component>
          <version>unspecified</version>
          <rep_platform>Other</rep_platform>
          <op_sys>other</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>FIXED</resolution>
          
          
          <bug_file_loc>http://www.whatwg.org/specs/web-apps/current-work/#htmlformcontrolscollection-0</bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords></keywords>
          <priority>P3</priority>
          <bug_severity>normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>1</everconfirmed>
          <reporter>contributor</reporter>
          <assigned_to name="Ian &apos;Hixie&apos; Hickson">ian</assigned_to>
          <cc>ian</cc>
    
    <cc>mike</cc>
    
    <cc>Ms2ger</cc>
    
    <cc>public-html-admin</cc>
    
    <cc>public-html-wg-issue-tracking</cc>
    
    <cc>zcorpan</cc>
          
          <qa_contact name="HTML WG Bugzilla archive list">public-html-bugzilla</qa_contact>

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>55048</commentid>
    <comment_count>0</comment_count>
    <who name="">contributor</who>
    <bug_when>2011-08-15 07:01:08 +0000</bug_when>
    <thetext>Specification: http://www.whatwg.org/specs/web-apps/current-work/complete/common-dom-interfaces.html
Multipage: http://www.whatwg.org/C#htmlformcontrolscollection-0
Complete: http://www.whatwg.org/c#htmlformcontrolscollection-0

Comment:
Browser inconsistencies in implementing name getters on forms and form element
collections

Posted from: 85.227.157.71 by simonp@opera.com
User agent: Opera/9.80 (Macintosh; Intel Mac OS X 10.5.8; U; en) Presto/2.9.168 Version/11.50</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>55049</commentid>
    <comment_count>1</comment_count>
    <who name="Simon Pieters">zcorpan</who>
    <bug_when>2011-08-15 07:03:33 +0000</bug_when>
    <thetext>See this thread:

http://lists.w3.org/Archives/Public/public-html/2011Apr/thread.html#msg389

and Boris&apos; followup in private email:

[[
On 7/15/11 5:33 PM, Ian Hickson wrote:
&gt; Do you know what changes, if any, you concluded were needed to the spec
 
We didn&apos;t conclude anything.  We need some info from WebKit on what they&apos;re willing to implement, and they haven&apos;t responded.
 
That said, I just realized that my initial testcase with IE was just broken because it doesn&apos;t correctly implement HTML5 parsing.  A corrected testcase:
 
   &lt;!DOCTYPE html&gt;
   &lt;body&gt;
   &lt;form name=&quot;x&quot;&gt;
     &lt;img name=&quot;y&quot;&gt;
   &lt;/form&gt;
   &lt;script&gt;
     var f = document.forms[&quot;x&quot;];
     alert(f.y);
     alert(document.forms[&quot;x&quot;].elements.y);
   &lt;/script&gt;
 
This alerts &quot;[object HTMLImageElement]&quot; and &quot;undefined&quot; which does not match the spec but does match Gecko and Presto (and for that first alert matches WebKit).
 
So I suspect that the spec definitely needs changing here, because it&apos;s likely to not be web-compatible.
 
The thing that&apos;s interoperably implemented is that form.myName will find &lt;img&gt; elements with name or id &quot;myName&quot; inside the form.  Whatever &quot;inside the form&quot; means, esp. in the tables case.  That still needs to be tested.
]]</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>57780</commentid>
    <comment_count>2</comment_count>
    <who name="Ian &apos;Hixie&apos; Hickson">ian</who>
    <bug_when>2011-10-04 16:39:15 +0000</bug_when>
    <thetext>Wait, what? HTMLFormElement.elements is not restricted to form controls???</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>57837</commentid>
    <comment_count>3</comment_count>
    <who name="Simon Pieters">zcorpan</who>
    <bug_when>2011-10-05 07:25:27 +0000</bug_when>
    <thetext>Yes, it is. But form[name] is not.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>58610</commentid>
    <comment_count>4</comment_count>
    <who name="Ian &apos;Hixie&apos; Hickson">ian</who>
    <bug_when>2011-10-21 00:34:17 +0000</bug_when>
    <thetext>Man, this is crazy town. Ok. I need to basically define the form[] stuff independent of the form.elements[] stuff. It&apos;ll be defined pretty much as it is now (including the ridiculous memory map) but it won&apos;t do the special RadioNodeList stuff and it will fall back on &lt;img&gt;s if there&apos;s no other match rather than returning null.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>58659</commentid>
    <comment_count>5</comment_count>
    <who name="Ian &apos;Hixie&apos; Hickson">ian</who>
    <bug_when>2011-10-21 21:36:40 +0000</bug_when>
    <thetext>EDITOR&apos;S RESPONSE: This is an Editor&apos;s Response to your comment. If you are satisfied with this response, please change the state of this bug to CLOSED. If you have additional information and would like the editor to reconsider, please reopen this bug. If you would like to escalate the issue to the full HTML Working Group, please add the TrackerRequest keyword to this bug, and suggest title and text for the tracker issue; or you may create a tracker issue yourself, if you are able to do so. For more details, see this document:
   http://dev.w3.org/html5/decision-policy/decision-policy.html

Status: Accepted
Change Description: see diff given below
Rationale: Web compat.

Note: Interop was not 100% present on edge cases such as the liveness of the NodeLists returned, or what happens when the names are changed dynamically, etc. I&apos;ve tried to match the majority of browsers for each feature.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>58660</commentid>
    <comment_count>6</comment_count>
    <who name="">contributor</who>
    <bug_when>2011-10-21 21:36:58 +0000</bug_when>
    <thetext>Checked in as WHATWG revision r6727.
Check-in comment: Try to make the named getter on HTMLFormElement more Web-compatible.
http://html5.org/tools/web-apps-tracker?from=6726&amp;to=6727</thetext>
  </long_desc>
      
      

    </bug>

</bugzilla>