Index: core/html/HTMLFrameElement.idl |
diff --git a/core/html/HTMLFrameElement.idl b/core/html/HTMLFrameElement.idl |
index 82cb3b254ad9c11fe074f2b05cb0db6c463c43a8..ed43c3c69e4132f6645213f5c79255d3777529e4 100644 |
--- a/core/html/HTMLFrameElement.idl |
+++ b/core/html/HTMLFrameElement.idl |
@@ -27,7 +27,7 @@ interface HTMLFrameElement : HTMLElement { |
[Reflect] attribute DOMString name; |
[Reflect] attribute boolean noResize; |
[Reflect] attribute DOMString scrolling; |
- [Reflect, URL, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute DOMString src; |
+ [Reflect, URL, LogActivity=SetterOnly] attribute DOMString src; |
// Introduced in DOM Level 2: |
[CheckSecurity=Node] readonly attribute Document contentDocument; |
@@ -37,8 +37,6 @@ interface HTMLFrameElement : HTMLElement { |
[CheckSecurity=Node, RaisesException] Document getSVGDocument(); |
- [TreatNullAs=NullString, Custom=Setter, MeasureAs=HTMLFrameElementLocation] attribute DOMString location; |
- |
- readonly attribute long width; |
- readonly attribute long height; |
+ [MeasureAs=HTMLFrameElementWidth] readonly attribute long width; |
+ [MeasureAs=HTMLFrameElementHeight] readonly attribute long height; |
}; |