HistoryHandlingBehavior.h 305 B

1234567891011121314151617
  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. Push,
  11. Replace,
  12. };
  13. }