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

Unified Diff: test/paper_checked_element_behavior_test.html

Issue 1418513006: update elements and fix some bugs (Closed) Base URL: git@github.com:dart-lang/polymer_elements.git@master
Patch Set: update pubspec/changelog Created 5 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: test/paper_checked_element_behavior_test.html
diff --git a/test/paper_card_test.html b/test/paper_checked_element_behavior_test.html
similarity index 70%
copy from test/paper_card_test.html
copy to test/paper_checked_element_behavior_test.html
index 5e041c4382a04718cd7eb55217f113377bf007b8..7b4d080ceef7e0ac1235e00841545d6b8a4e228f 100644
--- a/test/paper_card_test.html
+++ b/test/paper_checked_element_behavior_test.html
@@ -12,27 +12,24 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
- <title>paper card test</title>
+ <title>paper checked element behavior test</title>
<script src="packages/web_components/webcomponents-lite.js"></script>
- <link rel="x-dart-test" href="paper_card_test.dart">
+ <link rel="x-dart-test" href="paper_checked_element_behavior_test.dart">
+ <!--<script type="application/dart" src="paper_checked_element_behavior_test.dart"></script>-->
<script src="packages/test/dart.js"></script>
-
- <style>
- paper-card {
- width: 400px;
- }
- </style>
-
</head>
<body>
- <template id="basic">
- <paper-card heading="header">
- <div class="card-content"><p>Sample content</p></div>
- </paper-card>
+<dom-module id="test-checked">
+ <template>
</template>
+</dom-module>
+
+<template id="basic">
+ <test-checked></test-checked>
+</template>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698