1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:07:45 +00:00

LibWeb: Correct spelling of UserNavigationTiming enum

With luck we can Naviagate these typo-filled waters.
This commit is contained in:
Andrew Kaster 2023-09-20 22:21:20 -06:00 committed by Andrew Kaster
parent cfba182b61
commit 25ffe6becb
2 changed files with 4 additions and 4 deletions

View file

@ -31,7 +31,7 @@ enum class CSPNavigationType {
};
// https://html.spec.whatwg.org/multipage/browsing-the-web.html#user-navigation-involvement
enum class UserNaviagationInvolvement {
enum class UserNavigationInvolvement {
BrowserUI,
Activation,
None,
@ -123,7 +123,7 @@ public:
Optional<SerializationRecord> navigation_api_state = {},
Optional<Vector<XHR::FormDataEntry>&> form_data_entry_list = {},
ReferrerPolicy::ReferrerPolicy = ReferrerPolicy::ReferrerPolicy::EmptyString,
UserNaviagationInvolvement = UserNaviagationInvolvement::None);
UserNavigationInvolvement = UserNavigationInvolvement::None);
WebIDL::ExceptionOr<void> navigate_to_a_fragment(AK::URL const&, HistoryHandlingBehavior, String navigation_id);