Changes between Version 119 and Version 120 of WebKitIDL
- Timestamp:
- Jun 4, 2013, 8:26:51 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebKitIDL
v119 v120 54 54 - [#ImplementationNamespace ImplementationNamespace(i)][[br]] 55 55 - [#SkipVTableValidation SkipVTableValidation(i), ImplementationLacksVTable(i),][[br]] 56 - [#NoInterfaceObject NoInterfaceObject(i) ][[br]]56 - [#NoInterfaceObject NoInterfaceObject(i), GlobalContext(i)][[br]] 57 57 - [#EnabledAtRuntime EnabledAtRuntime(i)][[br]] 58 58 … … 1435 1435 }}} 1436 1436 1437 == `[NoInterfaceObject]`(i) == #NoInterfaceObject1437 == `[NoInterfaceObject]`(i), `[GlobalContext]`(i) == #NoInterfaceObject 1438 1438 1439 1439 Standard: [http://dev.w3.org/2006/webapi/WebIDL/#NoInterfaceObject The spec of NoInterfaceObject] … … 1444 1444 * is a callback interface that has constants declared on it, or 1445 1445 * is a non-callback interface that is not declared with the `[NoInterfaceObject]` extended attribute, 1446 a corresponding property is added on the global Window object by the bindings generator. 1447 1448 Usage: `[NoInterfaceObject]` can be specified on interfaces. 1446 a corresponding property is automatically added on the ECMAScript global object by the bindings generator. 1447 1448 The `[GlobalContext=WindowOnly|WorkerOnly|WindowAndWorker]` is a WebKit-specific extended attribute that may only be used on interfaces that do not have the `[NoInterfaceObject]` attribute. Three values are allowed for this attribute: 1449 * `WindowOnly`: A corresponding attribute (global constructor) will be automatically added on the `Window` interface (default if the extended attribute is omitted). 1450 * `WorkerOnly`: A corresponding attribute (global constructor) will be automatically added on the `WorkerContext` interface. 1451 * `WindowAndWorker`: A corresponding attribute (global constructor) will be automatically added on both the `Window` and the `WorkerContext` interfaces. 1452 1453 Usage: `[NoInterfaceObject]` and `[GlobalContext]` can be specified on interfaces, but not at the same time. 1449 1454 1450 1455 {{{ … … 1452 1457 NoInterfaceObject 1453 1458 ] interface XXX { 1459 ... 1460 }; 1461 1462 // A constructor property will be generated on the global WorkerContext object 1463 // but not the Window object. 1464 [ 1465 GlobalContext=WorkerOnly 1466 ] interface YYY { 1454 1467 ... 1455 1468 };