mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 08:37:35 +00:00
LibWeb: Switch IDL from UseNewAKString to UseDeprecatedAKString
NewAKString is effectively the default for any new IDL interface, so let's mark this as the default behavior. It also makes it much easier to figure out whatever interfaces are still left to port over to new AK String.
This commit is contained in:
parent
198591cc20
commit
d4a890080d
146 changed files with 157 additions and 158 deletions
|
@ -1,6 +1,6 @@
|
|||
#import <UIEvents/UIEvent.idl>
|
||||
|
||||
[Exposed=Window, UseNewAKString]
|
||||
[Exposed=Window]
|
||||
interface FocusEvent : UIEvent {
|
||||
|
||||
constructor(DOMString type, optional FocusEventInit eventInitDict = {});
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#import <UIEvents/EventModifier.idl>
|
||||
|
||||
// https://www.w3.org/TR/uievents/#idl-keyboardevent
|
||||
[Exposed=Window, UseNewAKString]
|
||||
[Exposed=Window]
|
||||
interface KeyboardEvent : UIEvent {
|
||||
|
||||
constructor(DOMString type, optional KeyboardEventInit eventInitDict = {});
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// https://w3c.github.io/uievents/#mouseevent
|
||||
[Exposed=Window, UseNewAKString]
|
||||
[Exposed=Window]
|
||||
interface MouseEvent : UIEvent {
|
||||
|
||||
readonly attribute double offsetX;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#import <DOM/Event.idl>
|
||||
|
||||
// https://w3c.github.io/uievents/#uievent
|
||||
[Exposed=Window, UseNewAKString]
|
||||
[Exposed=Window]
|
||||
interface UIEvent : Event {
|
||||
constructor(DOMString type, optional UIEventInit eventInitDict = {});
|
||||
readonly attribute Window? view;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#import <UIEvents/MouseEvent.idl>
|
||||
|
||||
// https://www.w3.org/TR/uievents/#idl-wheelevent
|
||||
[Exposed=Window, UseNewAKString]
|
||||
[Exposed=Window]
|
||||
interface WheelEvent : MouseEvent {
|
||||
// DeltaModeCode
|
||||
const unsigned long DOM_DELTA_PIXEL = 0x00;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue