chromium/third_party/blink/renderer/core/fullscreen/fullscreen_options.idl

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// https://fullscreen.spec.whatwg.org/

enum FullscreenNavigationUI {
  "auto",
  "show",
  "hide"
};

dictionary FullscreenOptions {
  FullscreenNavigationUI navigationUI = "auto";

  // Specifies a screen for element fullscreen requests.
  // https://w3c.github.io/window-management/
  Screen screen;
};