Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(102)

Unified Diff: pkg/polymer/test/publish_inherited_properties_test.html

Issue 49793004: Inherit @published from base class (fix issue 13937) (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/polymer/test/publish_inherited_properties_test.html
diff --git a/pkg/polymer/test/publish_attributes_test.html b/pkg/polymer/test/publish_inherited_properties_test.html
similarity index 61%
copy from pkg/polymer/test/publish_attributes_test.html
copy to pkg/polymer/test/publish_inherited_properties_test.html
index 9c0969de484ce7493ecf3cb68bf4ff1e92e78572..4a57fb7ffa1cf9f3777e10bdb5d627ae13a2701f 100644
--- a/pkg/polymer/test/publish_attributes_test.html
+++ b/pkg/polymer/test/publish_inherited_properties_test.html
@@ -7,23 +7,17 @@ BSD-style license that can be found in the LICENSE file.
<html>
<head>
<!--polymer-test: this comment is needed for test_suite.dart-->
- <title>publish attributes</title>
+ <title>publish inherited properties</title>
<script src="packages/unittest/test_controller.js"></script>
</head>
<body>
- <polymer-element name="x-foo" attributes="Foo baz">
- </polymer-element>
-
- <polymer-element name="x-bar" extends="x-foo" attributes="Bar">
- </polymer-element>
-
- <polymer-element name="x-zot" extends="x-bar">
+ <polymer-element name="x-zot">
</polymer-element>
<polymer-element name="x-squid" extends="x-zot" attributes="squid">
</polymer-element>
- <script type="application/dart" src="publish_attributes_test.dart"></script>
+ <script type="application/dart" src="publish_inherited_properties_test.dart"></script>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698