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

Unified Diff: test/paper_radio_button_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: code review updates 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
« no previous file with comments | « test/paper_radio_button_behavior_test.dart ('k') | test/paper_radio_group_basic_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/paper_radio_button_behavior_test.html
diff --git a/test/paper_radio_button_basic_test.html b/test/paper_radio_button_behavior_test.html
similarity index 60%
copy from test/paper_radio_button_basic_test.html
copy to test/paper_radio_button_behavior_test.html
index 216982676b1e9fe71d89b944b9d6d264dc3b9143..d581fd49764929117cb78b026343f70ce578af81 100644
--- a/test/paper_radio_button_basic_test.html
+++ b/test/paper_radio_button_behavior_test.html
@@ -12,26 +12,36 @@ 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-radio-button basic tests</title>
+ <title>paper-radio-button-behavior tests</title>
<script src="packages/web_components/webcomponents-lite.js"></script>
- <link rel="x-dart-test" href="paper_radio_button_basic_test.dart">
- <!--<script type="application/dart" src="paper_radio_button_basic_test.dart"></script>-->
+ <link rel="x-dart-test" href="paper_radio_button_behavior_test.dart">
+ <!--<script type="application/dart" src="paper_radio_button_behavior_test.dart"></script>-->
<script src="packages/test/dart.js"></script>
</head>
<body>
-<template id="NoLabel">
- <paper-radio-button id="radio1"></paper-radio-button>
-</template>
+<dom-module id="test-radio-button">
+ <style>
+ :host #ink {
+ position: absolute;
+ top: -16px;
+ left: -16px;
+ width: 48px;
+ height: 48px;
+ }
-<template id="WithLabel">
- <paper-radio-button id="radio2">Batman</paper-radio-button>
-</template>
+ </style>
+ <template>
+ <div id="container">
+ <paper-ripple id="ink" class="circle" center></paper-ripple>
+ </div>
+ </template>
+</dom-module>
-<template id="AriaLabel">
- <paper-radio-button aria-label="Batman">Robin</paper-radio-button>
+<template id="basic">
+ <test-radio-button></test-radio-button>
</template>
« no previous file with comments | « test/paper_radio_button_behavior_test.dart ('k') | test/paper_radio_group_basic_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698