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

Side by Side Diff: polymer_1.0.4/bower_components/paper-icon-button/test/basic.html

Issue 1205703007: Add polymer 1.0 to npm_modules (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Renamed folder to 1.0.4 Created 5 years, 6 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!doctype html>
2 <!--
3 @license
4 Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
5 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt
6 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
7 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt
8 Code distributed by Google as part of the polymer project is also
9 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt
10 -->
11 <html>
12 <head>
13 <meta charset="UTF-8">
14 <title>paper-icon-button basic tests</title>
15 <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum- scale=1.0">
16
17 <script src="../../webcomponentsjs/webcomponents-lite.js"></script>
18 <script src="../../web-component-tester/browser.js"></script>
19 <script src="../../test-fixture/test-fixture-mocha.js"></script>
20
21 <link rel="import" href="../../test-fixture/test-fixture.html">
22 <link rel="import" href="../../iron-icons/iron-icons.html">
23 <link rel="import" href="../paper-icon-button.html">
24
25 </head>
26 <body>
27
28 <test-fixture id="TrivialIconButton">
29 <template>
30 <div style="line-height:30px;">
31 <paper-icon-button id="fab1" icon="add"></paper-icon-button>
32 </div>
33 </template>
34 </test-fixture>
35
36 <test-fixture id="SrcIconButton">
37 <template>
38 <paper-icon-button src="add.png"></paper-icon-button>
39 </template>
40 </test-fixture>
41
42 <script>
43
44 var b1;
45 var b2;
46
47 function centerOf(element) {
48 var rect = element.getBoundingClientRect();
49 return {left: rect.left + rect.width / 2, top: rect.top + rect.height / 2} ;
50 }
51
52 function approxEqual(p1, p2) {
53 return Math.abs(p1.left - p2.left) <= 2 && Math.abs(p1.top-p2.top) <= 2;
54 }
55
56 setup(function() {
57 b1 = fixture('TrivialIconButton').querySelector('#fab1');
58 b2 = fixture('SrcIconButton');
59 });
60
61 test('applies an icon specified by the `icon` attribute', function() {
62 assert.strictEqual(!!b1.$.icon.src, false);
63 assert.ok(Polymer.dom(b1.$.icon.root).querySelector('svg'));
64 });
65
66 test('applies an icon specified by the `src` attribute', function() {
67
68 assert.strictEqual(!!b2.$.icon.src, true);
69 assert.ok(b2.$.icon.src);
70 });
71
72 test('renders correctly independent of line height', function() {
73 assert.ok(approxEqual(centerOf(b1.$.icon), centerOf(b1)));
74 });
75 </script>
76 </body>
77 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698