Changes between Version 133 and Version 134 of WebKitIDL
- Timestamp:
- Aug 19, 2015, 7:43:29 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebKitIDL
v133 v134 55 55 - [#EnabledAtRuntime EnabledAtRuntime(i)][[br]] 56 56 - [#RaisesException RaisesException(m) GetterRaisesException(a), SetterRaisesException(a)][[br]] 57 - [#OverrideBuiltins OverrideBuiltins(i)][[br]] 57 58 58 59 = Overview = #Overview … … 1538 1539 1539 1540 See [ConstructorRaisesException] to specify that a constructor throws exceptions. 1541 1542 == `[OverrideBuiltins]`(i) == #OverrideBuiltins 1543 1544 Standard: [https://heycam.github.io/webidl/#OverrideBuiltins The spec of OverrideBuiltins] 1545 1546 Summary: Controls if named properties should override own properties or not. 1547 1548 Usage: [OverrideBuiltins] can be specified on interfaces that have a named property getter. The IDL looks like: 1549 {{{ 1550 [OverrideBuiltins] 1551 interface XXX { 1552 readonly attribute unsigned long length; 1553 getter DOMString lookup(DOMString key); 1554 }; 1555 }}}