{
- class XBasicWithBindingParser extends Polymer.BindingParser(customElements.get('x-basic')) {
- static get is() { return 'x-basic-binding-parser'; }
+ class XBasicWithStrictBindingParser extends Polymer.StrictBindingParser(customElements.get('x-basic')) {
+ static get is() { return 'x-basic-strict-binding-parser'; }
}
- customElements.define(XBasicWithBindingParser.is, XBasicWithBindingParser);
+ customElements.define(XBasicWithStrictBindingParser.is, XBasicWithStrictBindingParser);
});
diff --git a/test/unit/property-effects.html b/test/unit/property-effects.html
index 2a567e335c..f0c78ac772 100644
--- a/test/unit/property-effects.html
+++ b/test/unit/property-effects.html
@@ -420,10 +420,10 @@
});
});
- suite('can work with binding parser', function() {
+ suite('can work with strict binding parser', function() {
setup(function() {
document.body.removeChild(el);
- el = document.createElement('x-basic-binding-parser');
+ el = document.createElement('x-basic-strict-binding-parser');
document.body.appendChild(el);
});