Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(269)

Side by Side Diff: third_party/WebKit/Source/bindings/IDLExtendedAttributes.txt

Issue 1531443003: [bindings] Implement an ExperimentEnabled IDL extended attribute. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove 'return undefined and print a message' on constructors. Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 16 matching lines...) Expand all
27 # - "Attr=*" means that Attr takes a required value, which can be 27 # - "Attr=*" means that Attr takes a required value, which can be
28 # arbitrary, and combinations thereof, e.g. [Attr=IndexedDB], 28 # arbitrary, and combinations thereof, e.g. [Attr=IndexedDB],
29 # [Attr=DeleteFunction], [Attr=X|Y]. 29 # [Attr=DeleteFunction], [Attr=X|Y].
30 # - "Attr=|*" means that Attr takes an optional value, which can be 30 # - "Attr=|*" means that Attr takes an optional value, which can be
31 # arbitrary, e.g. [Attr], [Attr=X]. 31 # arbitrary, e.g. [Attr], [Attr=X].
32 # - "Attr=X|*" means that Attr takes an required value, which can be 32 # - "Attr=X|*" means that Attr takes an required value, which can be
33 # arbitrary, but that "X" is standard, e.g. [Attr=X], [Attr=Foo]. 33 # arbitrary, but that "X" is standard, e.g. [Attr=X], [Attr=Foo].
34 # 34 #
35 35
36 ActiveDOMObject 36 ActiveDOMObject
37 APIExperimentEnabled=*
haraken 2015/12/18 02:35:51 Alphabetical order.
Daniel Nishi 2015/12/18 05:11:42 Done, I think.
37 CachedAttribute=* 38 CachedAttribute=*
38 CallWith=ExecutionContext|ScriptState|ScriptArguments|ActiveWindow|FirstWindow|T hisValue 39 CallWith=ExecutionContext|ScriptState|ScriptArguments|ActiveWindow|FirstWindow|T hisValue
39 CheckSecurity=Receiver|ReturnValue 40 CheckSecurity=Receiver|ReturnValue
40 Clamp 41 Clamp
41 Conditional=* 42 Conditional=*
42 Constructor 43 Constructor
43 # FIXME: remove [ConstructorCallWith=Document], as can instead use 44 # FIXME: remove [ConstructorCallWith=Document], as can instead use
44 # [ConstructorCallWith=ExecutionContext] + toDocument(executionContext) 45 # [ConstructorCallWith=ExecutionContext] + toDocument(executionContext)
45 ConstructorCallWith=ExecutionContext|ScriptState|Document 46 ConstructorCallWith=ExecutionContext|ScriptState|Document
46 Custom=|Getter|Setter|LegacyCallAsFunction|VisitDOMWrapper|PropertyGetter|Proper tyEnumerator|PropertyQuery|CallPrologue|CallEpilogue 47 Custom=|Getter|Setter|LegacyCallAsFunction|VisitDOMWrapper|PropertyGetter|Proper tyEnumerator|PropertyQuery|CallPrologue|CallEpilogue
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 SetWrapperReferenceFrom=* 95 SetWrapperReferenceFrom=*
95 SetWrapperReferenceTo=* 96 SetWrapperReferenceTo=*
96 SetterCallWith=ExecutionContext|ScriptArguments|ActiveWindow|FirstWindow 97 SetterCallWith=ExecutionContext|ScriptArguments|ActiveWindow|FirstWindow
97 TreatNullAs=NullString|EmptyString 98 TreatNullAs=NullString|EmptyString
98 TreatReturnedNullStringAs=Null|Undefined 99 TreatReturnedNullStringAs=Null|Undefined
99 TreatUndefinedAs=NullString 100 TreatUndefinedAs=NullString
100 URL 101 URL
101 Unforgeable 102 Unforgeable
102 Unscopeable 103 Unscopeable
103 WillBeGarbageCollected 104 WillBeGarbageCollected
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698