Changes between Version 80 and Version 81 of WebKitIDL
- Timestamp:
- Nov 26, 2012, 11:14:16 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebKitIDL
v80 v81 33 33 - [#V8EnabledAtRuntime V8EnabledAtRuntime(i,m,a)][[br]] 34 34 - [#V8EnabledPerContext V8EnabledPerContext(i,m,a)][[br]] 35 - [#CustomToJSObject CustomToJSObject(i), JSCustomToJSObject(i), V8CustomToJSObject(i) ][[br]]35 - [#CustomToJSObject CustomToJSObject(i), JSCustomToJSObject(i), V8CustomToJSObject(i), SuppressToJSObject(i)][[br]] 36 36 - [#CheckSecurity CheckSecurity(i), DoNotCheckSecurity(m,a), DoNotCheckSecurityOnGetter(a), DoNotCheckSecurityOnSetter(a)][[br]] 37 37 - [#CheckSecurityForNode CheckSecurityForNode(m,a)][[br]] … … 1112 1112 Currently, V8EnabledPerContext is only effective for attributes on DOMWindow. 1113 1113 1114 == [CustomToJSObject](i), [JSCustomToJSObject](i), [V8CustomToJSObject](i) == #CustomToJSObject1114 == [CustomToJSObject](i), [JSCustomToJSObject](i), [V8CustomToJSObject](i), [SuppressToJSObject](i) == #CustomToJSObject 1115 1115 1116 1116 Summary: They allow you to write custom toJS() or toV8(). … … 1146 1146 } 1147 1147 }}} 1148 * With [SuppressToJSObject], even the declarations of toJS()/toV8() are not generated. If you want to make sure that someone never calls toJS()/toV8(), you can use [SuppressToJSObject]. You might want to use [SuppressToJSObject] for mixins, where toJS()/toV8() won't work as expected. 1148 1149 1149 1150 == [CheckSecurity](i), [DoNotCheckSecurity](m,a), [DoNotCheckSecurityOnGetter](a), [DoNotCheckSecurityOnSetter](a) == #CheckSecurity