Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Illegible ("squished") JavaScript errors in Firebug console
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  10 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Ben  
View profile  
 More options Jun 21 2012, 4:05 pm
From: Ben <indietorr...@gmail.com>
Date: Thu, 21 Jun 2012 13:05:18 -0700 (PDT)
Local: Thurs, Jun 21 2012 4:05 pm
Subject: Illegible ("squished") JavaScript errors in Firebug console

It seems that certain types of error messages cause a problem with
Firebug's console display.

Please see attached screenshot.

I'm using Firefox 13.0 with and Firebug 1.9.2.

  Capture.PNG
15K Download

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Sebastian Zartner  
View profile  
 More options Jun 21 2012, 5:11 pm
From: Sebastian Zartner <sebastianzart...@googlemail.com>
Date: Thu, 21 Jun 2012 14:11:08 -0700 (PDT)
Local: Thurs, Jun 21 2012 5:11 pm
Subject: Re: Illegible ("squished") JavaScript errors in Firebug console

I believe this error is not caused by Firebug. The Firebug Console doesn't
have messages with yellow background by default.
To check this you may disable all the other extensions and try it again.

Sebastian


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jan Honza Odvarko  
View profile  
 More options Jun 22 2012, 8:58 am
From: Jan Honza Odvarko <odva...@gmail.com>
Date: Fri, 22 Jun 2012 05:58:03 -0700 (PDT)
Local: Fri, Jun 22 2012 8:58 am
Subject: Re: Illegible ("squished") JavaScript errors in Firebug console
On Jun 21, 11:11 pm, Sebastian Zartner

<sebastianzart...@googlemail.com> wrote:
> I believe this error is not caused by Firebug. The Firebug Console doesn't
> have messages with yellow background by default.
> To check this you may disable all the other extensions and try it again.

The yellow background is added, I guess (to highlight the text).

Ben, two questions:
1) can you provide a test case so, we can reproduce on our machines
and fix?
2) can you test with Firebug 1.10a11?

http://getfirebug.com/releases/firebug/1.10/firebug-1.10.0a11.xpi

Honza


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Sebastian Zartner  
View profile  
 More options Jun 22 2012, 9:16 am
From: Sebastian Zartner <sebastianzart...@googlemail.com>
Date: Fri, 22 Jun 2012 06:16:13 -0700 (PDT)
Local: Fri, Jun 22 2012 9:16 am
Subject: Re: Illegible ("squished") JavaScript errors in Firebug console

> The yellow background is added, I guess (to highlight the text).

My fault. I didn't have a careful look before to see that the background is
not strait but a marking.

Sebastian


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ben  
View profile  
 More options Jun 22 2012, 4:12 pm
From: Ben <indietorr...@gmail.com>
Date: Fri, 22 Jun 2012 13:12:26 -0700 (PDT)
Local: Fri, Jun 22 2012 4:12 pm
Subject: Re: Illegible ("squished") JavaScript errors in Firebug console

Sorry for the confusion regarding the highlighting, folks; I thought it
would make the issue easier to see.

I upgraded to Firebug 1.10.0a11, but the issue persists.

The issue seems to be related to or caused by a particular JavaScript file
( https://gist.github.com/1045906 ), which seems to be included in many
different "boilerplate" packages.

The version I was using is probably over a year old; when I upgraded to the
current version (at the above-cited URL), the issue disappeared.

For academic/debugging purposes, here is the older version of the script
that was causing the problem:

----------
// usage: log('inside coolFunc', this, arguments);
// paulirish.com/2009/log-a-lightweight-wrapper-for-consolelog/
window.log = function(){
  log.history = log.history || [];   // store logs to an array for reference
  log.history.push(arguments);
  if(this.console) {
    arguments.callee = arguments.callee.caller;
    var newarr = [].slice.call(arguments);
    (typeof console.log === 'object' ? log.apply.call(console.log, console,
newarr) : console.log.apply(console, newarr));
  }

};

// make it safe to use console.log always
(function(b){function c(){}for(var
d="assert,count,debug,dir,dirxml,error,exception,group,groupCollapsed,group End,info,log,timeStamp,profile,profileEnd,time,timeEnd,trace,warn".split(", "),a;a=d.pop();){b[a]=b[a]||c}})((function(){try
{console.log();return window.console;}catch(err){return
window.console={};}})());
----------

The last line is the line that is referenced in the Firebug console error
output.

I'm not sure what, exactly, was triggering that function in the first
place, but it seems to be some kind of conflict between FancyBox 2.5 and
jQuery.

If I can be of further assistance, please do let me know.

Thanks for the help!


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
alfonsoml  
View profile  
 More options Jun 24 2012, 5:23 pm
From: alfonsoml <aml...@gmail.com>
Date: Sun, 24 Jun 2012 14:23:55 -0700 (PDT)
Local: Sun, Jun 24 2012 5:23 pm
Subject: Re: Illegible ("squished") JavaScript errors in Firebug console

Reproducing this bug is easy, just call log without arguments:

console.log();
console.log();
console.log();


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jan Honza Odvarko  
View profile  
 More options Jun 25 2012, 2:02 am
From: Jan Honza Odvarko <odva...@gmail.com>
Date: Sun, 24 Jun 2012 23:02:02 -0700 (PDT)
Local: Mon, Jun 25 2012 2:02 am
Subject: Re: Illegible ("squished") JavaScript errors in Firebug console
On Jun 24, 11:23 pm, alfonsoml <aml...@gmail.com> wrote:

> Reproducing this bug is easy, just call log without arguments:

> console.log();
> console.log();
> console.log();

Ah, I see.

In such case, we could perhaps display a message (i gray color)
saying something like: "no message provided".

What do you think?

Could you please create an issue report for this?
http://code.google.com/p/fbug/issues/list

Thanks for the test case!
Honza


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
alfonsoml  
View profile  
 More options Jun 25 2012, 2:45 am
From: alfonsoml <aml...@gmail.com>
Date: Sun, 24 Jun 2012 23:45:32 -0700 (PDT)
Local: Mon, Jun 25 2012 2:45 am
Subject: Re: Illegible ("squished") JavaScript errors in Firebug console

Ok, I've created http://code.google.com/p/fbug/issues/detail?id=5615
Whatever solution you decide is right for me :-)

Thank you.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jan Honza Odvarko  
View profile  
 More options Jun 25 2012, 2:51 am
From: Jan Honza Odvarko <odva...@gmail.com>
Date: Sun, 24 Jun 2012 23:51:46 -0700 (PDT)
Local: Mon, Jun 25 2012 2:51 am
Subject: Re: Illegible ("squished") JavaScript errors in Firebug console
On Jun 25, 8:45 am, alfonsoml <aml...@gmail.com> wrote:
> Ok, I've createdhttp://code.google.com/p/fbug/issues/detail?id=5615
> Whatever solution you decide is right for me :-)

Alright, thanks for the report!
Honza

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jan Honza Odvarko  
View profile   Translate to Translated (View Original)
 More options Jun 26 2012, 4:42 am
From: Jan Honza Odvarko <odva...@gmail.com>
Date: Tue, 26 Jun 2012 01:42:29 -0700 (PDT)
Local: Tues, Jun 26 2012 4:42 am
Subject: Re: Illegible ("squished") JavaScript errors in Firebug console
On Jun 24, 11:23 pm, alfonsoml <aml...@gmail.com> wrote:
> Reproducing this bug is easy, just call log without arguments:

> console.log();
> console.log();
> console.log();

Patch committed, should be fixed in Firebug 1.10 beta 2

Honza


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »