[Webkit-unassigned] [Bug 36089] Web SQL: SQLResultSetRowList does not support indexing of rows

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sat Nov 30 15:27:40 PST 2013


https://bugs.webkit.org/show_bug.cgi?id=36089


Luke Stebbing <luke at lukestebbing.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |luke at lukestebbing.com




--- Comment #5 from Luke Stebbing <luke at lukestebbing.com>  2013-11-30 15:26:04 PST ---
SQLResultSetRowList.item is defined as an indexed property getter:

http://www.w3.org/TR/webdatabase/#sqlresultsetrowlist
interface SQLResultSetRowList {
  readonly attribute unsigned long length;
  getter any item(in unsigned long index);
};

According to Web IDL, this means that rows[0] is equivalent to rows.item(0):
http://www.w3.org/TR/WebIDL/#idl-indexed-properties

Maybe when this was originally implemented, item wasn't an indexed property getter.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list