blob: 6801064dcd8a1706131fe1e166a7a905053334e5 [file] [log] [blame]
andersca4456f582006-05-18 08:20:57 +00001/*
darin@apple.comd9786f42010-06-18 16:47:54 +00002 * Copyright (C) 2006, 2007, 2009, 2010 Apple Inc. All rights reserved.
weinig52d6ba32006-10-06 21:13:09 +00003 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
andersca4456f582006-05-18 08:20:57 +00004 *
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
ddkilzerc8eccec2007-09-26 02:29:57 +000017 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
andersca4456f582006-05-18 08:20:57 +000019 */
20
commit-queue@webkit.orga4d60d12012-10-12 11:44:58 +000021[
commit-queue@webkit.org9ecdae12017-07-10 18:27:26 +000022 Plugin
commit-queue@webkit.orga4d60d12012-10-12 11:44:58 +000023] 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.comff0ba852016-09-19 23:45:24 +000028 [Reflect, URL] attribute USVString codeBase;
commit-queue@webkit.orga4d60d12012-10-12 11:44:58 +000029 [Reflect] attribute DOMString height;
cdumez@apple.comff0ba852016-09-19 23:45:24 +000030 [Reflect] attribute unsigned long hspace;
commit-queue@webkit.orga4d60d12012-10-12 11:44:58 +000031 [Reflect] attribute DOMString name;
cdumez@apple.comff0ba852016-09-19 23:45:24 +000032 [Reflect, URL] attribute USVString object;
33 [Reflect] attribute unsigned long vspace;
commit-queue@webkit.orga4d60d12012-10-12 11:44:58 +000034 [Reflect] attribute DOMString width;
commit-queue@webkit.orgcab10ce2012-10-12 06:10:17 +000035};