[Bug 14199] IDBVersionChangeEvent still uses DOMString for version

http://www.w3.org/Bugs/Public/show_bug.cgi?id=14199

Eliot Graff <eliotgra@microsoft.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED

--- Comment #3 from Eliot Graff <eliotgra@microsoft.com> 2011-11-02 15:01:09 UTC ---
Fixed in the 1 November Editor's Draft:

interface IDBVersionChangeEvent : Event {
    readonly attribute unsigned long long oldVersion;
    readonly attribute unsigned long long newVersion;
    void initIDBVersionChangeEvent (DOMString typeArg, boolean canBubbleArg,
boolean cancelableArg, long long oldVersion, long long newVersion);
};

I think newVersion should be long long rather than any. The only time it is
null is when it is deleted.

Thanks,

Eliot

-- 
Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

Received on Wednesday, 2 November 2011 15:01:18 UTC