| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // Regression test for https://crbug.com/603782: if the main interface is |
| 6 // declared in 'core', the alphabetically first partial interface in 'modules' |
| 7 // with a RuntimeEnabled will leak onto all of the other partial interfaces in |
| 8 // 'modules' that do not have an extended attributes section (i.e., |
| 9 // TestInterface2Partial2.idl). |
| 10 // |
| 11 // This test ensures that TestInterface2Partial2 is NOT conditional on the |
| 12 // Interface2PartialFeatureName runtime flag. |
| 13 [ |
| 14 RuntimeEnabled=Interface2PartialFeatureName, |
| 15 ] |
| 16 partial interface TestInterface2 { |
| 17 void voidMethodPartial1(DOMString value); |
| 18 }; |
| OLD | NEW |