| Index: third_party/WebKit/Source/bindings/tests/idls/modules/TestInterface2Partial.idl
|
| diff --git a/third_party/WebKit/Source/bindings/tests/idls/modules/TestInterface2Partial.idl b/third_party/WebKit/Source/bindings/tests/idls/modules/TestInterface2Partial.idl
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..dd84fb4db95ad18c1b2ec78d640a6c1e8c802df5
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/bindings/tests/idls/modules/TestInterface2Partial.idl
|
| @@ -0,0 +1,18 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +// Regression test for https://crbug.com/603782: if the main interface is
|
| +// declared in 'core', the alphabetically first partial interface in 'modules'
|
| +// with a RuntimeEnabled will leak onto all of the other partial interfaces in
|
| +// 'modules' that do not have an extended attributes section (i.e.,
|
| +// TestInterface2Partial2.idl).
|
| +//
|
| +// This test ensures that TestInterface2Partial2 is NOT conditional on the
|
| +// Interface2PartialFeatureName runtime flag.
|
| +[
|
| + RuntimeEnabled=Interface2PartialFeatureName,
|
| +]
|
| +partial interface TestInterface2 {
|
| + void voidMethodPartial1(DOMString value);
|
| +};
|
|
|