[Bug 7685] New: States of ApplicationCache objects are inconsistent with application caches

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

           Summary: States of ApplicationCache objects are inconsistent with
                    application caches
           Product: HTML WG
           Version: unspecified
          Platform: PC
               URL: http://dev.w3.org/html5/spec/Overview.html#application-
                    cache-api
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: HTML5 spec bugs
        AssignedTo: dave.null@w3.org
        ReportedBy: nikunj.mehta@oracle.com
         QAContact: public-html-bugzilla@w3.org
                CC: ian@hixie.ch, mike@w3.org, public-html@w3.org


The spec lists only four states of an application cache - idle, checking,
downloading, and obsolete. However, an ApplicationCache object has more states.
[[
  const unsigned short UNCACHED = 0;
  const unsigned short IDLE = 1;
  const unsigned short CHECKING = 2;
  const unsigned short DOWNLOADING = 3;
  const unsigned short UPDATEREADY = 4;
  const unsigned short OBSOLETE = 5;
  readonly attribute unsigned short status;
]]

There are two states here that are not referenced in the spec text - uncached
and updateready. uncached is never mentioned in the text except in the IDL.
updateready is mentioned as an event but appears nowhere as a status.


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

Received on Monday, 21 September 2009 17:08:32 UTC