Index: polymer_1.0.4/bower_components/iron-list/test/physical-count.html |
diff --git a/polymer_1.0.4/bower_components/iron-list/test/physical-count.html b/polymer_1.0.4/bower_components/iron-list/test/physical-count.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..4a4f21c12f055f5afe1b6bc4d6f90bef69c33e8c |
--- /dev/null |
+++ b/polymer_1.0.4/bower_components/iron-list/test/physical-count.html |
@@ -0,0 +1,90 @@ |
+<!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 |
+The complete set of authors may be found at http://polymer.github.io/AUTHORS |
+The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS |
+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 |
+--> |
+<html> |
+<head> |
+ <meta charset="UTF-8"> |
+ <title>iron-list test</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> |
+ |
+ <link rel="import" href="helpers.html"> |
+ <link rel="import" href="../../test-fixture/test-fixture.html"> |
+ <link rel="import" href="../iron-list.html"> |
+</head> |
+<body> |
+ |
+ <test-fixture id="trivialList"> |
+ <template> |
+ <template is="dom-bind"> |
+ <style> |
+ :host { |
+ @apply(--layout-fit); |
+ @apply(--layout-vertical); |
+ |
+ display: block; |
+ } |
+ |
+ iron-list { |
+ height: 300px; |
+ } |
+ |
+ .item { |
+ color: white; |
+ height: 1px; |
+ overflow: hidden; |
+ } |
+ |
+ .item:nth-child(odd) { |
+ background-color: green; |
+ } |
+ |
+ .item:nth-child(even) { |
+ background-color: red; |
+ } |
+ </style> |
+ <iron-list items="[[data]]" as="item"> |
+ <template> |
+ <div class="item">[[item.index]]</div> |
+ </template> |
+ </iron-list> |
+ </template> |
+ </template> |
+ </test-fixture> |
+ |
+ <script> |
+ |
+ suite('dynamic physical count', function() { |
+ var list, container; |
+ |
+ setup(function() { |
+ container = fixture('trivialList'); |
+ list = findElementInList(container, 'iron-list'); |
+ }); |
+ |
+ test('increase pool size', function(done) { |
+ list.items = buildDataSet(1000); |
+ flush(function() { |
+ var lastItem = getLastItemFromList(list); |
+ var lastItemHeight = lastItem.offsetHeight; |
+ var expectedFinalItem = list.offsetHeight/lastItemHeight - 1; |
+ assert.equal(getLastItemFromList(list).textContent, expectedFinalItem); |
+ done(); |
+ }); |
+ }); |
+ }); |
+ |
+ </script> |
+ |
+</body> |
+</html> |