Index: polymer_1.2.3/iron-behaviors/test/test-elements.html |
diff --git a/polymer_1.0.4/bower_components/iron-behaviors/test/test-elements.html b/polymer_1.2.3/iron-behaviors/test/test-elements.html |
similarity index 78% |
copy from polymer_1.0.4/bower_components/iron-behaviors/test/test-elements.html |
copy to polymer_1.2.3/iron-behaviors/test/test-elements.html |
index 43bd8e52f00687395c4307d0c903aee6743edd66..8a7139a7bfee10e8a2a4bb0217a03204ca8415f4 100644 |
--- a/polymer_1.0.4/bower_components/iron-behaviors/test/test-elements.html |
+++ b/polymer_1.2.3/iron-behaviors/test/test-elements.html |
@@ -7,6 +7,7 @@ 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.txt |
--> |
+<link rel="import" href="../../polymer/polymer.html"> |
<link rel="import" href="../iron-control-state.html"> |
<link rel="import" href="../iron-button-state.html"> |
@@ -64,3 +65,26 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN |
}); |
</script> |
+ |
+<dom-module id="test-light-dom"> |
+ |
+ <template> |
+ <content select="*"></content> |
+ </template> |
+ |
+</dom-module> |
+ |
+<script> |
+ |
+ Polymer({ |
+ |
+ is: 'test-light-dom', |
+ |
+ behaviors: [ |
+ Polymer.IronControlState, |
+ Polymer.IronButtonState |
+ ] |
+ |
+ }); |
+ |
+</script> |