This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 22856 - Defaults for the IDBKeyRange static functions arguments should be defined in IDL
Summary: Defaults for the IDBKeyRange static functions arguments should be defined in IDL
Status: VERIFIED FIXED
Alias: None
Product: WebAppsWG
Classification: Unclassified
Component: Indexed Database API (show other bugs)
Version: unspecified
Hardware: All All
: P2 normal
Target Milestone: ---
Assignee: This bug has no owner yet - up for the taking
QA Contact: public-webapps-bugzilla
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-08-01 17:28 UTC by Ms2ger
Modified: 2013-08-01 18:46 UTC (History)
3 users (show)

See Also:


Attachments

Description Ms2ger 2013-08-01 17:28:49 UTC
As follows:

  static IDBKeyRange only (any value);
  static IDBKeyRange lowerBound (any lower, optional boolean open = false);
  static IDBKeyRange upperBound (any upper, optional boolean open = false);
  static IDBKeyRange bound (any lower, any upper, optional boolean lowerOpen = false, optional boolean upperOpen = false);
Comment 1 Joshua Bell 2013-08-01 18:05:41 UTC
Thanks. Fixed in https://dvcs.w3.org/hg/IndexedDB/rev/a659218b30e4

These were already defined clearly in the prose, so this is not a normative change to the spec.
Comment 2 Ms2ger 2013-08-01 18:46:30 UTC
Thanks