diff options
Diffstat (limited to 'Source/WebCore/html/HTMLEmbedElement.idl')
-rw-r--r-- | Source/WebCore/html/HTMLEmbedElement.idl | 29 |
1 files changed, 8 insertions, 21 deletions
diff --git a/Source/WebCore/html/HTMLEmbedElement.idl b/Source/WebCore/html/HTMLEmbedElement.idl index f209e86c5..a50f73566 100644 --- a/Source/WebCore/html/HTMLEmbedElement.idl +++ b/Source/WebCore/html/HTMLEmbedElement.idl @@ -19,29 +19,16 @@ */ [ + CustomCall, CustomNamedSetter, JSCustomGetOwnPropertySlotAndDescriptor, - CustomCall, ] interface HTMLEmbedElement : HTMLElement { -[Reflect] attribute DOMString align; -#if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT -[Reflect] attribute DOMString height; -#else -[Reflect] attribute long height; -#endif -[Reflect] attribute DOMString name; -[Reflect, URL] attribute DOMString src; -[Reflect] attribute DOMString type; -#if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT -[Reflect] attribute DOMString width; -#else -[Reflect] attribute long width; -#endif + [Reflect] attribute DOMString align; + [Reflect] attribute DOMString height; + [Reflect] attribute DOMString name; + [Reflect, URL] attribute USVString src; + [Reflect] attribute DOMString type; + [Reflect] attribute DOMString width; -#if defined(ENABLE_SVG) && ENABLE_SVG -#if !defined(LANGUAGE_OBJECTIVE_C) || !LANGUAGE_OBJECTIVE_C -[CheckSecurityForNode, RaisesException] SVGDocument getSVGDocument(); -#endif -#endif + [CheckSecurityForNode, MayThrowException] Document getSVGDocument(); }; - |