From 4d8edf65b592a87df86e53dd8c4ed22cd9b08546 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 1 Jan 2023 17:45:17 +0100 Subject: [PATCH] LibWeb: Add HistoryHandlingBehavior::Push Also add FIXMEs about removing no-longer-used enum values. --- Userland/Libraries/LibWeb/HTML/HistoryHandlingBehavior.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Userland/Libraries/LibWeb/HTML/HistoryHandlingBehavior.h b/Userland/Libraries/LibWeb/HTML/HistoryHandlingBehavior.h index 5c201854c4..9d4fc3fdc0 100644 --- a/Userland/Libraries/LibWeb/HTML/HistoryHandlingBehavior.h +++ b/Userland/Libraries/LibWeb/HTML/HistoryHandlingBehavior.h @@ -10,9 +10,10 @@ namespace Web::HTML { // https://html.spec.whatwg.org/multipage/browsing-the-web.html#history-handling-behavior enum class HistoryHandlingBehavior { - Default, - EntryUpdate, - Reload, + Default, // FIXME: This is no longer part of the spec. Remove. + EntryUpdate, // FIXME: This is no longer part of the spec. Remove. + Reload, // FIXME: This is no longer part of the spec. Remove. + Push, Replace, };