"Steven T. Hatton" wrote:
>
> What I'm really
> looking for is how Window.open() works in JavaScript. How do I find the
> Window object as it exists in source?
JS/DOM objects are defined in .idl files at
http://lxr.mozilla.org/seamonkey/source/dom/public/idl/ ,
window.open() in
http://lxr.mozilla.org/seamonkey/source/dom/public/idl/base/nsIDOMJSWindow.idl .
It is implemented in
http://lxr.mozilla.org/seamonkey/source/dom/src/base/nsGlobalWindow.cpp#2264 .
> Greppng the source tree is not
> proving all that helpful, but who knows perhaps I figure out the magical
> regexp.
Search with LXR ( http://lxr.mozilla.org/seamonkey/ )!
Clarence