@webqit/oohtml 5.0.10 → 5.0.13

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/package.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "wicg-proposal"
15
15
  ],
16
16
  "homepage": "https://webqit.io/tooling/oohtml",
17
- "version": "5.0.10",
17
+ "version": "5.0.13",
18
18
  "license": "MIT",
19
19
  "repository": {
20
20
  "type": "git",
@@ -379,7 +379,7 @@ function realtime(config) {
379
379
  cleanupBinding(entry, attrName, () => entry.getAttribute(attrName)/* Current resolved value as-is */);
380
380
  });
381
381
  record.entrants.forEach(entry => {
382
- if (!entry.hasAttribute(attrName)) return;
382
+ if (!entry.hasAttribute(attrName) || entry.hasAttribute('namespaceesc')) return;
383
383
  setupBinding(entry, attrName, () => entry.getAttribute(attrName)/* Raw value (as-is) that will be saved as original */);
384
384
  });
385
385
  }