@ckeditor/ckeditor5-engine 48.0.0-alpha.8 → 48.0.0-alpha.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -27977,7 +27977,7 @@ class MarkerOperation extends Operation {
27977
27977
  key: this.key
27978
27978
  });
27979
27979
  }
27980
- if (this.oldValue !== null && this.root.getAttribute(this.key) !== this.oldValue) {
27980
+ if (this.oldValue !== null && !isEqual(this.root.getAttribute(this.key), this.oldValue)) {
27981
27981
  /**
27982
27982
  * The attribute which should be removed does not exist for the given node.
27983
27983
  *