[Bug 21958] [Custom]: Should element registration be associated with a browsing context, not document?

https://www.w3.org/Bugs/Public/show_bug.cgi?id=21958

Erik Arvidsson <arv@chromium.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |arv@chromium.org

--- Comment #1 from Erik Arvidsson <arv@chromium.org> ---
Another reason why it might be cleaner to associate it with a browsing context
is that all the DOM constructors are shared between all the documents in the
browsing context.

For example:

var doc2 = document.implementation.createHTMLDocument('');
doc2.constructor === document.constructor;
doc2.createElement('div').constructor === HTMLDivElement;

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Tuesday, 7 May 2013 22:22:16 UTC