mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 23:27:43 +00:00
LibWeb: Replace ad-hoc EventHandler type with callback function typedef
This commit is contained in:
parent
1c4f128fd1
commit
f45d361f03
12 changed files with 15 additions and 23 deletions
|
@ -1,4 +1,5 @@
|
|||
#import <HTML/DOMStringMap.idl>
|
||||
#import <DOM/EventHandler.idl>
|
||||
|
||||
interface HTMLElement : Element {
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#import <DOM/EventTarget.idl>
|
||||
#import <DOM/EventHandler.idl>
|
||||
|
||||
interface MessagePort : EventTarget {
|
||||
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
#import <DOM/EventTarget.idl>
|
||||
#import <DOM/EventHandler.idl>
|
||||
|
||||
[Exposed=(Window)]
|
||||
interface Worker : EventTarget {
|
||||
constructor(DOMString scriptURL, optional WorkerOptions options = {});
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#import <DOM/EventTarget.idl>
|
||||
#import <DOM/EventHandler.idl>
|
||||
#import <HTML/WorkerLocation.idl>
|
||||
#import <HTML/WorkerNavigator.idl>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue