diff --git a/test/unit/behaviors.html b/test/unit/behaviors.html
index 3051454e8d..a879c97ac6 100644
--- a/test/unit/behaviors.html
+++ b/test/unit/behaviors.html
@@ -395,6 +395,45 @@
zot: 'zot'
});
+ Polymer({
+ is: 'override-default-value',
+ behaviors: [
+ {
+ properties: {
+ foo: { value: true },
+ bar: { value: true}
+ }
+ },
+ {
+ properties: {
+ foo: { value: true },
+ bar: String,
+ zot: {value: true}
+ }
+ },
+
+ ],
+
+ properties: {
+ foo: String,
+ zot: String
+ }
+ });
+
+ Polymer({
+ is: 'property-observer-readonly',
+ behaviors: [
+ {
+ observers: ['_changed(bar)'],
+ _changed() {}
+ }
+ ],
+
+ properties: {
+ bar: {readOnly: true}
+ }
+ });
+
});
@@ -470,6 +509,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
@@ -436,6 +467,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+