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:
sideshowbarker 2024-09-10 16:21:16 +09:00 committed by Sam Atkins
commit 51528ec677
Notes: github-actions[bot] 2024-09-10 20:17:56 +00:00
21 changed files with 108 additions and 110 deletions

View file

@ -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 = "";
};