Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(388)

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/interfaces/clipboard.idl

Issue 2695593006: Initial stub version of Async Clipboard API (Closed)
Patch Set: Expected layout tests results for mac Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 [SecureContext]
2 interface Clipboard : EventTarget {
3 Promise<DataTransfer> read();
4 Promise<DOMString> readText();
5
6 Promise<void> write(DataTransfer data);
7 Promise<void> writeText(DOMString data);
8 };
9
10 [SecureContext]
11 partial interface Navigator {
12 [SameObject] readonly attribute Clipboard clipboard;
13 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698