| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>polymer-collapse</title> | 4 <title>polymer-collapse</title> |
| 5 <script src="../../../platform/platform.js"></script> | 5 <script src="../../../platform/platform.js"></script> |
| 6 <script src="../../../tools/test/htmltest.js"></script> | 6 <script src="../../../tools/test/htmltest.js"></script> |
| 7 <script src="../../../tools/test/chai/chai.js"></script> | 7 <script src="../../../tools/test/chai/chai.js"></script> |
| 8 <link rel="import" href="../../polymer-collapse.html"> | 8 <link rel="import" href="../../polymer-collapse.html"> |
| 9 </head> | 9 </head> |
| 10 <body> | 10 <body> |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 var b = document.querySelector('#box'); | 48 var b = document.querySelector('#box'); |
| 49 return getComputedStyle(b); | 49 return getComputedStyle(b); |
| 50 } | 50 } |
| 51 | 51 |
| 52 function getBoxComputedHeight() { | 52 function getBoxComputedHeight() { |
| 53 return parseInt(getBoxComputedStyle().height); | 53 return parseInt(getBoxComputedStyle().height); |
| 54 } | 54 } |
| 55 </script> | 55 </script> |
| 56 </body> | 56 </body> |
| 57 </html> | 57 </html> |
| OLD | NEW |