OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 15 matching lines...) Expand all Loading... |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 // Test for interface extended attributes and special operations. | 31 // Test for interface extended attributes and special operations. |
32 // Also used as a target by TestObject | 32 // Also used as a target by TestObject |
33 | 33 |
34 [ | 34 [ |
35 ActiveDOMObject, | 35 ActiveDOMObject, |
| 36 CheckSecurity=Window, |
36 Conditional=CONDITION, | 37 Conditional=CONDITION, |
37 Custom=LegacyCallAsFunction|ToV8, | 38 Custom=LegacyCallAsFunction|ToV8, |
38 DoNotCheckConstants, | 39 DoNotCheckConstants, |
39 ImplementedAs=TestInterfaceImplementation, | 40 ImplementedAs=TestInterfaceImplementation, |
40 RuntimeEnabled=FeatureName, | 41 RuntimeEnabled=FeatureName, |
41 SetWrapperReferenceTo(TestInterface referencedName), | 42 SetWrapperReferenceTo(TestInterface referencedName), |
42 TypeChecking=Interface|Nullable|Unrestricted, | 43 TypeChecking=Interface|Nullable|Unrestricted, |
43 ] interface TestInterface : TestInterfaceEmpty { | 44 ] interface TestInterface : TestInterfaceEmpty { |
44 // members needed to test [ImplementedAs], as this affect attribute | 45 // members needed to test [ImplementedAs], as this affect attribute |
45 // configuration and method configuration, and [TypeChecking] | 46 // configuration and method configuration, and [TypeChecking] |
(...skipping 21 matching lines...) Expand all Loading... |
67 | 68 |
68 // Anonymous named property operations | 69 // Anonymous named property operations |
69 getter DOMString (DOMString name); | 70 getter DOMString (DOMString name); |
70 setter DOMString (DOMString name, DOMString value); | 71 setter DOMString (DOMString name, DOMString value); |
71 deleter boolean (DOMString name); | 72 deleter boolean (DOMString name); |
72 }; | 73 }; |
73 | 74 |
74 TestInterface implements TestImplements; | 75 TestInterface implements TestImplements; |
75 // TestInterface implements TestImplements2; // at implement*ed* interface | 76 // TestInterface implements TestImplements2; // at implement*ed* interface |
76 TestInterface implements TestImplements3; | 77 TestInterface implements TestImplements3; |
OLD | NEW |