[Bug 16935] New: Update WebIDL syntax in Level 1

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

           Summary: Update WebIDL syntax in Level 1
           Product: WebAppsWG
           Version: unspecified
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Selectors API
        AssignedTo: lachlan.hunt@lachy.id.au
        ReportedBy: plh@w3.org
         QAContact: public-webapps-bugzilla@w3.org
                CC: lachlan.hunt@lachy.id.au, mike@w3.org


module dom {
  [Supplemental, NoInterfaceObject]
  interface NodeSelector {
    Element   querySelector(in DOMString selectors);
    NodeList  querySelectorAll(in DOMString selectors);
  };
  Document implements NodeSelector;
  DocumentFragment implements NodeSelector;
  Element implements NodeSelector;
};

should probably read

[NoInterfaceObject]
interface NodeSelector {
    Element   querySelector(in DOMString selectors);
    NodeList  querySelectorAll(in DOMString selectors);
};
Document implements NodeSelector;
DocumentFragment implements NodeSelector;
Element implements NodeSelector;

-- 
Configure bugmail: https://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 Friday, 4 May 2012 17:03:23 UTC