Bug ID
int64
961
1.91M
Comment ID
int64
3.98k
17.1M
Author
stringlengths
8
48
Comment Text
stringlengths
1
64.3k
βŒ€
13,054
97,200
Overview Description: When you try to submit a form that contains more than 16KB of data in a single hidden/text input or textarea fields, it fails to send that data to the server and it hangs the browser. Hidden fields may contain large amounts on application generated data. I tried posting 64KB (four times more than the above) using 4.5 or pre-Necko builds, and the data is sent without a flaw. Steps to Reproduce: 1) Click on the URL provided and verify you have access to the cgi script. It will respond as "Welcome to Bubblegum Server!". If you cannot access to bubblegum, download the attached cgi script and put it on a web server directory with cgi execution privileges. 2) Load the attached testcase, or create an HTML file with the following contents, and *wait* (10~20 sec. on Win NT) until it loads : <HTML> <HEAD> <TITLE>Data Length Submission Test</TITLE> </HEAD> <BODY> <FORM ACTION="/gerardok/cgi/cgitest.cgi" METHOD="post"> <INPUT TYPE="hidden" NAME="myname"> <INPUT TYPE="submit"> </FORM> <SCRIPT type="text/javascript"> // Generate text for ~17KB for( i = 65; i < 82; i++ ) { //10 char alphabetic string var s = ""; var c = String.fromCharCode(i); for( k = 0; k < 10; k++ ) { s += c; } //Generate ~1000 char string for( j = 0; j < 100; j++ ) { document.forms[0].myname.value += s; } document.forms[0].myname.value += "<br>"; } alert( "Page loaded" ); </SCRIPT> </BODY> </HTML> 3) When the page is loaded, an alert msg. will be displayed. Press the Ok button to close that dialog box. 4) Click on the Submit button, and wait (5~10 sec. on Win NT) for the cgi response. Actual Results: The browser window hangs. Expected Results: The submitted data should be displayed right below Bubblegum's greeting Msg. Build ID & Platform Bug Found: 1999-08-30-10-M10 on Win NT Additional Builds and Platforms Tested On: 1999-08-30-01 on Linux, and 1999-08-30-09 on Mac. Additional Information: Use hidden input only on Linux, as the UI widgets aren't holding much data there because another bug. Load the second attached testcase that sends only ~16KB, in order to demostrate a successful data submission.
13,706
101,514
Overview Description: If you open a form in a child window, it fails to submit the form data to the server. It happens with the POST and GET methods from Apprunner only. Viewer works fine. Regression from 4.x. Steps to Reproduce: 1) Click on the URL provided and verify you have access to the cgi script. It will respond as "Welcome to Bubblegum Server!". If you cannot access to bubblegum, download the attached cgi script and put it on a web server directory with cgi execution privileges. 2) Download the attached testcase, or create an HTML file with the following contents: <HTML> <HEADER> <TITLE>Parent Window</TITLE> </HEADER> <BODY> <SCRIPT> window.open('form.html', 'childw'); </SCRIPT> </BODY> </HTML> 3) Download the attached 'form.html' file, or create an HTML file with the following contents: <HTML> <HEAD> <TITLE>Form Submission from Child Window</TITLE> </HEAD> <BODY> <FORM ACTION="http://bubblegum/gerardok/cgi/cgitest.cgi" METHOD="post"> <INPUT TYPE="text" NAME="myname"> <INPUT TYPE="submit"> </FORM> </BODY> </HTML> 4) Load the testcase in the browser. It would open a child window with form.html in it. 5) Type in 'foo' in the text input and click on the submit button. Actual Results: The form data is not sent; no server response. Expected Results: Form data sent to the server and it would be displayed right below Bubblegum's greeting Msg. Build ID & Platform Bug Found: 1999-09-09-08-M10 MacOS build Additional Builds and Platforms Tested On: 1999-08-30-01-M10 Linux build Additional Information: It works fine on Viewer on all platforms, and on Win32 Apprunner too.
13,798
102,137
Build Date & Platform Bug Found: MacOS seamonkey build 1999-09-08-08-m11 build installed on G3/400 MacOS 8.5.1 Overview Description: After the 9/8 builds, configuring for IMAP freezes application. I select the Inbox and the application stops responding. Î must force quit to close the application. In the 9/8 and prior builds, I can successfully access my IMAP mail. I have tried to migrate vs. manually set my prefs; the results are the same Steps to Reproduce: 0) Delete your old profile and mozilla registry file 1) Start Apprunner The new profile wizard appears 2) Click on the next button 3) Enter in a profile name or choose the default "mozprofile" and press next 4) Click on the Finish button Seamonkey browser should open 5) Exit seamonkey 6) Copy an existing Nova Mail, News, IMAPMail folders and Netscape Preference file to your new profile. 7) Delete the prefs.js file that the profile manager created 8) Rename your 'Netscape Preference' file to prefs.js 9) Lanuch Apprunner 10) Open Messenger 11) Double click on the server icon to expose Inbox 12) Click on the IMAP Inbox folder Applications stops responding. Actual Results: After openning the Messenger. When I click on the Inbox, the application stops responding. Expected Results: When I select the Inbox or click on the Get Msg button, the password prompt should appear and allow me to access my IMAP folders. Additional Builds and Platforms Tested On: On the Win32 1999-09-13-10 and Linux 1999-09-13-08 builds, this problem does not occur. I tried today MacOS 1999-09-14-09 build. The problem still occurs. Additional Information: Running apprunner -installer does work. Related bug 13733. I have tried different scenarios such as a) starting from stratch with no mozilla registry b) starting from a working profile then moving to the recent build. I tried enabling IMAP logging. The resulting log file was blank. I did not log this bug eariler b/c I was busy running smoketests which require pop. I am having problem configuring news too. I will log a separate bug on this issue.
5,436
39,737
Overview Description: the command line option -url is now ignored when apprunner is invoked from command line. Steps to Reproduce: 1) in a command shell, type `./apprunner -url http://www.mozilla.org` 2) note that navigator.xul is used to create the ui. Actual Results: Navigator has an empty url and displays no page, but does use Navigator.xul. Expected Results: Navagator should use have loaded mozilla.org's homepage after it loaded navigator.xul. (either that, or their should be some way to specify which file to use for your UI and which url you'd like as the default location.) Build Date & Platform: 4/23/99 build on RedHat Linux 5.2 4/22/99 (17) build on Win NT 4.0 sp4.
5,729
42,236
Project: Seamonkey Program: Apprunner.exe BuildID: 1999-04-29-08 Platform: WinNT If you have an window named FooWin, window.open("URL", "FooWin") fails to locate that window and it opens a new window with the same name instead. The same failure is happening on Win32, MacOS and possibly on Linux. Viewer.exe doesn't show that failure. Steps to reproduce: 1. Create an HTML file with the following content: <HTML> <HEAD> <TITLE>test.html</TITLE> </HEAD> <BODY> <SCRIPT type="text/javascript"> window.open("http://bubblegum", "FooWin"); window.open("http://slip", "FooWin"); </SCRIPT> </BODY> </HTML> 2. Load that file in apprunner Actual Results: It opens two child windows. Expected results: A single child window opened with the homepage from slip server displayed in it.
9,381
70,769
Overview Description: When a CGI program is executed a second time, the Browser doesn't display the output generated by the CGI. Instead, it keeps displaying the content created the first time the CGI was executed, and the following message remains in the status bar: "Connecting to <CGI URL>?<name>=<value>" Steps to Reproduce: 1) Load the following URL in the Browser: http://bubblegum/test1/cgitest.cgi?name=hello where the cgi file content is: #!/usr/local/bin/perl require "cgi-lib.pl"; &ReadParse(*input); print "Content-type: text/html", "\n\n"; print "<HTML>\n"; print "<HEAD>\n"; print "<TITLE>CGI Test</TITLE>\n"; print "</HEAD>\n"; print "<BODY>\n"; print "<H1>Welcome to Bubblegum Server!</H1>\n"; print "Parameter: $input{'name'}\n"; print "</BODY>\n"; print "</HTML>\n"; exit(0); 2) The browser would display a page with the following content: "Welcome to Bubblegum Server! Parameter: hello" 3) Now, load the following URL in the Browser: http://bubblegum/test1/cgitest.cgi?name=world Actual Results: The first page remains on screen Expected Results: A new page loaded and the following content displayed in it: "Welcome to Bubblegum Server! Parameter: world" Build ID & Platform Bug Found: 1999-07-06-08-M8 on Win NT 4.0 Additional Builds and Platforms Tested On: 1999-07-07-08-M8 on Mac OS 8.5 and Linux 5.2 Additional Information: It may be related to reload button not working properly on the latest builds. It happens also on Viewer.exe
9,601
72,390
Overview Description: I am crashing on Windows accessing the Edit - Wallet - Wallet Contents menu items. It is crashing in raptorhtml.dll, so assigning to Rickg. It is *not* related to any of the dialogue issues that have been coming up, because it happens even if the password database has already been opened. Steps to Reproduce: 1) Launch Apprunner 2) Unlock signon database by going to Edit - Wallet - Change Password menu item and hitting OK twice. 3) Goto Edit - Wallet - Wallet Contents Actual Results: Immediate crash in raptorhtml.dll Expected Results: Wallet Contents page should be displayed. Build Date & Platform Bug Found: 071008 build, Win95 Additional Builds and Platforms Tested On: None yet (at home right now) Call Stack: (Signature = nsCSSFrameConstructor::ContentRemoved 8edbc7cc) nsCSSFrameConstructor::ContentRemoved [d:\builds\seamonkey\mozilla\layout\html\style\src\nsCSSFrameConstructor.cpp, line 4609] StyleSetImpl::ContentRemoved [d:\builds\seamonkey\mozilla\layout\base\src\nsStyleSet.cpp, line 823] PresShell::ContentRemoved [d:\builds\seamonkey\mozilla\layout\html\base\src\nsPresShell.cpp, line 1737] nsDocument::ContentRemoved [d:\builds\seamonkey\mozilla\layout\base\src\nsDocument.cpp, line 1616] nsHTMLDocument::ContentRemoved [d:\builds\seamonkey\mozilla\layout\html\document\src\nsHTMLDocument.cpp, line 776] nsDocument::Reset [d:\builds\seamonkey\mozilla\layout\base\src\nsDocument.cpp, line 854] nsHTMLDocument::Reset [d:\builds\seamonkey\mozilla\layout\html\document\src\nsHTMLDocument.cpp, line 248] _PR_MD_UNLOCK [w95cv.c, line 328] nsHTMLDocument::Open [d:\builds\seamonkey\mozilla\layout\html\document\src\nsHTMLDocument.cpp, line 1413] NETLIB.DLL + 0x39920 (0x607d9920)
10,333
77,512
Build: 1999-07-21-16-M9-NECKO Platform: Windows 95 Configuration: 133 MHz, 48 MB Steps: When loading url's either from command line or from the UI location, all the status bar messages are not displayed except for the 'Document Done:' message in the end.
11,141
83,483
Overview Description: Document.write fails to write HTML tags and any text written before the last tag. Steps to Reproduce: 1) Create a HTML file with the following content: <HTML> <HEAD> <TITLE>test.html</TITLE> </HEAD> <BODY> <SCRIPT TYPE="text/javascript"> document.write('Foo'); document.write('<BR>'); document.write('World'); </SCRIPT> </BODY> </HTML> 2) Open the file in apprunner Actual Results: Only the word 'World' is displayed. Expected Results: The words 'Foo' and 'World' displayed in two separate lines. Build ID & Platform Bug Found: 1999-07-28-15-M9 on Windows NT Additional Builds and Platforms Tested On: The same failure happens on 1999-07-28-15-M9 on Linux, and on 1999-07-28-14-M9 on Mac Additional Information: n/a
11,279
84,568
Overview Description: When a form is submitted 3-6 times, using the POST method, the browser crashes at on all platforms. Steps to Reproduce: 1) Load the following URL in the browser: bubblegum/test1/form.html where the HTML file content is: <HTML> <HEAD> <TITLE>Form Submission Test</TITLE> </HEAD> <BODY> <FORM ACTION="/gerardok/cgi/cgitest.cgi" METHOD="post"> <INPUT TYPE="text" NAME="name"> <INPUT TYPE="submit"> </FORM> </BODY> </HTML> 2) Fill in the text input field and click on the submit button. It would submit the data to rhe following cgi: #!/usr/local/bin/perl require "cgi-lib.pl"; &ReadParse(*input); print "Content-type: text/html", "\n\n"; print "<HTML>\n"; print "<HEAD>\n"; print "<TITLE>CGI Test</TITLE>\n"; print "</HEAD>\n"; print "<BODY>\n"; print "<H1>Welcome to Bubblegum Server!</H1>\n"; print "Parameter: $input{'name'}\n"; print "</BODY>\n"; print "</HTML>\n"; exit(0); 3) You should get a cgi reponse as: Welcome to Bubblegum Server! Parameter: <your input> 4) Try repeating steps 1-3 around six times. Actual Results: Browser crashes Expected Results: The cgi response displayed as above Build ID & Platform Bug Found: 1999-08-04-09-M9 on Win NT Additional Builds and Platforms Tested On: 1999-08-04-09 on Mac OS Additional Information: n/a
11,404
85,468
Overview Description: When a window is opened using JavaScript, the page specified in window.open is loaded but Apprunner loads the home page right after that. The home page stays on screen instead of the specified page. Steps to Reproduce: 1) Create an HTML file with the following content, or load the above attachment: <HTML> <HEAD> <TITLE>test.html</TITLE> </HEAD> <BODY> <SCRIPT type="text/javascript"> window.open("http://bubblegum", "ChildWindow"); </SCRIPT> </BODY> </HTML> Actual Results: Home page at mozillazine.org displayed in new window. Expected Results: New window opened and showing the bubblegum server home page. Build ID & Platform Bug Found: 1999-08-06-09-M9 on Win NT Additional Builds and Platforms Tested On: 1999-08-04-M9 on MacOS Additional Information: Mac doesn't even open a new window.
11,657
87,222
Clicking Reload page does not do anything, but the message "xxxx page is loaded successfully" shows up. Steps of reproduce 1. Go to http://www.yahoo.co.jp/ 2. Click on Reload button Nothing happens. In the console, "Going to reload http://www.yahoo.co.jp/ is loaded successfully" displays. 3. Select menu View|Character set->Japanese(EUC-JP) Nothing happens. Tested 8-11-08 Win32 and MAC, and 8-10-09 MAC build.
17,088
124,198
If we try to submit one form to same cgi again and again by calling same page from cgi, form does not get submitted second time. N4.x does submit form in loop again and again untill we close application, but apprunner fails to submit form second time. We are approaching this techniq in our driver, and its blocking our automation test. BUILDS TESTED: FAILED ON THESE BUILDS: 10-22-09, 10-20-09, 10-19-09 WORKING FINE ON THIS BUILD: 10-18-12 STEPS TO REPRODUCE: 1] Please visit Urls mentioned above. [It has one page that submits data onLoad event of page to once cgi, and this cgi calls same page again.] OR 1] Please copy HTML code I'm providing, save it as HTML file. 2] Please copy CGI code I'm providing, Save it as cgi file. 3] Change action of form in HTML file, to your new lcation of cgi file. 4] Change last line of cgi file, set window.location to your new location of HTML file. 5] Open this HTML file in mozilla.exe 6] You can see "Click to see Results: desaletest.html" on screen. Click this "desaletest.html", to see how many times we submitted data. EXPECTED RESULTS: Form should keep on submitting data to cgi in a loop, since we are submitting data onLoad event of page, and we are calling page from cgi too. If you try to access Results file by clicking "desaletest.html" on screen, you should see "Input Hidden Data" line multiple times, since we are submitting same data in loop. ACTUAL RESULTS: After submitting data first time, form stops submitting data second time. If you try to access Results file by clicking "desaletest.html" on screen, we can see "Input Hidden Data" line just once. [NOTE: If we perform this test multiple times, results file will keep on apending data on it, so every time you perform test you need to delete desaletest.html from results directory. It'll be better if you simulate problem on your own machine using code I'm providing, instead of using URL above.] HTML CODE START: <HTML> <HEADER> <TITLE>NGDriver</TITLE> </HEADER> <script> <!-- function fixSubmit() { document.results.submit(); } //--> </script> <BODY onLoad="fixSubmit();"> Clic to See Results: <a href=http://bubblegum/ngdriver/results/desaletest.html target=results>desaletest.html</a><br><br> <FORM name="results" action="/ngdriver/cgi-bin/prashant1.cgi" method="post"> <INPUT name=resultsfile type=hidden value=desaletest.html> <input type="hidden" name="textarea" value="Input Hidden Data "> </FORM> </BODY> </HTML> HTML CODE END: CGI CODE START: #!/usr/sbin/perl require "cgi-lib.pl"; MAIN: { &ReadParse(*input); print &PrintHeader; #Next line for NT chdir("e:\\WebDocs\\NGDriver"); $resultsdir = "results"; $resultsfile = $input{'resultsfile'}; $s = $input{'textarea'}; open(hFILE, ">>$resultsdir/$resultsfile") || die "ERROR"; print hFILE "<br>$s<br>"; close(hFILE); print "<script>window.location='http://bubblegum/ngdriver/pratesting/test2.html';</scr ipt>"; } 1; # return true CGI CODE END: I'm not sure how clear I am to explain the problem. If you have any questions, please feel free to ask me.
17,490
126,738
Steps to reproduce: 1. Launch seamonkey 2. Choose editor/ file/open to a composer file (like a status report) 3. Make some corrections/additions and save Actual results: data corrupted file Expected results: saved file for printing On Win32 only build 1999102708
17,519
126,956
Marking blocker because this bug is leading to annoying random changes to fields in Bugzilla, especially Target Milestone fields. DESCRIPTION: Sometimes the wrong thing shows up selected. STEPS TO REPRODUCE: * load http://bugzilla.mozilla.org/show_bug.cgi?id=17517 ACTUAL RESULTS: * it says "ActiveX Wrapper" and "M1" are selected instead of "XPApps" and "". DOES NOT WORK CORRECTLY ON: * Linux, apprunner, 1999-10-28-08-M11 WORKS CORRECTLY ON: * older builds ADDITIONAL INFORMATION: * I assume if you submit the form, these get changed, because I've had a number of fields changed by me that I didn't change.
17,835
129,328
Now this bug is little complicated to get where exact failure is. This crash definately needs three processes to happen. First "changing focus from one input to another input" , then second "assigning some value to second input onFocus event" , and last is "changing window location". If these three processes happen in order then application crashes. [Again inputs need to be text or password.] BUILDS: 11-02-09, 11-01-09. STEPS TO REPRODUCE: 1] Please copy HTML code I'm providing. Save it as HTML file. 2] Open this HTML file with apprunner with above specified builds. EXPECTED RESULTS: First the testcase page should be loaded and then http://www.yahoo.com should be loaded. ACTUAL RESULTS: Once testcase is loaded, application crashes before loading http://www.yahoo.com. [Does not even create stack trace report window] TESTCASE CODE START: <HTML> <HEAD> <TITLE> TEST PAGE </TITLE> </HEAD> <BODY> <FORM NAME="workform"> <input type=text name=testing1 size=15 > <script LANGUAGE="JavaScript"> <!-- document.workform.testing1.focus(); //--> </script> <input type=password name=testing value="false" onFocus="retresult(this);" > <script LANGUAGE="JavaScript"> <!-- function retresult(input1){ input1.value="true"; } document.workform.testing.focus(); location.href = "http://www.yahoo.com"; //--> </script> </FORM> </BODY> </HTML> TESTCASE CODE END: Vidur, you might find this little confusing, and I tried to get to exact point, but it does not crash if I take out any of these three processes. So I guess After assigning value to password if we try to change window location then application crashes. Please ask me if you need any more information on this. I tried to explain as much as possible.
6,175
45,799
Build: Mac May 10 build (1999-05-10-08-M6) installed on PPC 7200/90 and PPC Duo 2300/100 running Mac OS 8.5.1 Problem: Stopper & Regression. In this build, it does not display the local folders. Instead it displays the contents of my application folder such as Nsmail-2 apprunner Chrome Components Essential Fiules localstore.rdf viewer.app It takes awhile before I can display these folder because it is creating MSF files again in the application folder. I have not found a work around. This is a regression because if I go back to the previous build 1999050708-M6, it does not have a problem recognizing folders and does not create extra MSF files. Steps to reproduce problem: 1) Launch the May 10 apprunner Apprunner opens to a browers window 2) Select the Tasks menu and choose Messenger Messenger slowly comes up 3) Select the mail server folder I selected "nsmail-2" icon It takes some time for it to select the icon 4) Double click on the nsmail-2 icon The mail server icon expands to show the following folder: Nsmail-2 apprunner Chrome Components Essential Files localstore.rdf viewer.app
6,176
45,805
Build: Mac May 10 build (1999-05-10-08-M6) installed on PPC 7200/90 and PPC Duo 2300/100 running Mac OS 8.5.1 Problem: In todays build, you can not send mail message from the Mac. It looks like it sending but nothing is received at the other end. Note: this problem did not occur in the previous Mac build (1999050708-M6) or todays win32 (1999051008-M6) build. Steps to reproduce problem: 1) Lanuch Apprunner 2) Open Messenger 3) Click on the New Msg button off the toolbar 4) Address the mail message to a Nova mail account (since bug 6175 & 6106) 5) Add a subject and short message 6) Send the mail message 7) On Communicator, try to retrieve the message The message is not received.
6,362
47,288
Viewer Crashing if we try to submit formvalues using javascript method submit(). If we use regular input button and we call javascript function onclick of that button in order to submit form, it crashes viewer. the button used here is not actually input type="submit", its just a regular button type="button" and Onclick of this button submit() method is called. Product: Semonkey [Viewer]. Build: 05-13-10. OS: Win95. Steps to Reproduce: 1] Please copy code I'm providing. 2] Save as HTML file and open this HTML file in viewer. 3] you will see one textbox and one button called "Submit". click this button. Expected Results: It should try to submit form values to cgi file. Actual Results: Viewer Crashes Code: <HTML> <HEAD> <TITLE>Javascript Submit() test</TITLE> </HEAD> <script> <!-- function runSuites() { document.suites.submit(); } //--> </script> <BODY> <form name="suites" action="somefile.cgi" method="post"> <input type="text" name="filename" value="temp.txt"> <input type=button value="Submit" onclick=runSuites()> </form> </BODY> </HTML> End of Code.
7,911
59,584
Build: June 10 Win32 seamonkey build (19990901008) running on Gateway P200 Win98 Problem: Mail smoke test failed on SMTP. No message is sent out from Seamonkey. I tried sending to Seamonkey client and to Nova client. Nothing was received. This is a regression from yesterday build. Note: I did not have a chance to check Linux or PPC. Steps to reproduce problem: 1) Remove Mozregistry.dat from Windows directory 2) Delete the previous profile 3) Run apprunner application 4) Go through profile wizard 5) I copied my single pop prefs50.js into the new profile directory 6) Run apprunner application again 7) Open Messenger from the Task menu 8) Click on the New Msg button The compose window appears 9) Address the message to yourself It does not matter which client you try to receive the mail message 10) Add a subject and a short message 11) Send message Compose window closes. No error message in the Apprunner window. 12) Retrieve mail message from Seamonkey or Nova Nothing is received.
8,029
60,374
Build: PPC June 11 Seamonkey build (1999061108) installed on PPC 8600/300 OS 8.5.1 Problem: Smoke test failed SMTP test. You can send the message but the message is sent not formed correctly. The subject is blank. The message body is blank or has misc. characters in it. I have sent the mail message to seamonkey client and nova client. Note: this problem does not occur in the June 11 Win32 or Linux 1999061108 builds. This problem did not occur in yesterday respin build 1999061013 build. Sample e-mail message from seamonkey sent to nova. Page View output. ---- Return-Path: <3qatest05> Received: from 3qatest05 ([208.12.40.157]) by dredd.mcom.com (Netscape Messaging Server 4.01) with ESMTP id FD6N5700.8E5 for <[email protected]>; Fri, 11 Jun 1999 14:46:19 -0700 Date: Fri, 11 Jun 1999 14:46:19 -0700 Message-ID: <[email protected]> From: [email protected] (3qatest05 testaccount-lchiang) ÚΓ„Ú Γ B --------- Steps to reproduce problem: 0) Remove old mozregistry preference file and profile directory 1) Install todays build 2) Run through profile wizard 3) Copy your prefs50.js into the profile directory and Default directory (Strange that it is looking in the Default directory now) 4) Launch Apprunner 5) Open Messenger from the Task menu 6) Click on the New Msg button 7) Address the message to an account you can retrieve on Communicator 8) Add a Subject and short message 9) Send Message 10) On Communicator, retrieve the message 11) View message Notice that the message has no subject and wrong message body 12) View|Page Source Notice the message is incomplete.
13,891
102,790
Steps to reproduce: -select a message in the Inbox; -click Reply(or Forward); //note: there is no Re: and the subject is blank (same happens with Forward) (when you get the message it doesn't carry Re: or For indication)
14,223
105,150
Overview Description: If you have a page that contains a form element and some JavaScript code, the code is not executed. If the form is removed, the JavaScript code runs fine. Steps to Reproduce: 1) Open the attached testcase in the Browser, or create an HTML file with the following content and open it: <HTML> <HEAD> <TITLE>Form followed by JavaScript</TITLE> </HEAD> <BODY> <FORM ACTION="donothing.cgi" METHOD="post"> </FORM> <SCRIPT> //dump("hello"); //uncomment for viewer alert("hello"); </SCRIPT> </BODY> </HTML> Actual Results: Alert dialog not displayed Expected Results: Alert dialog displayed on screen Build ID & Platform Bug Found: 1999-09-17-13-M11 on Win NT Additional Builds and Platforms Failed On: 1999-09-17-08-M11 on Mac OS and 1999-09-17-08-M11 on Linux Additional Information: If the <FORM> and </FORM> tags are removed, the JavaScript code runs fine.
15,720
115,248
Build Date & Platform Bug Found: MacOS commercial seamonkey build 1999-10-06-08-m11 installed on G3/400 OS 8.5. Overview Description: In today commercial Mac build, I can not retrieve mail under POP. I tried to migrate my profile and create a new profile. No mail message appear in the inbox. I exit messenger and re-launched it just to be sure it wasn't a refresh problem. This problem does not occur on IMAP (yet you have to refresh the inbox folder before you see you new messages). Steps to Reproduce: 0) Create a pop profile under communicator 4.x 1) Double click on the icon 'mozilla installer" 2) Select your profile and click on the start button You will crash b/c of bug 15687. 3) Double click on 'mozilla messenger' icon 4) Messenger launches 5) Expand the list of pop folders, click on the '+' 6) Select the inbox 7) Click on the Get Msg button The status bar indicate that it is retrieving message 1 of xx 8) Exit Messenger and start Messenger again No messages are in the folder. Actual Results: No message appears to be downloaded. The status bar indicate that it is retrieving message 1 of xx but stops. I view my inbox file on the hard disk and it's empty. Expected Results: It should retrieve the new messages on the server Additional Builds and Platforms Tested On: This problem does not occur on win32 commercial build 1999-10-06-09-m11 or the win32 commercial build 1999-10-06-08-m11. Additional Information: This worked in yesterday commercial build.
15,769
115,522
Having <select></select> without options inside, crash application real hard. BUILDS: 10-06-19 [M10][Apprunner/Viewer] STEPS TO REPRODUCE: 1] Please copy code I'm providing. Save it as HTML file. 2] Open this HTML file with apprunner as well as viewer. EXPECTED RESULTS: Application should simply load the page. ACTUAL RESULTS: Application crashes. DESCRIPTION: Application is crashing because of having empty select list in HTML code. We can have empty select list because we can expect cgi to fill this select depending on the data coming from cgi. Having <select> </select> in HTML code is crashing application. On other hand if we put option inside the select list then it does not crash. If we use <select> <option>opt1</option> </select> then it does not crash. So having empty select is crashing the application. CODE: <html> <head> <title>Tester.html</title> </head> <body> <form name="workform" > <select> </select> </form> </body> </html> END OF CODE: STACK REPORT Incident ID: 14133930 Trigger Type: Program Crash Trigger Reason: Access violation Call Stack: (Signature = nsListControlFrame::DisplaySelected 4708ac3c) nsListControlFrame::DisplaySelected [d:\builds\seamonkey\mozilla\layout\html\forms\src\nsListControlFrame.cpp, line 545] nsListControlFrame::SetContentSelected [d:\builds\seamonkey\mozilla\layout\html\forms\src\nsListControlFrame.cpp, line 1220] nsListControlFrame::Reset [d:\builds\seamonkey\mozilla\layout\html\forms\src\nsListControlFrame.cpp, line 1339] nsListControlFrame::Init [d:\builds\seamonkey\mozilla\layout\html\forms\src\nsListControlFrame.cpp, line 981] nsCSSFrameConstructor::InitializeScrollFrame [d:\builds\seamonkey\mozilla\layout\html\style\src\nsCSSFrameConstructor.cpp, line 4038] nsCSSFrameConstructor::ConstructSelectFrame [d:\builds\seamonkey\mozilla\layout\html\style\src\nsCSSFrameConstructor.cpp, line 2950] nsCSSFrameConstructor::ConstructFrameByTag [d:\builds\seamonkey\mozilla\layout\html\style\src\nsCSSFrameConstructor.cpp, line 3060] nsCSSFrameConstructor::ConstructFrame [d:\builds\seamonkey\mozilla\layout\html\style\src\nsCSSFrameConstructor.cpp, line 4869] nsCSSFrameConstructor::ProcessChildren [d:\builds\seamonkey\mozilla\layout\html\style\src\nsCSSFrameConstructor.cpp, line 7987] nsCSSFrameConstructor::ConstructFrameByTag [d:\builds\seamonkey\mozilla\layout\html\style\src\nsCSSFrameConstructor.cpp, line 3153] nsCSSFrameConstructor::ConstructFrame [d:\builds\seamonkey\mozilla\layout\html\style\src\nsCSSFrameConstructor.cpp, line 4869] nsCSSFrameConstructor::ContentAppended [d:\builds\seamonkey\mozilla\layout\html\style\src\nsCSSFrameConstructor.cpp, line 5417] StyleSetImpl::ContentAppended [d:\builds\seamonkey\mozilla\layout\base\src\nsStyleSet.cpp, line 864] PresShell::ContentAppended [d:\builds\seamonkey\mozilla\layout\html\base\src\nsPresShell.cpp, line 1724] nsDocument::ContentAppended [d:\builds\seamonkey\mozilla\layout\base\src\nsDocument.cpp, line 1575] nsHTMLDocument::ContentAppended [d:\builds\seamonkey\mozilla\layout\html\document\src\nsHTMLDocument.cpp, line 1044] HTMLContentSink::NotifyBody [d:\builds\seamonkey\mozilla\layout\html\document\src\nsHTMLContentSink.cpp, line 276] HTMLContentSink::WillInterrupt [d:\builds\seamonkey\mozilla\layout\html\document\src\nsHTMLContentSink.cpp, line 1770] CNavDTD::WillInterruptParse [d:\builds\seamonkey\mozilla\htmlparser\src\CNavDTD.cpp, line 3116] nsParser::ResumeParse [d:\builds\seamonkey\mozilla\htmlparser\src\nsParser.cpp, line 958] nsParser::OnDataAvailable [d:\builds\seamonkey\mozilla\htmlparser\src\nsParser.cpp, line 1340] nsDocumentBindInfo::OnDataAvailable [d:\builds\seamonkey\mozilla\webshell\src\nsDocLoader.cpp, line 1372] nsChannelListener::OnDataAvailable [d:\builds\seamonkey\mozilla\webshell\src\nsDocLoader.cpp, line 1613] nsHTTPResponseListener::OnDataAvailable [d:\builds\seamonkey\mozilla\netwerk\protocol\http\src\nsHTTPResponseListener.cp p, line 195] nsOnDataAvailableEvent::HandleEvent [d:\builds\seamonkey\mozilla\netwerk\base\src\nsAsyncStreamListener.cpp, line 359] nsStreamListenerEvent::HandlePLEvent [d:\builds\seamonkey\mozilla\netwerk\base\src\nsAsyncStreamListener.cpp, line 153] PL_HandleEvent [plevent.c, line 542] PL_ProcessPendingEvents [plevent.c, line 501] _md_EventReceiverProc [plevent.c, line 974] KERNEL32.DLL + 0x35d9 (0xbff735d9) KERNEL32.DLL + 0x2222f (0xbff9222f) 0x00638bec
16,126
117,689
OVERVIEW DESCRIPTION: I'm trying to set the value of a textarea via a function. Mozilla does not crash, but it does not set the field either. Older versions work as expected (try the build from 9-3-12 for example) The offending function is this: function writeResults(aTestcases) { var tc = 0; var output = "output variable initial setting"; // ORIGINALLY THIS FUNCTION FORMATTED A TABLE ENTRY AND ASSIGNED IT TO document.results.textarea.value THIS INFO WAS UNNECESSARY FOR SHOWING THE BUG // FOLLOWING IS THE RESULT THAT SHOULD (AND ON OLDER BUILDS DOES) END UP IN THE RESULT FILE document.results.textarea.value = "Any text here"; } This bug is stopping automated testing. (I set the component field to "Form Submission", apologies if that's not right, I wasn't sure who should get this.) STEPS TO REPRODUCE: - Run the file at the URL: http://bubblegum/NGDriver/Bug/TESTParent.html (internal only) - this file opens another window to run a test file: holiTEST.html - the result is written to a 3rd file (this mimics our automated testing process) - Next open this file to see the result: http://bubblegum/NGDriver/results/jancDebug.html ACTUAL RESULTS: Currently the results file contains this text (which is set prior to running the function which should re-set the value): "value field of form results set inside script tag; this text should have been overwritten by the writeResults() function" EXPECTED RESULTS: If the file runs correctly, the result file should contain this text: "This text correctly assigned to document.results.textarea.value from inside the function writeResults()" BUILD DATE & PLATFORM BUG FOUND: win98/NT 1999-10-06-09-M11 ADDITIONAL BUILDS & PLATFORMS TESTED ON: I can't get the mac or linux builds to work. I will test them and report when I can get results one way or the other on them.
49,822
402,517
DESCRIPTION: Using the classic skin makes the browser not work. By this I mean: * crash when closing a window * crash when clicking a link * give a JS error on startup: JavaScript error: chrome://navigator/content/navigator.js line 399: window._content has no properties STEPS TO REPRODUCE: * load profile manager * create fresh profile * start mozilla * in prefs, switch to classic skin * exit * start browser again. Interestingly, my existing profile (which used classic skin) worked the first time I ran with it, and then showed these symptoms the second time.
37,776
279,660
From Bugzilla Helper: User-Agent: Mozilla/4.7 [en] (Win95; U) BuildID: 20000501 When creating a new profile by running mozilla -profilemanager, the profile creation wizard runs, but the Finish button doesn't do anything. It depresses, but it doesn't seem hooked up. Auto profile creation (when there are no profiles) works fine. Reproducible: Always Steps to Reproduce: 1. Run mozilla -profilemanager with at least 1 existing profile 2. Attempt to create a new one. 3. Navigate through first screen. 4. Click "Finish". Actual Results: Nothing. Expected Results: Profile created.
37,898
280,667
Steps to reproduce: 1.Launch seamonkey. 2.Choose tasks->Compose 3. Start typing int the compose window Expected result: can type in the compose Actual result: Cannot type Build: 20000502 Platform: linux
41,373
316,762
I'm not sure if this is an editor problem, but I'll start here. using build 2000060208 on Win NT. I'm going through a list of bugzilla bugs and submitting changes to them. Every once in a while, the next bug that shows up reuses the edit fields from the previous bug. So, the new bug will have the correct bug number, it'll have the correct comments but it will have the wrong Summary and the wrong additional comments. Even worse, if I don't realize this is happening, when I submit the new bug, it will change these fields. This is dogfood in my opinion since I can't use bugzilla reliably. I'm not sure I'm explaining this well so if you need more info, let me know.
42,480
329,033
Steps to reproduce: 1. download MozMacInstaller for build 2000-06-13-19M16 2. Run the Installer- choosing any configuration (typical/default folder), (custom/custom folder), other permutations 3. After 'extracting files' message appears- system error box pops up with error -43 all .xpi files are present, .sea.bin file works not sure if this is a blessed build but wanted to track
39,619
298,177
From Bugzilla Helper: User-Agent: Mozilla/4.0 (compatible; MSIE 4.01; Windows NT) BuildID: 2000051708 When you try to type a URL into the URLbar you cant, if you try to search using the sidebar you cant type. Reproducible: Always Steps to Reproduce: 1.click on URLBAR try to type 2. 3.
40,213
303,100
Submitting form with input "submit" is fine, and is no problem. But if we try to use input "button" as a submit button, and if we try to call "submit()" method on click of that button, then it does not work. [It does not submit form.] So submit() method is broken. STEPS TO REPRODUCE: 1] Visit above specified URL. [I created testcase, and it is there] 2] You'll see two buttons. One is "input submit" button, and one is "input button". 3] Select any option is select, and then click "Submit button". [This time form gets submitted." 4] Load above specified URL again. 5] This time click "Normal Button" [Which calls "submit()" method] [This time form does not get submitted.] EXPECTED RESULTS: Form should get submitted with click of both buttons. ACTUAL RESULTS: Form gets submitted only with regular submit button, and not with normal button which uses "submit()" method. This is happening only on Linux. There are lots of sites use this kind of submit, using "submit()" methods on any events. Its a blocker to our automation on Linux.
100,608
927,163
20010919 0.9.4 builds on all platforms. As of 0919 branch builds, aucomplete against polyglot.mcom.com is not working. It's regression. LDAP autocomplete has been working against polyglot.mcom.com well through 20010917 0.9.4 builds. Back to 20010917 0.9.4 branch builds on all platforms, autocomplete is still working. The server has no problem! Settings as following: Hostname: polyglot.mcom.com Base DN: o=Airius.com Port Number: 389
92,497
844,158
we see intermittant core dumps on Redhat linux 7.1 on the tip as well as in 3.3. The machines that are failing are box and nautica, both are fast, new machines. Huey is passing QA, this is an old P II. Most core dumps come from the debug version of certutil I have seen the core dumps happen when calling the tools from the commandline as well, that is why I file a bug on an intermittant problem Kirk builds NSS on box, and sees no core dumps when running QA on his builds box and nautica are both running gcc 2.96 20000731 on Redhat 7.1, I have not checked OS patches or anything like that I can not file this bug against redhat 3.3, it is not in the drop down list. nautica(103) certutil -N -d . -f pw Segmentation fault (core dumped) nautica(104) certutil -N -d . -f pw nautica(105) ore was generated by `certutil -N -d . -f pw'. Program terminated with signal 11, Segmentation fault. #0 0x40073dec in ?? () (gdb) bt #0 0x40073dec in ?? () #1 0x40103ce5 in ?? () #2 0x40037d8d in ?? () #3 0x400369de in ?? () #4 0x4003e087 in ?? () #5 0x4003e137 in ?? () #6 0x4003e174 in ?? () #7 0x0805191e in ?? () #8 0x4009f177 in ?? () Core was generated by `certutil -N -d . -f ../tests.pw.27832'. Program terminated with signal 11, Segmentation fault. #0 0x40073dbf in ?? () (gdb) bt #0 0x40073dbf in ?? () #1 0x40101a43 in ?? () #2 0x40106184 in ?? () #3 0x4010209d in ?? () #4 0x08058418 in SECU_GetPBEPassword (arg=0x6) at secutil.c:2303 #5 0x08050cd0 in main (argc=6, argv=0xbfffecdc) at certutil.c:2179 #6 0x4009f177 in ?? () Core was generated by `signtool -Z nojs.jar -d ../alicedir -p nss -k objsigner ../tools/html'. Program terminated with signal 11, Segmentation fault. #0 0x40073dbf in ?? () (gdb) bt #0 0x40073dbf in ?? () #1 0x40101a43 in ?? () #2 0x40106184 in ?? () #3 0x40103c66 in ?? () #4 0x40037d8d in ?? () #5 0x40031a2b in ?? () #6 0x4003df44 in ?? () #7 0x4003e137 in ?? () #8 0x4004c25a in ?? () #9 0x0804e971 in ?? () #10 0x4009f177 in ?? () Core was generated by `cmsutil -D -i alice.enc -d ../bobdir -e alicehello.env -p nss -o alice.data2'. Program terminated with signal 11, Segmentation fault. #0 0x4012ed24 in ?? () (gdb) bt #0 0x4012ed24 in ?? () #1 0x4012bc86 in ?? () #2 0x40250cb1 in ?? () #3 0x4003e292 in ?? () #4 0x4003d1cd in ?? () #5 0x4000df57 in ?? () (gdb)
88,936
807,805
- using branch bits from 7/2/01, mac - go to www.foxnews.com - click back in url bar, type some other webpage hit return nothing happens. even in new windows. the only way to browse is with personal toolbar.
35,590
260,935
If I read mail for more than 10 seconds or so, all events seem to get swallowed, so that I can't read mail messages, click on buttons, use menus, etc. Backing out your changes from around 9PM last night makes this problem go away. If I'm confused, just mark it invalid.
35,910
263,922
When you tried to print CJK page in Linux, the printer give you the error. Steps of reproduce 1. Go to above URL 2. Select menu View|Print to send to printer The paper prints out, but it prints the following error message. "Error: /undefined in Unicodedict Operand stack: 12469 Execution stack: %interp_exit .runexec2 --nostringval-- --nostringval-- --nostringval-- Dictionary stack: --dict:776/809-- --dict:0/20 -dict:75/200-- Current allocation mode is local Current file position is 104166 " I am using Redhat Linux 6.0 + Japanese locale. I tested printing in beta1 Linux build. It printed as garbage, but it printed. The bug 30176 mentions "Fail to print Chinese webpages". This bug is fixed, but we do not have the right environment to test this.
36,547
269,157
On that smoketest page, if you load it in a seperate window, and press the first link, the frame loads, but there is no back button this is on m16 2000042008. marking blocker due to granrose's recommendation
26,979
188,484
Just having window.open in body is crashing application. BUILDS: 02-08-09. STEPS TO REPRODUCE: 1] Please load attachment I'm going to provide. OR 1] Please copy HTML code I'm providing. Save it as HTML file. 2] Open this HTMl file with above specified builds. EXPECTED RESULTS: Should open new window with URL http://www.yahoo.com ACTUAL RESULTS: Application crashes. TESTCASE CODE START: <HTML> <HEAD><TITLE>Window.Open()</TITLE></HEAD> <BODY> This page will open new Window. <SCRIPT> <!-- url = 'http://www.yahoo.com'; testWin = window.open(url, 'testWindow'); //--> </SCRIPT> </BODY> </HTML> TESTCASE CODE END:
27,279
191,711
If we use window.open continously to load new pages in the same child window one after another, then it keeps on opening new window for each window.open call. In our automation testing we open new window for loading every new testcase, and now this is opening new window for each new testcase. Which inturn makes application to crash. We have thousands of testcases. BUILDS: 2000-02-10-09. OS TESTED ON: Win-95, Linux. STEPS TO REPRODUCE: 1] Please visit above URL. 2] You'll see one parent window. This parent window will keep on opening one child window. 3] You'll see one counter on child window. And you'll see totally 5 new windows opened. OR 1] Please copy HTML codes I'm providing for parent window, as well as child window. Save those HTML files. Make chages in variabe 'url' in parent window code, according to new file locations. 2] Open parent file with above specified builds. 3] You'll see one parent window. This parent window will keep on opening one child window. 4] You'll see one counter on child window. And you'll see totally 5 new windows opened. EXPECTED RESULTS: Parent window should open child window 5 times, and keep on loading page in same child window. ACTUAL RESULTS: It opens 5 new windows for each window.open call. TESTCASE CODE FOR PARENT WINDOW START: <HTML> <HEAD><TITLE>Continous Window.Open()</TITLE></HEAD> <BODY> This is Parent Window which is going to open child window 5 times. <SCRIPT> <!-- var tcnum=1; opennewwin(); function opennewwin() { if(tcnum != 6) { url = 'http://bubblegum/desale/opennewwin1.html'; testWin = window.open(url, 'testWindow'); testWin.opener = self; testWin.focus(); tcnum++; } } //--> </SCRIPT> </BODY> </HTML> TESTCASE CODE FOR PARENT WINDOW END: TESTCASE CODE FOR CHILD WINDOW START: <html> <head> <title>Child window</title> </head> <body> This is child window which is going to get opened by parent window 5 times. <SCRIPT> <!-- document.write('<H1>'); document.write('Window Open Counter = '); document.write(window.opener.tcnum); document.write('</H1>'); window.opener.opennewwin(); //--> </SCRIPT> </body> </html> TESTCASE CODE FOR CHILD WINDOW END:
27,855
197,239
Steps to reproduce: 1. gunzip and tar the net....gz file 2. remove .mozilla directory 3. run mozilla Actual results: profile wizard comes up allowing to create profile console window shows the following: assuming d&d is off for Navigator nsCollationUnix::Initialize mLocale = C nsCollationUnix::Initialize mCharset = ISO-8859-1 am also able to migrate a profile but then stop with same messages
21,459
152,607
If we try to submit form onLoad event then form does not get submitted. On the other hand form submission with button click and other ways is working fine. Just form submission could not be done onLoad of page. BUILDS: 1999-12-10-09. 1999-12-09-20. STEPS TO REPRODUCE: 1]Please visit URL mentioned above with mentioned builds. [As soon as you open this page form should get submitted and you should see resluts of cgi file. which does not happen.] 2] Click on Submit button. [Now you can see that form got submitted, which should have happened as soon as we load page because we are calling same submit function onClick of this submit button.] ------- OR ------- 1] Please copy HTML code I'm providing. Save it as HTML file. 2] Copy CGI code I'm providing. Save it as CGI file. 3] Change action form action in HTML file according to location of your cgi file. 4] Open HTML file with above mentioned builds. [As soon as you open this page form should get submitted and you should see resluts of cgi file. which does not happen.] 5] Click on Submit button. [Now you can see that form got submitted, which should have happened as soon as we load page because we are calling same submit function onClick of this submit button.] EXPECTED RESULTS: As soon as we load the page, form submission should occur and we should see something like follows on screen. Text Value is: Temp Text Value Hidden Value is: Temp Hidden Value ACTUAL RESULTS: Form submission does not occur onLoad event of page. We need to click submit button to actually submit form. TESTCASE HTML CODE START: <html> <head> <title>Form Submission onLoad Event</title> </head> <script> <!-- function SubForm(){ document.workform.submit(); } //--> </script> <body onLoad="SubForm();"> <form name="workform" action="http://bubblegum/desale/cgi-bin/onloadsub.cgi" method="post" > Text to Input<input type="text" name="temptext" value="Temp Text Value" size="40"><br> This is Hidden<input type="hidden" name="tempsel" value="Temp Hidden Value" ><br> <input type=button name="button2" value="Submit" onclick="SubForm();"> </form> </body> </html> TESTCASE HTML CODE END: ---------------------------------- TESTCASE CGI CODE START: #!/usr/local/bin/perl require "cgi-lib.pl"; print "Content-type: text/html", "\n\n"; MAIN: { &ReadParse(*input); $textval = $input{'temptext'}; $selval = $input{'tempsel'}; print "<HTML>\n"; print "<HEAD>\n"; print "<TITLE>CGI Test</TITLE>\n"; print "</HEAD>\n"; print "<BODY>\n"; print "<H2> Text Value is: $textval</H2><br>\n"; print "<H2> Hidden Value is: $selval</H2><br>\n"; print "</BODY>\n"; print "</HTML>\n"; } exit(0); TESTCASE CGI CODE END: Now onLoad Event works fine if we try to call alert box onLoad of any page. So onLoad event in intself is working fine. Submission process on itself is also working fine. Just combination is not working. Means if we try submission onLoad then it does not work. I tried to give as much information as much I can. Let me know if you need any more information on this.
33,952
246,895
From Bugzilla Helper: User-Agent: Mozilla/5.0 (X11; U; Linux 2.2.14 i686; en-US; m14) BuildID: 2000033008 When clicking a link, a form button, or the Back button to go to another page, sometimes the page will start loading and suddenly stop. The status bar reads "Document: Done", though sometimes the status indicator keeps moving. The page redraws, but it is the same page I was on. If it happens on a button, the page doesn't even redraw. If I was opening the link in a new window, the window is empty. It keeps doing this until I reload the page. On Bugzilla itself, this seems to happen about 30% of the time. It did this to me on THIS page. The "Open Bugzilla Entry Form" button did nothing when I clicked on it. I had to reload and put all the information back in. Reproducible: Sometimes Steps to Reproduce: 1. Go to http://bugzilla.mozilla.org 2. Attempt to report a bug 3. You'll have to click enough links that this bug is bound to occur on one of them Actual Results: The page stops loading, the status bar says "Document: Done", and the page I'm on simply redraws. If I clicked a form button, the page doesn't even redraw. Expected Results: It should have gone to the destination of the link or the button.
25,274
174,598
Steps to reproduce: 1. clean mozregistry.dat/users50 2. install build 2000012709 (win) 3. mozilla launches with createprofile wizard that is blank- press buttons and get error messages (see below) must cancel 4. try mozilla -installer (profile manager comes up blank, does not display any 4.x profile for migration) 5. try mozilla -ProfileManager- same result as step 4 6. try mozilla -SelectProfile (workaround to bug 24911)- same result as step 4 --------------------------- error message from wizard when pressing next/finish buttons pressing next button in createprofilewizard javascript error type error prefix has no properties url chrome //global/content/widgetStateManager.js line 306 pressing finish button *** in onfinish javascript error type error wizardManager.wizardMap[wizardManager.currentPageTag] has no properties URL chrome://profile/content/createProfileWizard.js line no 85 ----------------------------------------- error from ProfileManager using mozilla -SelectProfile javascript error uncaught exception [exception...component returned failure code(0x80004005)ns_error_failure [nsIStringBundle.GetStringFromName] nsresult: "0x80004005 (ns_error_failure) location JS frame :: chrome://profile/content/profileManager.js :: SetUpOKCancelButtonMode line 225 or SwitchProfileManagerMode line 162 when trying to press manage profiles button
26,102
180,539
Steps to reproduce: 1. download mozilla...bin file, clean mozregistry and profiles folder 2. choose Mozilla ProfileManager or Mozilla ProfileWizard 3. Fill in data and press start 4. Seamonkey is launched- 5. Quit seamonkey 6. Choose Mozilla Select Profile or another option Actual results: crash on exit (will get stack crawl after testing netscape...bin file- 2nd launch shows splash screen then stops Expected results: no crash, relaunch build 2000020109
26,115
180,689
If we use window.open continously to load new pages, for first 4 times its fine, but fith time it crashes application. In our automation testing we open new window for loading every new testcase, and now this is blocking automation. BUILDS: 2000-02-01-00. OS TESTED ON: Win-95, Win-98, MACOS. STEPS TO REPRODUCE: 1] Please visit above URL. 2] You'll see one parent window. This parent window will keep on opening one child window. 3] You'll see one counter on child window. When this counter reaches 4, after that 5th time, you'll see crash. OR 1] Please copy HTML codes I'm providing for parent window, as well as child window. Save those HTML files. Make chages in variabe 'url' in parent window code, according to new file locations. 2] Open parent file with above specified builds. 3] You'll see one parent window. This parent window will keep on opening one child window. 4] You'll see one counter on child window. When this counter reaches 4, after that 5th time, you'll see crash. EXPECTED RESULTS: Parent window should open child window 5 times, since we are limiting counter to 6. ACTUAL RESULTS: 5th time it crashes application. TESTCASE CODE FOR PARENT WINDOW START: <HTML> <HEAD><TITLE>Continous Window.Open()</TITLE></HEAD> <BODY> This is Parent Window which is going to open child window 5 times. <SCRIPT> <!-- var tcnum=1; opennewwin(); function opennewwin() { if(tcnum != 6) { url = 'http://bubblegum/desale/opennewwin1.html'; testWin = window.open(url, 'testWindow'); testWin.opener = self; testWin.focus(); tcnum++; } } //--> </SCRIPT> </BODY> </HTML> TESTCASE CODE FOR PARENT WINDOW END: TESTCASE CODE FOR CHILD WINDOW START: <html> <head> <title>Child window</title> </head> <body> This is child window which is going to get opened by parent window 5 times. <SCRIPT> <!-- document.write('<H1>'); document.write('Window Open Counter = '); document.write(window.opener.tcnum); document.write('</H1>'); window.opener.opennewwin(); //--> </SCRIPT> </body> </html> TESTCASE CODE FOR CHILD WINDOW END:
26,129
180,765
Could not open new window with window.open in script tags. If we try to open new window on certain event then it does open new window. [For example, if we open new window on button click or something, or onLoad or any other event then it works.] But if we try to open new window with window.open mentioned in scrpt tags, then it does not open new window. [This bug was there for almost two three days now] This one is blocking our automation on Linux. BUILDS: 2000-01-31-14. STEPS TO REPRODUCE: 1] Please visit the URL I mentioned above. OR 1] Please copy HTML code I'm providing. Save it as HTML file. 2] Open this HTML file with above mentioned builds. EXPECTED RESUTS: As soon as you load the page, it should open new window adn load www.yahoo.com in new window. ACTUAL RESULTS: It does not open new window. TESTCASE CODE START: <HTML> <HEAD><TITLE>Continous Window.Open()</TITLE></HEAD> <BODY> This is Parent Window which is going to open child window 5 times. <SCRIPT> <!-- url = 'http://www.yahoo.com'; testWin = window.open(url, 'testWindow'); //--> </SCRIPT> </BODY> </HTML> TESTCASE CODE END:
29,837
215,154
Regression: In the addressing widget, if you enter more than one recipient email address, the field for the second and subsequent recipients is positioned incorrectly - it lays on top of the Compose window toolbar. Build ID: 2000-02-27-08 commercial (note: I downloaded a build from a directory labled 2000-03-01; not sure if the directory or the label in the build is incorrect) Steps to reproduce: 1. Launch Mail (Tasks | Mail) 2. Open a compose window ("New Msg" on mail toolbar) 3. Address message one recipient and hit enter Expected: Focus moves to second recipient entry field, directly below the first Actual: Focus moves to second recipient entry field, but this field is positioned on top of the Mail toolbar Note: This bug was previously fixed, but has reappeared.
87,360
792,210
From Bugzilla Helper: User-Agent: Mozilla/5.0 (Windows; U; Win 9x 4.90; en-US; rv:0.9.1+) Gecko/20010622 BuildID: 2001062204 PSM no longer pops up to ask if you want to store a password, and sites that have previously remembered passwords no longer fill in the form fields Reproducible: Always Steps to Reproduce: 1. go to any site with a login/password you have previously saved 2. PSM does not fill in fields Also 1. Go to site where you have not saved password and manually fill them in. 2. PSM does not ask if you want to rememeber the password. Actual Results: PSM does not fill in fields, does not ask if you want to remember passwords Expected Results: PSM uses previously saved passwords or asks for use of new ones I have marked this as critical as data is lost ie, saved passwords are not longer available from PSM
73,093
645,210
I have an email with 4 word attachments. I picked the second one to read first and it worked fine. After that, the remaining 3 were all corrupt and resulted in gibberish symbols in word. Going to 4.x, I am able to read all 4 of them, so I know the correct content was mailed and available on the server.
79,178
707,666
Error: Unhandled exception in mozilla.exe (IMGICON.DLL): 0xC0000005: Access Violation. Steps to reproduce: Installed Mozilla Talkback 2001050704 Open Tasks/Mail Click on an email message with attachments Mozilla crashes when drawing the preview. Reproducable: Always. I tried this on two computers, both Windows 2000 en Windows 98. Crash doens't happen when removing imgicon.dll (no icons shown for attachments) I get the same error when typing "moz-icon://test.txt" in the URL bar. (If that's a legal statement at all..) I submitted a talkback report, don't know how to get the ID for that.
79,553
711,080
From Bugzilla Helper: User-Agent: Mozilla/5.0 (Macintosh; U; PPC; en-US; rv:0.9+) Gecko/20010508 Netscape6/6.5b0 BuildID: 2001050804 Setting preferences for Directory cause Mail Compose window to be disabled. No action allows the user to obtain a compose window. All actions that should result in an error dialog that roughly says, "unable to create a mail compose window, please try again" Reproducible: Always Steps to Reproduce: 1. specify a directory in the global preferences 2. specify the directory for autocomplete 3. use any means (menu, command key, reply button) to create new mail Actual Results: dialog with warning described earlier Expected Results: blank compose window
419,840
3,501,660
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9b4pre) Gecko/2008022704 Minefield/3.0b4pre Firefox/3.0 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9b4pre) Gecko/2008022704 Minefield/3.0b4pre Firefox/3.0 Open Tools->Options Advanced: none of the buttons under the tabs work. Clicking on them does nothing, creates the following error: Error: gAdvancedPane is undefined Source file: chrome://browser/content/preferences/preferences.xul Line: 1 Reproducible: Always Steps to Reproduce: 1. 2. 3. Actual Results: Error msg in Console2 Error: gAdvancedPane is undefined Source file: chrome://browser/content/preferences/preferences.xul Line: 1 Expected Results: Buttons should work Today's nightly - Vista HP Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9b4pre) Gecko/2008022704 Minefield/3.0b4pre Firefox/3.0 ID:2008022704
414,871
3,460,335
BUILD: Current trunk Firefox STEPS TO REPRODUCE: 1) Set javascript.options.gczeal to 2 in about:config. 2) Quit the browser 3) Try to start the browser. EXPECTED RESULTS: Browser starts so I can debug the thing I really need to debug. ACTUAL RESULTS: (gdb) frame 0 #0 JS_Assert (s=0xb7ba2bc3 "thing", file=0xb7ba1e08 "../../../mozilla/js/src/jsgc.c", ln=1902) at ../../../mozilla/js/src/jsutil.c:63 63 abort(); with this stack: #0 JS_Assert (s=0xb7ba2bc3 "thing", file=0xb7ba1e08 "../../../mozilla/js/src/jsgc.c", ln=1902) at ../../../mozilla/js/src/jsutil.c:63 #1 0xb7b0e298 in JS_CallTracer (trc=0xbfffdde0, thing=0x0, kind=0) at ../../../mozilla/js/src/jsgc.c:1902 #2 0xb7b70ad8 in js_TraceScript (trc=0xbfffdde0, script=0x82ad960) at ../../../mozilla/js/src/jsscript.c:1535 #3 0xb7b098f8 in js_TraceFunction (trc=0xbfffdde0, fun=0xb480c480) at ../../../mozilla/js/src/jsfun.c:2017 #4 0xb7b0da98 in JS_TraceChildren (trc=0xbfffdde0, thing=0xb480c480, kind=3) at ../../../mozilla/js/src/jsgc.c:1709 #5 0xb7b0e64d in JS_CallTracer (trc=0xbfffdde0, thing=0xb480c480, kind=3) at ../../../mozilla/js/src/jsgc.c:1971 #6 0xb7b0f18e in TraceWeakRoots (trc=0xbfffdde0, wr=0x819638c) at ../../../mozilla/js/src/jsgc.c:2181 #7 0xb7b0f3be in js_TraceContext (trc=0xbfffdde0, acx=0x8196310) at ../../../mozilla/js/src/jsgc.c:2232 #8 0xb7b0f829 in js_TraceRuntime (trc=0xbfffdde0, allAtoms=1) at ../../../mozilla/js/src/jsgc.c:2298 #9 0xb7b0fdb6 in js_GC (cx=0x8196310, gckind=GC_LAST_DITCH) at ../../../mozilla/js/src/jsgc.c:2514 #10 0xb7b0cfe2 in js_NewGCThing (cx=0x8196310, flags=0, nbytes=32) at ../../../mozilla/js/src/jsgc.c:1359 #11 0xb7b36c2a in js_NewObject (cx=0x8196310, clasp=0xb7bb51a0, proto=0xb480f880, parent=0xb480f6c0) at ../../../mozilla/js/src/jsobj.c:2526 #12 0xb7acfd3d in JS_InitClass (cx=0x8196310, obj=0xb480f6c0, parent_proto=0xb480f880, clasp=0xb7bb51a0, constructor=0, nargs=0, ps=0x0, fs=0x0, static_ps=0x0, static_fs=0x0) at ../../../mozilla/js/src/jsapi.c:2658 #13 0xb7b362c1 in js_InitBlockClass (cx=0x8196310, obj=0xb480f6c0) at ../../../mozilla/js/src/jsobj.c:2258 #14 0xb7b370bf in js_GetClassObject (cx=0x8196310, obj=0xb480f6c0, key=JSProto_Block, objp=0xbfffe06c) at ../../../mozilla/js/src/jsobj.c:2697 #15 0xb7b372cf in js_FindClassObject (cx=0x8196310, start=0x0, id=61, vp=0xbfffe0b0) at ../../../mozilla/js/src/jsobj.c:2751 #16 0xb7b3b7f7 in js_GetClassPrototype (cx=0x8196310, scope=0x0, id=61, protop=0xbfffe0f0) at ../../../mozilla/js/src/jsobj.c:4473 #17 0xb7b3c19e in js_XDRObject (xdr=0x81f8948, objp=0x82ad9d0) at ../../../mozilla/js/src/jsobj.c:4748 #18 0xb7b6f47a in js_XDRScript (xdr=0x81f8948, scriptp=0xb480c48c, hasMagic=0x0) at ../../../mozilla/js/src/jsscript.c:574 #19 0xb7b07c31 in fun_xdrObject (xdr=0x81f8948, objp=0x842e470) at ../../../mozilla/js/src/jsfun.c:1291 #20 0xb7b3c27b in js_XDRObject (xdr=0x81f8948, objp=0x842e470) at ../../../mozilla/js/src/jsobj.c:4770 #21 0xb7b6f47a in js_XDRScript (xdr=0x81f8948, scriptp=0xbfffe4ec, hasMagic=0x0) at ../../../mozilla/js/src/jsscript.c:574 #22 0xb7b7eb99 in JS_XDRScript (xdr=0x81f8948, scriptp=0xbfffe4ec) at ../../../mozilla/js/src/jsxdrapi.c:690 ADDITIONAL INFORMATION: #6 0xb7b0f18e in TraceWeakRoots (trc=0xbfffdde0, wr=0x819638c) at ../../../mozilla/js/src/jsgc.c:2181 2181 JS_CALL_TRACER(trc, thing, i, weakRootNames[i]); (gdb) p weakRootNames[i] $6 = 0xb7ba300d "newborn function" #2 0xb7b70ad8 in js_TraceScript (trc=0xbfffdde0, script=0x82ad960) at ../../../mozilla/js/src/jsscript.c:1535 1535 JS_CallTracer(trc, objarray->vector[i], JSTRACE_OBJECT); (gdb) p i $21 = 1 (gdb) p *objarray $23 = {vector = 0x82ad9d0, length = 2} Looking at js_XDRScript, we read nobjects from the fastload file, create a new script with that much space for objects, then start fastloading the objects. Which means that some of the objects are going to be null during this process. This looks like a regression from bug 385729.
402,966
3,365,041
The stack kinda tells all. We're in cycle collection, we release an image element which cancels an image load, triggering notifications to fire which run along and do all sorts of things, eventually reentering JS-land. Sorry, I don't have steps to reproduce, it just happened in the middle of dogfooding. This is a trunk build containing the big beta1 cycle collector patch (in fact it's almost exactly beta1). #0 JS_Assert (s=0x11027e4 "!rt->gcRunning", file=0x1101ec4 "/Users/roc/mozilla-checkin/mozilla/js/src/jsgc.c", ln=1352) at /Users/roc/mozilla-checkin/mozilla/js/src/jsutil.c:63 #1 0x0105c5bf in js_NewGCThing (cx=0x4b36fb40, flags=0, nbytes=32) at /Users/roc/mozilla-checkin/mozilla/js/src/jsgc.c:1352 #2 0x0108f81c in js_NewObject (cx=0x4b36fb40, clasp=0x30479064, proto=0x3bfc8060, parent=0x1ff8de0) at /Users/roc/mozilla-checkin/mozilla/js/src/jsobj.c:2546 #3 0x0101a536 in JS_NewObject (cx=0x4b36fb40, clasp=0x30479064, proto=0x3bfc8060, parent=0x1ff8de0) at /Users/roc/mozilla-checkin/mozilla/js/src/jsapi.c:2903 #4 0x12a47959 in XPCWrappedNative::Init (this=0x36cb2730, ccx=@0xbfffc180, parent=0x1ff8de0, isGlobal=0, sci=0xbfffbef4) at /Users/roc/mozilla-checkin/mozilla/js/src/xpconnect/src/xpcwrappednative.cpp:879 #5 0x12a4855d in XPCWrappedNative::GetNewOrUsed (ccx=@0xbfffc180, Object=0x4918f790, Scope=0x29b2c40, Interface=0x30478b60, isGlobal=0, resultWrapper=0xbfffbfb4) at /Users/roc/mozilla-checkin/mozilla/js/src/xpconnect/src/xpcwrappednative.cpp:482 #6 0x12a2011d in XPCConvert::NativeInterface2JSObject (ccx=@0xbfffc180, dest=0xbfffc09c, src=0x4918f790, iid=0xbfffc2b8, scope=0x28a9060, allowNativeWrapper=1, isGlobal=0, pErr=0x0) at /Users/roc/mozilla-checkin/mozilla/js/src/xpconnect/src/xpcconvert.cpp:1105 #7 0x12a2478d in XPCConvert::NativeData2JS (ccx=@0xbfffc180, d=0xbfffc264, s=0xbfffc474, type=@0xbfffc2e9, iid=0xbfffc2b8, scope=0x28a9060, pErr=0x0) at /Users/roc/mozilla-checkin/mozilla/js/src/xpconnect/src/xpcconvert.cpp:479 #8 0x12a3f702 in nsXPCWrappedJSClass::CallMethod (this=0x3cd1a370, wrapper=0x3eb87ea0, methodIndex=3, info=0x2142758, nativeParams=0xbfffc474) at /Users/roc/mozilla-checkin/mozilla/js/src/xpconnect/src/xpcwrappedjsclass.cpp:1339 #9 0x12a382ef in nsXPCWrappedJS::CallMethod (this=0x3eb87ea0, methodIndex=3, info=0x2142758, params=0xbfffc474) at /Users/roc/mozilla-checkin/mozilla/js/src/xpconnect/src/xpcwrappedjs.cpp:567 #10 0x0137bf04 in PrepareAndDispatch (self=0x3eb87890, methodIndex=3, args=0xbfffc594) at /Users/roc/mozilla-checkin/mozilla/xpcom/reflect/xptcall/src/md/unix/xptcstubs_unixish_x86.cpp:93 #11 0x0137bf62 in nsXPTCStubBase::Stub3 (this=0x3eb87890) at ../../../../../../dist/include/xpcom/xptcstubsdef.inc:5 #12 0x191e1652 in nsEventListenerManager::HandleEventSubType (this=0x3c10bad0, aListenerStruct=0x36e7d840, aListener=0x3eb87890, aDOMEvent=0x4918f790, aCurrentTarget=0x359e44c0, aPhaseFlags=4) at /Users/roc/mozilla-checkin/mozilla/content/events/src/nsEventListenerManager.cpp:1097 #13 0x191e4e9a in nsEventListenerManager::HandleEvent (this=0x3c10bad0, aPresContext=0x491d4560, aEvent=0xbfffc8f8, aDOMEvent=0xbfffc864, aCurrentTarget=0x359e44c0, aFlags=4, aEventStatus=0xbfffc868) at /Users/roc/mozilla-checkin/mozilla/content/events/src/nsEventListenerManager.cpp:1211 #14 0x192070b1 in nsEventTargetChainItem::HandleEvent (this=0x4cef5660, aVisitor=@0xbfffc85c, aFlags=4) at /Users/roc/mozilla-checkin/mozilla/content/events/src/nsEventDispatcher.cpp:206 #15 0x19207195 in nsEventTargetChainItem::HandleEventTargetChain (this=0x4cef5740, aVisitor=@0xbfffc85c, aFlags=6, aCallback=0x0) at /Users/roc/mozilla-checkin/mozilla/content/events/src/nsEventDispatcher.cpp:237 #16 0x19207b34 in nsEventDispatcher::Dispatch (aTarget=0x35b717a0, aPresContext=0x491d4560, aEvent=0xbfffc8f8, aDOMEvent=0x0, aEventStatus=0xbfffc924, aCallback=0x0) at /Users/roc/mozilla-checkin/mozilla/content/events/src/nsEventDispatcher.cpp:479 #17 0x18f4403a in DocumentViewerImpl::LoadComplete (this=0x4d3789b0, aStatus=0) at /Users/roc/mozilla-checkin/mozilla/layout/base/nsDocumentViewer.cpp:959 #18 0x15cfee5f in nsDocShell::EndPageLoad (this=0x460fdc90, aProgress=0x460fdca4, aChannel=0x3bac2ea0, aStatus=0) at /Users/roc/mozilla-checkin/mozilla/docshell/base/nsDocShell.cpp:4970 #19 0x15d06d9a in nsWebShell::EndPageLoad (this=0x460fdc90, aProgress=0x460fdca4, channel=0x3bac2ea0, aStatus=0) at /Users/roc/mozilla-checkin/mozilla/docshell/base/nsWebShell.cpp:1014 #20 0x15cee54b in nsDocShell::OnStateChange (this=0x460fdc90, aProgress=0x460fdca4, aRequest=0x3bac2ea0, aStateFlags=131088, aStatus=0) at /Users/roc/mozilla-checkin/mozilla/docshell/base/nsDocShell.cpp:4870 #21 0x15d16099 in nsDocLoader::FireOnStateChange (this=0x460fdc90, aProgress=0x460fdca4, aRequest=0x3bac2ea0, aStateFlags=131088, aStatus=0) at /Users/roc/mozilla-checkin/mozilla/uriloader/base/nsDocLoader.cpp:1235 #22 0x15d163f0 in nsDocLoader::doStopDocumentLoad (this=0x460fdc90, request=0x3bac2ea0, aStatus=0) at /Users/roc/mozilla-checkin/mozilla/uriloader/base/nsDocLoader.cpp:858 #23 0x15d165e5 in nsDocLoader::DocLoaderIsEmpty (this=0x460fdc90) at /Users/roc/mozilla-checkin/mozilla/uriloader/base/nsDocLoader.cpp:763 #24 0x15d170f4 in nsDocLoader::OnStopRequest (this=0x460fdc90, aRequest=0x35bd3d10, aCtxt=0x0, aStatus=0) at /Users/roc/mozilla-checkin/mozilla/uriloader/base/nsDocLoader.cpp:679 #25 0x1397890f in nsLoadGroup::RemoveRequest (this=0x3fb51580, request=0x35bd3d10, ctxt=0x0, aStatus=0) at /Users/roc/mozilla-checkin/mozilla/netwerk/base/src/nsLoadGroup.cpp:688 #26 0x2ffbe134 in imgRequestProxy::RemoveFromLoadGroup (this=0x35bd3d10, releaseLoadGroup=1) at /Users/roc/mozilla-checkin/mozilla/modules/libpr0n/src/imgRequestProxy.cpp:157 #27 0x2ffbe29f in imgRequestProxy::OnStopRequest (this=0x35bd3d10, request=0x0, ctxt=0x0, statusCode=2152398850, lastPart=1) at /Users/roc/mozilla-checkin/mozilla/modules/libpr0n/src/imgRequestProxy.cpp:497 #28 0x2ffbb808 in imgRequest::RemoveProxy (this=0x4737ed00, proxy=0x35bd3d10, aStatus=2147500037, aNotify=0) at /Users/roc/mozilla-checkin/mozilla/modules/libpr0n/src/imgRequest.cpp:157 #29 0x2ffbd844 in imgRequestProxy::Cancel (this=0x35bd3d10, status=2147500037) at /Users/roc/mozilla-checkin/mozilla/modules/libpr0n/src/imgRequestProxy.cpp:211 #30 0x191a03c1 in nsImageLoadingContent::DestroyImageLoadingContent (this=0x4933f29c) at /Users/roc/mozilla-checkin/mozilla/content/base/src/nsImageLoadingContent.cpp:122 #31 0x1922dc8c in nsHTMLImageElement::~nsHTMLImageElement (this=0x4933f280) at /Users/roc/mozilla-checkin/mozilla/content/html/content/src/nsHTMLImageElement.cpp:185 #32 0x191a8458 in nsNodeUtils::LastRelease (aNode=0x4933f280) at /Users/roc/mozilla-checkin/mozilla/content/base/src/nsNodeUtils.cpp:237 #33 0x1918d47c in nsGenericElement::Release (this=0x4933f280) at /Users/roc/mozilla-checkin/mozilla/content/base/src/nsGenericElement.cpp:3420 #34 0x1922dd21 in nsHTMLImageElement::Release (this=0x4933f280) at /Users/roc/mozilla-checkin/mozilla/content/html/content/src/nsHTMLImageElement.cpp:190 #35 0x0130fb2c in nsXPCOMCycleCollectionParticipant::Unroot (this=0x19815d40, p=0x4933f280) at nsCycleCollectionParticipant.cpp:74 #36 0x0137a4d1 in nsCycleCollector::CollectWhite (this=0xa7000, graph=@0xbfffd4b0) at /Users/roc/mozilla-checkin/mozilla/xpcom/base/nsCycleCollector.cpp:1526 #37 0x0137adc7 in nsCycleCollector::DoCollect (this=0xa7000) at /Users/roc/mozilla-checkin/mozilla/xpcom/base/nsCycleCollector.cpp:2217 #38 0x0137ae60 in nsCycleCollector_doCollect () at /Users/roc/mozilla-checkin/mozilla/xpcom/base/nsCycleCollector.cpp:2651 #39 0x12a0adb8 in XPCCycleCollectGCCallback (cx=0x3047a650, status=JSGC_MARK_END) at /Users/roc/mozilla-checkin/mozilla/js/src/xpconnect/src/nsXPConnect.cpp:424 #40 0x0105f82e in js_GC (cx=0x3047a650, gckind=GC_NORMAL) at /Users/roc/mozilla-checkin/mozilla/js/src/jsgc.c:2557 #41 0x01018cc7 in JS_GC (cx=0x3047a650) at /Users/roc/mozilla-checkin/mozilla/js/src/jsapi.c:2381 #42 0x12a074da in nsXPConnect::Collect (this=0x2929960) at /Users/roc/mozilla-checkin/mozilla/js/src/xpconnect/src/nsXPConnect.cpp:510 #43 0x0137af46 in nsCycleCollector::Collect (this=0xa7000, aTryCollections=1) at /Users/roc/mozilla-checkin/mozilla/xpcom/base/nsCycleCollector.cpp:2094 #44 0x0137afe0 in nsCycleCollector_collect () at /Users/roc/mozilla-checkin/mozilla/xpcom/base/nsCycleCollector.cpp:2645 #45 0x19349244 in nsJSContext::CC () at /Users/roc/mozilla-checkin/mozilla/dom/src/base/nsJSEnvironment.cpp:3261 #46 0x19349305 in nsJSContext::MaybeCC (aHigherProbability=0) at /Users/roc/mozilla-checkin/mozilla/dom/src/base/nsJSEnvironment.cpp:3283 #47 0x1934bccd in nsUserActivityObserver::Observe (this=0x30479a10, aSubject=0x0, aTopic=0x195e6328 "user-interaction-active", aData=0x0) at /Users/roc/mozilla-checkin/mozilla/dom/src/base/nsJSEnvironment.cpp:280 #48 0x013211af in nsObserverList::NotifyObservers (this=0x23b773c, aSubject=0x0, aTopic=0x195e6328 "user-interaction-active", someData=0x0) at /Users/roc/mozilla-checkin/mozilla/xpcom/ds/nsObserverList.cpp:128 #49 0x01321859 in nsObserverService::NotifyObservers (this=0x2922f80, aSubject=0x0, aTopic=0x195e6328 "user-interaction-active", someData=0x0) at /Users/roc/mozilla-checkin/mozilla/xpcom/ds/nsObserverService.cpp:181 #50 0x191e78e2 in nsUITimerCallback::Notify (this=0x304a3b70, aTimer=0x304a3140) at /Users/roc/mozilla-checkin/mozilla/content/events/src/nsEventStateManager.cpp:208 #51 0x0136dfa5 in nsTimerImpl::Fire (this=0x304a3140) at /Users/roc/mozilla-checkin/mozilla/xpcom/threads/nsTimerImpl.cpp:403 #52 0x0136e1a9 in nsTimerEvent::Run (this=0x3f983680) at /Users/roc/mozilla-checkin/mozilla/xpcom/threads/nsTimerImpl.cpp:487 #53 0x01369f91 in nsThread::ProcessNextEvent (this=0x2912860, mayWait=0, result=0xbfffdad4) at /Users/roc/mozilla-checkin/mozilla/xpcom/threads/nsThread.cpp:490 #54 0x0130f5a5 in NS_ProcessPendingEvents_P (thread=0x2912860, timeout=20) at nsThreadUtils.cpp:180 #55 0x1671014d in nsBaseAppShell::NativeEventCallback (this=0x293c760) at /Users/roc/mozilla-checkin/mozilla/widget/src/xpwidgets/nsBaseAppShell.cpp:112 #56 0x166f0da1 in nsAppShell::ProcessGeckoEvents (aInfo=0x293c760) at /Users/roc/mozilla-checkin/mozilla/widget/src/cocoa/nsAppShell.mm:272 #57 0x9082cf92 in CFRunLoopRunSpecific () #58 0x9082cace in CFRunLoopRunInMode () #59 0x92ded8d8 in RunCurrentEventLoopInMode () #60 0x92decf19 in ReceiveNextEventCommon () #61 0x92dece39 in BlockUntilNextEventMatchingListInMode () #62 0x93293465 in _DPSNextEvent () #63 0x93293056 in -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] () #64 0x9328cddb in -[NSApplication run] () #65 0x166f015c in nsAppShell::Run (this=0x293c760) at /Users/roc/mozilla-checkin/mozilla/widget/src/cocoa/nsAppShell.mm:546 #66 0x17ddec41 in nsAppStartup::Run (this=0x29144a0) at /Users/roc/mozilla-checkin/mozilla/toolkit/components/startup/src/nsAppStartup.cpp:170 #67 0x00211312 in XRE_main (argc=3, argv=0xbfffeedc, aAppData=0x290b600) at /Users/roc/mozilla-checkin/mozilla/toolkit/xre/nsAppRunner.cpp:3142 #68 0x00002798 in main (argc=3, argv=0xbfffeedc) at /Users/roc/mozilla-checkin/mozilla/browser/app/nsBrowserApp.cpp:153
392,579
3,283,302
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9a8pre) Gecko/2007081704 Minefield/3.0a8pre Firefox/3.0 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9a8pre) Gecko/2007081704 Minefield/3.0a8pre Firefox/3.0 No .mar files (partial update file) are being created since the move to the new build box WINNT 5.2 fxnewref-win32- Dep Nightly. Reproducible: Always Steps to Reproduce: 1. Help '-> Check for updates 2. No updates found 3. look at the nightly http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/ site and note that .mar files for Windows is not being created, but are for the other OS's. Actual Results: No .mar file created so nightly testers can update to latest build. Expected Results: .mar file created for partial update
1,554,029
14,136,774
Created attachment 9067219 Dialog Bug 1547830 comment #27 describes a test scenario for the whatsnew page for Trailhead. I kept getting the profile downgrade dialog (see attachment), which blocks launching Firefox with the existing profile. I could get past that by exporting `MOZ_ALLOW_DOWNGRADE=1` prior to launching Firefox. I was starting with 67.0 and a fresh profile, which had `compatibility.ini` contents ``` [Compatibility] LastVersion=67.0_20190516215225/20190516215225 LastOSABI=Darwin_x86_64-gcc3 LastPlatformDir=/Applications/Firefox.app/Contents/Resources LastAppDir=/Applications/Firefox.app/Contents/Resources/browser ``` After a successful update `compatibility.ini` contained ``` [Compatibility] LastVersion=67.0.5_20190523030228/20190523030228 LastOSABI=Darwin_x86_64-gcc3 LastPlatformDir=/Applications/Firefox.app/Contents/Resources LastAppDir=/Applications/Firefox.app/Contents/Resources/browser ``` [Tracking Requested - why for this release]: I'm concerned we will hit this bug not just on Trailhead but on any point release for 67.0. Since the application version doesn't change during the nightly or beta cycles we have not had an opportunity to test this code in the release case.
1,554,141
14,137,537
**Affected versions** * 69.0a1 **Affected platforms** * Windows 10x64 * Windows 7x64 * Windows 8.1x64 **Steps to reproduce** 1. Install an older version(<68) of Firefox Nightly. 2. Download and install the Stub Installer for Firefox Nightly. **Expected result** * "The Firefox is already installed. Let's update it", prompt window is displayed. **Actual result** * "The Firefox is already installed. Let's update it", prompt window is not displayed. **Regression range** * Will determine if issue is a regression ASAP. **Additional notes** * After multiple attempts we have only managed to trigger the paveover prompt on Windows 8.1x64, and only with en-US and AR locales. * Worth mentioning that for the above specified scenario , we have used builds from: https://archive.mozilla.org/pub/firefox/nightly/2019/01/2019-01-01-21-29-14-mozilla-central-l10n/ * However, using FF 67 from February and multiple other locales such as : de,fr,it returned no result. * Because of this issue we are blocked from properly testing the PI-122 request.
1,548,973
14,096,423
User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:66.0) Gecko/20100101 Firefox/66.0 Steps to reproduce: Wait until it's past midnight on 2019-05-04 UTC. Actual results: All addons got disabled due not having valid signature. Expected results: If the signature was due to expire, it should have been renewed weeks ago. Not all extensions were disabled. Fakespot and Google Scholar Button were left in their disabled state. Some reports on reddit [1] says that they had their clocks a day forward, but they may be just early canaries for the actual widespread issue. Going backwards in time allows installation from AMO but do not remove the unsupported mark from the add ons already installed. [1]: https://www.reddit.com/r/firefox/comments/bk54mu/addonsextensions_broken/
1,549,373
14,100,330
STR: 1. Open this website page https://imgur.com/ 2. Open some image 3. Press back browser button and enjoy crash in [@ mozilla::dom::BrowsingContext::Detach ] https://crash-stats.mozilla.org/report/index/d63be416-91cf-48b1-9ca0-4cc230190506 Same STR like from bug #1547911, so I suspect it's not fixed completely and regression range is same.
1,503,757
13,727,603
User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0 Steps to reproduce: Go to http://forum.pimaxvr.com/c/pimax-8k - while logged in, visit forum topics - after a minute or two, notice that you are no longer logged in Build ID: 20181031223503 Version: 65.0a1 Actual results: I was logged out of my session, without any action on my part. Expected results: I should have remained logged in. Did not notice this behavior two or so Nightly versions ago, with this site.
1,493,900
13,638,473
Created attachment 9011702 fifo rce writeup (pdf) We received the 2018 Hack2Win "Firefox RCE" exploit from Noam Rathaus of Beyond Security. Please use the following for the acknowledgement. "Three independent security researcher, Niklas Baumstark, Samuel Groß and Bruno Keith, have reported this vulnerability to Beyond Security’s SecuriTeam Secure Disclosure program."
1,433,918
13,002,249
Created attachment 8946244 Screen Shot 2018-01-29 at 16.38.17.png Build: 11.0 (8792) Device: iPad Air 2 iOS: 11.2.5 Steps to reproduce: 1. Clean install Firefox 2. Try to Sing In to FxA Actual results: - Trying to sign in to FxA from Settings, from History - >Sync Devices or from the On-boarding last slide does not work. "Could not load page" message is displayed.
1,435,472
13,015,628
Created attachment 8948075 2018_02_03_06_09_00_90.gif User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko/20100101 Firefox/58.0 Build ID: 20180128191252 Steps to reproduce: 1.Open the browser. 2.Enter the address or search query in the address bar. In the final version of 58.0.1 this bug is visible when these settings are enabled - Ctrl+Tab cycles through tabs in the recently used order & Show tab previews in the Windows Taskbar. In Beta 59.0b6, Developer 59.0b6 and Nightly 60.0a1 (since Nightly 24.11.17 59.0a1) this bug is always visible. Actual results: Мost pages display incorrectly - no text is visible, some page elements appear and disappear when you hover the mouse over them. When hardware acceleration is disabled, pages are displayed correctly everywhere. Application Basics ------------------ Name: Firefox Version: 60.0a1 Build ID: 20180202220135 Update Channel: nightly User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko/20100101 Firefox/60.0 OS: Windows_NT 10.0 Multiprocess Windows: 1/1 (Enabled by default) Web Content Processes: 3/4 Stylo: content = true (enabled by default), chrome = false (disabled by default) Google Key: Found Mozilla Location Service Key: Found Safe Mode: false Crash Reports for the Last 3 Days --------------------------------- All Crash Reports Nightly Features ---------------- Name: Activity Stream Version: 2018.01.30.1052-2ec746e0 ID: [email protected] Name: Application Update Service Helper Version: 2.0 ID: [email protected] Name: Firefox Screenshots Version: 25.0.0 ID: [email protected] Name: Follow-on Search Telemetry Version: 0.9.6 ID: [email protected] Name: Form Autofill Version: 1.0 ID: [email protected] Name: Photon onboarding Version: 1.0 ID: [email protected] Name: Pocket Version: 1.0.5 ID: [email protected] Name: Presentation Version: 1.0.0 ID: [email protected] Name: Shield Recipe Client Version: 83 ID: [email protected] Name: Web Compat Version: 1.1 ID: [email protected] Name: WebCompat Reporter Version: 1.0.0 ID: [email protected] Extensions ---------- Name: Nightly Tester Tools Version: 4.0 Enabled: true ID: {8620c15f-30dc-4dba-a131-7c5d20cf4a29} Security Software ----------------- Type: Type: Type: Graphics -------- Features Compositing: Direct3D 11 (Advanced Layers) Asynchronous Pan/Zoom: wheel input enabled; scrollbar drag enabled; keyboard enabled; autoscroll enabled WebGL 1 Driver WSI Info: EGL_VENDOR: Google Inc. (adapter LUID: 0000000000006692) EGL_VERSION: 1.4 (ANGLE 2.1.0.db3422764a9b) EGL_EXTENSIONS: EGL_EXT_create_context_robustness EGL_ANGLE_d3d_share_handle_client_buffer EGL_ANGLE_d3d_texture_client_buffer EGL_ANGLE_surface_d3d_texture_2d_share_handle EGL_ANGLE_query_surface_pointer EGL_ANGLE_window_fixed_size EGL_ANGLE_keyed_mutex EGL_ANGLE_surface_orientation EGL_ANGLE_direct_composition EGL_NV_post_sub_buffer EGL_KHR_create_context EGL_EXT_device_query EGL_KHR_image EGL_KHR_image_base EGL_KHR_gl_texture_2D_image EGL_KHR_gl_texture_cubemap_image EGL_KHR_gl_renderbuffer_image EGL_KHR_get_all_proc_addresses EGL_KHR_stream EGL_KHR_stream_consumer_gltexture EGL_NV_stream_consumer_gltexture_yuv EGL_ANGLE_flexible_surface_compatibility EGL_ANGLE_stream_producer_d3d_texture_nv12 EGL_ANGLE_create_context_webgl_compatibility EGL_CHROMIUM_create_context_bind_generates_resource EGL_CHROMIUM_sync_control EGL_EXT_pixel_format_float EGL_KHR_surfaceless_context EGL_ANGLE_display_texture_share_group EGL_ANGLE_create_context_client_arrays EGL_ANGLE_program_cache_control EGL_EXTENSIONS(nullptr): EGL_EXT_client_extensions EGL_EXT_platform_base EGL_EXT_platform_device EGL_ANGLE_platform_angle EGL_ANGLE_platform_angle_d3d EGL_ANGLE_device_creation EGL_ANGLE_device_creation_d3d11 EGL_ANGLE_experimental_present_path EGL_KHR_client_get_all_proc_addresses EGL_ANGLE_display_robust_resource_initialization WebGL 1 Driver Renderer: Google Inc. -- ANGLE (NVIDIA GeForce GT 710 Direct3D11 vs_5_0 ps_5_0) WebGL 1 Driver Version: OpenGL ES 2.0 (ANGLE 2.1.0.db3422764a9b) WebGL 1 Driver Extensions: GL_ANGLE_client_arrays GL_ANGLE_depth_texture GL_ANGLE_framebuffer_blit GL_ANGLE_framebuffer_multisample GL_ANGLE_instanced_arrays GL_ANGLE_lossy_etc_decode GL_ANGLE_pack_reverse_row_order GL_ANGLE_program_cache_control GL_ANGLE_request_extension GL_ANGLE_robust_client_memory GL_ANGLE_robust_resource_initialization GL_ANGLE_texture_compression_dxt3 GL_ANGLE_texture_compression_dxt5 GL_ANGLE_texture_usage GL_ANGLE_translated_shader_source GL_CHROMIUM_bind_generates_resource GL_CHROMIUM_bind_uniform_location GL_CHROMIUM_color_buffer_float_rgb GL_CHROMIUM_color_buffer_float_rgba GL_CHROMIUM_copy_compressed_texture GL_CHROMIUM_copy_texture GL_CHROMIUM_sync_query GL_EXT_blend_minmax GL_EXT_color_buffer_half_float GL_EXT_debug_marker GL_EXT_discard_framebuffer GL_EXT_disjoint_timer_query GL_EXT_draw_buffers GL_EXT_frag_depth GL_EXT_map_buffer_range GL_EXT_occlusion_query_boolean GL_EXT_read_format_bgra GL_EXT_robustness GL_EXT_sRGB GL_EXT_shader_texture_lod GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_s3tc_srgb GL_EXT_texture_filter_anisotropic GL_EXT_texture_format_BGRA8888 GL_EXT_texture_rg GL_EXT_texture_storage GL_EXT_unpack_subimage GL_KHR_debug GL_NV_EGL_stream_consumer_external GL_NV_fence GL_NV_pack_subimage GL_NV_pixel_buffer_object GL_OES_EGL_image GL_OES_EGL_image_external GL_OES_compressed_ETC1_RGB8_texture GL_OES_depth32 GL_OES_element_index_uint GL_OES_get_program_binary GL_OES_mapbuffer GL_OES_packed_depth_stencil GL_OES_rgb8_rgba8 GL_OES_standard_derivatives GL_OES_surfaceless_context GL_OES_texture_float GL_OES_texture_float_linear GL_OES_texture_half_float GL_OES_texture_half_float_linear GL_OES_texture_npot GL_OES_vertex_array_object WebGL 1 Extensions: ANGLE_instanced_arrays EXT_blend_minmax EXT_color_buffer_half_float EXT_frag_depth EXT_sRGB EXT_shader_texture_lod EXT_texture_filter_anisotropic EXT_disjoint_timer_query OES_element_index_uint OES_standard_derivatives OES_texture_float OES_texture_float_linear OES_texture_half_float OES_texture_half_float_linear OES_vertex_array_object WEBGL_color_buffer_float WEBGL_compressed_texture_s3tc WEBGL_compressed_texture_s3tc_srgb WEBGL_debug_renderer_info WEBGL_debug_shaders WEBGL_depth_texture WEBGL_draw_buffers WEBGL_lose_context WebGL 2 Driver WSI Info: EGL_VENDOR: Google Inc. (adapter LUID: 0000000000006692) EGL_VERSION: 1.4 (ANGLE 2.1.0.db3422764a9b) EGL_EXTENSIONS: EGL_EXT_create_context_robustness EGL_ANGLE_d3d_share_handle_client_buffer EGL_ANGLE_d3d_texture_client_buffer EGL_ANGLE_surface_d3d_texture_2d_share_handle EGL_ANGLE_query_surface_pointer EGL_ANGLE_window_fixed_size EGL_ANGLE_keyed_mutex EGL_ANGLE_surface_orientation EGL_ANGLE_direct_composition EGL_NV_post_sub_buffer EGL_KHR_create_context EGL_EXT_device_query EGL_KHR_image EGL_KHR_image_base EGL_KHR_gl_texture_2D_image EGL_KHR_gl_texture_cubemap_image EGL_KHR_gl_renderbuffer_image EGL_KHR_get_all_proc_addresses EGL_KHR_stream EGL_KHR_stream_consumer_gltexture EGL_NV_stream_consumer_gltexture_yuv EGL_ANGLE_flexible_surface_compatibility EGL_ANGLE_stream_producer_d3d_texture_nv12 EGL_ANGLE_create_context_webgl_compatibility EGL_CHROMIUM_create_context_bind_generates_resource EGL_CHROMIUM_sync_control EGL_EXT_pixel_format_float EGL_KHR_surfaceless_context EGL_ANGLE_display_texture_share_group EGL_ANGLE_create_context_client_arrays EGL_ANGLE_program_cache_control EGL_EXTENSIONS(nullptr): EGL_EXT_client_extensions EGL_EXT_platform_base EGL_EXT_platform_device EGL_ANGLE_platform_angle EGL_ANGLE_platform_angle_d3d EGL_ANGLE_device_creation EGL_ANGLE_device_creation_d3d11 EGL_ANGLE_experimental_present_path EGL_KHR_client_get_all_proc_addresses EGL_ANGLE_display_robust_resource_initialization WebGL 2 Driver Renderer: Google Inc. -- ANGLE (NVIDIA GeForce GT 710 Direct3D11 vs_5_0 ps_5_0) WebGL 2 Driver Version: OpenGL ES 3.0 (ANGLE 2.1.0.db3422764a9b) WebGL 2 Driver Extensions: GL_ANGLE_client_arrays GL_ANGLE_depth_texture GL_ANGLE_framebuffer_blit GL_ANGLE_framebuffer_multisample GL_ANGLE_instanced_arrays GL_ANGLE_lossy_etc_decode GL_ANGLE_multiview GL_ANGLE_pack_reverse_row_order GL_ANGLE_program_cache_control GL_ANGLE_request_extension GL_ANGLE_robust_client_memory GL_ANGLE_robust_resource_initialization GL_ANGLE_texture_compression_dxt3 GL_ANGLE_texture_compression_dxt5 GL_ANGLE_texture_usage GL_ANGLE_translated_shader_source GL_CHROMIUM_bind_generates_resource GL_CHROMIUM_bind_uniform_location GL_CHROMIUM_color_buffer_float_rgb GL_CHROMIUM_color_buffer_float_rgba GL_CHROMIUM_copy_compressed_texture GL_CHROMIUM_copy_texture GL_CHROMIUM_sync_query GL_EXT_blend_minmax GL_EXT_color_buffer_float GL_EXT_color_buffer_half_float GL_EXT_debug_marker GL_EXT_discard_framebuffer GL_EXT_disjoint_timer_query GL_EXT_draw_buffers GL_EXT_frag_depth GL_EXT_map_buffer_range GL_EXT_occlusion_query_boolean GL_EXT_read_format_bgra GL_EXT_robustness GL_EXT_sRGB GL_EXT_shader_texture_lod GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_s3tc_srgb GL_EXT_texture_filter_anisotropic GL_EXT_texture_format_BGRA8888 GL_EXT_texture_norm16 GL_EXT_texture_rg GL_EXT_texture_storage GL_EXT_unpack_subimage GL_KHR_debug GL_NV_EGL_stream_consumer_external GL_NV_fence GL_NV_pack_subimage GL_NV_pixel_buffer_object GL_OES_EGL_image GL_OES_EGL_image_external GL_OES_EGL_image_external_essl3 GL_OES_compressed_ETC1_RGB8_texture GL_OES_depth32 GL_OES_element_index_uint GL_OES_get_program_binary GL_OES_mapbuffer GL_OES_packed_depth_stencil GL_OES_rgb8_rgba8 GL_OES_standard_derivatives GL_OES_surfaceless_context GL_OES_texture_float GL_OES_texture_float_linear GL_OES_texture_half_float GL_OES_texture_half_float_linear GL_OES_texture_npot GL_OES_vertex_array_object WebGL 2 Extensions: EXT_color_buffer_float EXT_texture_filter_anisotropic EXT_disjoint_timer_query OES_texture_float_linear WEBGL_compressed_texture_s3tc WEBGL_compressed_texture_s3tc_srgb WEBGL_debug_renderer_info WEBGL_debug_shaders WEBGL_lose_context Direct2D: true Off Main Thread Painting Enabled: true DirectWrite: true (10.0.16299.15) GPU #1 Active: Yes Description: NVIDIA GeForce GT 710 Vendor ID: 0x10de Device ID: 0x128b Driver Version: 23.21.13.9077 Driver Date: 1-23-2018 Drivers: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_7a39871618b19f06\nvldumdx.dll,C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_7a39871618b19f06\nvldumdx.dll,C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_7a39871618b19f06\nvldumdx.dll,C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_7a39871618b19f06\nvldumdx.dll C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_7a39871618b19f06\nvldumd.dll,C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_7a39871618b19f06\nvldumd.dll,C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_7a39871618b19f06\nvldumd.dll,C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_7a39871618b19f06\nvldumd.dll Subsys ID: 36f91458 RAM: 2048 Diagnostics ClearType Parameters: Gamma: 2,2 Pixel Structure: RGB ClearType Level: 100 Enhanced Contrast: 50 AzureCanvasAccelerated: 0 AzureCanvasBackend: Direct2D 1.1 AzureCanvasBackend (UI Process): skia AzureContentBackend: Direct2D 1.1 AzureContentBackend (UI Process): skia AzureFallbackCanvasBackend (UI Process): cairo GPUProcessPid: 5040 GPUProcess: Terminate GPU Process Device Reset: Trigger Device Reset ClearType Parameters: Gamma: 2,2 Pixel Structure: RGB ClearType Level: 100 Enhanced Contrast: 50 Decision Log WEBRENDER: opt-in by default: WebRender is an opt-in feature Media ----- Audio Backend: wasapi Max Channels: 2 Preferred Channel Layout: stereo Preferred Sample Rate: 48000 Output Devices Name: Group Π¦ΠΈΡ„Ρ€ΠΎΠ²ΠΎΠ΅ Π°ΡƒΠ΄ΠΈΠΎ (HDMI) (Устройство с ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΊΠΎΠΉ High Definition Audio): HDAUDIO\FUNC_01&VEN_10DE&DEV_0051&SUBSYS_145836F9&REV_1001\5&73231bd&0&0001 Π”ΠΈΠ½Π°ΠΌΠΈΠΊΠΈ (Realtek High Definition Audio): HDAUDIO\FUNC_01&VEN_10EC&DEV_0662&SUBSYS_18497662&REV_1001\4&2adfd51b&0&0001 Π¦ΠΈΡ„Ρ€ΠΎΠ²ΠΎΠ΅ Π°ΡƒΠ΄ΠΈΠΎ (HDMI) (Устройство с ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΊΠΎΠΉ High Definition Audio): HDAUDIO\FUNC_01&VEN_10DE&DEV_0051&SUBSYS_145836F9&REV_1001\5&73231bd&0&0001 Input Devices Name: Group ΠœΠΈΠΊΡ€ΠΎΡ„ΠΎΠ½ (Realtek High Definition Audio): HDAUDIO\FUNC_01&VEN_10EC&DEV_0662&SUBSYS_18497662&REV_1001\4&2adfd51b&0&0001 Π‘Ρ‚Π΅Ρ€Π΅ΠΎ ΠΌΠΈΠΊΡˆΠ΅Ρ€ (Realtek High Definition Audio): HDAUDIO\FUNC_01&VEN_10EC&DEV_0662&SUBSYS_18497662&REV_1001\4&2adfd51b&0&0001 ΠœΠΈΠΊΡ€ΠΎΡ„ΠΎΠ½ (Realtek High Definition Audio): HDAUDIO\FUNC_01&VEN_10EC&DEV_0662&SUBSYS_18497662&REV_1001\4&2adfd51b&0&0001 Π’Π½ΡƒΡ‚Ρ€Π΅Π½Π½ΠΈΠΉ Ρ€Π°Π·ΡŠΠ΅ΠΌ AUX (Устройство с ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΊΠΎΠΉ High Definition Audio): HDAUDIO\FUNC_01&VEN_10DE&DEV_0051&SUBSYS_145836F9&REV_1001\5&73231bd&0&0001 Side (Realtek High Definition Audio): HDAUDIO\FUNC_01&VEN_10EC&DEV_0662&SUBSYS_18497662&REV_1001\4&2adfd51b&0&0001 Π›ΠΈΠ½. Π²Ρ…ΠΎΠ΄ (Realtek High Definition Audio): HDAUDIO\FUNC_01&VEN_10EC&DEV_0662&SUBSYS_18497662&REV_1001\4&2adfd51b&0&0001 Π’Π½ΡƒΡ‚Ρ€Π΅Π½Π½ΠΈΠΉ Ρ€Π°Π·ΡŠΠ΅ΠΌ AUX (Устройство с ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΊΠΎΠΉ High Definition Audio): HDAUDIO\FUNC_01&VEN_10DE&DEV_0051&SUBSYS_145836F9&REV_1001\5&73231bd&0&0001 Front (Realtek High Definition Audio): HDAUDIO\FUNC_01&VEN_10EC&DEV_0662&SUBSYS_18497662&REV_1001\4&2adfd51b&0&0001 Π›ΠΈΠ½. Π²Ρ…ΠΎΠ΄ (Realtek High Definition Audio): HDAUDIO\FUNC_01&VEN_10EC&DEV_0662&SUBSYS_18497662&REV_1001\4&2adfd51b&0&0001 FrontMic (Realtek High Definition Audio): HDAUDIO\FUNC_01&VEN_10EC&DEV_0662&SUBSYS_18497662&REV_1001\4&2adfd51b&0&0001 FrontMic (Realtek High Definition Audio): HDAUDIO\FUNC_01&VEN_10EC&DEV_0662&SUBSYS_18497662&REV_1001\4&2adfd51b&0&0001 Center (Realtek High Definition Audio): HDAUDIO\FUNC_01&VEN_10EC&DEV_0662&SUBSYS_18497662&REV_1001\4&2adfd51b&0&0001 Subwoofer (Realtek High Definition Audio): HDAUDIO\FUNC_01&VEN_10EC&DEV_0662&SUBSYS_18497662&REV_1001\4&2adfd51b&0&0001 Important Modified Preferences ------------------------------ browser.cache.disk.capacity: 358400 browser.cache.disk.filesystem_reported: 1 browser.cache.disk.smart_size.first_run: false browser.places.smartBookmarksVersion: 8 browser.sessionstore.resume_from_crash: false browser.startup.homepage_override.buildID: 20180202220135 browser.startup.homepage_override.mstone: 60.0a1 browser.tabs.warnOnClose: false browser.urlbar.timesBeforeHidingSuggestionsHint: 0 dom.forms.autocomplete.formautofill: true extensions.lastAppVersion: 60.0a1 font.internaluseonly.changed: true layers.mlgpu.sanity-test-failed: false media.gmp-gmpopenh264.abi: x86_64-msvc-x64 media.gmp-gmpopenh264.lastUpdate: 1517626984 media.gmp-gmpopenh264.version: 1.7.1 media.gmp-manager.buildID: 20180202220135 media.gmp-manager.lastCheck: 1517627388 media.gmp-widevinecdm.abi: x86_64-msvc-x64 media.gmp-widevinecdm.lastUpdate: 1517626986 media.gmp-widevinecdm.version: 1.4.8.1008 media.gmp.storage.version.observed: 1 media.hardware-video-decoding.failed: false network.cookie.prefsMigrated: true network.predictor.cleaned-up: true places.history.expiration.transient_current_max_pages: 104858 plugin.disable_full_page_plugin_for_types: application/pdf security.sandbox.content.tempDirSuffix: {8f56e695-16ef-4aad-81c2-0efe9c8440f8} services.sync.declinedEngines: services.sync.engine.addresses.available: true services.sync.engine.creditcards.available: true ui.osk.debug.keyboardDisplayReason: IKPOS: Touch screen not found. user.js Preferences ------------------- Your profile folder contains a user.js file, which includes preferences that were not created by Nightly. Important Locked Preferences ---------------------------- Places Database --------------- JavaScript ---------- Incremental GC: true Accessibility ------------- Activated: false Prevent Accessibility: 0 Accessible Handler Used: false Accessibility Instantiator: Library Versions ---------------- NSPR Expected minimum version: 4.18 Version in use: 4.18 NSS Expected minimum version: 3.36 Beta Version in use: 3.36 Beta NSSSMIME Expected minimum version: 3.36 Beta Version in use: 3.36 Beta NSSSSL Expected minimum version: 3.36 Beta Version in use: 3.36 Beta NSSUTIL Expected minimum version: 3.36 Beta Version in use: 3.36 Beta Experimental Features --------------------- Sandbox ------- Content Process Sandbox Level: 5 Effective Content Process Sandbox Level: 5 Internationalization & Localization ----------------------------------- Application Settings Requested Locales: ["en-US"] Available Locales: ["en-US"] App Locales: ["en-US"] Regional Preferences: ["en-US"] Default Locale: "en-US" Operating System System Locales: ["ru-RU"] Regional Preferences: ["ru-RU"] Expected results: Pages should be displayed correctly with hardware acceleration enabled.
1,482,579
13,536,826
DEPRECATION WARNING: Search service falling back to synchronous initialization. This is generally the consequence of an add-on using a deprecated search service API. You may find more details about this deprecation at: https://developer.mozilla.org/en-US/docs/XPCOM_Interface_Reference/nsIBrowserSearchService#async_warning file:///Users/Ed/Development/mozilla-central/obj/dist/Nightly.app/Contents/Resources/components/nsSearchService.js 2621 SRCH_SVC__ensureInitialized file:///Users/Ed/Development/mozilla-central/obj/dist/Nightly.app/Contents/Resources/components/nsSearchService.js 4033 get currentEngine resource://activity-stream/lib/TopSitesFeed.jsm 54 getShortURLForCurrentSearch resource://activity-stream/lib/TopSitesFeed.jsm 78 init resource://activity-stream/lib/TopSitesFeed.jsm 619 onAction resource://activity-stream/lib/Store.jsm 51 _middleware/</< resource://activity-stream/lib/Store.jsm 29 Store/this[method] resource://activity-stream/lib/Store.jsm 140 init
1,471,932
13,433,672
(Filing a bug here on the advice of Comment #52 here: https://bugzilla.mozilla.org/show_bug.cgi?id=1295122) I had a problem with FF 60 on Windows; when enabling security.enterprise_roots.enabled (on a corporate network), it would log me out of Firefox Sync, and remove my saved passwords. Deleting logins.json, key3.db and key4.db would allow Firefox Sync to stay logged in. Log files are available here: https://bugzilla.mozilla.org/show_bug.cgi?id=1354023 . Following the upgrade to FF61, I've tried again. When I enable security.enterprise_roots.enabled (on a corporate network) and restart FF; it presents the Master Password box, and hangs. I have to force-quit with Task Manager, and then edit prefs.js to disable security.enterprise_roots.enabled . So use of security.enterprise_roots.enabled makes FF61 completely unusable (for me, on a corporate network). Maybe a regression of 1427248?
1,464,904
13,369,732
Created attachment 8981246 Screen Shot 2018-05-28 at 5.04.10 PM.png User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:61.0) Gecko/20100101 Firefox/61.0 Build ID: 20180524181234 Steps to reproduce: Use system font CSS stack, e.g.: font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; And set some text bold: font-weight: bold; Live demo: https://codepen.io/anon/pen/pKzxrQ Platform: Firefox 61.8b8; macOS 10.13.4 Side note: Firefox 60 has no problem with it Actual results: No bold font weight for "-apple-system" Expected results: Render bold font weight for "-apple-system"
1,465,583
13,375,505
See bug 1447719 comment 19. UX has made it pretty clear to me that this can't ship in 61 as is. [Tracking Requested - why for this release]: The feature is currently enabled by default on Windows on Beta, and is configured to ride out to release. We should ensure we disable it before then.
1,467,136
13,391,023
User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0 Build ID: 20180606100133 Steps to reproduce: 1. Create a new profile. 2. Install the following extensions: uBlock Origin [1], Greasemonkey [2], Simple Translate [3]. 3. Restart Nightly (Build ID 20180606100133) twice. 4. Click on the extensions' icon. [1]: https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/ [2]: https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/ [3]: https://addons.mozilla.org/en-US/firefox/addon/simple-translate/ Actual results: Simple Translate works as it should. uBO and GM don't work. If you disable and re-enable them in about:addons, they start working again. If you start the profile with a previous version (I used the current Release), then the extensions work in Nightly too, but for one time only. If you re-start Nightly, the extensions stop working. This is why I suggested to restart Nightly twice in STR. Expected results: Every extension should work without the need to disable/re-enable it in the add-ons' manager. Bisection points to Bug 1369841. Mozregression log: 4:12.24 INFO: Last good revision: 6646425c8cd10440f2ce38cd594be0c84a7c21fa 4:12.24 INFO: First bad revision: f6c89ca4944b0233e08463ce4825812c1b08373c 4:12.24 INFO: Pushlog: https://hg.mozilla.org/integration/autoland/pushloghtml?fromchange=6646425c8cd10440f2ce38cd594be0c84a7c21fa&tochange=f6c89ca4944b0233e08463ce4825812c1b08373c
1,522,019
13,878,768
User Agent: Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0 Steps to reproduce: 1. Install http://ftp.mozilla.org/pub/firefox/candidates/60.5.0esr-candidates/build1/win32/en-GB/Firefox%20Setup%2060.5.0esr.exe (not en-US) 2. Start Firefox 3. Go to Tools -> Options -> Search Actual result: Google does not appear and Bing is default. Expected result: Google exists. I think this should block 60.5 ESR release.
1,461,285
13,275,198
User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:61.0) Gecko/20100101 Firefox/61.0 Build ID: 20180510160705 Steps to reproduce: Click Login Button at https://developers.kakao.com/ or click Kakao Oauth login button. Actual results: The load icon(the thing at favicon position) continues to animate, the screen remains white, and CPU usage rises up to 100%. Expected results: The login page should appear but doesn't. And browser response slows down or sometimes freeze.
1,464,034
13,340,628
Filed by: ebalazs [at] mozilla.com https://treeherder.mozilla.org/logviewer.html#?job_id=179985824&repo=mozilla-central https://queue.taskcluster.net/v1/task/XptGCTWCSdy4nMawupC1TA/runs/0/artifacts/public/logs/live_backing.log
1,449,033
13,157,251
User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36 Steps to reproduce: I am developper at ZenHub. Several users reported that since Firefox 60 (dev and nightly version), Firefox periodically freezes for 1 to 2 seconds. I have reproduced with Firefox 61. An easy way to reproduce is to install ZenHub (sorry, I haven't found a more straight forward way) and heads to a busy ZenHub board: https://github.com/saltstack/salt#boards?repos=122537149,18853426,1390248,6910286,12017151,47988358 Launch the performance profiler And start randomly scrolling vertically and horizontally like in this gif: http://www.giphy.com/gifs/3s8X6ZaStlUBSBl4Fk You should get huge garbage collection periods like that: https://imgur.com/a/zjhlo Here's the description of the problem by one of our users: https://github.com/ZenHubIO/support/issues/1383#issuecomment-376321483 Actual results: Garbage collector runs for up to 2 seconds and freezes everything. Expected results: In Firefox 59 (the current latest release), everything works fine
1,449,594
13,163,531
Created attachment 8963147 Firefox 60.0b7-1 (72) search bug User Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/65.0.3325.181 Chrome/65.0.3325.181 Safari/537.36 Steps to reproduce: ``` $ snap info firefox tracking: edge installed: 60.0b7-1 (72) 201MB - $ snap version snap 2.32.1 snapd 2.32.1 series 16 ubuntu 17.10 kernel 4.13.0-37-generic $ snap info core tracking: beta installed: 16-2.32.1 (4327) 86MB core ``` Ran the 60.0b7-1 (72) snap in edge by using `snap run firefox` (you can install it by installing snapd and then `snap install firefox --edge`) and typed `google.com` into the address bar. Actual results: Got the 'Gah. Your tab just crashed.' page and the output in Terminal which is attached, or see this link: https://paste.ubuntu.com/p/NtDG5xd2zX/ Expected results: The website should have loaded.
1,459,655
13,259,854
This bug was filed from the Socorro interface and is report bp-0519cdd9-340c-41e4-8b54-f32000180506. ============================================================= Seen while looking at nightly crash stats, crashes started on Windows and Mac using 20180504220115: https://bit.ly/2IhHmlz (Windows). Mac crashes: https://bit.ly/2jAoT5A. Moz Crash reason: MOZ_CRASH(Origin must be available when deserialized) Possible regression range based on Build ID: https://hg.mozilla.org/mozilla-central/pushloghtml?fromchange=a2d1d4158bb4718d8bb31e1284e133aa99273600&tochange=5207b1392b11db534550a5eb801302e6dbb58f95 Top 10 frames of crashing thread: 0 xul.dll mozilla::ipc::PrincipalInfoToPrincipal ipc/glue/BackgroundUtils.cpp:106 1 xul.dll mozilla::ipc::LoadInfoArgsToLoadInfo ipc/glue/BackgroundUtils.cpp:464 2 xul.dll mozilla::net::HttpChannelParent::DoAsyncOpen netwerk/protocol/http/HttpChannelParent.cpp:521 3 xul.dll mozilla::net::HttpChannelParent::Init netwerk/protocol/http/HttpChannelParent.cpp:131 4 xul.dll mozilla::net::NeckoParent::RecvPHttpChannelConstructor netwerk/ipc/NeckoParent.cpp:323 5 xul.dll mozilla::net::PNeckoParent::OnMessageReceived ipc/ipdl/PNeckoParent.cpp:920 6 xul.dll mozilla::dom::PContentParent::OnMessageReceived ipc/ipdl/PContentParent.cpp:3497 7 xul.dll mozilla::ipc::MessageChannel::DispatchAsyncMessage ipc/glue/MessageChannel.cpp:2141 8 xul.dll mozilla::ipc::MessageChannel::DispatchMessageW ipc/glue/MessageChannel.cpp:2071 9 xul.dll mozilla::ipc::MessageChannel::RunMessage ipc/glue/MessageChannel.cpp:1917 =============================================================
1,460,287
13,265,391
User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:62.0) Gecko/20100101 Firefox/62.0 Build ID: 20180509100510 Steps to reproduce: User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:62.0) Gecko/20100101 Firefox/62.0 Build ID: 20180509100510 Install https://addons.mozilla.org/en-US/firefox/addon/dream-of-waves/ It works. But wait for Firefox to update. Actual results: After an update, the theme doesn't get applied. And trying to select the theme in about:addons doesn't work. The only way to get it to work again is to uninstall the theme and reinstall it. Expected results: A custom theme should work across updates.
1,461,231
13,273,674
User Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0 Build ID: 20180510160705 Steps to reproduce: After removing a fixed-positioned element from DOM, Firefox 61+ does not repaint window until an extra click is done anywhere on the page, or something that forces repaint β€” e.g. resizing Firefox window or hovering DOM nodes in Developer Tools. AFFECTED VERSIONS The bug was introduced in the build 20180404100127 (mozilla-central). The previous build 20180403220040 was NOT affected. The latest tested build 20180513220424 is still affected. Stable Firefox 60 is NOT affected, so there is a chance to prevent leaking the issue into the stable branch and affecting majority of users. Both 64-bit and 32-bit versions of Firefox are affected. Tested on two different physical computers with the same results. TESTCASE Please see the testcase URL. Also, looks like exactly the same issue (introduced in the same Firefox build) is the reason of glitches with a Lightbox-like script used for displaying enlarged image on iXBT.com, e.g. see the first image (A08 robot photo) here (click the normal image version to see the glitches during showing its enlarged version): https://www.ixbt.com/news/2018/05/13/boston-dynamics-spotmini.html POSSIBLE REASONS Based on what pushes have been made between the two days the unaffected and affected builds were built, one of these bugs may (or not) be the reason of the current bug given that they apparently affect the layout part of the Firefox engine, especially those related to invalidation (1450189 and 1443380): Bug 1450266 -- Remove nsGlobalWindowInner::CleanUp in favor of FreeInnerObjects() Bug 1450189 -- Don't invalidate display items when a frame gets a new style context Bug 1443380 -- We don't need to mark frames modified when we recurse into InvalidateFrame Bug 1442844 -- FinishAndStoreOverflow's aNewSize parameter isn't always used Bug 1370575 -- Overpainting when composing a reply in GMail
1,446,900
13,138,853
This bug was filed from the Socorro interface and is report bp-4d3582e4-854f-4cc0-ae06-5470f0180318. ============================================================= Top 10 frames of crashing thread: 0 xul.dll mozilla::ipc::IToplevelProtocol::OtherPid ipc/glue/ProtocolUtils.cpp:602 1 xul.dll mozilla::ipc::IPDLParamTraits<mozilla::ipc::FileDescriptor>::Write ipc/glue/FileDescriptor.cpp:235 2 xul.dll mozilla::ipc::IPDLParamTraits<mozilla::dom::FileDescOrError>::Write ipc/ipdl/PContent.cpp:4049 3 xul.dll mozilla::dom::PContentParent::SendPScriptCacheConstructor ipc/ipdl/PContentParent.cpp:1128 4 xul.dll mozilla::ScriptPreloader::InitContentChild js/xpconnect/loader/ScriptPreloader.cpp:184 5 xul.dll mozilla::dom::ContentParent::InitInternal dom/ipc/ContentParent.cpp:2319 6 xul.dll mozilla::dom::ContentParent::LaunchSubprocess dom/ipc/ContentParent.cpp:2073 7 xul.dll mozilla::dom::ContentParent::PreallocateProcess dom/ipc/ContentParent.cpp:608 8 xul.dll mozilla::PreallocatedProcessManagerImpl::AllocateNow dom/ipc/PreallocatedProcessManager.cpp:269 9 xul.dll mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIThreadPool>, nsresult xpcom/threads/nsThreadUtils.h:1200 ============================================================= There are 2 crashes (from 2 installations) in nightly 61 with buildid 20180317220121. In analyzing the backtrace, the regression may have been introduced by patch [1] to fix bug 1348361. [1] https://hg.mozilla.org/mozilla-central/rev?node=dd3dc46a8d7d
1,456,534
13,230,014
This bug was filed from the Socorro interface and is report bp-f370098c-33c5-414f-ba43-e19ff0180424. ============================================================= Noticed while verifying bug 1451384. This appears to have started back up again on build 20180424100107. Mac/Linux look like nullptr crashes, but there's a Windows one that looks maybe wildptr? Maybe a regression from bug 1439809 or bug 1452805? Top 10 frames of crashing thread: 0 libmozglue.dylib MOZ_CrashPrintf mfbt/Assertions.cpp 1 XUL InvalidArrayIndex_CRASH xpcom/ds/nsTArray.cpp:26 2 XUL MergeState::ProcessItemFromNewList xpcom/ds/nsTArray.h:1029 3 XUL RetainedDisplayListBuilder::MergeDisplayLists layout/painting/RetainedDisplayListBuilder.cpp:487 4 XUL MergeState::ProcessItemFromNewList layout/painting/RetainedDisplayListBuilder.cpp:279 5 XUL RetainedDisplayListBuilder::MergeDisplayLists layout/painting/RetainedDisplayListBuilder.cpp:487 6 XUL MergeState::ProcessItemFromNewList layout/painting/RetainedDisplayListBuilder.cpp:279 7 XUL RetainedDisplayListBuilder::MergeDisplayLists layout/painting/RetainedDisplayListBuilder.cpp:487 8 XUL MergeState::ProcessItemFromNewList layout/painting/RetainedDisplayListBuilder.cpp:279 9 XUL RetainedDisplayListBuilder::MergeDisplayLists layout/painting/RetainedDisplayListBuilder.cpp:487 =============================================================
341,309
2,880,706
I'm using Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9a1) Gecko/20060612 Minefield/3.0a1 Reproducable: always Steps to reproduce: 1. visit http://content.emule-project.net/ 2. Click in the username field on the left 3. Select the username from the dropdown 4. Enter password 5. Click "Log In" Actual result: Firefox crashes Expected result: Firefox should not crash When Firefox crashes I also get this error in the console: ************************************************************ * Call to xpconnect wrapped JSObject produced this error: * [Exception... "Cannot modify properties of a WrappedNative" nsresult: "0x80570034 (NS_ERROR_XPC_CANT_MODIFY_PROP_ON_WN)" location: "JS frame :: chrome://global/content/bindings/autocomplete.xml :: onxblpopuphiding :: line 735" data: no] ************************************************************ ###!!! ASSERTION: You can't dereference a NULL nsCOMPtr with operator->().: 'mRawPtr != 0', file ../../../../dist/include/xpcom/nsCOMPtr.h, line 849
341,356
2,881,071
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9a1) Gecko/20060612 Minefield/3.0a1 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9a1) Gecko/20060612 Minefield/3.0a1 Reload doesn't work. Reproducible: Always Steps to Reproduce: 1. Select Reload in the tool bar, or select View | Reload Actual Results: Nothing happens Expected Results: It reloads It's non-Cairo, zip build. It has no extensions.
336,990
2,849,204
Steps to reproduce: - Rightclick on your bookmarks toolbar and choose delete - Result: everything is gone Maybe this sounds reasonable for people who want a quick cleanup, but the following happened in practice: On a feed preview I clicked Subscribe. Because nothing seemed to happen (didn't see any dialog), I repeated this several times. Suddenly I saw that on my bookmarks toolbar there was a new arrow >> on the right, with several subscriptions that didn't fit on my toolbar. A bit absent-minded I rightclicked on the arrow and choosed delete. And after some seconds my whole bookmarks toolbar was empty. A solution would be only to delete everything underneath the arrow or not to show the delete option in the context menu.
297,338
2,524,355
User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.8b2) Gecko/20050609 Camino/0.9a1 Build Identifier: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.8b2) Gecko/20050609 Camino/0.9a1 Editing in a form textview does not retain the entire contents of a long file resulting in the loss of data. This issue was noticed on the Camino documentaion wiki. Reproducible: Always Steps to Reproduce: Actual Results: Data was lost. It appears to truncate after 4096 characters, perhaps a hardcoded value? Expected Results: Textview should display entire contents of file and not truncate so that the complete content is saved.
293,588
2,498,163
Build: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8b2) Gecko/20050509 Firefox/1.0+ Since some days back I noticed that the wrong elements are selected in a dropdown. This has caused me to change all fields in certain bugs when cc:ing myself on them. Steps to reproduce: 1. Go to https://bugzilla.mozilla.org/show_bug.cgi?id=293446 2. Now change the url so that it goes to 915 and press enter 3. Notice that its not core/layout tables in the bug, its core /build config 4. Doing a shift + reload shows the correct values
294,655
2,505,384
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.7) Gecko/20050421 Firefox/1.0.3 (Debian package 1.0.3-2) Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.7) Gecko/20050421 Firefox/1.0.3 (Debian package 1.0.3-2) When applying the 287109's patch on a fresh 2.16.9 installation, whcih uses a database created for a 2.16.7 bugzilla, with no groups, it's impossible to enter a new bug. enter_bug.cgi says: Sorry, either this product does not exist, or you don't have the required permissions to enter a bug against that product. The user I use here is the admin and is the owner of one Product and one component. Reproducible: Always Steps to Reproduce: 1. use a old bugzilla 2.16.7 databse with nothing inside but one component and one product, no groups. 2. log in as admin 3. click on the enter_bug.cgi link named "New" Actual Results: Permission Denied Sorry, either this product does not exist, or you don't have the required permissions to enter a bug against that product. Expected Results: The user should be able to fill a bug against the product he owns.
293,135
2,495,142
Build id: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8b2) Gecko/20050505 Firefox/1.0+ This is a fresh regression. It works in build 20050504, but not in 20050505. I have NOT enabled the new "fastback/bfcache" feature Steps to reproduce: 1. go to https://bugzilla.mozilla.org/query.cgi 2. search for something (type in anyting in the summary field) 3. search results are shown, now press back, notice that summary field is empty
250,818
2,199,394
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040710 Firefox/0.9.0+ Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040710 Firefox/0.9.0+ Talkback seems to be missing. At installation, when the component is selected there's a message box that says : +----------------------------------+ |Error | +----------------------------------+ |Error occured during installation | |- Quality Feedback Agent: | |-214 DOES_NOT_EXIST | | [OK] | +----------------------------------+ (I like ASCII art :-) ) And then the installer hangs (gentle hang). Reproducible: Always Steps to Reproduce: 1. Install the nightly latest-0.9 of July 10th 2. Be sure to select Talkback in the components. 3. Proceed and wait. Actual Results: An error message appears. Expected Results: Finish the installation and ask me whether to start Firefox right away. I had no profile at all before starting, but I doubt that this is relevant. If you don't select Talkback, everything runs fine (at first glance at least).
251,213
2,201,998
In Windows build 20040712, FTP URLs fail to load. Steps to reproduce: 1. Load ftp://ftp.mozilla.org (or any other ftp url) Results: No page is loaded. You're left at the page you had previously loaded. No errors or allerts. Expected: Load the ftp url and display ftp listing
265,501
2,301,913
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.3) Gecko/20040913 Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.3) Gecko/20040913 Currently, prcpucfg.h is different for 32 and 64 bit Solaris. 32: prcpucfg.h = md/_solaris32.cfg 64: prcpucfg.h = md/_solaris64.cfg The expected behaviour is to have only one version (md/_solaris.cfg) and use the flag _LP64 to select the right definitions. _LP64 is the flag used by all the Solaris headers included by NSPR. Reproducible: Always Steps to Reproduce: 1. 2. 3. Actual Results: :-( Expected Results: :-)
322,701
2,742,108
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9a1) Gecko/20060107 Firefox/1.6a1 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9a1) Gecko/20060107 Firefox/1.6a1 When opening Options dialog second time Options window is empty Reproducible: Always Steps to Reproduce: 1.Open Options dialog from Tools-Options 2.Press "OK" button 3.Open Tools-Options again Actual Results: Dialog is empty. Expected Results: Dialog should be same as when opened first time.
261,120
2,270,170
While trying to change the paragraph format from Body Text to any value, the application gets into an infinite loop, cpu gets to 100% and application becomes unresponsive. Steps to reproduce: 1- Start Composer with a blank document 2- Simply try changing the paragraph format XUL select to any value (besides Body Text) Actual results: Application hangs, becomes unresponsive, cpu %tage close to 100%. I even crashed. Expected results: Just change the format Reproducible: always This happens in either Normal or HTML Tags editing mode. Mozilla 1.8a4 build 2004092104 under XP Pro SP2 here.
255,270
2,230,780
Steps to reproduce 1) Create a new profile. Start Mozilla. 2) Go to any page which has a form (e.g. http://www.mozilla.org/). 3) Type something in the form, and submit it. This should bring up the security warning dialog. 4) Uncheck the "Alert me" checkbox in the dialog. Notice how the label resizes and pushes the Continue/Cancel buttons off screen so they are no longer visible. This started occurring with nightly builds between 2004-08-09 and 2004-08-10. Sorry if this is a duplicate - I didn't see this reported anywhere today.
256,436
2,238,577
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; de-AT; rv:1.8a3) Gecko/20040821 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; de-AT; rv:1.8a3) Gecko/20040821 When you move to a homepage for the first time since last start and you would like to follow a link by clicking on it, then, if this link is positioned where you have to scroll down, the link jumps to the bottom of the browser's window, but doesn't follow. Reproducible: Always Steps to Reproduce: 1. Open a Homepage where you have not been since last start of Mozilla 2. Scroll down 3. Click on a link Actual Results: Before clicking, the link was in the middle of the window, after clicking it jumped to the bottom of the window but didn't follow. Expected Results: Follow the link
256,464
2,238,781
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8a3) Gecko/20040820 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8a3) Gecko/20040820 The IME system is broken between 2004-08-20 to 2004-08-21. This bug is reproduced on Win and Linux. # Mac is not tested. http://bonsai.mozilla.org/cvsquery.cgi?treeid=default&module=MozillaTinderboxAll&branch=HEAD&branchtype=match&dir=&file=&filetype=match&who=&whotype=match&sortby=Date&hours=2&date=explicit&mindate=2004-08-20&maxdate=2004-08-21+07%3A00%3A00&cvsroot=%2Fcvsroot Reproducible: Always Steps to Reproduce: 1. Type "houkoku" with IME. 2. Convert the string by space key. 3. Actual Results: 1. h "h" 2. o "hほ" 3. u "hほほう" 4. k "hほほうほうk" 5. o "hほほうほうkほうこ" 6. k "hほほうほうkほうこほうこk" 7. u "hほほうほうkほうこほうこkほうこく" 8. (hit space key) "hほほうほうkほうこほうこkγ»γ†γ“γε ±ε‘Š" Expected Results: 1. h "h" 2. o "ほ" 3. u "ほう" 4. k "ほうk" 5. o "ほうこ" 6. k "ほうこk" 7. u "ほうこく" 8. (hit space key) "ε ±ε‘Š"
311,071
2,646,136
Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.8b5) Gecko/20051004 Firefox/1.4.1 ID:2005100402 after patch Bug 310993 landed the url above keeps reloading works in 20051003 2217pdt build fails in 20051004 0252pdt build
300,138
2,546,581
User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/412 (KHTML, like Gecko) Safari/412 Build Identifier: 2.18.2 Performed a new install of 2.18.2 and received this error. This parameter didn't exist in defparams.pl or $datadir/params. Added the parameter to $datadir/params and still got this error (the parameter works if you comment out the die line Config.pm). Added the parameter defparams.pl and no longer get the error (after uncommenting out the die line in Config.pm). For whatever reason, the $datadir/params file works, but the Params() function call doesn't seem to be able to check something that didn't exist in defparams.pl Reproducible: Always Steps to Reproduce: 1. New stock installation of 2.18.2 2. Add the cookiedomain parameter to $datadir/params 3. Try to login Actual Results: can't find param cookiedomain in Bugzilla/Config.pm at line 150 Expected Results: Logged the user in.
299,188
2,539,131
User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.8b2) Gecko/20050629 Camino/0.9a1+ Build Identifier: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.8b2) Gecko/20050629 Camino/0.9a1+ In the Jun. 29th nightly of Camino, loading a page in the WordPress admin interface causes Camino to crash. I am using the "Tiger" CSS: http://www.orderedlist.com/articles/wordpress-administration-design-tiger/ I believe the most recent nightly I used before this was the Jun. 27th nightly, this build did not exhibit this problem. Reproducible: Always Steps to Reproduce: 1. Click on bookmark for WP admin interface Actual Results: Camino crashes. Expected Results: Not crash. Will attach crash log.
304,356
2,578,836
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko/20050716 Firefox/1.0.6 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko/20050716 Firefox/1.0.6 currently (16:38 GMT-4), one cannot view their votes. clicking on "My Votes" in the b.m.o footer takes you to https://bugzilla.mozilla.org/votes.cgi?action=show_user which currently gives the following error: === Software error: DBD::mysql::db selectcol_arrayref failed: Table 'groups' was not locked with LOCK TABLES [for Statement "SELECT DISTINCT groups.name, group_id FROM groups, user_group_map WHERE groups.id=user_group_map.group_id AND user_id=? AND isbless=0"] at Bugzilla/User.pm line 227 Bugzilla::User::groups('Bugzilla::User=HASH(0x99be944)') called at Bugzilla/User.pm line 277 Bugzilla::User::can_see_bug('Bugzilla::User=HASH(0x99be944)', 28357) called at /opt/webtools/bugzilla/votes.cgi line 188 main::show_user() called at /opt/webtools/bugzilla/votes.cgi line 76 For help, please send mail to the webmaster (root@localhost), giving this error message and the time and date of the error. === Reproducible: Always Steps to Reproduce:
305,288
2,586,164
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8b4) Gecko/20050819 Firefox/1.0+ Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8b4) Gecko/20050819 Firefox/1.0+ If browser.preferences.animateFadeIn is set to True via about:config, the options window goes blank. Returns to normal when it is set to false. Reproducible: Always Steps to Reproduce: 1. Set browser.preferences.animateFadeIn is set to True via about:config 2. Navigate to Tools--->Options Actual Results: The options window appeared but it was blank (except the OK/Cancel buttons and the tabs up top) Expected Results: The options window should have appeared with the relevant text. No problems with the official 20050819 build. Build ID with timestamp: ------------------------- Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8b4) Gecko/20050819 Firefox/1.0+ ID:2005081920