Changeset 287945 in webkit


Ignore:
Timestamp:
Jan 12, 2022, 12:24:33 PM (4 years ago)
Author:
graouts@webkit.org
Message:

Web Inspector should expose newer CSS Animations, CSS Transitions and Web Animations events
https://bugs.webkit.org/show_bug.cgi?id=235117

Reviewed by Joseph Pecoraro.

Came across this while working on bug 235113, the more recent events added to
CSS Animations, CSS Transitions and Web Animations are not used in the Web Inspector.

  • UserInterface/Models/ScriptTimelineRecord.js:

(WI.ScriptTimelineRecord.EventType.displayName):

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r287934 r287945  
     12022-01-12  Antoine Quint  <graouts@webkit.org>
     2
     3        Web Inspector should expose newer CSS Animations, CSS Transitions and Web Animations events
     4        https://bugs.webkit.org/show_bug.cgi?id=235117
     5
     6        Reviewed by Joseph Pecoraro.
     7
     8        Came across this while working on bug 235113, the more recent events added to
     9        CSS Animations, CSS Transitions and Web Animations are not used in the Web Inspector.
     10
     11        * UserInterface/Models/ScriptTimelineRecord.js:
     12        (WI.ScriptTimelineRecord.EventType.displayName):
     13
    1142022-01-12  Razvan Caliman  <rcaliman@apple.com>
    215
  • trunk/Source/WebInspectorUI/UserInterface/Models/ScriptTimelineRecord.js

    r287787 r287945  
    221221        nameMap.set("addstream", "Add Stream");
    222222        nameMap.set("addtrack", "Add Track");
     223        nameMap.set("animationcancel", "Animation Cancel");
    223224        nameMap.set("animationend", "Animation End");
    224225        nameMap.set("animationiteration", "Animation Iteration");
     
    232233        nameMap.set("beforepaste", "Before Paste");
    233234        nameMap.set("beforeunload", "Before Unload");
     235        nameMap.set("cancel", "Animation Cancel");
    234236        nameMap.set("canplay", "Can Play");
    235237        nameMap.set("canplaythrough", "Can Play Through");
     
    252254        nameMap.set("dragstart", "Drag Start");
    253255        nameMap.set("durationchange", "Duration Change");
     256        nameMap.set("finish", "Animation Finish");
    254257        nameMap.set("focusin", "Focus In");
    255258        nameMap.set("focusout", "Focus Out");
     
    293296        nameMap.set("ratechange", "Rate Change");
    294297        nameMap.set("readystatechange", "Ready State Change");
     298        nameMap.set("remove", "Animation Remove");
    295299        nameMap.set("removesourcebuffer", "Remove Source Buffer");
    296300        nameMap.set("removestream", "Remove Stream");
     
    315319        nameMap.set("touchmove", "Touch Move");
    316320        nameMap.set("touchstart", "Touch Start");
     321        nameMap.set("transitioncancel", "Transition Cancel");
    317322        nameMap.set("transitionend", "Transition End");
     323        nameMap.set("transitionrun", "Transition Run");
     324        nameMap.set("transitionstart", "Transition Start");
    318325        nameMap.set("updateend", "Update End");
    319326        nameMap.set("updateready", "Update Ready");
Note: See TracChangeset for help on using the changeset viewer.