chromium/third_party/blink/renderer/modules/screen_details/window_screen_details.idl

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

// Permission-gated access to multi-screen information.
// https://w3c.github.io/window-management/
[
    SecureContext,
    ImplementedAs=WindowScreenDetails
] partial interface Window {
  [CallWith=ScriptState, Measure, RaisesException] Promise<ScreenDetails> getScreenDetails();
};