| Index: pkg/custom_element/lib/custom-elements.debug.js
|
| diff --git a/pkg/custom_element/lib/custom-elements.debug.js b/pkg/custom_element/lib/custom-elements.debug.js
|
| index 843e8a7cf865935d054525a822d7320097e36d62..a391b8ac3da3a22a4ad7839ae54c1dd472c6d992 100644
|
| --- a/pkg/custom_element/lib/custom-elements.debug.js
|
| +++ b/pkg/custom_element/lib/custom-elements.debug.js
|
| @@ -1207,8 +1207,8 @@ if (useNative) {
|
| changeAttribute.call(this, name, value, setAttribute);
|
| }
|
| var removeAttribute = prototype.removeAttribute;
|
| - prototype.removeAttribute = function(name, value) {
|
| - changeAttribute.call(this, name, value, removeAttribute);
|
| + prototype.removeAttribute = function(name) {
|
| + changeAttribute.call(this, name, null, removeAttribute);
|
| }
|
| }
|
|
|
| @@ -1217,7 +1217,7 @@ if (useNative) {
|
| operation.apply(this, arguments);
|
| if (this.attributeChangedCallback
|
| && (this.getAttribute(name) !== oldValue)) {
|
| - this.attributeChangedCallback(name, oldValue);
|
| + this.attributeChangedCallback(name, oldValue, value);
|
| }
|
| }
|
|
|
|
|