I just tried surrounding the "main" function of my local demo browser
with a try/catch [1]. There is no error thrown and the behavior is the
same.

-deech

[1]

   ....
    // overridden
    main : function()
    {
      try{
        this.base(arguments);

        // Enable logging in source (or debug build)
        if (qx.core.Environment.get("qx.debug"))
        {
          qx.log.appender.Native;
          qx.log.appender.Console;
        }

        // Initialize the viewer
        this.viewer = new demobrowser.DemoBrowser;
        this.getRoot().add(this.viewer, {edge:0});
      }
      catch (err) {
        alert(err);
      }
    },
    ....

On Thu, Jul 28, 2011 at 10:55 AM, Derrell Lipman
<[email protected]> wrote:
> On Thu, Jul 28, 2011 at 11:47, Daniel Wagner <[email protected]> wrote:
>>
>> Hi,
>>
>> looks like it's this issue:
>>
>> http://bugzilla.qooxdoo.org/show_bug.cgi?id=5232#c3
>>
>> You can confirm it by looking at the "Web Console" in FF4. You'll see
>> something like "console[e.level]" is undefined.
>
> Daniel, I don't think this is the same issue. In his case, everything works
> if firefox is enabled, so it's not a matter of console.debug not being
> defined. If firefox is disabled, then console itself is undefined, so
> attempting to access console[anything] would cause a JavaScript error and
> the page would end up blank if it hadn't yet rendered.
> Derrell
>
> ------------------------------------------------------------------------------
> Got Input?   Slashdot Needs You.
> Take our quick survey online.  Come on, we don't ask for help often.
> Plus, you'll get a chance to win $100 to spend on ThinkGeek.
> http://p.sf.net/sfu/slashdot-survey
> _______________________________________________
> qooxdoo-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
>
>

------------------------------------------------------------------------------
Got Input?   Slashdot Needs You.
Take our quick survey online.  Come on, we don't ask for help often.
Plus, you'll get a chance to win $100 to spend on ThinkGeek.
http://p.sf.net/sfu/slashdot-survey
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to