HistoryHandlingBehavior.h 518 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. namespace Web::HTML {
  8. // https://html.spec.whatwg.org/multipage/browsing-the-web.html#history-handling-behavior
  9. enum class HistoryHandlingBehavior {
  10. Default, // FIXME: This is no longer part of the spec. Remove.
  11. EntryUpdate, // FIXME: This is no longer part of the spec. Remove.
  12. Reload, // FIXME: This is no longer part of the spec. Remove.
  13. Push,
  14. Replace,
  15. };
  16. }