From 1bf1084f2b10c3b47fd1a588d85d21ed0eb41d0c Mon Sep 17 00:00:00 2001 From: Lorry Tar Creator Date: Tue, 27 Jun 2017 06:07:23 +0000 Subject: webkitgtk-2.16.5 --- Source/WebCore/html/HTMLIFrameElement.idl | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) (limited to 'Source/WebCore/html/HTMLIFrameElement.idl') 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(); }; - -- cgit v1.2.1