Chromium Code Reviews| Index: third_party/WebKit/Source/core/clipboard/DataTransfer.idl |
| diff --git a/third_party/WebKit/Source/core/clipboard/DataTransfer.idl b/third_party/WebKit/Source/core/clipboard/DataTransfer.idl |
| index 71ab1f72c672d5f180e5a4c8277d7260dedf7d5b..6129bba0656ce773a0ccd3a9ba78e52276909a58 100644 |
| --- a/third_party/WebKit/Source/core/clipboard/DataTransfer.idl |
| +++ b/third_party/WebKit/Source/core/clipboard/DataTransfer.idl |
| @@ -39,9 +39,7 @@ |
| void setDragImage(Element image, long x, long y); |
| /* old interface */ |
| - // TODO(foolip): Switch to FrozenArray<DOMString> when the spec is fixed: |
| - // https://github.com/whatwg/html/issues/11 |
| - [SameObject] readonly attribute DOMString[] types; |
| + readonly attribute FrozenArray<DOMString> types; |
|
foolip
2017/05/12 07:51:42
This will require some tests, can you update Layou
|
| DOMString getData(DOMString format); |
| void setData(DOMString format, DOMString data); |
| void clearData(optional DOMString format); |