| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <!-- | 2 <!-- |
| 3 @license | 3 @license |
| 4 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. | 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 | 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 | 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 | 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 | 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 | 9 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
| 10 --> | 10 --> |
| 11 <html> | 11 <html> |
| 12 <head> | 12 <head> |
| 13 <meta charset="UTF-8"> | 13 <meta charset="UTF-8"> |
| 14 <title>paper-material basic tests</title> | 14 <title>paper-material basic tests</title> |
| 15 <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-
scale=1.0"> | 15 <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-
scale=1.0"> |
| 16 | 16 |
| 17 <script src="../../webcomponentsjs/webcomponents.js"></script> | 17 <script src="../../webcomponentsjs/webcomponents.js"></script> |
| 18 <script src="../../web-component-tester/browser.js"></script> | 18 <script src="../../web-component-tester/browser.js"></script> |
| 19 <script src="../../test-fixture/test-fixture-mocha.js"></script> | |
| 20 | |
| 21 <link href="../../test-fixture/test-fixture.html" rel="import"> | |
| 22 <link href="../../layout/layout.html" rel="import"> | |
| 23 <link href="../paper-material.html" rel="import"> | 19 <link href="../paper-material.html" rel="import"> |
| 24 | 20 |
| 25 </head> | 21 </head> |
| 26 <body> | 22 <body> |
| 27 <test-fixture id="TrivialCard"> | 23 <test-fixture id="TrivialCard"> |
| 28 <template> | 24 <template> |
| 29 <paper-material elevation="1"></paper-material> | 25 <paper-material elevation="1"></paper-material> |
| 30 </template> | 26 </template> |
| 31 </test-fixture> | 27 </test-fixture> |
| 32 | 28 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 expect(style.boxShadow).to.not.be.eql(lastStyle && lastStyle.boxShad
ow); | 79 expect(style.boxShadow).to.not.be.eql(lastStyle && lastStyle.boxShad
ow); |
| 84 | 80 |
| 85 lastStyle = style; | 81 lastStyle = style; |
| 86 }); | 82 }); |
| 87 }); | 83 }); |
| 88 }); | 84 }); |
| 89 }); | 85 }); |
| 90 </script> | 86 </script> |
| 91 </body> | 87 </body> |
| 92 </html> | 88 </html> |
| OLD | NEW |