summaryrefslogtreecommitdiff
path: root/Source/WebCore/html/HTMLEmbedElement.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/HTMLEmbedElement.idl
parent32761a6cee1d0dee366b885b7b9c777e67885688 (diff)
downloadWebKitGtk-tarball-master.tar.gz
Diffstat (limited to 'Source/WebCore/html/HTMLEmbedElement.idl')
-rw-r--r--Source/WebCore/html/HTMLEmbedElement.idl29
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();
};
-