| 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> | 19 <script src="../../test-fixture/test-fixture-mocha.js"></script> |
| 20 | 20 |
| 21 <link href="../../test-fixture/test-fixture.html" rel="import"> | 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"> | 22 <link href="../paper-material.html" rel="import"> |
| 24 | 23 |
| 25 </head> | 24 </head> |
| 26 <body> | 25 <body> |
| 27 <test-fixture id="TrivialCard"> | 26 <test-fixture id="TrivialCard"> |
| 28 <template> | 27 <template> |
| 29 <paper-material elevation="1"></paper-material> | 28 <paper-material elevation="1"></paper-material> |
| 30 </template> | 29 </template> |
| 31 </test-fixture> | 30 </test-fixture> |
| 32 | 31 |
| (...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); | 82 expect(style.boxShadow).to.not.be.eql(lastStyle && lastStyle.boxShad
ow); |
| 84 | 83 |
| 85 lastStyle = style; | 84 lastStyle = style; |
| 86 }); | 85 }); |
| 87 }); | 86 }); |
| 88 }); | 87 }); |
| 89 }); | 88 }); |
| 90 </script> | 89 </script> |
| 91 </body> | 90 </body> |
| 92 </html> | 91 </html> |
| OLD | NEW |