Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / bindings / tests / idls / TestImplements2.idl
index 3a990ef..ce0e357 100644 (file)
  */
 
 [
-    ImplementedAs=TestImplements2Implementation,  // Conflicts with default implements class name
-    NoInterfaceObject,
-    RuntimeEnabled=Implements2FeatureName,
+    LegacyTreatAsPartialInterface, // Conflicts with default implements behavior
+    NoInterfaceObject, // Always used on target of 'implements'
+    RuntimeEnabled=Implements2FeatureName, // conflicts with [RuntimeEnabled] on member
 ] interface TestImplements2 {
     static attribute DOMString implements2StaticStringAttribute;
     attribute DOMString implements2StringAttribute;
     void implements2VoidMethod();
 };
+
+TestInterface implements TestImplements2;