Changeset 267005 in webkit


Ignore:
Timestamp:
Sep 13, 2020 4:50:28 PM (4 years ago)
Author:
weinig@apple.com
Message:

FIXME in MouseEventInit.idl is incorrect (we do support unsigned short buttons = 0)
https://bugs.webkit.org/show_bug.cgi?id=216460

Reviewed by Darin Adler.

  • dom/MouseEventInit.idl:

Removes incorrect FIXME, adds spec link, and updates formatting to match spec.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r267003 r267005  
     12020-09-13  Sam Weinig  <weinig@apple.com>
     2
     3        FIXME in MouseEventInit.idl is incorrect (we do support unsigned short buttons = 0)
     4        https://bugs.webkit.org/show_bug.cgi?id=216460
     5
     6        Reviewed by Darin Adler.
     7
     8        * dom/MouseEventInit.idl:
     9        Removes incorrect FIXME, adds spec link, and updates formatting to match spec.
     10
    1112020-09-13  Aditya Keerthi  <akeerthi@apple.com>
    212
  • trunk/Source/WebCore/dom/MouseEventInit.idl

    r246103 r267005  
    2424 */
    2525
     26// https://w3c.github.io/uievents/#idl-mouseeventinit
    2627dictionary MouseEventInit : EventModifierInit {
    2728    long screenX = 0;
     
    2930    long clientX = 0;
    3031    long clientY = 0;
     32
    3133    short button = 0;
    3234    unsigned short buttons = 0;
    33 
    34     // FIXME: We need to support the following member.
    35     // unsigned short buttons = 0;
    36 
    3735    EventTarget? relatedTarget = null;
    3836};
Note: See TracChangeset for help on using the changeset viewer.