[Bug 27709] New: Dictionary MouseEventInit uses keyword attribute for its members

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

            Bug ID: 27709
           Summary: Dictionary MouseEventInit uses keyword attribute for
                    its members
           Product: WebAppsWG
           Version: unspecified
          Hardware: All
                OS: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Pointer Lock
          Assignee: scheib@chromium.org
          Reporter: rainer.schuster@gmail.com
        QA Contact: public-webapps-bugzilla@w3.org
                CC: mike@w3.org, public-webapps@w3.org

The specification states

partial dictionary MouseEventInit {
    attribute long movementX = 0;
    attribute long movementY = 0;
};

but it should be without the "attribute" keyword

partial dictionary MouseEventInit {
    long movementX = 0;
    long movementY = 0;
};

-- 
You are receiving this mail because:
You are on the CC list for the bug.

Received on Saturday, 27 December 2014 19:53:47 UTC