NavigatorOnLine.h 371 B

123456789101112131415161718
  1. /*
  2. * Copyright (c) 2022, Andrew Kaster <akaster@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. namespace Web::HTML {
  8. class NavigatorOnLineMixin {
  9. public:
  10. // https://html.spec.whatwg.org/multipage/system-state.html#dom-navigator-online
  11. // FIXME: Reflect actual connectivity status.
  12. bool on_line() const { return true; }
  13. };
  14. }