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> |