From 3d51a6105bc5f316458f5d6fe15424c21fef9024 Mon Sep 17 00:00:00 2001 From: Steve Orvell Date: Wed, 5 Feb 2014 14:12:12 -0800 Subject: [PATCH] ensure unresolved attribute is removed. --- src/instance/base.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/instance/base.js b/src/instance/base.js index e8a0805..a246fb6 100644 --- a/src/instance/base.js +++ b/src/instance/base.js @@ -42,6 +42,10 @@ this.parseDeclarations(this.__proto__); // decrement semaphore preparingElements--; + // TODO(sorvell): CE polyfill uses unresolved attribute to simulate + // :unresolved; remove this attribute to be compatible with native + // CE. + this.removeAttribute('unresolved'); // user entry point this.ready(); },