mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-05 00:56:39 +00:00
LibWeb: Normalize all WebIDL definition lines to four leading spaces
This change takes all existing WebIDL files in the repo that had definition lines without four leading spaces, and fixes them so they have four leading spaces.
This commit is contained in:
parent
f9282f65d3
commit
51528ec677
Notes:
github-actions[bot]
2024-09-10 20:17:56 +00:00
Author: https://github.com/sideshowbarker
Commit: 51528ec677
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1358
Reviewed-by: https://github.com/AtkinsSJ ✅
21 changed files with 108 additions and 110 deletions
|
@ -3,13 +3,13 @@
|
|||
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#hashchangeevent
|
||||
[Exposed=Window]
|
||||
interface HashChangeEvent : Event {
|
||||
constructor(DOMString type, optional HashChangeEventInit eventInitDict = {});
|
||||
constructor(DOMString type, optional HashChangeEventInit eventInitDict = {});
|
||||
|
||||
readonly attribute USVString oldURL;
|
||||
readonly attribute USVString newURL;
|
||||
readonly attribute USVString oldURL;
|
||||
readonly attribute USVString newURL;
|
||||
};
|
||||
|
||||
dictionary HashChangeEventInit : EventInit {
|
||||
USVString oldURL = "";
|
||||
USVString newURL = "";
|
||||
USVString oldURL = "";
|
||||
USVString newURL = "";
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue