1/* 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> 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 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 18 * Boston, MA 02110-1301, USA. 19 */ 20 21module html { 22 23 interface [ 24 GenerateConstructor, 25 DelegatingPutFunction, 26 DelegatingGetOwnPropertySlot, 27 CustomCall, 28 HasOverridingNameGetter, 29 InterfaceUUID=9b5cb4a8-c156-4b55-afdb-c60938a4d1b1, 30 ImplementationUUID=56544372-675e-40dd-ba39-fa708a4c7678 31 ] HTMLAppletElement : HTMLElement { 32 attribute [ConvertNullToNullString, Reflect] DOMString align; 33 attribute [ConvertNullToNullString, Reflect] DOMString alt; 34 attribute [ConvertNullToNullString, Reflect] DOMString archive; 35 attribute [ConvertNullToNullString, Reflect] DOMString code; 36 attribute [ConvertNullToNullString, Reflect=codebase] DOMString codeBase; 37 attribute [ConvertNullToNullString, Reflect] DOMString height; 38#if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT 39 attribute [ConvertNullToNullString, Reflect] DOMString hspace; 40#else 41 attribute [ConvertFromString] long hspace; 42#endif 43 attribute [ConvertNullToNullString, Reflect] DOMString name; 44 attribute [ConvertNullToNullString, Reflect] DOMString object; 45#if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT 46 attribute [ConvertNullToNullString, Reflect] DOMString vspace; 47#else 48 attribute [ConvertFromString] long vspace; 49#endif 50 attribute [ConvertNullToNullString, Reflect] DOMString width; 51 }; 52 53} 54