| OLD | NEW |
| 1 # | 1 # |
| 2 # This file describes all Blink IDL extended attributes and allowed values. | 2 # This file describes all Blink IDL extended attributes and allowed values. |
| 3 # If any IDL file uses an extended attribute or values not listed below, the | 3 # If any IDL file uses an extended attribute or values not listed below, the |
| 4 # build will fail. | 4 # build will fail. |
| 5 # If you would like to add a new extended attribute or value, please: | 5 # If you would like to add a new extended attribute or value, please: |
| 6 # (1) add the extended attribute or value to this file | 6 # (1) add the extended attribute or value to this file |
| 7 # (2) add an explanation to the Blink IDL extended attributes document: | 7 # (2) add an explanation to the Blink IDL extended attributes document: |
| 8 # http://www.chromium.org/blink/webidl/blink-idl-extended-attributes | 8 # http://www.chromium.org/blink/webidl/blink-idl-extended-attributes |
| 9 # (3) add appropriate test cases to run-bindings-tests | 9 # (3) add appropriate test cases to run-bindings-tests |
| 10 # | 10 # |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 CheckSecurity=Frame|Node|Window | 39 CheckSecurity=Frame|Node|Window |
| 40 Clamp | 40 Clamp |
| 41 Conditional=* | 41 Conditional=* |
| 42 Constructor | 42 Constructor |
| 43 # FIXME: remove [ConstructorCallWith=Document], as can instead use | 43 # FIXME: remove [ConstructorCallWith=Document], as can instead use |
| 44 # [ConstructorCallWith=ExecutionContext] + toDocument(executionContext) | 44 # [ConstructorCallWith=ExecutionContext] + toDocument(executionContext) |
| 45 ConstructorCallWith=ExecutionContext|ScriptState|Document | 45 ConstructorCallWith=ExecutionContext|ScriptState|Document |
| 46 Custom=|Getter|Setter|LegacyCallAsFunction|VisitDOMWrapper|PropertyGetter|Proper
tyEnumerator|PropertyQuery|CallPrologue|CallEpilogue | 46 Custom=|Getter|Setter|LegacyCallAsFunction|VisitDOMWrapper|PropertyGetter|Proper
tyEnumerator|PropertyQuery|CallPrologue|CallEpilogue |
| 47 CustomConstructor | 47 CustomConstructor |
| 48 CustomElementCallbacks | 48 CustomElementCallbacks |
| 49 # Dartium specific attributes. |
| 50 # DartCustom can have no value or New if New an additional method is added (V8 w
ill not see this method) |
| 51 DartCustom=|New|Setter|Getter |
| 52 # DartName should have the alias name to be used to resolve. |
| 53 DartName=* |
| 54 # DartSuppress can have no value will suppress attribute/method, if attribute ca
n also suppress |
| 55 # just the DartSuppress=getter or DartSuppress=Setter |
| 56 DartSuppress=|Getter|Setter |
| 57 # No need to setup Dart API scope when a native function is invoked. |
| 58 DartNoAutoScope |
| 59 # TODO(terry): Used in dart.idl - look at removing or using |
| 60 DartSupplemental |
| 61 # TODO(terry): Used in dart.idl (look at eliminating). |
| 62 DartForceOptional |
| 63 # TODO(terry): Used in dart.idl (look at eliminating). |
| 64 Callback |
| 65 # TODO(terry): Used in dart.idl (look at eliminating). |
| 66 DartStrictTypeChecking |
| 67 # End of Dartium attributes. |
| 49 Default=Undefined | 68 Default=Undefined |
| 50 DependentLifetime | 69 DependentLifetime |
| 51 DeprecateAs=* | 70 DeprecateAs=* |
| 52 DoNotCheckConstants | 71 DoNotCheckConstants |
| 53 DoNotCheckSecurity=|Setter | 72 DoNotCheckSecurity=|Setter |
| 54 DoNotCheckSignature | 73 DoNotCheckSignature |
| 55 DoNotExposeJSAccessors | 74 DoNotExposeJSAccessors |
| 56 EnforceRange | 75 EnforceRange |
| 57 ExposeJSAccessors | 76 ExposeJSAccessors |
| 58 Exposed=* | 77 Exposed=* |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 SetWrapperReferenceTo=* | 116 SetWrapperReferenceTo=* |
| 98 SetterCallWith=ExecutionContext|ScriptArguments|ActiveWindow|FirstWindow | 117 SetterCallWith=ExecutionContext|ScriptArguments|ActiveWindow|FirstWindow |
| 99 TreatNullAs=NullString|EmptyString | 118 TreatNullAs=NullString|EmptyString |
| 100 TreatReturnedNullStringAs=Null|Undefined | 119 TreatReturnedNullStringAs=Null|Undefined |
| 101 TreatUndefinedAs=NullString | 120 TreatUndefinedAs=NullString |
| 102 TypeChecking=Interface | 121 TypeChecking=Interface |
| 103 URL | 122 URL |
| 104 Unforgeable | 123 Unforgeable |
| 105 Unscopeable | 124 Unscopeable |
| 106 WillBeGarbageCollected | 125 WillBeGarbageCollected |
| OLD | NEW |