From d5da20c795bed1d8ed19f5c3dd2615ac328bea1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vojt=C4=9Bch=20Pej=C5=A1a?= Date: Wed, 22 Apr 2020 16:42:24 +0200 Subject: [PATCH] Remove old ClipboardEvent webidl --- .../webidls/enabled/ClipboardEvent.webidl | 23 ------------------- 1 file changed, 23 deletions(-) delete mode 100644 crates/web-sys/webidls/enabled/ClipboardEvent.webidl diff --git a/crates/web-sys/webidls/enabled/ClipboardEvent.webidl b/crates/web-sys/webidls/enabled/ClipboardEvent.webidl deleted file mode 100644 index 8fe8a493..00000000 --- a/crates/web-sys/webidls/enabled/ClipboardEvent.webidl +++ /dev/null @@ -1,23 +0,0 @@ -/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * For more information on this interface please see - * http://dev.w3.org/2006/webapi/clipops/#x5-clipboard-event-interfaces - * - * Copyright © 2012 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C - * liability, trademark and document use rules apply. - */ - -[Constructor(DOMString type, optional ClipboardEventInit eventInitDict)] -interface ClipboardEvent : Event -{ - readonly attribute DataTransfer? clipboardData; -}; - -dictionary ClipboardEventInit : EventInit -{ - DOMString data = ""; - DOMString dataType = ""; -};