andersca | 4456f58 | 2006-05-18 08:20:57 +0000 | [diff] [blame] | 1 | /* |
darin@apple.com | d9786f4 | 2010-06-18 16:47:54 +0000 | [diff] [blame] | 2 | * Copyright (C) 2006, 2007, 2009, 2010 Apple Inc. All rights reserved. |
weinig | 52d6ba3 | 2006-10-06 21:13:09 +0000 | [diff] [blame] | 3 | * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
andersca | 4456f58 | 2006-05-18 08:20:57 +0000 | [diff] [blame] | 4 | * |
| 5 | * This library is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU Library General Public |
| 7 | * License as published by the Free Software Foundation; either |
| 8 | * version 2 of the License, or (at your option) any later version. |
| 9 | * |
| 10 | * This library is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 | * Library General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU Library General Public License |
| 16 | * along with this library; see the file COPYING.LIB. If not, write to |
ddkilzer | c8eccec | 2007-09-26 02:29:57 +0000 | [diff] [blame] | 17 | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 18 | * Boston, MA 02110-1301, USA. |
andersca | 4456f58 | 2006-05-18 08:20:57 +0000 | [diff] [blame] | 19 | */ |
| 20 | |
commit-queue@webkit.org | a4d60d1 | 2012-10-12 11:44:58 +0000 | [diff] [blame] | 21 | [ |
commit-queue@webkit.org | 9ecdae1 | 2017-07-10 18:27:26 +0000 | [diff] [blame] | 22 | Plugin |
commit-queue@webkit.org | a4d60d1 | 2012-10-12 11:44:58 +0000 | [diff] [blame] | 23 | ] interface HTMLAppletElement : HTMLElement { |
| 24 | [Reflect] attribute DOMString align; |
| 25 | [Reflect] attribute DOMString alt; |
| 26 | [Reflect] attribute DOMString archive; |
| 27 | [Reflect] attribute DOMString code; |
cdumez@apple.com | ff0ba85 | 2016-09-19 23:45:24 +0000 | [diff] [blame] | 28 | [Reflect, URL] attribute USVString codeBase; |
commit-queue@webkit.org | a4d60d1 | 2012-10-12 11:44:58 +0000 | [diff] [blame] | 29 | [Reflect] attribute DOMString height; |
cdumez@apple.com | ff0ba85 | 2016-09-19 23:45:24 +0000 | [diff] [blame] | 30 | [Reflect] attribute unsigned long hspace; |
commit-queue@webkit.org | a4d60d1 | 2012-10-12 11:44:58 +0000 | [diff] [blame] | 31 | [Reflect] attribute DOMString name; |
cdumez@apple.com | ff0ba85 | 2016-09-19 23:45:24 +0000 | [diff] [blame] | 32 | [Reflect, URL] attribute USVString object; |
| 33 | [Reflect] attribute unsigned long vspace; |
commit-queue@webkit.org | a4d60d1 | 2012-10-12 11:44:58 +0000 | [diff] [blame] | 34 | [Reflect] attribute DOMString width; |
commit-queue@webkit.org | cab10ce | 2012-10-12 06:10:17 +0000 | [diff] [blame] | 35 | }; |