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

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

Issue 33903003: Fixing polymer element registration when extending tag extensions (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Sync to ToT 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/register_test.html
diff --git a/pkg/polymer/test/publish_attributes_test.html b/pkg/polymer/test/register_test.html
similarity index 54%
copy from pkg/polymer/test/publish_attributes_test.html
copy to pkg/polymer/test/register_test.html
index 9c0969de484ce7493ecf3cb68bf4ff1e92e78572..970f9c5769570ece6e4e0bcf66b55e425c960aea 100644
--- a/pkg/polymer/test/publish_attributes_test.html
+++ b/pkg/polymer/test/register_test.html
@@ -7,23 +7,28 @@ 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>register test</title>
<script src="packages/unittest/test_controller.js"></script>
</head>
<body>
- <polymer-element name="x-foo" attributes="Foo baz">
+ <polymer-element name="x-html">
</polymer-element>
- <polymer-element name="x-bar" extends="x-foo" attributes="Bar">
+ <polymer-element name="x-html-two" extends="x-html">
</polymer-element>
- <polymer-element name="x-zot" extends="x-bar">
+ <polymer-element name="x-div" extends="div">
</polymer-element>
- <polymer-element name="x-squid" extends="x-zot" attributes="squid">
+ <polymer-element name="x-div-two" extends="x-div">
</polymer-element>
- <script type="application/dart" src="publish_attributes_test.dart"></script>
+ <x-html></x-html>
+ <x-html-two></x-html-two>
+ <div is='x-div' id='x-div'></div>
+ <div is='x-div-two' id='x-div-two'></div>
+
+ <script type="application/dart" src="register_test.dart"></script>
</body>
</html>
« pkg/polymer/lib/src/declaration.dart ('K') | « pkg/polymer/test/register_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698