diff options
Diffstat (limited to 'Source/WebCore/html/HTMLIFrameElement.idl')
-rw-r--r-- | Source/WebCore/html/HTMLIFrameElement.idl | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/Source/WebCore/html/HTMLIFrameElement.idl b/Source/WebCore/html/HTMLIFrameElement.idl index 7a715825d..fc8d0eee4 100644 --- a/Source/WebCore/html/HTMLIFrameElement.idl +++ b/Source/WebCore/html/HTMLIFrameElement.idl @@ -22,27 +22,22 @@ interface HTMLIFrameElement : HTMLElement { [Reflect] attribute DOMString align; [Reflect] attribute DOMString frameBorder; [Reflect] attribute DOMString height; - [Reflect] attribute DOMString longDesc; - [Reflect] attribute DOMString marginHeight; - [Reflect] attribute DOMString marginWidth; + [Reflect, URL] attribute USVString longDesc; + [Reflect, TreatNullAs=EmptyString] attribute DOMString marginHeight; + [Reflect, TreatNullAs=EmptyString] attribute DOMString marginWidth; [Reflect] attribute DOMString name; - [Reflect] attribute DOMString sandbox; - [Reflect, Conditional=IFRAME_SEAMLESS] attribute boolean seamless; + + [PutForwards=value] readonly attribute DOMTokenList sandbox; + [Reflect] attribute boolean allowFullscreen; + [Reflect] attribute DOMString scrolling; - [Reflect, URL] attribute DOMString src; + [Reflect, URL] attribute USVString src; [Reflect] attribute DOMString srcdoc; [Reflect] attribute DOMString width; - // Introduced in DOM Level 2: [CheckSecurityForNode] readonly attribute Document contentDocument; - // Extensions readonly attribute DOMWindow contentWindow; -#if defined(ENABLE_SVG) && ENABLE_SVG -#if !defined(LANGUAGE_OBJECTIVE_C) || !LANGUAGE_OBJECTIVE_C - [CheckSecurityForNode, RaisesException] SVGDocument getSVGDocument(); -#endif -#endif + [CheckSecurityForNode, MayThrowException] Document getSVGDocument(); }; - |