What is a DOM node? A peek under the hood
gregros.dev
What is a DOM node? A peek under the hood
1–10 of 10 posts
Re: What is a DOM node? A peek under the hood
#2Re: What is a DOM node? A peek under the hood
#3502 error currently
Re: What is a DOM node? A peek under the hood
#4Re: What is a DOM node? A peek under the hood
#5Re: What is a DOM node? A peek under the hood
#6tl;dr; JavaScript DOM nodes are just handles to Blink DOM nodes. The article doesn't peek under the hood tbh. If you want to look under the hood you should analyze the Blink implementation.
https://developer.chrome.com/docs/chromium/blinkng
https://firefox-source-docs.mozilla.org/gfx/RenderingOvervie...
Re: What is a DOM node? A peek under the hood
#7> the browser-implemented DOM objects (implementing interfaces such as Node and Document) that provide access to a web page’s contents to JavaScript running in the page would be platform objects. These objects might be exotic objects, implemented in a language like C++, or they might be native JavaScript objects. Regardless, an implementation of a given set of IDL fragments needs to be able to recognize all platform objects that are created by the implementation. This might be done by having some internal state that records whether a given object is indeed a platform object for that implementation, or perhaps by observing that the object is implemented by a given internal C++ class. How exactly platform objects are recognized by a given implementation of a set of IDL fragments is implementation specific.
Re: What is a DOM node? A peek under the hood
#8"JavaScript objects aren't actually DOM nodes at all."
instead of
"DOM nodes aren't actually Javascript objects at all."
Re: What is a DOM node? A peek under the hood
#9tl;dr; JavaScript DOM nodes are just handles to Blink DOM nodes. The article doesn't peek under the hood tbh. If you want to look under the hood you should analyze the Blink implementation.
Re: What is a DOM node? A peek under the hood
#10tl;dr; JavaScript DOM nodes are just handles to Blink DOM nodes. The article doesn't peek under the hood tbh. If you want to look under the hood you should analyze the Blink implementation.
No relation to the tag, I presume?