Commit c9f372c9 authored by Darwin Huang's avatar Darwin Huang Committed by Commit Bot

Async Clipboard: Remove experimental flag from navigator.clipboard.{read,write}

Enables the Async Clipboard API's read and write functions, with ClipboardItem,
on stable, by updating runtime_enabled_features flags from experimental to stable.

Spec: https://w3c.github.io/clipboard-apis/#async-clipboard-api
Intent to Ship: https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/TssvWe8TzBc

Bug: 150835
Change-Id: I602defa5f300832c2322e3dccb444b4c807311ef
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1567224Reviewed-by: default avatarChris Harrelson <chrishtr@chromium.org>
Reviewed-by: default avatarVictor Costan <pwnall@chromium.org>
Commit-Queue: Victor Costan <pwnall@chromium.org>
Cr-Commit-Position: refs/heads/master@{#665227}
parent 6b141b1d
...@@ -117,7 +117,7 @@ ...@@ -117,7 +117,7 @@
}, },
{ {
name: "AsyncClipboard", name: "AsyncClipboard",
status: "experimental", status: "stable",
}, },
{ {
name: "AudioOutputDevices", name: "AudioOutputDevices",
......
...@@ -845,12 +845,19 @@ interface CharacterData : Node ...@@ -845,12 +845,19 @@ interface CharacterData : Node
interface Clipboard : EventTarget interface Clipboard : EventTarget
attribute @@toStringTag attribute @@toStringTag
method constructor method constructor
method read
method readText method readText
method write
method writeText method writeText
interface ClipboardEvent : Event interface ClipboardEvent : Event
attribute @@toStringTag attribute @@toStringTag
getter clipboardData getter clipboardData
method constructor method constructor
interface ClipboardItem
attribute @@toStringTag
getter types
method constructor
method getType
interface CloseEvent : Event interface CloseEvent : Event
attribute @@toStringTag attribute @@toStringTag
getter code getter code
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment