Ok folks, I need your thoughts here.
I ran into another assert when the bank of america website tried
to create a new window.
It was the same problem as the url class.
It tried to make the new object but the class has JSCLASS_GLOBAL_FLAGS set
and I guess that's a bad thing cause it asserts,
at leasst on the debug environment.
just call window.open() and see.
So, I take the flag JSCLASS_GLOBAL_FLAGS out of the window class spec and
now it asserts at

state->jwin = JS_NewGlobalObject(state->jcx, &window_class, NULL);

The global object has to have the global flag set,
but it is part of a class that could be instantiated to make other windows,
wherein the global flag should not be set.
I guess that's what is happening???
Should I make two different classes, Window and GlobalWindow?
Not sure what to do here.

Karl Dahlke
_______________________________________________
Edbrowse-dev mailing list
[email protected]
http://lists.the-brannons.com/mailman/listinfo/edbrowse-dev

Reply via email to