Index: Source/core/dom/Element.idl |
diff --git a/Source/core/dom/Element.idl b/Source/core/dom/Element.idl |
index 2f6709a5ac8b9f5fa397606860f91eb263082f5f..af10691166b17546637bb1ee61a1f270897683c5 100644 |
--- a/Source/core/dom/Element.idl |
+++ b/Source/core/dom/Element.idl |
@@ -92,7 +92,7 @@ |
// HTML 5 |
HTMLCollection getElementsByClassName(DOMString classNames); |
- [TreatNullAs=NullString, CustomElementCallbacks, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds, RaisesException=Setter] attribute DOMString innerHTML; |
+ [TreatNullAs=NullString, CustomElementCallbacks, PerWorldBindings, LogActivity=SetterOnly, RaisesException=Setter] attribute DOMString innerHTML; |
[TreatNullAs=NullString, CustomElementCallbacks, RaisesException=Setter] attribute DOMString outerHTML; |
[RaisesException, CustomElementCallbacks, MeasureAs=InsertAdjacentElement] Element insertAdjacentElement(DOMString where, Element element); |
@@ -122,10 +122,10 @@ |
// Mozilla version |
const unsigned short ALLOW_KEYBOARD_INPUT = 1; |
- [PerWorldBindings, ActivityLogging=ForAllWorlds, MeasureAs=PrefixedElementRequestFullScreen] void webkitRequestFullScreen([Default=Undefined] optional unsigned short flags); |
+ [PerWorldBindings, LogActivity, LogAllWorlds, MeasureAs=PrefixedElementRequestFullScreen] void webkitRequestFullScreen([Default=Undefined] optional unsigned short flags); |
// W3C version |
- [PerWorldBindings, ActivityLogging=ForAllWorlds, MeasureAs=PrefixedElementRequestFullscreen] void webkitRequestFullscreen(); |
+ [PerWorldBindings, LogActivity, LogAllWorlds, MeasureAs=PrefixedElementRequestFullscreen] void webkitRequestFullscreen(); |
[MeasureAs=PrefixedElementRequestPointerLock] void webkitRequestPointerLock(); |
@@ -144,7 +144,7 @@ |
[RuntimeEnabled=Touch] attribute EventHandler ontouchstart; |
attribute EventHandler onwebkitfullscreenchange; |
attribute EventHandler onwebkitfullscreenerror; |
- [PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventHandler onwheel; |
+ [PerWorldBindings, LogActivity=SetterOnly] attribute EventHandler onwheel; |
}; |
Element implements ParentNode; |