summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLIFrameElement.idl
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLIFrameElement.idl')
-rw-r--r--Userland/Libraries/LibWeb/HTML/HTMLIFrameElement.idl19
1 files changed, 19 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLIFrameElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLIFrameElement.idl
new file mode 100644
index 0000000000..a219b66071
--- /dev/null
+++ b/Userland/Libraries/LibWeb/HTML/HTMLIFrameElement.idl
@@ -0,0 +1,19 @@
+interface HTMLIFrameElement : HTMLElement {
+
+ [Reflect] attribute DOMString src;
+ [Reflect] attribute DOMString srcdoc;
+ [Reflect] attribute DOMString name;
+ [Reflect] attribute DOMString allow;
+ [Reflect] attribute DOMString width;
+ [Reflect] attribute DOMString height;
+ [Reflect=allowfullscreen] attribute boolean allowFullscreen;
+
+ [ReturnNullIfCrossOrigin] readonly attribute Document? contentDocument;
+
+ [Reflect] attribute DOMString align;
+ [Reflect] attribute DOMString scrolling;
+ [Reflect=frameborder] attribute DOMString frameBorder;
+
+ [LegacyNullToEmptyString, Reflect=marginheight] attribute DOMString marginHeight;
+ [LegacyNullToEmptyString, Reflect=marginwidth] attribute DOMString marginWidth;
+};