Closed
Bug 549650
Opened 16 years ago
Closed 14 years ago
Firebug 1.5.2 console errors testing debug example
Categories
(Firefox :: General, defect)
Tracking
()
RESOLVED
INCOMPLETE
People
(Reporter: alain.saez, Unassigned)
Details
(Whiteboard: [CLOSEME 2011-2-25])
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9.2) Gecko/20100115 Firefox/3.6 (.NET CLR 3.5.30729)
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9.2) Gecko/20100115 Firefox/3.6 (.NET CLR 3.5.30729)
Testing file.js in firebug
URL to find the file:
http://www.bennadel.com/blog/1459-FireBug-s-Console-dir-vs-DOM-Tab.htm
Running this little script two errors and many lots warnings in firebug console.
Error1
p.onStateChange is not a function chrome://browser/content/tabbrowser.xml Line
p.onStatusChange(aWebProgress, aRequest, aStatus, aMessage);
reference to undefined property window.oTidyBrowser
chrome://tidy/content/tidyBrowser.js Line 220
URL Source de :///Program Files/Mozilla Firefox/chrome/browser.jar!/browser/tabrowser.xml--> p.onStatusChange(aWebProgress, aRequest, aStatus, aMessage);
Error2
p.onSecurityChange is not a function chrome://browser/content/tabbrowser.xml Line and same message (please see above)
X warnings. example:
reference to undefined property context.sourceFileMap[url]
chrome://firebug/content/lib.js
Line 2743
Reproducible: Always
Steps to Reproduce:
1.When I launch the script see before (Actual results) the errors descriptions.
2.You will the little script in additionnal informations.
3.
Actual Results:
p.onProgressChange is not a function
chrome://browser/content/tabbrowser.xml
Line 344
Source de:file:///C:/program files/Mozilla Firefox/chrome/browser.jar/content/browser/tabbrowser.xml - Mozilla Firefox
if (this.mTabBrowser.mCurrentTab == this.mTab) {
for (let i = 0; i < this.mTabBrowser.mProgressListeners.length; i++) {
let p = this.mTabBrowser.mProgressListeners[i];
if (p)
try {
p.onProgressChange(aWebProgress, aRequest,
aCurSelfProgress, aMaxSelfProgress,
line 344--> aCurTotalProgress, aMaxTotalProgress);
} catch (e) {
// don't inhibit other listeners
Components.utils.reportError(e);
------------------------------------------------------------------------------
Error 2
p.onStateChange is not a function
chrome://browser/content/tabbrowser.xml
Line 463
Source de:file:///C:/program files/Mozilla Firefox/chrome/browser.jar/content/browser/tabbrowser.xml - Mozilla Firefox
if (this.mTabBrowser.mCurrentTab == this.mTab) {
for (let i = 0; i < this.mTabBrowser.mProgressListeners.length; i++) {
let p = this.mTabBrowser.mProgressListeners[i];
if (p)
try {
if (!oldBlank)
line 463--> p.onStateChange(aWebProgress, aRequest, aStateFlags, aStatus);
// make sure that the visible status of new blank tabs is correctly set
else if ("onUpdateCurrentBrowser" in p)
p.onUpdateCurrentBrowser(aStateFlags, aStatus, "", 0);
} catch (e) {
// don't inhibit other listeners
Components.utils.reportError(e);
}
----------------------------------------------------------------------------
X Warnings
chrome://firebug/content/lib.js
Source Files
this.getSourceFileByHref = function(url, context)
{
return context.sourceFileMap[url];
};
Expected Results:
I don't find the solution in web forums because I am a beginner and I do not know how intrepretive content of these messages errors.
I don't understand because this little script will be serious and I obtains
some system errors.
SCRIPT
Script:" FireBug Console Testing"
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>FireBug Console Testing</title>
<script type="text/javascript">
// Define complex object.
var objGirl = {
Name: "Molly",
Hair: "Brunette",
Eyes: "Brown",
BestQualities:
[
"Smile",
"Laugh"
]
};
// Debug data in FireBug.
console.dir( objGirl );
// Update the complex object.
objGirl.BestQualities = [
"Legs",
"Butt"
];
// Debug updated data in FireBug.
console.dir( objGirl );
</script>
</head>
<body>
<h1>
FireBug Console Testing
</h1>
</body>
</html>
| Reporter | ||
Comment 1•16 years ago
|
||
Hello,
FireBug Console Testing
Errors (firefox 3.6 version).
No errors nor warnings in firebug 1.5.2 with firefox 3.5.8 version
Best regards,
alain saez
Comment 2•15 years ago
|
||
Reporter, are you still seeing this issue with Firefox 3.6.13 or later in safe mode or a fresh profile? If not, please close. These links can help you in your testing.
http://support.mozilla.com/kb/Safe+Mode
http://support.mozilla.com/kb/Managing+profiles
Also, ensure you update all your plugins (Flash, Reader, java, quicktime, etc) to the latest version available on the vendor's website.
Whiteboard: [CLOSEME 2011-2-25]
Updated•15 years ago
|
Version: unspecified → 3.6 Branch
Comment 3•14 years ago
|
||
No reply from reporter, INCOMPLETE. Please retest with Firefox 4 or later and a new profile (http://support.mozilla.com/kb/Managing+profiles). If you continue to see this issue with the newest firefox and a new profile, then please comment on this bug.
Status: UNCONFIRMED → RESOLVED
Closed: 14 years ago
Resolution: --- → INCOMPLETE
You need to log in
before you can comment on or make changes to this bug.
Description
•