[Bug 25263] New: TextTrackCue interface is missing track property

https://www.w3.org/Bugs/Public/show_bug.cgi?id=25263

            Bug ID: 25263
           Summary: TextTrackCue interface is missing track property
           Product: HTML WG
           Version: unspecified
          Hardware: PC
               URL: http://www.w3.org/html/wg/drafts/html/CR/embedded-cont
                    ent-0.html#texttrackcue
                OS: Linux
            Status: NEW
          Keywords: CR
          Severity: normal
          Priority: P3
         Component: HTML5 spec
          Assignee: dave.null@w3.org
          Reporter: plh@w3.org
        QA Contact: public-html-bugzilla@w3.org
                CC: mike@w3.org, public-html-admin@w3.org,
                    public-html-wg-issue-tracking@w3.org

The following WebIDL code:
[[
interface TextTrackCue : EventTarget {
           attribute DOMString id;
           attribute double startTime;
           attribute double endTime;
           attribute boolean pauseOnExit;

           attribute EventHandler onenter;
           attribute EventHandler onexit;
};
]]
http://www.w3.org/html/wg/drafts/html/CR/embedded-content-0.html#texttrackcue

is missing the track attribute:
[[
  readonly attribute TextTrack? track;
]]
http://www.w3.org/html/wg/drafts/html/master/embedded-content.html#texttrackcue

The rest of the section talks about the track attribute thus my assumption that
the attribute is simply missing in the interface.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Friday, 4 April 2014 18:45:20 UTC