Index: polymer_1.0.4/bower_components/paper-toggle-button/test/basic.html |
diff --git a/polymer_1.0.4/bower_components/paper-toggle-button/test/basic.html b/polymer_1.0.4/bower_components/paper-toggle-button/test/basic.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..6768491525abe1e02f79a57a6aafb5b37cc7fa70 |
--- /dev/null |
+++ b/polymer_1.0.4/bower_components/paper-toggle-button/test/basic.html |
@@ -0,0 +1,86 @@ |
+<!doctype html> |
+<!-- |
+@license |
+Copyright (c) 2015 The Polymer Project Authors. All rights reserved. |
+This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt |
+The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
+The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt |
+Code distributed by Google as part of the polymer project is also |
+subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt |
+--> |
+<html> |
+ <head> |
+ <meta charset="UTF-8"> |
+ <title>paper-toggle-button basic tests</title> |
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"> |
+ |
+ <script src="../../webcomponentsjs/webcomponents-lite.js"></script> |
+ <script src="../../web-component-tester/browser.js"></script> |
+ <script src="../../test-fixture/test-fixture-mocha.js"></script> |
+ <script src="../../iron-test-helpers/mock-interactions.js"></script> |
+ |
+ <link rel="import" href="../../test-fixture/test-fixture.html"> |
+ <link rel="import" href="../paper-toggle-button.html"> |
+ |
+ </head> |
+ <body> |
+ |
+ <test-fixture id="Basic"> |
+ <template> |
+ <paper-toggle-button id="button"></paper-toggle-button> |
+ </template> |
+ </test-fixture> |
+ |
+ <script> |
+ suite('defaults', function() { |
+ var b1; |
+ |
+ setup(function() { |
+ b1 = fixture('Basic'); |
+ }); |
+ |
+ test('check button via click', function() { |
+ b1.addEventListener('click', function() { |
+ assert.isTrue(b1.getAttribute('aria-checked')); |
+ assert.isTrue(b1.checked); |
+ done(); |
+ }); |
+ MockInteractions.down(b1); |
+ }); |
+ |
+ test('toggle button via click', function() { |
+ b1.checked = true; |
+ b1.addEventListener('click', function() { |
+ assert.isFalse(b1.getAttribute('aria-checked')); |
+ assert.isFalse(b1.checked); |
+ done(); |
+ }); |
+ MockInteractions.down(b1); |
+ }); |
+ |
+ test('disabled button cannot be clicked', function() { |
+ b1.disabled = true; |
+ b1.addEventListener('click', function() { |
+ assert.isTrue(b1.getAttribute('aria-checked')); |
+ assert.isTrue(b1.checked); |
+ done(); |
+ }); |
+ MockInteractions.down(b1); |
+ }); |
+ }); |
+ |
+ suite('a11y', function() { |
+ var b1; |
+ |
+ setup(function() { |
+ b1 = fixture('Basic'); |
+ }); |
+ |
+ test('has aria role "button"', function() { |
+ console.log(b1.getAttribute('role')); |
+ assert.isTrue(b1.getAttribute('role') == 'button'); |
+ }); |
+ }); |
+ </script> |
+ </body> |
+</html> |