| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 attribute SerializedScriptValue serializedScriptValueAttribute; | 96 attribute SerializedScriptValue serializedScriptValueAttribute; |
| 97 attribute any anyAttribute; | 97 attribute any anyAttribute; |
| 98 // Custom type conversions | 98 // Custom type conversions |
| 99 attribute Promise promiseAttribute; | 99 attribute Promise promiseAttribute; |
| 100 attribute Window windowAttribute; | 100 attribute Window windowAttribute; |
| 101 // DOM Node types | 101 // DOM Node types |
| 102 attribute Document documentAttribute; | 102 attribute Document documentAttribute; |
| 103 attribute DocumentFragment documentFragmentAttribute; | 103 attribute DocumentFragment documentFragmentAttribute; |
| 104 attribute DocumentType documentTypeAttribute; | 104 attribute DocumentType documentTypeAttribute; |
| 105 attribute Element elementAttribute; | 105 attribute Element elementAttribute; |
| 106 attribute Entity entityAttribute; | |
| 107 attribute Node nodeAttribute; | 106 attribute Node nodeAttribute; |
| 108 attribute ShadowRoot shadowRootAttribute; | 107 attribute ShadowRoot shadowRootAttribute; |
| 109 // Typed arrays | 108 // Typed arrays |
| 110 attribute ArrayBuffer arrayBufferAttribute; | 109 attribute ArrayBuffer arrayBufferAttribute; |
| 111 attribute Float32Array float32ArrayAttribute; | 110 attribute Float32Array float32ArrayAttribute; |
| 112 attribute Uint8Array uint8ArrayAttribute; | 111 attribute Uint8Array uint8ArrayAttribute; |
| 113 // Exceptions for is_keep_alive_for_gc | 112 // Exceptions for is_keep_alive_for_gc |
| 114 readonly attribute TestInterfaceEmpty self; | 113 readonly attribute TestInterfaceEmpty self; |
| 115 readonly attribute EventTarget readonlyEventTargetAttribute; | 114 readonly attribute EventTarget readonlyEventTargetAttribute; |
| 116 readonly attribute Window readonlyWindowAttribute; | 115 readonly attribute Window readonlyWindowAttribute; |
| (...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 [ReadOnly] void readOnlyVoidMethod(); | 410 [ReadOnly] void readOnlyVoidMethod(); |
| 412 [NotEnumerable, ReadOnly] void notEnumerableReadOnlyVoidMethod(); | 411 [NotEnumerable, ReadOnly] void notEnumerableReadOnlyVoidMethod(); |
| 413 [RuntimeEnabled=FeatureName] void runtimeEnabledVoidMethod(); | 412 [RuntimeEnabled=FeatureName] void runtimeEnabledVoidMethod(); |
| 414 [PerWorldBindings, RuntimeEnabled=FeatureName] void perWorldBindingsRuntimeE
nabledVoidMethod(); | 413 [PerWorldBindings, RuntimeEnabled=FeatureName] void perWorldBindingsRuntimeE
nabledVoidMethod(); |
| 415 [StrictTypeChecking] void strictTypeCheckingVoidMethodTestInterfaceEmptyArg(
TestInterfaceEmpty testInterfaceEmptyArg); | 414 [StrictTypeChecking] void strictTypeCheckingVoidMethodTestInterfaceEmptyArg(
TestInterfaceEmpty testInterfaceEmptyArg); |
| 416 [StrictTypeChecking] void strictTypeCheckingVoidMethodNullableTestInterfaceE
mptyArg(TestInterfaceEmpty? testInterfaceEmptyArg); | 415 [StrictTypeChecking] void strictTypeCheckingVoidMethodNullableTestInterfaceE
mptyArg(TestInterfaceEmpty? testInterfaceEmptyArg); |
| 417 [TreatReturnedNullStringAs=Null] DOMString treatReturnedNullStringAsNullStri
ngMethod(); | 416 [TreatReturnedNullStringAs=Null] DOMString treatReturnedNullStringAsNullStri
ngMethod(); |
| 418 [TreatReturnedNullStringAs=Undefined] DOMString treatReturnedNullStringAsUnd
efinedStringMethod(); | 417 [TreatReturnedNullStringAs=Undefined] DOMString treatReturnedNullStringAsUnd
efinedStringMethod(); |
| 419 [Unforgeable] void unforgeableVoidMethod(); | 418 [Unforgeable] void unforgeableVoidMethod(); |
| 420 }; | 419 }; |
| OLD | NEW |