Index: core/testing/InternalDictionaryDerived.idl |
diff --git a/core/testing/InternalDictionaryDerived.idl b/core/testing/InternalDictionaryDerived.idl |
new file mode 100644 |
index 0000000000000000000000000000000000000000..63ec5fdc7c306af957ef351b752bec8d8281e236 |
--- /dev/null |
+++ b/core/testing/InternalDictionaryDerived.idl |
@@ -0,0 +1,9 @@ |
+// Copyright 2014 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. |
+ |
+dictionary InternalDictionaryDerived : InternalDictionary { |
+ DOMString derivedStringMember; |
+ DOMString derivedStringMemberWithDefault = "derivedDefaultStringValue"; |
+ required boolean requiredBooleanMember; |
+}; |