15c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)/*
25c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Copyright (C) 2006, 2007, 2010 Apple Inc. All rights reserved.
35c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
45c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
55c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * This library is free software; you can redistribute it and/or
65c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * modify it under the terms of the GNU Library General Public
75c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * License as published by the Free Software Foundation; either
85c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * version 2 of the License, or (at your option) any later version.
95c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
105c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * This library is distributed in the hope that it will be useful,
115c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * but WITHOUT ANY WARRANTY; without even the implied warranty of
125c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
135c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Library General Public License for more details.
145c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
155c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * You should have received a copy of the GNU Library General Public License
165c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * along with this library; see the file COPYING.LIB.  If not, write to
175c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
185c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Boston, MA 02110-1301, USA.
195c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) */
205c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
215c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)[
22a854de003a23bf3c7f95ec0f8154ada64092ff5cTorne (Richard Coles)    Custom=LegacyCallAsFunction,
2353e740f4a82e17f3ae59772501622dc354e42336Torne (Richard Coles)] interface HTMLEmbedElement : HTMLElement {
2451b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)    [Reflect] attribute DOMString align;
2551b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)    [Reflect] attribute DOMString height;
2651b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)    [Reflect] attribute DOMString name;
27197021e6b966cfb06891637935ef33fff06433d1Ben Murdoch    [Reflect, URL] attribute DOMString src;
2851b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)    [Reflect] attribute DOMString type;
2951b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)    [Reflect] attribute DOMString width;
3051b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)    [Custom, NotEnumerable] getter boolean (unsigned long index);
3151b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)    [Custom] setter boolean (unsigned long index, Node value);
3251b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)    [Custom, NotEnumerable] getter Node (DOMString name);
3351b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)    [Custom] setter Node (DOMString name, Node value);
3453e740f4a82e17f3ae59772501622dc354e42336Torne (Richard Coles)
3509380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    [CheckSecurity=Node, RaisesException] Document getSVGDocument();
3607a852d8c1953036774d8f3b65d18dcfea3bb4a2Ben Murdoch
3707a852d8c1953036774d8f3b65d18dcfea3bb4a2Ben Murdoch    [Reflect, RuntimeEnabled=SubresourceIntegrity] attribute DOMString integrity;
385c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)};
39