summaryrefslogtreecommitdiff
path: root/Source/WebCore/html/HTMLIFrameElement.idl
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@lorry>2017-06-27 06:07:23 +0000
committerLorry Tar Creator <lorry-tar-importer@lorry>2017-06-27 06:07:23 +0000
commit1bf1084f2b10c3b47fd1a588d85d21ed0eb41d0c (patch)
tree46dcd36c86e7fbc6e5df36deb463b33e9967a6f7 /Source/WebCore/html/HTMLIFrameElement.idl
parent32761a6cee1d0dee366b885b7b9c777e67885688 (diff)
downloadWebKitGtk-tarball-master.tar.gz
Diffstat (limited to 'Source/WebCore/html/HTMLIFrameElement.idl')
-rw-r--r--Source/WebCore/html/HTMLIFrameElement.idl23
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();
};
-