Subj : Re: How to work of js engine when mozilla open a web page inclue To : netscape.public.mozilla.jseng From : john Date : Thu Jun 03 2004 03:37 pm zhoulj wrote: > Hello! > Is anybody know How to work of js engine when mozilla open a web page > inclue javascript code? > Thanks. I have found js call XPCNativeScriptableShared::PopulateJSClass() to interoperator with dom.For example, follow is a part of a web pag : obj = document.getElementById("obj"); ...... mozilla will call XPCNativeScriptableShared::PopulateJSClass() to perform nsIDOMClassInfo::NewResolve(),nsIDOMClassInfo::AddProperty of dom engine,but i dont know frame work principle of js engine. .