blob: 22a024719a35dd7293252cec011e3c5cfdd71697 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://w3c.github.io/clipboard-apis/#clipboard-interface
[SecureContext]
interface Clipboard : EventTarget {
[CallWith=ScriptState] Promise<DataTransfer> read();
[CallWith=ScriptState] Promise<DOMString> readText();
[CallWith=ScriptState] Promise<void> write(DataTransfer data);
[CallWith=ScriptState] Promise<void> writeText(DOMString data);
};