Bug ID
int64
961
1.91M
Comment ID
int64
3.98k
17.1M
Author
stringlengths
8
48
Comment Text
stringlengths
1
64.3k
166,750
1,528,016
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.1b) Gecko/20020904 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.1b) Gecko/20020904 This code: <form style="overflow: auto;"> <select style="position: fixed;"> <option>First</option> <option>Second</option> <option>Third</option> </select> </form> will crash Mozilla. Reproducible: Always Steps to Reproduce: 1.Save where you are 2.Visit page Actual Results: Mozilla crashes immediately upon attempting to display page. We may replace the form element with any block element and get the same crash. I have not found any other controls that give a crash. I will attach complete Talkback results.
166,955
1,529,641
Every other time you return to a mail compose window from a browser window, type ahead find is enabled in the mail compose window, causing you not to be able to type additional alphanumeric characters into your message. Steps to Reproduce: 1. Start composing a new message. 2. Go to a browser window. 3. Return to the message compose window. 4. Type more alphanumeric characters. 5. If your characters appear, repeat steps 2, 3, and 4. Expected Results: your characters appear. Actual Results: your characters do not appear, and on Windows the type ahead find bell rings (saying it can't find the characters you type) Additional Information: Reproduced on Linux and Windows 2002-09-05.
174,628
1,589,891
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.2b) Gecko/20021001 Phoenix/0.2 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.1) Gecko/20020826 I use a javascript function to open a new window. The method window.open(<uri>,'') replaces all special characters like one of {ä,ü,ö,ß...} by their %<hex-value> form, in the <uri> String. But all following '&', '=' are replaced too. Because of that I cannot use the uri-request-arguments to transport data from one page to another one. example: tr_id=151&mem_id=17572&mem_name=crew|&reason=Sprühen&val=13&wind_type=modify gets tr_id=151&mem_id=17572&mem_name=crew|&reason=Spr%FChen%26val%3D13%26wind_type %3Dmodify The Javascript function I used: function modTA(tr_id, memb_id, memb_name, reason, val) { var mf = window.open("clanfinance/taWindow.php?tr_id="+tr_id+"&mem_id=" +memb_id+"&mem_name="+memb_name+"&reason="+reason+"&val="+val +"&wind_type=modify", "", "height=220,width=265,resizeable=0,status=0"); } The same happens when I use the Phoenix Browser Reproducible: Always Steps to Reproduce: 1. go to the url i described above 2. navigate: -> ClanKasse -> Clankasse 3. select a row, that contains one of the characters {ö, ü, ä} like that with TrID=64 4. -> ändern ... -> use the 'Zurück' button to close the window Actual Results: the "Zweck" edit field contains the uri-request-arguments which follow the argument, which contains the data, that should be displayed in the edit field. Expected Results: Mozilla should only display the data, which the argument &reason contains. Notices: You should allow cookies to access that web page You should not modify too much on that web page
174,709
1,590,598
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.2b) Gecko/20021013 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.2b) Gecko/20021013 Go to http://xopus.org/demo/xopus/xopus.html?rnd=0.723197851915904#content=http%3A//xopus.org/demo/index.html and click on "simple demo" --> crash Talkback ID: TB12624430E Reproducible: Always Steps to Reproduce:
174,912
1,592,362
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; .NET CLR 1.0.3705) Build Identifier: Mozilla/5.0 The Mozilla SDK 5.0 client occasionally ignores requests when the LDAP server returns more than one referral. With a little logging and tracing, I find that some requests terminate parent requests before the parent completes receiving responses. This results in lost entry results and even lost referrals. In read1msg() of result.c, a while-loop decreases the lr_outrefcnt of the parent associated with the finished referral below. The loop finishes with lr pointing to the highest parent who has a positive lr_outrefcnt (after the subtraction) or simply the highest parent in the branch. In either case, read1msg() continues and frees everything at lr and below with nsldapi_free_request(lr); so, the while-loop had better give us the highest completed lr or it will free outstanding requests. Unfortunately, my logs show that the while-loop can finish with an lr above requests who still have lr_res_msgtype==LDAP_RES_SEARCH_REFERENCE, indicating that indeed the current code incorrectly frees outstanding requests. Typically how does this happen? Consider a system where referral generates requests looking like: [r1]->[r2]->[r3] Where arrows = children. 1. Assume [r3] just got a final response from the server, setting its lr_res_msgtype to LDAP_RES_SEARCH_RESULT and read1msg() now enters the while- loop. 2. The loop goes up to [r2] to decrease its lr_outrefcnt to 0. 3. What if [r2] isn’t done? What if it is about to receive an entry? Or another URL referral? What if [r2]’s lr_res_msgtype==LDAP_RES_SEARCH_REFERENCE right now? - the while-loop ignores it! The loop only sees [r2]’s lr_outrefcnt==0 and continues up to set lr=[r1]. 4. Assume [r1] already has lr_res_msgtype==LDAP_RES_SEARCH_REFERENCE – remember responses from the server arrive any time so although [r2] is incomplete, [r1] may have completed ages ago. Since [r2] was [r1]’s only referral, [r1]’s lr_outrefcnt is now 0. 5. The while-loop can’t go up further and lets lr rest at [r1]. 6. When we get to the “we recognize a request as complete when” conditions, we see that [r1] satisfies all conditions. Satisfying these conditions, we enter the resource freeing code. 7. When nsldapi_free_request(lr) starts freeing resources from the [r1] branch, [r2] disappears, though it’s not finished. What can we do to stop this calamity?: Placing an lr_res_msgtype check before traversing up to the parent can correct this. All we have to do is stop at [r2] and [r2] will fail the conditions that are required to execute nsldapi_free_request(lr). To stop at [r2], we immediately break the loop when lr_res_msgtype==LDAP_RES_SEARCH_REFERENCE in the while-loop right after merge_error_info(), before lr=lr->lr_parent traverses up. When we finally get a result response for [r2], we’ll execute this loop again and this time lr->lr_res_msgtype should be LDAP_RES_SEARCH_RESULT which will let us continue and free [r2] properly. Note that we subtract the parent’s lr_outrefcnt at the end of the previous iteration of the same while-loop so its lr_outrefcnt is always current even with the new loop breaker. The fix looks like: while ( lr->lr_parent != NULL ) { merge_error_info( ld, lr->lr_parent, lr ); if( lr->lr_res_msgtype == LDAP_RES_SEARCH_REFERENCE ) // new break; // new lr = lr->lr_parent; if ( --lr->lr_outrefcnt > 0 ) break; } Reproducible: Always Steps to Reproduce: 1. Set up three server instances A, B, C. 2. Set up referrals A-->B-->C. 3. Execute any sub search from A that must refer to B then C. 4. Repeat step #3 until symptoms surface and an expected entry cannot be found. Actual Results: After about an hour of looping, 1 entry in the directory cannot be found. LDAP_SUCCESS returns as if no entries were expected. Executing one more search for the same entry reveals it indeed should've have been found. It seems the faster the computer, the longer it takes for the symptoms to appear. Expected Results: Returned the entry from the directory ... consistantly. Test done with Netscape Directory Server 6.01 on an HP-UX 11.00 system with the September 2002 Quality Pack.
175,896
1,600,225
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.2b) Gecko/20021021 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.2b) Gecko/20021021 Take a textarea having the css property "overflow: hidden;". When you enter lines so that a vertical overflow happens, the cursor comes back on top of the element and writes on top of in place data. When trying to select this data, the browser will crash. Happens in standard compliance mode and in quirks mode. Reproducible: Always Steps to Reproduce: 1. Give the overflow: hidden property (stylesheet, in line, has you want) to a textarea 2. fill in enough lines of data for it to overflow vertically 3. try to select the data Actual Results: Browser crashed Expected Results: Should have overlined the selected data viewable in the textarea element. Crashes with Modern and Classic themes
177,242
1,610,867
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.2b) Gecko/20021021 Phoenix/0.3 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.2b) Gecko/20021021 Phoenix/0.3 Print Preview crashes the browser (DrWatson starts generating an error message) if typeaheadfind has been enabled and I start typing. Reproducible: Always Steps to Reproduce: 1. Ensure that typeaheadfind is enabled (it is by default) 2. Open url - www.nytimes.com <could be any other> 3. Print Preview 4. Type some characters Actual Results: The browser crashed Expected Results: Anything but crash. It should ignore typeaheadfind during print preview as a first solution to the problem
156,405
1,436,942
From Bugzilla Helper: User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.1a) Gecko/20020611 BuildID: 2002061104 I don't have a repeatable sequence but have had a crash two days in a row. Each time, the Mozilla session had opened not more than 3 windows (in one case, only one Mozilla window opened during entire session), but exactly one of these windows had lot of tabs opened & closed during the session. At the time of crash, many tabs were open; and (I think) I had asked Mozilla to open yet another tab. Sessions were 2 - 2:30 hrs long. Above is actually better behavior than IE - but irritating still. An IE session on Win2K where I open lot of windows has a tendency to make Windows unusable after a few hours - I must reboot Windows. Mozilla is at least leaving rest of the OS & applications untouched:( I think both have something to do with amount of windows resources consumed. Probably some of the resources are never freed when they are no longer required. And there must be places in HTML rendering code that are not prepared to accept the fact that resource request to Windows can fail. Each time, Netscape Feedback Agent popped up - but never sent anything back - just hung (actually not even hung - its window was responding to mouse clicks but it just didn't sent anything for a long time & then I killed it). I have seen Feedback Agent always successfully report back the crashes from my office PC. This hang occured at my home PC - the special thing about the environment was: at the time of crash, I was connected to an ISP that doesn't host my mailbox. Reproducible: Didn't try Steps to Reproduce: 1. See description above.
156,719
1,439,716
From Bugzilla Helper: User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.1a+) Gecko/20020710 BuildID: 2002071008 If mozilla has more than one tab showing, clicking Bookmarks -> File Bookmark crashes Mozilla. Reproducible: Always Steps to Reproduce: 1.Hit Crtl-T to open a new tab 2.Click Bookmarks -> File Bookmark 3. Actual Results: Mozilla crashes Expected Results: no crash TB8182363Q TB8182299G etc...
171,331
1,565,143
User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.2b) Gecko/20020927 Build Identifier: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.2b) Gecko/20020927 Trying to send e-mail signed with a Thawte Freemail cert produces a send message error: 'Sending of message failed. 'Unable to sign message. Please check that the certificates specified in Mail & Newsgroups Account Settings for this account are valid and trusted.' I first saw this 2002092617; things were fine with 20020924. Looking at the certs for my accounts, it seemed that several certs were missing. Up-dating to today's build, the problem persisted. I re-imported my certs (from back-up). The Certificate Manager indicates '<Issuer Not Trusted>' for each of my certs; ditto for the Thawte Freemail certs of others (under the second tab). I'm assuming that this is related to the recent NSS changes. At any rate, it seems unrelated to the various bugs involving certificates, signing, and Thawte that I looked at before filing this (I've actually avoided filing bugs up till this point). I'm tentatively assigning a severity of Major, in as much as S/MIME is a day-to-day feature for many users, and the problem (whatever its source) is preventing normal S/MIME functionality. Reproducible: Always Steps to Reproduce: 1. Write an S/MIME e-mail using a Thawte Freemail cert. 2. Try to send the signed e-mail. Actual Results: A Send Message Error was produced. Expected Results: That Mozilla would prompt me for my password for the Software Security Device and then send the e-mail as per usual.
171,782
1,568,010
Starting in the 2002092804 Trunk builds, Talkback data is showing this signature and stack (below) as a topcrash. I am not seeing a checkin (between 09-27 00h and 09-28 04h) that looks like it causes this. What am I missing? Stack Trace: nsDownloadManager::~nsDownloadManager [c:/builds/seamonkey/mozilla/xpfe/components/download-manager/src/nsDownloadManager.cpp line 99] nsDownloadManager::`scalar deleting destructor' nsDownloadManager::Release [c:/builds/seamonkey/mozilla/xpfe/components/download-manager/src/nsDownloadManager.cpp line 88] nsSupportsArray::Clear [c:/builds/seamonkey/mozilla/xpcom/ds/nsSupportsArray.cpp line 560] nsSupportsArray::DeleteArray [c:/builds/seamonkey/mozilla/xpcom/ds/nsSupportsArray.cpp line 304] nsSupportsArray::`vector deleting destructor' nsCOMPtr_base::~nsCOMPtr_base [c:/builds/seamonkey/mozilla/xpcom/glue/nsCOMPtr.cpp line 65] ReleaseObserverList [c:/builds/seamonkey/mozilla/xpcom/ds/nsObserverService.cpp line 110] _hashEnumerateRemove [c:/builds/seamonkey/mozilla/xpcom/ds/nsHashtable.cpp line 381] PL_HashTableEnumerateEntries [plhash.c line 430] nsHashtable::Reset [c:/builds/seamonkey/mozilla/xpcom/ds/nsHashtable.cpp line 398] nsObjectHashtable::Reset [c:/builds/seamonkey/mozilla/xpcom/ds/nsHashtable.cpp line 926] nsObjectHashtable::~nsObjectHashtable [c:/builds/seamonkey/mozilla/xpcom/ds/nsHashtable.cpp line 892] nsObjectHashtable::`vector deleting destructor' nsObserverService::`scalar deleting destructor' nsCOMPtr_base::assign_with_AddRef [c:/builds/seamonkey/mozilla/xpcom/glue/nsCOMPtr.cpp line 74] PL_DHashTableEnumerate [c:/builds/seamonkey/mozilla/xpcom/ds/pldhash.c line 602] 0x00e53f30
129,955
1,213,368
From Bugzilla Helper: User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.9+) Gecko/20020309 BuildID: 2002030908 LDAP search in address book does not work (says found 0 matches), but address completion in mail composer does work correctly (finds addresses from directory). Reproducible: Always Steps to Reproduce: 1. Configure an LDAP directory 2. Start address book 3. Perform search Actual Results: no matches found Expected Results: find email address
129,988
1,213,612
From Bugzilla Helper: User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.9+) Gecko/20020309 BuildID: 2002030908 In Messenger while rading news (I use offline) if focus placed on message body (right-bottom pane in 3-pane view) space bar and 'n' do not advance to next message. However, 'Next' button on toolbar works. When subjects pane is focused (right-top) then both shortcuts work. Reproducible: Always Steps to Reproduce: 1.Go to newsgroup that contains unread messages 2.Select message body pane 3.Press 'n' or space bar Actual Results: Message scrolls to the end but there no advance to next unread. Expected Results: Next unread message should be displayed when current is screolled to the end.
130,691
1,219,533
131,105
1,223,817
From Bugzilla Helper: User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:0.9.9+) Gecko/20020314 BuildID: 2002031403 Bookmarks added during the current session are lost if Mozilla crashes. Reproducible: Always Steps to Reproduce: 1. Bookmark a site with Bookmarks -> Add Bookmark 2. Crash Mozilla [I used the testcase for Bug 131008) Actual Results: Upon restarting Mozilla, the bookmark added in step 1 will not be in the bookmarks list. Expected Results: Upon restarting Mozilla, the bookmark added in step 1 is in the bookmarks list. Marking Critical because data loss is involved.
131,174
1,224,264
From Bugzilla Helper: User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.9) Gecko/20020310 BuildID: 2002031008 Reproducible: Always Steps to Reproduce: 1.load a page 2.enter print dialog while loading another page, which is not displayed yet (your connection mustn't be too fast ;-)) 3.leave dialog with cancel Talkback IDs: TB3935347Z, TB3935239Y
131,918
1,230,285
Infinite loop in nsEventStateManager::MoveFocusToCaret, tabbing to form controls Somehow, I've hit an infinite loop while doing some testing of form controls. (NOTE: this happens with either the current (c++) implementation of form controls or with the xbl-based form controls. It is independent of [XBLFC].) Steps to reproduce: 1) start browser and load the first attachment to this bug (simple form) 2) tab out of urlbar to first link, and tab again to first <select> 3) use the mouse to set the focus back in the urlbar 4) again, tab out of urlbar to first link, and tab again to first <select> 5) at this point, wait. In a few seconds, CPU will go to 100% The stack trace for the loop is below, and it is stuck in the 'do {} while ();' of MoveFocusToCaret, which starts at about line 4332 of nsEventStateManager.cpp Tested with win2k, cvs build pulled ~4pm 03/18 -> aaronl, since cvsblame has him as the author of that loop. nsEventStateManager::MoveFocusToCaret(nsEventStateManager * const 0x0158d9ce, int 0x00000000, int * 0x00000000) line 4332 nsEventStateManager::ShiftFocusInternal(nsEventStateManager * const 0x00000013, int 0x0158d810, nsIContent * 0x00000001) line 2776 nsEventStateManager::ShiftFocus(nsEventStateManager * const 0x025498c8, int 0x00000001, nsIContent * 0x00000000) line 2706 nsEventStateManager::PostHandleEvent(nsEventStateManager * const 0x01cdc2ae, nsIPresContext * 0x025498c8, nsEvent * 0x02534a58, nsIFrame * 0x0012fb44, nsEventStatus * 0x0259f5ec, nsIView * 0x0012fa14) line 1830 PresShell::HandleEventInternal(PresShell * const 0x00000013, nsEvent * 0x01cdc04c, nsIView * 0x025498c8, unsigned int 0x025a04d8, nsEventStatus * 0x00000001) line 6074 + 25 bytes PresShell::HandleEvent(PresShell * const 0x01e392a3, nsIView * 0x025498c8, nsGUIEvent * 0x025a04d8, nsEventStatus * 0x0012fb44, int 0x0012fa14, int &) line 5977 + 24 bytes nsViewManager::HandleEvent(nsViewManager * const 0x00000013, nsView * 0x01e313c4, nsGUIEvent * 0x02567cc8, int 0x0012fb44) line 2043 nsView::HandleEvent(nsView * const 0x00000013, nsViewManager * 0x01c4d6f8, nsGUIEvent * 0x0012fb44, int 0x00000000) line 306 nsViewManager::DispatchEvent(nsViewManager * const 0x01e31f2d, nsGUIEvent * 0x01c4d6f8, nsEventStatus * 0x3d888889) line 1857 + 29 bytes HandleEvent(nsGUIEvent * 0x0012fb44) line 83 nsWindow::DispatchEvent(nsWindow * const 0x02567d3c, nsGUIEvent * 0x0012fb44, nsEventStatus & nsEventStatus_eIgnore) line 865 + 3 bytes nsWindow::DispatchWindowEvent(nsWindow * const 0x00000013, nsGUIEvent * 0x00000000) line 886 nsWindow::DispatchKeyEvent(nsWindow * const 0x00000013, unsigned int 0x00000083, unsigned short 0x0000, unsigned int 0x00000009, long 0x00000000) line 2659 + 32 bytes nsWindow::OnChar(nsWindow * const 0x00000013, unsigned int 0x00000009, unsigned int 0x00000009, unsigned char 0x00) line 2807 + 20 bytes nsWindow::ProcessMessage(nsWindow * const 0x00000013, unsigned int 0x018a2575, unsigned int 0x00000102, long 0x00000009, long * 0x000f0001) line 4167 + 16 bytes nsWindow::WindowProc(HWND__ * 0x77e13eb0, unsigned int 0x00db03c2, unsigned int 0x00000000, long 0x00000009) line 1130 + 15 bytes USER32! 77e13eb0() nsAppShellService::Run(nsAppShellService * const 0x00f50110) line 309 main1(int 0x004020de, char * * 0x00000001, nsISupports * 0x00312c30) line 1350 + 10 bytes main(int 0x00000000, char * * 0x00313bb8) line 1698 + 23 bytes WinMain(HINSTANCE__ * 0x00400000, HINSTANCE__ * 0x00400000, char * 0x001333fb, HINSTANCE__ * 0x00400000) line 1716 + 23 bytes MOZILLA! WinMainCRTStartup + 308 bytes
132,130
1,231,721
One of the M099 topcrashes under the MSVCRT.DLL (NT4/98) || ntdll.dll (Win2K) signature is a highly reproducible crash at http://www.superliga.nu/ Steps: 1. Using M099 or a recent Trunk build goto http://www.superliga.nu/ Results in a crash. MSVCRT.DLL + 0xd203 (0x7800d203) MSVCRT.DLL + 0xcc3f (0x7800cc3f) MSVCRT.DLL + 0x1f5f (0x78001f5f) nsTableOuterFrame::InitChildReflowState [d:\builds\seamonkey\mozilla\layout\html\table\src\nsTableOuterFrame.cpp line 489] nsTableOuterFrame::GetMarginPadding [d:\builds\seamonkey\mozilla\layout\html\table\src\nsTableOuterFrame.cpp line 517] nsTableOuterFrame::GetChildAvailWidth [d:\builds\seamonkey\mozilla\layout\html\table\src\nsTableOuterFrame.cpp line 555] nsTableOuterFrame::OuterReflowChild [d:\builds\seamonkey\mozilla\layout\html\table\src\nsTableOuterFrame.cpp line 971] nsTableOuterFrame::IR_InnerTableReflow [d:\builds\seamonkey\mozilla\layout\html\table\src\nsTableOuterFrame.cpp line 1329] nsTableOuterFrame::IR_TargetIsInnerTableFrame [d:\builds\seamonkey\mozilla\layout\html\table\src\nsTableOuterFrame.cpp line 1118] nsTableOuterFrame::IR_TargetIsChild [d:\builds\seamonkey\mozilla\layout\html\table\src\nsTableOuterFrame.cpp line 1108] nsTableOuterFrame::IncrementalReflow [d:\builds\seamonkey\mozilla\layout\html\table\src\nsTableOuterFrame.cpp line 1071] nsTableOuterFrame::Reflow [d:\builds\seamonkey\mozilla\layout\html\table\src\nsTableOuterFrame.cpp line 1564] nsBlockReflowContext::DoReflowBlock [d:\builds\seamonkey\mozilla\layout\html\base\src\nsBlockReflowContext.cpp line 581] nsBlockReflowContext::ReflowBlock [d:\builds\seamonkey\mozilla\layout\html\base\src\nsBlockReflowContext.cpp line 359] nsBlockFrame::ReflowBlockFrame [d:\builds\seamonkey\mozilla\layout\html\base\src\nsBlockFrame.cpp line 3232] nsBlockFrame::ReflowLine [d:\builds\seamonkey\mozilla\layout\html\base\src\nsBlockFrame.cpp line 2508] nsBlockFrame::ReflowDirtyLines [d:\builds\seamonkey\mozilla\layout\html\base\src\nsBlockFrame.cpp line 2281] nsBlockFrame::Reflow [d:\builds\seamonkey\mozilla\layout\html\base\src\nsBlockFrame.cpp line 846] nsBlockReflowContext::DoReflowBlock [d:\builds\seamonkey\mozilla\layout\html\base\src\nsBlockReflowContext.cpp line 581] nsBlockReflowContext::ReflowBlock [d:\builds\seamonkey\mozilla\layout\html\base\src\nsBlockReflowContext.cpp line 359] nsBlockFrame::ReflowBlockFrame [d:\builds\seamonkey\mozilla\layout\html\base\src\nsBlockFrame.cpp line 3232] nsBlockFrame::ReflowLine [d:\builds\seamonkey\mozilla\layout\html\base\src\nsBlockFrame.cpp line 2508] nsBlockFrame::ReflowDirtyLines [d:\builds\seamonkey\mozilla\layout\html\base\src\nsBlockFrame.cpp line 2281] nsBlockFrame::Reflow [d:\builds\seamonkey\mozilla\layout\html\base\src\nsBlockFrame.cpp line 846] nsContainerFrame::ReflowChild [d:\builds\seamonkey\mozilla\layout\html\base\src\nsContainerFrame.cpp line 805] CanvasFrame::Reflow [d:\builds\seamonkey\mozilla\layout\html\base\src\nsHTMLFrame.cpp line 564] nsBoxToBlockAdaptor::Reflow [d:\builds\seamonkey\mozilla\layout\xul\base\src\nsBoxToBlockAdaptor.cpp line 845] nsBoxToBlockAdaptor::DoLayout [d:\builds\seamonkey\mozilla\layout\xul\base\src\nsBoxToBlockAdaptor.cpp line 622] nsBox::Layout [d:\builds\seamonkey\mozilla\layout\xul\base\src\nsBox.cpp line 1052] nsScrollBoxFrame::DoLayout [d:\builds\seamonkey\mozilla\layout\xul\base\src\nsScrollBoxFrame.cpp line 395] nsBox::Layout [d:\builds\seamonkey\mozilla\layout\xul\base\src\nsBox.cpp line 1052] nsContainerBox::LayoutChildAt [d:\builds\seamonkey\mozilla\layout\xul\base\src\nsContainerBox.cpp line 650] nsGfxScrollFrameInner::LayoutBox [d:\builds\seamonkey\mozilla\layout\html\base\src\nsGfxScrollFrame.cpp line 1062] nsGfxScrollFrameInner::Layout [d:\builds\seamonkey\mozilla\layout\html\base\src\nsGfxScrollFrame.cpp line 1221] nsGfxScrollFrame::DoLayout [d:\builds\seamonkey\mozilla\layout\html\base\src\nsGfxScrollFrame.cpp line 1070] nsBox::Layout [d:\builds\seamonkey\mozilla\layout\xul\base\src\nsBox.cpp line 1052] nsBoxFrame::Reflow [d:\builds\seamonkey\mozilla\layout\xul\base\src\nsBoxFrame.cpp line 1000] nsGfxScrollFrame::Reflow [d:\builds\seamonkey\mozilla\layout\html\base\src\nsGfxScrollFrame.cpp line 779] nsContainerFrame::ReflowChild [d:\builds\seamonkey\mozilla\layout\html\base\src\nsContainerFrame.cpp line 805] ViewportFrame::Reflow [d:\builds\seamonkey\mozilla\layout\html\base\src\nsViewportFrame.cpp line 574] nsHTMLReflowCommand::Dispatch [d:\builds\seamonkey\mozilla\layout\html\base\src\nsHTMLReflowCommand.cpp line 217] PresShell::ProcessReflowCommand [d:\builds\seamonkey\mozilla\layout\html\base\src\nsPresShell.cpp line 6204] PresShell::ProcessReflowCommands [d:\builds\seamonkey\mozilla\layout\html\base\src\nsPresShell.cpp line 6259] ReflowEvent::HandleEvent [d:\builds\seamonkey\mozilla\layout\html\base\src\nsPresShell.cpp line 6115] PL_HandleEvent [d:\builds\seamonkey\mozilla\xpcom\threads\plevent.c line 591] PL_ProcessPendingEvents [d:\builds\seamonkey\mozilla\xpcom\threads\plevent.c line 524] _md_EventReceiverProc [d:\builds\seamonkey\mozilla\xpcom\threads\plevent.c line 1072] KERNEL32.DLL + 0x242e7 (0xbff942e7) 0x00648c16 (3956093) URL: http://www.superliga.nu/ (3956093) Comments: Just enter this URL and Mozilla 0.9.9 immediately crashes. Is reproduceable every time for me. (3955912) URL: http://www.superliga.nu/
132,334
1,233,526
From Bugzilla Helper: User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.9) Gecko/20020311 BuildID: 2002031104 In the testcase to follow, changing the display back and forth from block to none of an absolutely positioned div inside a form causes a crash. Removing the positioning, or removing the form element prevents the crash. Reproducible: Always Steps to Reproduce: 1. Run testcase 2. click several times on hide/show button 3. Actual Results: browser crashes Expected Results: should hide and show div
132,633
1,236,124
From Bugzilla Helper: User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.9+) Gecko/20020321 BuildID: 20020321 When the JavaScript on the ABC-news webpage checks navigator.appVersion only the string "5.0 (5.0; en-US)" is returned. Since the operating system string "Windows" is no longer returned, the JavaScript can not detect that I am using Mozilla and loads the default CSS instead of the Netscape 6 CSS. Reproducible: Always Steps to Reproduce: 1. go to http://www.abcnews.go.com/ Actual Results: Mozilla loads and uses ABC_default.css Expected Results: Mozilla should load and use ABC_net6_win.css as it still did with build 20020320 !!
132,905
1,238,678
This crash showed up on 3/18...there was one incident with a build from that day. Then there were 14 crashes with builds from 3/20 and there have been single incidents in the last couple of days. There aren't any user comments, so hopefully we can figure out what's going on from the stack. Here's the latest from Talkback: nsAssignmentSet::GetAssignmentFor 16 96533 VERI DUPL [email protected] --- 2001-08-24 96282 VERI FIXE [email protected] mozilla0.9.4 2001-09-10 BBID range: 4192686 - 4332673 Min/Max Seconds since last crash: 80 - 10936 Min/Max Runtime: 116 - 17706 Crash data range: 2002-03-18 to 2002-03-21 Build ID range: 2002031809 to 2002032110 Keyword List : Stack Trace: nsAssignmentSet::GetAssignmentFor [d:\builds\seamonkey\mozilla\content\xul\templates\src\nsRuleNetwork.cpp line 597] nsTemplateMatch::GetAssignmentFor [d:\builds\seamonkey\mozilla\content\xul\templates\src\nsTemplateMatch.cpp line 52] nsXULTemplateBuilder::SubstituteTextReplaceVariable [d:\builds\seamonkey\mozilla\content\xul\templates\src\nsXULTemplateBuilder.cpp line 1168] nsXULTemplateBuilder::ParseAttribute [d:\builds\seamonkey\mozilla\content\xul\templates\src\nsXULTemplateBuilder.cpp line 1077] nsXULTemplateBuilder::SubstituteText [d:\builds\seamonkey\mozilla\content\xul\templates\src\nsXULTemplateBuilder.cpp line 1125] nsXULContentBuilder::BuildContentFromTemplate [d:\builds\seamonkey\mozilla\content\xul\templates\src\nsXULContentBuilder.cpp line 783] nsXULContentBuilder::CreateTemplateContents [d:\builds\seamonkey\mozilla\content\xul\templates\src\nsXULContentBuilder.cpp line 1380] nsXULContentBuilder::CreateTemplateAndContainerContents [d:\builds\seamonkey\mozilla\content\xul\templates\src\nsXULContentBuilder.cpp line 1209] nsXULContentBuilder::CreateContents [d:\builds\seamonkey\mozilla\content\xul\templates\src\nsXULContentBuilder.cpp line 1761] nsXULElement::EnsureContentsGenerated [d:\builds\seamonkey\mozilla\content\xul\content\src\nsXULElement.cpp line 3661] nsXULElement::ChildCount [d:\builds\seamonkey\mozilla\content\xul\content\src\nsXULElement.cpp line 2184] ChildIterator::Init [d:\builds\seamonkey\mozilla\layout\html\style\src\nsChildIterator.cpp line 74] nsCSSFrameConstructor::ProcessChildren [d:\builds\seamonkey\mozilla\layout\html\style\src\nsCSSFrameConstructor.cpp line 12208] nsCSSFrameConstructor::ConstructXULFrame [d:\builds\seamonkey\mozilla\layout\html\style\src\nsCSSFrameConstructor.cpp line 5696] nsCSSFrameConstructor::ConstructFrameInternal [d:\builds\seamonkey\mozilla\layout\html\style\src\nsCSSFrameConstructor.cpp line 7209] nsCSSFrameConstructor::CreateTreeWidgetContent [d:\builds\seamonkey\mozilla\layout\html\style\src\nsCSSFrameConstructor.cpp line 13246] nsXULTreeGroupFrame::GetFirstTreeBox [d:\builds\seamonkey\mozilla\layout\xul\base\src\nsXULTreeGroupFrame.cpp line 329] nsTreeLayout::LazyRowCreator [d:\builds\seamonkey\mozilla\layout\xul\base\src\nsTreeLayout.cpp line 363] nsTreeLayout::LazyRowCreator [d:\builds\seamonkey\mozilla\layout\xul\base\src\nsTreeLayout.cpp line 374] nsXULTreeOuterGroupFrame::ReflowFinished [d:\builds\seamonkey\mozilla\layout\xul\base\src\nsXULTreeOuterGroupFrame.cpp line 1351] PresShell::HandlePostedReflowCallbacks [d:\builds\seamonkey\mozilla\layout\html\base\src\nsPresShell.cpp line 4959] PresShell::ResizeReflow [d:\builds\seamonkey\mozilla\layout\html\base\src\nsPresShell.cpp line 2858] PresShell::ResizeReflow [d:\builds\seamonkey\mozilla\layout\html\base\src\nsPresShell.cpp line 6132] nsViewManager::SetWindowDimensions [d:\builds\seamonkey\mozilla\view\src\nsViewManager.cpp line 589] nsViewManager::DispatchEvent [d:\builds\seamonkey\mozilla\view\src\nsViewManager.cpp line 1776] HandleEvent [d:\builds\seamonkey\mozilla\view\src\nsView.cpp line 83] nsWindow::DispatchEvent [d:\builds\seamonkey\mozilla\widget\src\windows\nsWindow.cpp line 869] nsWindow::DispatchWindowEvent [d:\builds\seamonkey\mozilla\widget\src\windows\nsWindow.cpp line 886] nsWindow::OnResize [d:\builds\seamonkey\mozilla\widget\src\windows\nsWindow.cpp line 4571] nsWindow::ProcessMessage [d:\builds\seamonkey\mozilla\widget\src\windows\nsWindow.cpp line 3831] nsWindow::WindowProc [d:\builds\seamonkey\mozilla\widget\src\windows\nsWindow.cpp line 1131] USER32.dll + 0x3a5f (0x77cf3a5f) USER32.dll + 0x9797 (0x77cf9797) USER32.dll + 0x5874 (0x77cf5874) USER32.dll + 0x962b (0x77cf962b) ntdll.dll + 0x108f (0x77f5108f) DocumentViewerImpl::SetBounds [d:\builds\seamonkey\mozilla\content\base\src\nsDocumentViewer.cpp line 1653] nsDocShell::SetPositionAndSize [d:\builds\seamonkey\mozilla\docshell\base\nsDocShell.cpp line 2696] nsWebShellWindow::HandleEvent [d:\builds\seamonkey\mozilla\xpfe\appshell\src\nsWebShellWindow.cpp line 434] nsWindow::DispatchEvent [d:\builds\seamonkey\mozilla\widget\src\windows\nsWindow.cpp line 869] nsWindow::DispatchWindowEvent [d:\builds\seamonkey\mozilla\widget\src\windows\nsWindow.cpp line 886] nsWindow::OnResize [d:\builds\seamonkey\mozilla\widget\src\windows\nsWindow.cpp line 4571] nsWindow::ProcessMessage [d:\builds\seamonkey\mozilla\widget\src\windows\nsWindow.cpp line 3831] nsWindow::WindowProc [d:\builds\seamonkey\mozilla\widget\src\windows\nsWindow.cpp line 1131] USER32.dll + 0x3a5f (0x77cf3a5f) USER32.dll + 0x9797 (0x77cf9797) USER32.dll + 0x5874 (0x77cf5874) USER32.dll + 0x962b (0x77cf962b) ntdll.dll + 0x108f (0x77f5108f) nsXULWindow::SetSize [d:\builds\seamonkey\mozilla\xpfe\appshell\src\nsXULWindow.cpp line 528] nsXULWindow::LoadSizeFromXUL [d:\builds\seamonkey\mozilla\xpfe\appshell\src\nsXULWindow.cpp line 1026] nsXULWindow::OnChromeLoaded [d:\builds\seamonkey\mozilla\xpfe\appshell\src\nsXULWindow.cpp line 876] nsWebShellWindow::OnStateChange [d:\builds\seamonkey\mozilla\xpfe\appshell\src\nsWebShellWindow.cpp line 1282] nsDocLoaderImpl::FireOnStateChange [d:\builds\seamonkey\mozilla\uriloader\base\nsDocLoader.cpp line 1110] nsDocLoaderImpl::doStopDocumentLoad [d:\builds\seamonkey\mozilla\uriloader\base\nsDocLoader.cpp line 750] nsDocLoaderImpl::DocLoaderIsEmpty [d:\builds\seamonkey\mozilla\uriloader\base\nsDocLoader.cpp line 647] nsDocLoaderImpl::OnStopRequest [d:\builds\seamonkey\mozilla\uriloader\base\nsDocLoader.cpp line 578] nsLoadGroup::RemoveRequest [d:\builds\seamonkey\mozilla\netwerk\base\src\nsLoadGroup.cpp line 531] nsJARChannel::OnStopRequest [d:\builds\seamonkey\mozilla\netwerk\protocol\jar\src\nsJARChannel.cpp line 604] nsOnStopRequestEvent::HandleEvent [d:\builds\seamonkey\mozilla\netwerk\base\src\nsRequestObserverProxy.cpp line 213] PL_HandleEvent [d:\builds\seamonkey\mozilla\xpcom\threads\plevent.c line 591] PL_ProcessPendingEvents [d:\builds\seamonkey\mozilla\xpcom\threads\plevent.c line 524] _md_EventReceiverProc [d:\builds\seamonkey\mozilla\xpcom\threads\plevent.c line 1072] USER32.dll + 0x3c076 (0x77d2c076) Source File : http://bonsai.mozilla.org/cvsblame.cgi?file=mozilla/content/xul/templates/src/nsRuleNetwork.cpp line : 597 I wonder if some checkin on 3/18 caused this regression.
134,195
1,249,950
From Bugzilla Helper: User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:0.9.9+) Gecko/20020328 BuildID: 2002032903 When preferences panel is open, the only usable /things/ are OK, Cancel and Help buttons :-( List is completely frozen :-( Had to go back to 2002032803 build. Reproducible: Always Steps to Reproduce: 1.Open preference panel 2.try clicking on left side list. Actual Results: Nothing happens ! Expected Results: List must be modified in order to use preferences !
134,437
1,251,956
using build 2002032916 on win2k (sp2sr1) To reproduce: 1. Go to URL: http://www.hixie.ch/tests/evil/state/001.html 2. set the focus in the IFrame (just click the mouse once in the IFrame) 3. go to the view/Use Style and change the stylesheet to "Alternate" Expected: Should just switch the style and show the same number as was there before Actual: crash Talkback ID: #TB4644175M I first reported this crash in bug 52334. jst thought it might be related to his changes...here is what he said: "...That crash, however, is not due to these changes directly. The crash that happens with the above testcase (note, you don't need to select anything in the iframe, just giving it focus is enough) is due to a re-entrancy problem in the layout frame destruction code that is much easier to trigger with these changes than w/o them. We end up destroying a frame, and while doing so we end up destroying a window which passes focus along to one of the frames we're destroying, and that ends up reflowing that frame and since that frame is being destroyed we end up getting references to deleted frames n' other nice things that lead to the crash...." After investigating this for a bit, jst said this: "Ok, I just grabbed a build that didn't have my changes in it and did some more testing with it. Turns out that the crash reported above is just as reproduceable w/o my changes, I crash in the exact same place due to the exact same reasons with a trunk build w/o my changes. Because of this fact, I won't be spending any more time on that crash as part of this bug, we need a new bug for that crash." This should definitely be fixed *before* 1.0 is released! jake
134,793
1,255,688
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:0.9.9+) Gecko/20020401 BuildID: 2002040103 Basically, you put [/] into the URL bar, press enter, sit back and watch. I don't know why this happens... I'm assuming it's just a random weird bug. Also, I found it in 0.9.9, and only got this nightly to be sure it was still there, so it's not something extremely new. Reproducible: Always Steps to Reproduce: 1. [/] in URL bar 2. <ENTER> 3. *thud* Actual Results: Mozilla stopped responding. Expected Results: Random error message.
134,934
1,256,947
Build: PPEmbed 2002-04-02-08 Platform: Mac OS X Expected Result: Clicking on a radio or checkbox button should simply activated it What I got: Application crashes Steps to reproduce: 1) Open either the radio or checkbox test case. These tests are reduced to basic HTML. Buttons are not in a form or have the checked attribute. 2) Click on each button to activate it. 3) The crash should occur.
144,315
1,340,058
Although bug 133410 and bug 138292 have been verified fixed, we are still seeing crashes at nsImageListener::FrameChanged with recent MozillaTrunk builds. Those 2 bugs might have some clues to what's going on, but we need to address these new crashes: Count Offset Real Signature [ 35 nsImageListener::FrameChanged 1c0e1f8a - nsImageListener::FrameChanged ] [ 26 nsImageListener::FrameChanged f0971e0e - nsImageListener::FrameChanged ] [ 21 nsImageListener::FrameChanged 0be4b6aa - nsImageListener::FrameChanged ] [ 9 nsImageListener::FrameChanged 2a5e057a - nsImageListener::FrameChanged ] [ 5 nsImageListener::FrameChanged 70ae2a6a - nsImageListener::FrameChanged ] [ 4 nsImageListener::FrameChanged a88c85df - nsImageListener::FrameChanged ] [ 4 nsImageListener::FrameChanged 937cff02 - nsImageListener::FrameChanged ] [ 3 nsImageListener::FrameChanged f4f6126b - nsImageListener::FrameChanged ] Crash date range: 2002-05-04 to 2002-05-12 Min/Max Seconds since last crash: 29 - 446127 Min/Max Runtime: 410 - 484914 Keyword List : click(4), Count Platform List 51 Windows NT 5.0 build 2195 49 Windows NT 5.1 build 2600 7 Windows 98 4.10 build 67766446 Count Build Id List 20 2002050708 15 2002050408 14 2002050807 9 2002050308 8 2002050608 8 2002050604 8 2002050508 6 2002050504 5 2002050908 3 2002051008 3 2002051004 3 2002050705 2 2002050904 2 2002050404 1 2002051204 No of Unique Users 73 Stack trace(Frame) nsImageListener::FrameChanged [nsImageFrame.cpp line 2383] imgRequestProxy::FrameChanged [imgRequestProxy.cpp line 294] imgRequest::FrameChanged [imgRequest.cpp line 338] imgContainer::Notify [imgContainer.cpp line 459] nsTimerImpl::Fire [nsTimerImpl.cpp line 357] nsTimerManager::FireNextIdleTimer [nsTimerImpl.cpp line 591] nsAppShell::Run [nsAppShell.cpp line 134] nsAppShellService::Run [nsAppShellService.cpp line 451] main1 [nsAppRunner.cpp line 1472] main [nsAppRunner.cpp line 1808] WinMain [nsAppRunner.cpp line 1826] WinMainCRTStartup() kernel32.dll + 0x1eb69 (0x77e7eb69) (6211424) URL: http://slashdot.org (6159191) Comments: Click boom bah! Nothing out of the ordinary. Single window.I think these crashes are intention so you can gather marketroidle demographics information like what other programs I'm running at the time. Try tossing some more code at the screen to see if (6159191) Comments: it sticks. We don need no steenkin algorithms. (6147840) URL: www.ubid.com (6115349) URL: http://www.ubid.com/actn/opn/getpage.asp?AuctionId=7214002 (6101905) URL: groups.yahoo.com (6101822) URL: groups.yahoo.com (6067037) URL: www.paypal.com (6067037) Comments: I was trying to login to their secure site (6066401) Comments: Moving back and forth between eBay & Half.com. Was doing a "back" from Half.com to eBay when it errored. (6054065) URL: www.blockbuster.com (6041117) URL: http://www.ubid.com/actn/opn/getpage.asp?AuctionId=7214002 (6041117) Comments: Initial click on the page (6038291) Comments: scrolled a bugzilla query result-page before it had fully loaded (6033643) URL: http://gamefix.free.fr (6032400) URL: http://gamefix.free.fr (6032355) URL: http://www.winace.com (6012854) Comments: I was surfing eBay (6012843) Comments: I was surfing eBay (6012830) Comments: when pressing Home button (6012671) URL: http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&Item=1535479505 (6003592) URL: http://www.football365.com/Homegrounds/Chelsea/News/index.shtml (6003592) Comments: Clicked on Rangers Hero link (5992341) Comments: clicked on linik regarding 'armored ascii bug' in google search for 'armored ascii'. Kept going to linuxtoday site and when clicked back would not go back (link was redirecting me?) . Hit back a couple times then crashed. (5967321) URL: www.neimanmarcus.com (5956412) URL: http://www.wrestlingheadlines.com/index2.html (5929043) Comments: browsing a web site We have found at lease 1 reproducible testcase. jrgm was able to crash by doing this: "Try loading http://gamefix.free.fr/ and then 'about:blank', and repeating that once or twice."
144,479
1,341,271
From Bugzilla Helper: User-Agent: Mozilla/5.0 (Windows; U; Win95; de-AT; rv:1.0rc2) Gecko/20020510 BuildID: 2002051006 Changing screen resolution (e.g. from 96 dpi to 72 dpi) in preferences while displaying above webpage. I discovered this crash while displaying my homepage and shrinked it down and ended up with a minimum page containing a table width align property set which is spanned by <div style="position:fixed;"></div>. Don't happens with position:absolute or without tables align property ... Reproducible: Always Steps to Reproduce: 1. Load webpage above 2. Go to Preferences and change the screen resolution 3. Hit OK Actual Results: crash Expected Results: not to crash? Talkback crash IDs TB6272645E, TB6269864H, TB6269584W, TB6269409W, TB6269183X
146,255
1,355,956
From Bugzilla Helper: User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.0+) Gecko/20020522 BuildID: 2002052204 If I click on a link while pressing CTRL to open it in a new tab and very quickly thereafter press CTRL+TAB, Mozilla will crash. It will not crash if I have first switched between tabs after opening the new ones, and it will not crash if I wait too long to press CTRL+TAB. Reproducible: Always Steps to Reproduce: 1. Be sure you can control-click links into a new tab (Preferences > Navigator > Tabbed Browsing). 2. Go to a website with a link, hold down the CTRL key, and clikc on a link to open it in a new tab. 3. Press CTRL+TAB very shortly after performing step 2. Actual Results: Mozilla crashes. Expected Results: Focus should have moved from the browser to the address bar.
146,562
1,358,499
Build: 2002-05-22-11 1.0.0 and trunk 2002-05-20-08. Platform: OSX 10.1.4 (Classic theme) Expected Results: Netscape page should load What I got: Netscape url is nearly processed and displayed, but application crashes Steps to reproduce: 1) Go to a page mozilla.org 2) Select Print Preview from File menu. 3) Click Close button to exit 4) In the url field, type www.netscape.com and press return. 5) URL is almost processed completely but then application suddenly crashes Exception: EXC_BAD_ACCESS (0x0001) Codes: KERN_INVALID_ADDRESS (0x0001) at 0x22fd24f4 Thread 0 Crashed: #0 0x22fd24f4 in 0x22fd24f4 #1 0x0233479c in nsDocViewerFocusListener::Blur(nsIDOMEvent *) #2 0x021e2658 in 0x21e2658 #3 0x0215fb58 in HandleDOMEvent__10nsDocumentFP14nsIPresContextP7nsEventPP11nsI #4 0x021e683c in 0x21e683c #5 0x0313d208 in HandleEventInternal__9PresShellFP7nsEventP7nsIViewUiP13nsEvent #6 0x0313cfb4 in 0x313cfb4 #7 0x033ad678 in 0x33ad678 #8 0x033a34ec in nsView::HandleEvent(nsViewManager *, nsGUIEvent *, int) #9 0x033acbc0 in 0x33acbc0 #10 0x033a2b78 in HandleEvent(nsGUIEvent *) #11 0x01deea10 in nsWindow::DispatchEvent(nsGUIEvent *, nsEventStatus &) #12 0x01deeaec in nsWindow::DispatchWindowEvent(nsGUIEvent &) #13 0x01e00b0c in nsMacEventDispatchHandler::DispatchGuiEvent(nsWindow *, unsigned int) #14 0x01e00d10 in nsMacEventDispatchHandler::SetFocus(nsWindow *) #15 0x01debdd8 in nsWindow::SetFocus(int) #16 0x02678850 in GlobalWindowImpl::Focus(void) #17 0x01d309a0 in nsWebShellWindow::HandleEvent(nsGUIEvent *) #18 0x01deea10 in nsWindow::DispatchEvent(nsGUIEvent *, nsEventStatus &) #19 0x01deeaec in nsWindow::DispatchWindowEvent(nsGUIEvent &) #20 0x01e00b0c in nsMacEventDispatchHandler::DispatchGuiEvent(nsWindow *, unsigned int) #21 0x01e00e30 in nsMacEventDispatchHandler::SetActivated(nsWindow *) #22 0x01e026c0 in nsMacEventHandler::HandleActivateEvent(EventRecord &) #23 0x01e0137c in nsMacEventHandler::HandleOSEvent(EventRecord &) #24 0x01dffab4 in nsMacWindow::DispatchEvent(void *, int *) #25 0x01e07cf0 in DispatchOSEventToRaptor__16nsMacMessagePumpFR11EventRecordP15O #26 0x01e07b5c in nsMacMessagePump::DoActivate(EventRecord &) #27 0x01e06a8c in nsMacMessagePump::DispatchEvent(int, EventRecord *) #28 0x01e06880 in nsMacMessagePump::DoMessagePump(void) #29 0x01e061fc in nsAppShell::Run(void) #30 0x01d38acc in nsAppShellService::Run(void) #31 0x004ccefc in main1(int, char **, nsISupports *) #32 0x004cd93c in main
146,907
1,360,732
From Bugzilla Helper: User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0rc3) Gecko/20020523 BuildID: 2002052309 If I go to www.ipng.org.uk then Mozilla crashes. However if I go to ipng.org.uk, which is the same site, then it doesn't. Repeatable with rc1, rc2 & rc3. Reproducible: Always Steps to Reproduce: 1. Start Mozilla. 2. Type www.ipng.org.uk in URL bar and hit enter. 3. Watch Mozilla crash. Actual Results: Mozilla crashes. Expected Results: Displayed the page. Debian GNU/Linux Woody, Mozilla tarball as downloaded from http://www.mozilla.org/releases/
147,320
1,363,347
From Bugzilla Helper: User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0rc3) Gecko/20020523 BuildID: 2002052306 Bowser crashes soon after starting load www.mian.ru due access violation in gklayout.dll Reproducible: Always Steps to Reproduce: 1. Click http://www.mian.ru Same behaviour on FreeBSD and Windows2000 oses.
147,878
1,367,963
From Bugzilla Helper: User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.0rc3) Gecko/20020523 BuildID: 2002052306 This page asks for entry of zipcode: http://movies.iwon.com/mylocation.jsp?ru=mymovies.jsp?ru=index.html When zipcode has been entered and "save" is pressed, this page should appear, to enable selection of theatres: http://movies.iwon.com/mymovies.jsp?ru=http://my1.iwon.com/ It does not appear; the zipcode entry screen is redisplayed. This works correctly in IE 6.0. Reproducible: Always Steps to Reproduce: 1. Goto http://movies.iwon.com/mylocation.jsp?ru=mymovies.jsp?ru=index.html 2. Enter a valid zipcode and press "save". 3. Verify that http://movies.iwon.com/mylocation.jsp?ru=mymovies.jsp?ru=index.html is redisplayed rather than http://movies.iwon.com/mymovies.jsp?ru=http://my1.iwon.com/ Actual Results: http://movies.iwon.com/mylocation.jsp?ru=mymovies.jsp?ru=index.html is redisplayed and so one cannot completed setting up "my movies". Expected Results: http://movies.iwon.com/mymovies.jsp?ru=http://my1.iwon.com/ is displayed to enable selection of theatres for "my movies"
148,277
1,371,638
Steps to reproduce: 1: load URL: data:text/html,<script>document.write(document.location)</script> 2: see 'Bus Error' on console This is probably recursive as all hell, rapidly nesting document.write calls into oblivion. I was looking at a self-printing URL, and this one works: data:text/html,<script>alert(document.location)</script>
148,308
1,371,953
From Bugzilla Helper: User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.0rc3) Gecko/20020523 BuildID: MFCEmbed 5/30/2002 nightly build If you view a frames page in Print Preview and then select the back button, MFCEmbed crashes. Reproducible: Always Steps to Reproduce: 1. Browse to this site: http://www.twp.waterford.mi.us/waterfordGIS/map-frames.html 2. Select File - Print Preview 3. Click on the back button Actual Results: Browser crashes Expected Results: Browser exits Print Preview and returns to original page.
138,720
1,293,079
The Talkback data shows a group of users crashing the M1.0 release candidate and the Trunk at startup. All of the crashes are on the Windows platform. I'll attach some stacks and Talkback data below.
138,877
1,294,256
From Bugzilla Helper: User-Agent: Mozilla/5.0 (Windows; U; Win 9x 4.90; en-US; rv:1.0rc1) Gecko/20020417 BuildID: 2002041711 Browser crashes if HREF contains specific charactors in local charactor set. It occurs if string length of HREF is continuous 16 or more. Mozilla/5.0 (Windows; U; Win 9x 4.90; en-US; rv:1.0rc1) Gecko/20020417 WindowsMe JA(Japanese Localized) Reproducible: Always Steps to Reproduce: 1. Launch navigator 2. Open page which includes specific chars in HREF Actual Results: Browser crashes. Expected Results: Page is displayed. Source code for testcase as follow: <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS"> <title>TESTCASE</title> </head> <body> <a href="&#9619;&#9619;&#9619;&#9619;&#9619;&#9619;&#9619;&#9619;&#9619;&#9619;&#9619;&#9619;&#9619;&#9619;&#9619;&#9619;">TEST</a> </body> </html>
140,275
1,307,188
From Bugzilla Helper: User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.9+) Gecko/20020424 BuildID: 2002042412 I am able to freeze mozilla completely by just selecting text multiple times rapidly. It is not easy to reproduce, but happens several times a day for me. Reproducible: Sometimes Steps to Reproduce: 1. select text 2. select text again, drag mouse around a lot 3. selecte text again, freeze Happens on different machines.
135,498
1,262,274
From Bugzilla Helper: User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:0.9.9+) Gecko/20020404 BuildID: 2002040403 This may be a dupe...I saw several reports that were similar, but none of them described crashes while opening new tabs. System: Win98SE IE 5.5 Visual Studio 6.0 (Visual C++ and Visual Basic) When browsing exclusively via right clicking and opening pages in new tabs, the browser will invariably crash after a (fairly small) number of pages have been opened in this manner. The limit is usually four to ten new tabs (closing some, opening new ones, etc...). The crash always occurs after the new tab is shown, but before the document interface is drawn. The text of the fault dialog is: MOZILLA caused an invalid page fault in module GKCONTENT.DLL at 017f:602fd28e. Registers: EAX=00000000 CS=017f EIP=602fd28e EFLGS=00010202 EBX=00000000 SS=0187 ESP=0064f930 EBP=0064f948 ECX=6033a330 DS=0187 ESI=02311448 FS=3a5f EDX=0064f968 ES=0187 EDI=02032d64 GS=0000 Bytes at CS:EIP: ff 50 54 eb 06 8b 45 10 83 20 00 5f 33 c0 5e 5d Stack dump: 02032d64 0083c300 0064fb0c 0064f968 0258fea8 0258fe80 0064f974 60300c97 02311448 0064fb0c 0064f968 00000000 021c62a0 0064fb0c 00000000 02311448 I have experienced this problem in release builds of 0.9.7, 0.9.9 and in the daily build 0.9.9.2002040403 Reproducible: Always Steps to Reproduce: 1. Visit any page with a lot of links (mozilla.org is useful) 2. Open links via right-clicking and choosing New Tab (I usually press the "T" key) 3. Continue doing this, leaving some tabs open, closing others. I am usually focused on the FIRST tab for navigation, though I will often open pages from subsequent tabs, as well. Actual Results: Browser will crash. Expected Results: Browser should not crash. Information on three crashes in this manner was submitted via Talkback: TB4827731K TB4827382Q TB4825217Q
136,278
1,269,815
From Bugzilla Helper: User-Agent: Mozilla/4.78 [en] (Windows NT 5.0; U) BuildID: 2002040803 View source crashes when I did select all and ctrl+c Reproducible: Always Steps to Reproduce: 1.Go to the given URL http://www.medinovaindia.com/drlist.htm 2.Open the view source. 3.slelect all the source by select all tab.( should select a part of the text and then use the select all tab. 4.try to ctrl+c. 5. It crashes. Actual Results: Veiw source crashes Expected Results: should not crash
136,408
1,271,080
This problem started happening in the 04-05 trunk build, and is still happening in the 04-09 trunk. Steps to Reproduce: 1. Launch browser 2. Navigate to: http://bugzilla.mozilla.org/show_bug.cgi?id=134503 3. Click on File - Edit Page CRASH Kathy saw this on OS9, and I am able to reproduce it on OSX. Win builds do not appear to show the problem.
136,513
1,272,331
Talkback incident id: 5005292 http://climate.netscape.com/reports/SingleIncidentInfo.cfm?dynamicBBID=5005292 (Netscape internal) operator []() nsCOMPtr_base::assign_from_helper() nsCSSFrameConstructor::ConstructXULFrame() nsCSSFrameConstructor::ConstructFrameInternal() nsCSSFrameConstructor::ConstructFrame() nsCSSFrameConstructor::CreateAnonymousFrames() nsCSSFrameConstructor::CreateAnonymousFrames() nsCSSFrameConstructor::ConstructDocElementFrame() nsCSSFrameConstructor::ReconstructDocElementHierarchy() StyleSetImpl::ReconstructDocElementHierarchy() PresShell::ReconstructFrames() PresShell::SetPreferenceStyleRules() nsPresContext::PreferenceChanged() nsPresContext::PrefChangedCallback() pref_DoCallback() pref_HashPref() PREF_SetIntPref() nsPrefBranch::SetIntPref() nsPrefService::SetIntPref() nsPref::SetIntPref() XPTC_InvokeByIndex() XPCWrappedNative::CallMethod() XPC_WN_CallMethod() js_Invoke() js_Interpret() js_Invoke() js_InternalInvoke() JS_CallFunctionValue() nsJSContext::CallEventHandler() GlobalWindowImpl::RunTimeout() GlobalWindowImpl::TimerCallback() nsTimerImpl::Process() handleMyEvent() PL_HandleEvent() PL_ProcessPendingEvents() nsEventQueueImpl::ProcessPendingEvents() event_processor_callback() our_gdk_io_invoke() libglib-1.2.so.0 + 0xff9e (0x40392f9e) libglib-1.2.so.0 + 0x11773 (0x40394773) libglib-1.2.so.0 + 0x11d39 (0x40394d39) libglib-1.2.so.0 + 0x11eec (0x40394eec) libgtk-1.2.so.0 + 0x94333 (0x402b0333) nsAppShell::Run() nsAppShellService::Run() netscape-bin + 0x8c79 (0x08050c79) netscape-bin + 0x9457 (0x08051457) libc.so.6 + 0x1c507 (0x404db507)
137,191
1,278,453
Reliable crash. Preconditions: load page in DOM Inspector, select a DOM element, choose to Inspect in New Window, choose XBL from drop down options list. Result: Full crash, CPU 100% for ~3 seconds, Dr Watson. TB5136403H TB5135837H
137,322
1,279,750
Using build 2002041203 on WinXP. Steps to reproduce: 1. Enter a 998+ character string into the URL Bar or click an http link that long. Results: crash I admit this is an unlikely scenario, but according to the discussion in bug 56192, Mozilla should support URLs up to 2048 characters. Talkback IDs: TB5167863Z TB5167714M TB5167652W
137,399
1,280,447
Using Build ID: 2002041103 Steps to reproduce problem: 1. Open the JavaScript console 2. Evaluate this: with (document.createElement('body')) { setAttribute('text', '#FFFFFF'); removeAttribute('text'); getAttribute('text'); } 3. Evaluate using top.document (i.e. a XUL document) Expected results: null and null Actual results: #FFFFFF and null Additional information: I think that this blocks several Editor dialogs, such as Page Colours, because it is impossible to remove existing colours.
141,022
1,313,294
From Bugzilla Helper: User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.0.0+) Gecko/20020428 BuildID: 2002042808 Dom Inspector crash mozilla if CSS Style Rules option is selected upon a local loaded xml file. Reproducible: Always Steps to Reproduce: 1.save the following lines to an xml file: <?xml version="1.0" encoding="ISO-8859-1"?> <channel> </channel> 2. Open Dom inspector 3. Load the file you just saved to the DOM Inspector. 4. select the channel node. 5. from the "Object - Dom Node" popup menu select "CSS Style Rules" Actual Results: Mozilla crash Expected Results: :-) TBID: TB5746619Q
141,299
1,315,802
This happens when I click on a newsgroup link (ie news://news.uoregon.edu/uo.classes.cis.315) and answering if I want to subscribe to the newsgroup. If I am already subscribed to that newsgroup upon selecting it in the Mail & Newsgroup reader Mozilla crashes. The newsgroup works fine if I go to it directly by opening Mail & Newsgroup or subscribe to a newsgroup for the first time. The same problem occured with Mozilla 0.9.8 and 0.9.9.
141,849
1,320,717
Build: 2002-05-02-05 Platform: OS X 10.1.4 Expected Results: Selecting print should open print dialog What I got: Print dialog doesn't open Steps to reproduce: 1) Go to mozilla.org 2) Select Print Preview from File 3) Click Close button in preview window 4) Select Print from File menu 5) Print dialog doesn't open
142,108
1,322,959
Reloading an XSL-transformed XML document crashes build 2002050304 on Win2K (reproduced on 2 machines). My weblog at http://12.239.72.33/~jj is one example but I've seen it on other documents as well. Steps: 1) Load http://12.239.72.33/~jj 2) Press the reload button. 3) Submit talkback report. Talkback IDs: TB5908516X TB5908278M TB5908064Y TB5908030Z TB5900665E
142,328
1,324,676
From Bugzilla Helper: User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.0.0+) Gecko/20020504 BuildID: 2002050408 Copy from Browser and then Paste to MailNews composing window. Just fail. Reproducible: Always Steps to Reproduce: 1.Open any website 2.Use mouse to choose a region to copy 3.Open a new composing window(Mail) and paste what you copied. 4. Nothing happened Actual Results: The content of the clipart should be paste into composing window. This was ok before.
143,821
1,336,651
This signature has bubbled up to the top of the M1RC2 day one data. I've tried to reproduce this one from the user's comments (including sites and installations of BannerBlind and CaScadeS on mozdev.org) with no luck. Here are the stack and comments in the hope that someone can produce reliable steps to reproduce: nsHttpHandler::ReclaimConnection [d:\builds\seamonkey\mozilla\netwerk\protocol\http\src\nsHttpHandler.cpp line 431] nsHttpConnection::OnStopRequest [d:\builds\seamonkey\mozilla\netwerk\protocol\http\src\nsHttpConnection.cpp line 623] M1RC2 (nsHttpHandler::ReclaimConnection): 10 (6171238) Comments: Failed when closing the browser. It may have been stuck trying to make a network connection when the network was down. (6171238) - [Windows NT 5.0 build 2195] (Build 2002051008): Failed when closing the browser. It may have been stuck trying to make a network connection when the network was down. URL: (6166345) - [Windows NT 5.1 build 2600] (Build 2002051008): I quit mozilla and this crash report appeared.... URL: http://mozdev.org (6166381) - [Windows NT 5.1 build 2600] (Build 2002051008): I just completed the BannerBlind install and Mozilla crashed apon exiting after the install program asked for Mozilla to be restarted. URL: http://mozdev.org (6166159) - [Linux 2.4.18] (Build 2002051009): clicked the "X" on blackbox to close the browser. URL: cnn.com Trunk (nsHttpHandler::ReclaimConnection): 8 M1BR (nsHttpHandler::ReclaimConnection): 19 (5867487) - [Windows 98 4.10 build 67766446] (Build 2002050208): Closing M after having gone to a secure site that did not open URL: (5988247) - [Windows 98 4.10 build 67766446] (Build 2002050408): No more load of the page. Java 1.4 URL: http://www.volkstheater.ch (6130017) - [Windows 98 4.10 build 67766222] (Build 2002050808): Mozilla was slow to load an encrypted website. I realised the time of day and closed the incompleted page whilst it was still loading. Crash seemed to occur after that was closed and I closed all the other pages...last page to close was the mail client. URL: (6103332) - [Windows NT 5.0 build 2195] (Build 2002050808): Attempting to close the application. URL: (6159792) - [Windows NT 5.0 build 2195] (Build 2002050708): Attempting to login to Fleet's HomeLink account management site (card # entered selected save this card number and pin entered; all fake) browser never finishes loading the next page. URL: https://homelink.fleet.com/HomeLink/ (6131778) - [Windows NT 5.0 build 2195] (Build 2002050808): dglazman...after installing Cascades I've been crashing... URL: (5937508) - [Windows 98 4.10 build 67766446] (Build 2002050208): crashed after closing after trying to go to a site whre pipelining is not enabled. URL: (5927884) - [Windows 98 4.10 build 67766222] (Build 2002050208): didn't wait for this url to complete loading before hitting stop.Was trying to reproduce bug:http://bugzilla.mozilla.org/show_bug.cgi?id=142206 URL: http://www.thai. net/navigate/ (6131778) Build: 2002050808 Plat: Windows NT 5.0 build 2195 Time: 2002-05-09 [email protected] dglazman...after installing Cascades I've been crashing...
143,959
1,337,470
BUILD: everything starting with linux trunk 2002-05-10-21. Works fine in linux trunk 2002-05-10-07 STEPS TO REPRODUCE: 1) Load the URL in the "URL" field of this bug 2) Click either OK or Cancel on the first prompt 3) Try to type in the text entry field on the second prompt EXPECTED RESULTS: Be able to type ACTUAL RESULTS: no characters appear in the textbox NOTES: I have verified that reverting to a clean tree from friday morning makes the problem go away. Applying the patch for bug 129115 the causes the problem to reappear. This affects at least the following prompt dialogs: prompt() from JS, Basic Authentication for HTTP, login to mailserver for mailnews. Once a basic prompt has been posed for any of these purposes, no prompt dialog can be typed in.
127,321
1,185,166
From Bugzilla Helper: User-Agent: Mozilla/5.0 (Macintosh; U; PPC; en-US; rv:0.9.8) Gecko/20020204 BuildID: 2002020405 if you use option-right-arrow to move from word to word in the compose window (HTML compose) you get 'stuck' at punctuation marks. The cursor won't go any further. using option-left-arrow seems to work ok. Reproducible: Always Steps to Reproduce: 1.compose and HTML mail 2.use option--right-arrow to move around 3.
127,368
1,185,746
Build ID: 2002-02-22-03, Windows 2000. Summary: Can't type in textfields using document.write(searchform) (I suck at making testcases, forgive me) Steps to Reproduce: 1. Visit http://home.netscape.com 2. Try to type in any form textfield. Expected Results: Can type in textfields. Actual Results: No textfield on this page works. (other at my.netscape.com, etc. work)
127,671
1,188,376
From Bugzilla Helper: User-Agent: Mozilla/5.0 (X11; U; Linux i586; en-US; rv:0.9.8) Gecko/20020204 BuildID: 2002020415 When I connect to a SSL server via our firewall, the browser sets up a session correctly using HTTP CONNECT. However, it then sends Proxy-authorization headers over this connection, including my firewall username and password. Reproducible: Always Steps to Reproduce: 1. Set up a plain-HTTP server, and in front place a reverse proxy server (we are using Netscape Proxy Server 3.5, on HPUX) 2. Set up Mozilla behind a proxying firewall configured to allow HTTP CONNECT. 3. Connect the firewall to the reverse proxy 4. Run tcpdump (version 3.6 or higher) with the -X option on the server. 5. Make a connection from the client and watch the tcpdump output. Actual Results: The following is seen in the traffic (X marks the spot... in the real output it does base64-decode into my password) 0x0060 2e65 7664 742e 6769 6620 4854 5450 2f31 .evdt.gif.HTTP/1 0x0070 2e30 0d0a 5072 6f78 792d 6175 7468 6f72 .0..Proxy-author 0x0080 697a 6174 696f 6e3a 2042 6173 6963 2063 ization:.Basic.c 0x0090 4756 305a XXXX XXXX XXXX XXXX XXXX XXXX GV0ZXXXXXXXXXXXX 0x00a0 5445 780d 0a48 6f73 743a 206f 6265 726f TEx..Host:.obero 0x00b0 6e0d 0a55 7365 722d 4167 656e 743a 204d n..User-Agent:.M 0x00c0 6f7a 696c 6c61 2f35 2e30 2028 5831 313b ozilla/5.0.(X11; 0x00d0 2055 3b20 4c69 6e75 7820 6935 3836 3b20 .U;.Linux.i586;. 0x00e0 656e 2d55 533b 2072 763a 302e 392e 3829 en-US;.rv:0.9.8) Expected Results: Not sent the Proxy-authorization header - it is certainly no use to the proxy as it is sent inside an encrypted session that the proxy concerned cannot decrypt.
127,910
1,191,251
From Bugzilla Helper: User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.8+) Gecko/20020226 BuildID: 2002022603 Mozilla will periodically crash when receiving mail from my pop3 server. The crashes are related to specific e-mails. Removing the offending e-mail from the spool file will allow normal operation of mozilla. I've currently got a spool file with a single message that will crash mozilla every time. This message was received normally, not specially generated to crate the crash condition. This has been going on for several months, (I update builds 2-3 times a week) and appears to affect at least win98se as well. These messages seem to d/l just fine w/outlook and pegasus mail. Reproducible: Always Steps to Reproduce: 1.Have an offending message in your mail spool 2.try to download via pop3 3.mozilla crashes Actual Results: mozilla crashes trying to d/l the offending messages Expected Results: mozilla should d/l the messages TB3395333H TB3394417M TB3154286K TB3102946Q TB3102944E
128,154
1,193,937
*** observed with 2002-02-27 build *** i tried word and excel files that have cyrillic name, opening those attachments from the envelope is causing a crash. Steps to reproduce: - select a mail where the attachment has a non-ascii name ( i'll attach such mail later); - rightclick on the attachment, select open; //note: the file start opening but the process never ends and if you cancel it finally it'll crash
128,323
1,195,608
Build: 2002-02-28-08 Platform: OS X Expected Results: Messages should be sorted by subject What I got: Crash occurs Steps to reproduce: 1) Open Mail 2) Click on Subject column to sort messages 3) Crash occurs Stack trace from CrashReporter: Date/Time: 2002-02-28 12:45:21 -0800 OS Version: 10.1.3 (Build 5Q45) Host: localhost Command: Mozilla PID: 396 Exception: EXC_BAD_ACCESS (0x0001) Codes: KERN_PROTECTION_FAILURE (0x0002) at 0x0000116e Thread 0 Crashed: #0 0x700033b8 in free_list_remove_ptr #1 0x70009094 in szone_calloc #2 0x70008de8 in malloc_zone_calloc #3 0x70008cfc in calloc #4 0x70243b48 in NewPtrClear #5 0x702549fc in NewHandleClear #6 0x702c4f40 in UCGetCollationKey #7 0x022d4990 in GetSortKeyLen__16nsCollationMacUCF19nsCollationStrengthRC9nsAS #8 0x04a33254 in nsMsgDatabase::CreateCollationKey(wchar_t const *, unsigned char **, unsigned int *) #9 0x04a3305c in nsMsgDatabase::RowCellColumnToCollationKey(nsIMdbRow *, unsigned int, unsigned char **) #10 0x04a3a558 in nsMsgHdr::GetSubjectCollationKey(unsigned char **, unsigned int *) #11 0x02ad71f8 in nsMsgDBView::GetCollationKey(nsIMsgHdr *, int, unsigned char **, unsigned int *) #12 0x02ad7a4c in 0x2ad7a4c #13 0x02ae213c in nsMsgThreadedDBView::Sort(int, int) #14 0x005bde1c in XPTC_InvokeByIndex #15 0x005bdd10 in XPTC_InvokeByIndex #16 0x01a81944 in 0x1a81944 #17 0x01a87e1c in XPC_WN_CallMethod(JSContext *, JSObject *, unsigned int, long *, long *) #18 0x01a0112c in js_Invoke #19 0x01a091fc in 0x1a091fc #20 0x01a01184 in js_Invoke #21 0x01a7af58 in 0x1a7af58 #22 0x01a771c4 in CallMethod__14nsXPCWrappedJSFUsPC15nsXPTMethodInfoP17nsXPTCMin #23 0x005be2ac in PrepareAndDispatch #24 0x005c229c in nsProcessConstructor(nsISupports *, nsID const &, void **) #25 0x01ee8600 in HandleEventSubType__22nsEventListenerManagerFP16nsListenerStru #26 0x01ee8d80 in 0x1ee8d80 #27 0x02112ec4 in HandleDOMEvent__12nsXULElementFP14nsIPresContextP7nsEventPP11n #28 0x02112dbc in HandleDOMEvent__12nsXULElementFP14nsIPresContextP7nsEventPP11 #29 0x02112dbc in HandleDOMEvent__12nsXULElementFP14nsIPresContextP7nsEventPP11 #30 0x027020b4 in HandleEventInternal__9PresShellFP7nsEventP7nsIViewUiP13nsEvent #31 0x02701f04 in HandleEventWithTarget__9PresShellFP7nsEventP8nsIFrameP10nsICon #32 0x01ef4b80 in CheckForAndDispatchClick__19nsEventStateManagerFP14nsIPresCont #33 0x01ef2ad0 in 0x1ef2ad0 #34 0x027021c0 in HandleEventInternal__9PresShellFP7nsEventP7nsIViewUiP13nsEvent #35 0x02701e18 in PresShell::HandleEvent(nsIView *, nsGUIEvent *, nsEventStatus *) #36 0x02987808 in nsViewManager::HandleEvent(nsView *, nsGUIEvent *, int) #37 0x0297d51c in nsView::HandleEvent(nsViewManager *, nsGUIEvent *, int) #38 0x02986b38 in 0x2986b38 #39 0x0297cba8 in HandleEvent(nsGUIEvent *) #40 0x023b8b34 in nsWindow::DispatchEvent(nsGUIEvent *, nsEventStatus &) #41 0x023b8c0c in nsWindow::DispatchWindowEvent(nsGUIEvent &) #42 0x023b8d58 in nsWindow::DispatchMouseEvent(nsMouseEvent &) #43 0x023cada8 in nsMacEventHandler::HandleMouseUpEvent(EventRecord &) #44 0x023c9154 in nsMacEventHandler::HandleOSEvent(EventRecord &) #45 0x023c8034 in nsMacWindow::DispatchEvent(void *, int *) #46 0x023cfc70 in DispatchOSEventToRaptor__16nsMacMessagePumpFR11EventRecordP15O #47 0x023cf730 in nsMacMessagePump::DoMouseUp(EventRecord &) #48 0x023cea5c in nsMacMessagePump::DispatchEvent(int, EventRecord *) #49 0x023ce720 in nsMacMessagePump::DoMessagePump(void) #50 0x023ce09c in nsAppShell::Run(void) #51 0x02382dfc in nsAppShellService::Run(void) #52 0x004cbba4 in main1(int, char **, nsISupports *) #53 0x004cc67c in main Thread 1: #0 0x7000497c in syscall #1 0x70557600 in BSD_waitevent #2 0x70554b80 in CarbonSelectThreadFunc #3 0x7002054c in _pthread_body Thread 2: #0 0x7003f4c8 in semaphore_wait_signal_trap #1 0x7003f2c8 in _pthread_cond_wait #2 0x705593ec in CarbonOperationThreadFunc #3 0x7002054c in _pthread_body Thread 3: #0 0x70044cf8 in semaphore_timedwait_signal_trap #1 0x70044cd8 in semaphore_timedwait_signal #2 0x70283ea4 in TSWaitOnConditionTimedRelative #3 0x7027d748 in TSWaitOnSemaphoreCommon #4 0x702c2078 in TimerThread #5 0x7002054c in _pthread_body Thread 4: #0 0x7003f4c8 in semaphore_wait_signal_trap #1 0x7003f2c8 in _pthread_cond_wait #2 0x70250ab0 in TSWaitOnCondition #3 0x7027d730 in TSWaitOnSemaphoreCommon #4 0x70243d14 in AsyncFileThread #5 0x7002054c in _pthread_body Thread 5: #0 0x7003f4c8 in semaphore_wait_signal_trap #1 0x7003f2c8 in _pthread_cond_wait #2 0x7055b884 in CarbonInetOperThreadFunc #3 0x7002054c in _pthread_body Thread 6: #0 0x70000978 in mach_msg_overwrite_trap #1 0x70005a04 in mach_msg #2 0x7017bf98 in __CFRunLoopRun #3 0x701b7100 in CFRunLoopRunSpecific #4 0x7017b8e0 in CFRunLoopRunInMode #5 0x7061be08 in XIOAudioDeviceManager::NotificationThread(XIOAudioDeviceManager *) #6 0x706141c0 in CAPThread::Entry(CAPThread *) #7 0x7002054c in _pthread_body Thread 7: #0 0x70000978 in mach_msg_overwrite_trap #1 0x70005a04 in mach_msg #2 0x70026a2c in _pthread_become_available #3 0x70026724 in pthread_exit #4 0x70020550 in _pthread_body PPC Thread State: srr0: 0x700033b8 srr1: 0x0200f030 vrsave: 0x00000000 xer: 0x00000020 lr: 0x700033a0 ctr: 0x70000d90 mq: 0x00000000 r0: 0x700033a0 r1: 0xbfffc450 r2: 0x7026db9c r3: 0x00000000 r4: 0x00000000 r5: 0x00000001 r6: 0x62726561 r7: 0x6b206174 r8: 0x20737a6f r9: 0x00000000 r10: 0x72726f72 r11: 0x80003704 r12: 0x70000d90 r13: 0x00000000 r14: 0x00000000 r15: 0x00000044 r16: 0x00000000 r17: 0x000e1ea8 r18: 0x02b208ec r19: 0xbfffc7b4 r20: 0x00000001 r21: 0x00000000 r22: 0x800013a4 r23: 0x800013a0 r24: 0x0004615c r25: 0x00046010 r26: 0x00005161 r27: 0x0000003f r28: 0x0435f1f0 r29: 0x00001166 r30: 0x0000110b r31: 0x70003344 **********
128,804
1,200,797
From Bugzilla Helper: User-Agent: Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:0.9.8+) Gecko/20020303 BuildID: 2002030308 go to www.sydkraftbredband.se and (well first note that the layout is erraneous compared to IE) click on privat bredband. Just wait some 20 seconds and mozilla crashes. Reproducible: Always Steps to Reproduce: 1.go to www.sydkraftbredband.se 2.click on "privat bredband" 3.wait some 20 seconds and mozilla crashes Actual Results: crash Expected Results: rendering
128,855
1,201,192
From Bugzilla Helper: User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.8+) Gecko/20020301 BuildID: 2002030116 This bug also applies to 0.9.8 release. Upgrading to recent build (2002030116) did not help. I run linux. Reproducible: Always Steps to Reproduce: 1. Open URL Actual Results: Crash Expected Results: Page view ;)
129,002
1,203,350
From Bugzilla Helper: User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.9+) Gecko/20020304 BuildID: mozilla crashed when clicking on select box in print preview. Reproducible: Always Steps to Reproduce: 1.open testcase 2.click on select box 3.see the lizard crash into your computer. Actual Results: crash Expected Results: doesn't crash and does nothing
129,131
1,204,488
Stack Signature ValidateRealName 82df0444 Trigger Time 2002-03-05 13:07:03 Email Address [email protected] URL visited . Build ID 2002030508 Product ID MozillaTrunk Platform Operating System Win32 Module Trigger Reason Access violation User Comments AOL mail CONSISTENTLY crashes... Stack Trace ValidateRealName [mimemoz2.cpp, line 247] GenerateAttachmentData [mimemoz2.cpp, line 431] MimeGetAttachmentList [mimemoz2.cpp, line 557] mime_display_stream_complete [mimemoz2.cpp, line 925] nsStreamConverter::OnStopRequest [nsStreamConverter.cpp, line 1016] nsDocumentOpenInfo::OnStopRequest [nsURILoader.cpp, line 254] nsStreamListenerTee::OnStopRequest [nsStreamListenerTee.cpp, line 25] nsOnStopRequestEvent0::HandleEvent [nsAsyncStreamListener.cpp, line 321] nsStreamListenerEvent0::HandlePLEvent [nsAsyncStreamListener.cpp, line 122] PL_HandleEvent [plevent.c, line 591] _md_EventReceiverProc [plevent.c, line 1072] SETUPAPI.DLL + 0x30c24 (0x778b0c24)
129,734
1,211,361
[Build-ID: 2002-03-08-07] If I block an image from a site via "Block images from this server" and check the Image Manager the site name will be displayed as "c" regardless of the name of the site. Restarting mozilla cures this. Trying "Cookies" component first, please reassign if it is incorrect. Steps to reproduce: 1) Go to http://www.mozilla.org/ 2) Block the top banner by right-clicking and choosing "Block images from this server". 3) Go to Tasks->Privacy & Security->Image Manager->Manage Image Permissions Result: The site name is displayed as "c". Expected result: The site name should be displayed as "www.mozilla.org" Restarting Mozilla and entering Image Manager again will display the correct value.
129,760
1,211,666
using 3/8 build of netscape 1) launch netscape 2) jump to that page above 3) File | Edit Page 4) remove the Personals at the bottom(make sure you remove the bullets and the "Personals" bullet heading. 5) File | Publish As 6) enter username, passwd, Publish URL(might arleady be pre-populated, site name(again, might already be populated, filename, title 7) Publish now go look at the file that got updated on the server. scroll down and notice the content on the page is duplicated! Now because you may not have access to publish on Jazz, you'll need to perform additional steps to see this problem: bring that page locally using 4.x onto your filesystem, and publish it up on blues. Then repeat the above steps so now you can see the problem. I can reproduce this 100% of the time, so do not mark this bug INVALID please. ask more questions if you like.
218,511
1,951,955
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5a) Gecko/20030718 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5a) Gecko/20030718 When accessing http://www.joki-foto.de/fotoshop/fehler.htm, mozilla seems to loop endlessly. No user interaction will be possible anymore. I suspect a loop within the JavaScript code of that page. But even if there is such a loop, the user should be able to continue browsing instead of killing mozilla. Reproducible: Always Steps to Reproduce: 1. Access http://www.joki-foto.de/fotoshop/fehler.htm 2. Try to do anything with mozilla (i.e. open a new browser windows) Actual Results: Mozilla hangs. It eats all available CPU time. Expected Results: Mozilla should not hang. Mozilla should still do user interaction. Mozilla should enable the "Stop" button so that some looping JavaScript code can be interrupted if the user desires that.
218,512
1,951,963
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4) Gecko/20030624 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4) Gecko/20030624 Go to the article titled "SCO vs. IBM: The Other Reality". Page never finishes loading and CPU gets pegged at 99% by Mozilla. Reproducible: Always Steps to Reproduce: 1. Go to http://www.technewsworld.com/perl/story/31479.html 2. Wait 3. Keep waiting 4. Give up - Click the window close button and tell XP to kill it when it is not responding. Actual Results: Hang. Some page text and boxes are displayed but nothing else. Can't scroll. Expected Results: Not hang Date tested - September 6, 2003 - Ads may be the source. Works in IE 6.
220,516
1,967,904
User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.6a) Gecko/20030927 Build Identifier: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.6a) Gecko/20030927 when I use sort by speed, with no download in progress, mozilla crash Reproducible: Always Steps to Reproduce: 1.no download in progress 2.Tools > Donload manager 3.sort by speed 4.mozilla crash Actual Results: crash Expected Results: don't crash build id: 2003092704 MOZILLA causou uma falha de página inválida no módulo GKLAYOUT.DLL em 015f:615873ea. Registros: EAX=00000000 CS=015f EIP=615873ea EFLGS=00010246 EBX=ffffffff SS=0167 ESP=0065e43c EBP=0065e458 ECX=0226a040 DS=0167 ESI=00000000 FS=24ff EDX=0185bc3c ES=0167 EDI=0185a740 GS=0000 Bytes em CS:EIP: 8b 06 ff 90 9c 00 00 00 85 c0 74 6e 8b 45 fc 83 Esvaziamento da pilha: 00000000 00000010 61634914 00000000 80000000 02219420 006eb45c 0065e724 61588580 0226a040 0065e6b8 00000000 0065e78c 0065e904 00747619 61da4758
221,494
1,974,846
nsXULContentBuilder::RemoveGeneratedContent 5 BBID range: 24008310 - 24174051 Min/Max Seconds since last crash: 1 - 4833 Min/Max Runtime: 15 - 4904 Crash data range: 2003-09-30 to 2003-10-06 Build ID range: 2003093004 to 2003100605 Stack Trace: nsXULContentBuilder::RemoveGeneratedContent() nsXULContentBuilder::RebuildAll() nsXULTemplateBuilder::Rebuild() XPTC_InvokeByIndex() XPCWrappedNative::CallMethod(XPCCallContext& XPCWrappedNative::CallMode)() XPC_WN_CallMethod() js_Invoke() js_Interpret() js_Invoke() js_InternalInvoke() JS_CallFunctionValue() nsJSContext::CallEventHandler() nsJSEventListener::HandleEvent() nsEventListenerManager::HandleEventSubType() nsEventListenerManager::HandleEvent() nsXULElement::HandleDOMEvent() PresShell::HandleDOMEventWithTarget() nsButtonBoxFrame::MouseClicked() nsButtonBoxFrame::HandleEvent() PresShell::HandleEventInternal() PresShell::HandleEventWithTarget() nsEventStateManager::CheckForAndDispatchClick() nsEventStateManager::PostHandleEvent() PresShell::HandleEventInternal() PresShell::HandleEvent() nsViewManager::HandleEvent() nsView::HandleEvent() nsViewManager::DispatchEvent() HandleEvent() nsWidget::DispatchEvent() nsWidget::DispatchWindowEvent() nsWidget::DispatchMouseEvent() nsWidget::OnButtonReleaseSignal() nsWindow::OnButtonReleaseSignal() nsWindow::HandleGDKEvent() dispatch_superwin_event() handle_gdk_event() libgdk-1.2.so.0 + 0x17047 (0x40272047) libglib-1.2.so.0 + 0xfe75 (0x4029fe75) libglib-1.2.so.0 + 0x1032c (0x402a032c) libglib-1.2.so.0 + 0x1055c (0x402a055c) libgtk-1.2.so.0 + 0x8d707 (0x401c2707) nsAppShell::Run() nsAppShellService::Run() main1() main() libc.so.6 + 0x15bb4 (0x403c7bb4) (24174051) Comments: I closded the print preview with the 'Close' button --this bug is filed based on talkback data, don't come to me asking for steps to reproduce or contacts--
224,039
1,992,148
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6a) Gecko/20031029 Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6a) Gecko/20031029 A web page containing <colgroup span="2" style="width: 50%"> crashes Mozilla. It looks like the problem is in nsHTMLTableColElement.cpp; the span_attribute array isn't terminated with nsnull. Reproducible: Always Steps to Reproduce:
224,956
1,999,459
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6a) Gecko/20031028 Firebird/0.7+ (aebrahim) Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6a) Gecko/20031028 Firebird/0.7+ (aebrahim) If FB comes to a javascript statement using implied multipication, two terms enclosed in parenthesis that are next to eachother without a *, it crashes. I came across this when I mistyped and forgot the *. It should return an error of "number is not a function". Mozilla 1.5 returns the error. I'v heard that Firebird 0.7 returns the error as well. I don't have a nightly of the suite to test, but the latest nightly of FB crashes. Reproducible: Always Steps to Reproduce: 1.Load a page using implied multiplication, such as http://sharkshack.digitalmob.com/bugzilla/crashes.html Actual Results: Browser crashed. Expected Results: Throw an error of "number is not a function" From the Windows Report: AppName: mozillafirebird.exe AppVer: 1.6.20031.2810 ModName: js3250.dll ModVer: 4.0.0.0 Offset: 00026646
225,423
2,003,299
build ID: 20031111 on Win2k + Sun's JRE 1.4.2_02 Steps to reproduce crash: 1. Load URL http://www15.placeware.com/cc/test/check.html 2. Wait until Java loads 3. Mozilla crashes. Doesn't crash IE6 + JRE 1.4.2_02
225,474
2,003,609
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; .NET CLR 1.0.3705; .NET CLR 1.1.4322) Build Identifier: when invoking the xml.cgi script in version 2.16.4 perl rejects it both due to a syntax problem in the query, and 2nd because of a misnamed column. Reproducible: Always Steps to Reproduce: 1. 2. 3. The following line is the patch required to fix it in the file Bug.pm: line 115 should be changed to: groupset, delta_ts, ifnull(sum(votes.count),0) No comma at the end, and the name of the count column is different.
226,078
2,008,657
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6a) Gecko/20031030 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6a) Gecko/20031030 This page crashes browser! Reproducible: Always Steps to Reproduce: 1. 2. 3.
226,278
2,010,220
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.5a) Gecko/20030728 Mozilla Firebird/0.6.1 Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.5a) Gecko/20030728 Mozilla Firebird/0.6.1 Forgive me if I'm missing something, but browsing through the code it appears that the password cache for HTTP, remembers realm, hostname and port, to determine if it should replay a password to a site that it had seen previously. I believe the list should actually be realm, hostname, port, and whether it was a secure site. Just because a site is on port 443 it does not mean that the site is under SSL. An attacker could allow you to enter your password to your secure site, then latter during the same browsing session spoof DNS for a non-ssl version of the same url you hit previously on the same port. Your browser would happily send your password to them, no SSL required. I haven't had time to test this theory. Reproducible: Didn't try Steps to Reproduce:
228,829
2,030,130
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6b) Gecko/20031208 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6b) Gecko/20031208 The browser crashes upon visiting: http://www.urbnet.com/anonymous/main.html Reproducible: Always Steps to Reproduce: 1. Visit http://www.urbnet.com/anonymous/main.html in Mozilla 1.6b
228,986
2,031,523
User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.6b) Gecko/20031218 Firebird/0.7+ Build Identifier: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.6b) Gecko/20031218 Firebird/0.7+ Mozilla Firebird crashes after installing two extensions indivdually without restarting the browser. Reproducible: Always Steps to Reproduce: 1. Install an extension, and do not restart the browser when complete. 2. Install another extension. 3. Crash. MOZILLAFIREBIRD caused an invalid page fault in module MOZILLAFIREBIRD.EXE at 017f:00822035. Registers: EAX=00000006 CS=017f EIP=00822035 EFLGS=00010246 EBX=00000000 SS=0187 ESP=00e5f9a4 EBP=00e5fa28 ECX=00000000 DS=0187 ESI=00000000 FS=0fcf EDX=00e5f9a4 ES=0187 EDI=10041226 GS=262f Bytes at CS:EIP: 66 89 41 40 c2 04 00 ff 74 24 04 83 c1 2c ff 15 Stack dump: 0082175c 00000006 00000003 02250470 30013e40 10043e28 0230cb40 00000000 00000000 00008a2c 0000000c 0200262f 89fa0000 00030000 00527310 17af10d0
229,200
2,033,228
Steps to reproduce problem: 1. Open JS console 2. Type top.onresize = function() { alert("resize"); } 3. Click Evaluate Assertion failure: scope->ownercx == NULL, at jslock.c:1084
229,984
2,038,926
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.6b) Gecko/20040102 Firebird/0.7+ Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.6b) Gecko/20040102 Firebird/0.7+ If you download a file that is larger than your max disk cache setting (default 50MB), it can cause the disk cache to be put into an unusable state. A cancelled download is not removed from the disk cache. And if the download is cancelled after it has reached the max disk cache size, the disk cache will be permanently disabled. (Until manually cleared in prefs) Reproducible: Always Steps to Reproduce: 1.Start downloading a large file (over 50MB) 2.Cancel the download after it passes 50MB, but before it completes 3.Restart Firebird 4.View a couple of web pages 5.View about:cache Actual Results: Something like this: (Num of entries is always 0) Disk cache device Number of entries: 0 Maximum storage size: 50000 k Storage in use: 1441792 k Expected Results: The cancelled download should not remain in the disk cache. The storage in use should be below the max size, and the number of entries should be more than zero. (the disk cache should *work*) I cannot reproduce this with Mozilla builds. Only Firebird.
222,468
1,981,220
Steps to reproduce: 1) Create a mail account. 2) Go to Tools->Message Filters. 3) Click "New..." button. Mozilla crashes at this point on AIX and Linux. I have not had time to test a Windows build yet.
223,273
1,986,641
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4.1) Gecko/20031003 Epiphany/1.0.1 Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6a) Gecko/20031022 With a debug build, when I load http://www.mozilla.org/start/, Mozilla crashes with Assertion failure: operandSP == 1, at /home/nico/prog/mozilla/mozilla/js/src/jsregexp.c:540 bt is coming... Reproducible: Always Steps to Reproduce: 1. Use a debug build 2. Go to http://www.mozilla.org/start/ Actual Results: Mozilla crashes because of a false assertion.
223,470
1,987,926
Program mozilla-debug/dist/bin/mozilla-bin (pid = 5507) received signal 11. Stack: _ZN13nsProfileLock18FatalSignalHandlerEi+0x000000D0 [/home/ajvincent/mozilla-debug/dist/bin/components/libprofile.so +0x00032F3A] UNKNOWN [/lib/libpthread.so.0 +0x0000CC2D] UNKNOWN [/lib/libc.so.6 +0x00027D58] _ZN8nsCOMPtrI11nsINodeInfoE16begin_assignmentEv+0x00000020 [/home/ajvincent/mozilla-debug/dist/bin/components/libgklayout.so +0x00377C26] _ZN8nsCOMPtrI11nsINodeInfoE15StartAssignmentEv+0x0000001E [/home/ajvincent/mozilla-debug/dist/bin/components/libgklayout.so +0x003775EC] _ZN15nsGetterAddRefsI11nsINodeInfoEcvPPS0_Ev+0x00000020 [/home/ajvincent/mozilla-debug/dist/bin/components/libgklayout.so +0x00376AA6] _ZN18XULContentSinkImpl13AddAttributesEPPKtjP21nsXULPrototypeElement+0x000000F8 [/home/ajvincent/mozilla-debug/dist/bin/components/libgklayout.so +0x0082F6A2] _ZN18XULContentSinkImpl7OpenTagEPPKtjjP11nsINodeInfo+0x00000147 [/home/ajvincent/mozilla-debug/dist/bin/components/libgklayout.so +0x0082EBCF] _ZN18XULContentSinkImpl18HandleStartElementEPKtPS1_jjj+0x0000019E [/home/ajvincent/mozilla-debug/dist/bin/components/libgklayout.so +0x0082CC08] _ZN13nsExpatDriver18HandleStartElementEPKtPS1_+0x000000A5 [/home/ajvincent/mozilla-debug/dist/bin/components/libhtmlpars.so +0x0003ABF3] UNKNOWN [/home/ajvincent/mozilla-debug/dist/bin/components/libhtmlpars.so +0x000399D3] UNKNOWN [/home/ajvincent/mozilla-debug/dist/bin/components/libhtmlpars.so +0x0007179B] UNKNOWN [/home/ajvincent/mozilla-debug/dist/bin/components/libhtmlpars.so +0x00070BAF] UNKNOWN [/home/ajvincent/mozilla-debug/dist/bin/components/libhtmlpars.so +0x000739FD] UNKNOWN [/home/ajvincent/mozilla-debug/dist/bin/components/libhtmlpars.so +0x00073551] UNKNOWN [/home/ajvincent/mozilla-debug/dist/bin/components/libhtmlpars.so +0x000734FD] XML_Parse+0x000001FF [/home/ajvincent/mozilla-debug/dist/bin/components/libhtmlpars.so +0x00070472] _ZN13nsExpatDriver11ParseBufferEPKcji+0x00000085 [/home/ajvincent/mozilla-debug/dist/bin/components/libhtmlpars.so +0x0003C2DB] _ZN13nsExpatDriver12ConsumeTokenER9nsScannerRi+0x000000C5 [/home/ajvincent/mozilla-debug/dist/bin/components/libhtmlpars.so +0x0003C6BB] _ZN8nsParser8TokenizeEi+0x00000146 [/home/ajvincent/mozilla-debug/dist/bin/components/libhtmlpars.so +0x0005DB6C] _ZN8nsParser11ResumeParseEiii+0x000001B3 [/home/ajvincent/mozilla-debug/dist/bin/components/libhtmlpars.so +0x0005BA0D] _ZN8nsParser15OnDataAvailableEP10nsIRequestP11nsISupportsP14nsIInputStreamjj+0x000001AA [/home/ajvincent/mozilla-debug/dist/bin/components/libhtmlpars.so +0x0005D71A] _ZN18nsDocumentOpenInfo15OnDataAvailableEP10nsIRequestP11nsISupportsP14nsIInputStreamjj+0x0000005E [/home/ajvincent/mozilla-debug/dist/bin/components/libdocshell.so +0x0009B826] _ZN13nsFileChannel15OnDataAvailableEP10nsIRequestP11nsISupportsP14nsIInputStreamjj+0x00000055 [/home/ajvincent/mozilla-debug/dist/bin/components/libnecko.so +0x00137BB9] _ZN17nsInputStreamPump15OnStateTransferEv+0x000001FD [/home/ajvincent/mozilla-debug/dist/bin/components/libnecko.so +0x000A29A1] _ZN17nsInputStreamPump18OnInputStreamReadyEP19nsIAsyncInputStream+0x00000096 [/home/ajvincent/mozilla-debug/dist/bin/components/libnecko.so +0x000A25AC] _ZN23nsInputStreamReadyEvent12EventHandlerEP7PLEvent+0x0000007D [/home/ajvincent/mozilla-debug/dist/bin/libxpcom.so +0x000E04B5] PL_HandleEvent+0x00000054 [/home/ajvincent/mozilla-debug/dist/bin/libxpcom.so +0x00105D2C] PL_ProcessEventsBeforeID+0x0000016A [/home/ajvincent/mozilla-debug/dist/bin/libxpcom.so +0x0010647A] _Z12processQueuePvS_+0x0000002D [/home/ajvincent/mozilla-debug/dist/bin/components/libwidget_gtk.so +0x00032F99] _ZN11nsVoidArray17EnumerateForwardsEPFiPvS0_ES0_+0x00000050 [/home/ajvincent/mozilla-debug/dist/bin/libxpcom.so +0x000B8B90] _ZN10nsAppShell15ProcessBeforeIDEm+0x00000034 [/home/ajvincent/mozilla-debug/dist/bin/components/libwidget_gtk.so +0x00032FDA] _Z16handle_gdk_eventP9_GdkEventPv+0x00000626 [/home/ajvincent/mozilla-debug/dist/bin/components/libwidget_gtk.so +0x000426A8] UNKNOWN [/usr/lib/libgdk-1.2.so.0 +0x0001917F] UNKNOWN [/usr/lib/libglib-1.2.so.0 +0x00014199] g_main_run+0x00000044 [/usr/lib/libglib-1.2.so.0 +0x00013174] Sleeping for 5 minutes. Type 'gdb mozilla-debug/dist/bin/mozilla-bin 5507' to attach your debugger to this thread. Steps to reproduce: (1) Open the attached testcase. Expected Result: Empty XUL page. Actual Result: Crash. Testcase coming up.
223,810
1,990,514
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5) Gecko/20031027 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5) Gecko/20031027 in /js/src/jsscript.c (3.46.4.1): Line 850: /* NB: This struct overlays JSHashEntry -- see jshash.h, do not reorganize. */ typedef struct ScriptFilenameEntry { JSHashEntry *next; /* hash chain linkage */ JSHashNumber keyHash; /* key hash function result */ const void *key; /* ptr to filename, below */ JSPackedBool mark; /* mark flag, for GC */ char filename[3]; /* two or more bytes, NUL-terminated */ } ScriptFilenameEntry; JS_STATIC_DLL_CALLBACK(JSHashEntry *) js_alloc_entry(void *priv, const void *key) { return (JSHashEntry *) malloc(offsetof(ScriptFilenameEntry, filename) + strlen(key) + 1); } ... Here key is assumed to be a null-terminated string whose length is 2 or greater. But this assumption is not always true. If the length of the key string is smaller than 2, the allocated buffer's size may be smaller than sizeof(JSHashEntry), and then in JS_HashTableRawAdd, the assignments to its fields will overflow. For a debug version of browser, when the buffer is freed, MSVC runtime assertion failure and program crash will occur. I modified the malloc line into: malloc(offsetof(ScriptFilenameEntry, filename) + strlen(key) + 3); and the error does not occur any more. Reproducible: Always Steps to Reproduce: 1. build debug version of mozilla 1.5 with activex and activex-scripting enabled 2. after successful building, copy activex plugin files into proper directories ( npmozax.dll into plugins, nsAxSecurityPolicy.js and npmozax.xpt into components, activex.js into defaults/pref) 3. run mozilla, and open the activex plugin test file calendar.html (in /embedding/browser/activex/tests) Actual Results: MSVC runtime assertion failed: DBGHEAP.c line 1066: DAMAGE: after .... block at ....". If ignore, sometimes the program continues, sometimes crashes. Stack trace when js_alloc_entry is called and a smaller buffer will be allocated: (in js_SaveScriptFilename, the filename is "", originally set by the ActiveX plugin) js_alloc_entry(void * 0x00000000, const void * 0x03cc2b64) line 863 JS_HashTableRawAdd(JSHashTable * 0x00a610e8, JSHashEntry * * 0x02a90810, unsigned long 0x00000000, const void * 0x03cc2b64, void * 0x00000000) line 242 + 20 bytes js_SaveScriptFilename(JSContext * 0x030f1098, const char * 0x03cc2b64) line 943 + 23 bytes js_NewScriptFromCG(JSContext * 0x030f1098, JSCodeGenerator * 0x0012c210, JSFunction * 0x00000000) line 1045 + 13 bytes CompileTokenStream(JSContext * 0x030f1098, JSObject * 0x030adf90, JSTokenStream * 0x031c5df8, void * 0x030f1118, int * 0x00000000) line 2961 + 18 bytes JS_CompileUCScriptForPrincipals(JSContext * 0x030f1098, JSObject * 0x030adf90, JSPrincipals * 0x032f7120, const unsigned short * 0x03425b40, unsigned int 0x00000000, const char * 0x03cc2b64, unsigned int 0x00000001) line 3036 + 23 bytes JS_CompileScriptForPrincipals(JSContext * 0x030f1098, JSObject * 0x030adf90, JSPrincipals * 0x032f7120, const char * 0x03cc2b65, unsigned int 0x00000000, const char * 0x03cc2b64, unsigned int 0x00000001) line 3006 + 33 bytes MozAxAutoPushJSContext::MozAxAutoPushJSContext(JSContext * 0x030f1098, nsIURI * 0x030d2fe8) line 410 + 42 bytes WillHandleCLSID(const _GUID & {CLSID_Calendar Control 8.0}, PluginInstanceData * 0x033b73b0) line 475 + 24 bytes CreateControl(const _GUID & {CLSID_Calendar Control 8.0}, PluginInstanceData * 0x033b73b0, PropertyList & {...}, const unsigned short * 0x00000000) line 578 + 13 bytes NewControl(const char * 0x033cec88, PluginInstanceData * 0x033b73b0, unsigned short 0x0001, short 0x0008, char * * 0x033c7b98, char * * 0x033466c8) line 925 + 21 bytes NPP_New(char * 0x033cec88, _NPP * 0x031e8908, unsigned short 0x0001, short 0x0008, char * * 0x033c7b98, char * * 0x033466c8, _NPSavedData * 0x00000000) line 971 + 31 bytes ns4xPluginInstance::InitializePlugin(nsIPluginInstancePeer * 0x03426150) line 821 + 105 bytes ns4xPluginInstance::Initialize(ns4xPluginInstance * const 0x031e88f0, nsIPluginInstancePeer * 0x03426150) line 616 nsPluginHostImpl::TrySetUpPluginInstance(nsPluginHostImpl * const 0x00b46058, const char * 0x0340d828, nsIURI * 0x03252fe0, nsIPluginInstanceOwner * 0x0320acf0) line 3896 + 21 bytes ......
198,267
1,786,120
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4a) Gecko/20030319 This is somewhat strange. If I load the url while the browser has focus during the page load it crashes right after the page is rendered. If I press enter in the location bar and switch to another window (alt-tab) and let the page load without focus it loads fine but as soon as I switch back to mozilla it crashes instantly. There is some js on the page that has to do with events... This page worked fine with a nightly two days ago (can't remember the buildid) Reproducible: Always Steps to Reproduce: version 1: 1. load https://girolink.postgirot.se/ or https://girovision.postgirot.se/ version 2: 1. start loading https://girolink.postgirot.se/ or https://girovision.postgirot.se/ 2. quickly switch focus to another window like explorer or whatever 3. switch back to mozilla after the page has loaded Actual Results: Crash Expected Results: Display the page TB id's: TB1821223X TB18251362H
198,806
1,790,204
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4a) Gecko/20030320 Phoenix/0.5 Build Identifier: (Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.3b) Gecko/20030205) I've had memory problems with Mozilla and Phoenix since last fall but today ordered more memory which should keep my up and running through the day. I noticed something peculiar in the about:cache results from Phoenix in that the Storage in use was many times higher than the Maximum storage size. Memory cache device (Phoenix) (3/20/2003 label) Number of entries: 1253 Maximum storage size: 4194304 Bytes Storage in use: 58151463 Bytes Memory cache usage report: I tried to see if I could get the Storage in use: figure much higher in Mozilla (Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.3b) Gecko/20030205) and found that I could after clicking on a bunch of links for a minute or two: Memory cache device Number of entries: 239 Maximum storage size: 4194304 Bytes Storage in use: 9168804 Bytes Memory cache usage report: Is this a leak problem with cash entries not getting flushed out? BTW, I checked the cache items on Phoenix and they added up to about 33 meg, much larger than the 4 meg cache. FWIW: I typically use up about 300 MB on Mozilla or Phoenix with a regular day's activity at which point I have to kill it or else XP will do it for me. Reproducible: Always Steps to Reproduce: 1. Do an about:cache 2. Visit a bunch of random pages doing about:cache from time to time until the Storage in use is more than the Maximum storage size by at least double. 3. Actual Results: Storage was greater than the maximum size. Expected Results: Flushed out items when the cache limit is reached. I'm using LittleMozilla/LittlePhoenix, TabBrowser Extensions and Context Menu Extensions.
199,546
1,796,832
User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.4a) Gecko/20030322 Build Identifier: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.4a) Gecko/20030322 To get to the above URL you have to go first to http://www.satforums.com/ and open the link "4DTV Rocks". After logging in. just click on the button "start reading". After you read the first messages on the right, click on the other topics on the left. Eventually instead of the thread coming into the right window, the popup window comes up asking to save messages.php to disk. This problem started over a month ago in 1.3b or maybe 1.3a. Using 1.3 didn't help, so I tried this pre-alpha and it doesn't work right either. Reproducible: Always Steps to Reproduce: 1.See above 2. 3. Actual Results: Save to disk popup window Expected Results: Thread displayed in right window. I made a screenshot. Let me know if you want it.
204,555
1,838,944
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.3) Gecko/20030312 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.3) Gecko/20030312 E-mails from Microsoft recently were required to go through an additional set of SMTP relays in order to pass through virus filters. When these e-mails are then sent through a mailing list the number of Received: headers reaches 12 or more. We believe that a buffer is being overwritten while the mail is being processed. We do have not examined the overwrite to determine whether or not it can be exploited. Reproducible: Always Steps to Reproduce: Load this e-mail from an IMAP server with spam filtering on Return-Path: <[email protected]> Received: from atalanta.ctd.anl.gov (atalanta.ctd.anl.gov [146.137.194.4]) by marionberry.cc.columbia.edu (8.12.8p1/8.12.8) with ESMTP id h3GHfBoN011793 for <[email protected]>; Wed, 16 Apr 2003 13:41:11 -0400 (EDT) Received: (from majordom@localhost) by atalanta.ctd.anl.gov (8.9.1a/8.9.1) id MAA28939 for ietf-krb-wg-outgoing; Wed, 16 Apr 2003 12:38:55 -0500 (CDT) Received: from hermes.ctd.anl.gov (localhost [127.0.0.1]) by atalanta.ctd.anl.gov (8.9.1a/8.9.1) with ESMTP id MAA28932 for <[email protected]>; Wed, 16 Apr 2003 12:38:52 -0500 (CDT) Received: from hermes.ctd.anl.gov (localhost [127.0.0.1]) by hermes.ctd.anl.gov (8.9.1a/8.9.1) with ESMTP id MAA29084 for <[email protected]>; Wed, 16 Apr 2003 12:38:52 -0500 (CDT) Received: from mailrelay.anl.gov (mailrelay.anl.gov [130.202.101.22]) by hermes.ctd.anl.gov (8.9.1a/8.9.1) with ESMTP id MAA29081 for <[email protected]>; Wed, 16 Apr 2003 12:38:52 -0500 (CDT) Received: from localhost.localdomain (localhost [127.0.0.1]) by localhost.ctd.anl.gov (Postfix) with ESMTP id 1D3CA5F0FE9; Wed, 16 Apr 2003 12:38:52 -0500 (CDT) Received: from mail3.microsoft.com (mail3.microsoft.com [131.107.3.123]) by mailrelay.anl.gov (Postfix) with ESMTP id 64C185F0FE9 for <[email protected]>; Wed, 16 Apr 2003 12:38:51 -0500 (CDT) Received: from INET-VRS-03.redmond.corp.microsoft.com ([157.54.5.27]) by mail3.microsoft.com with Microsoft SMTPSVC(5.0.2195.6624); Wed, 16 Apr 2003 10:38:50 -0700 Received: from 157.54.8.23 by INET-VRS-03.redmond.corp.microsoft.com (InterScan E-Mail VirusWall NT); Wed, 16 Apr 2003 10:38:50 -0700 Received: from red-imc-02.redmond.corp.microsoft.com ([157.54.9.107]) by inet-hub-01.redmond.corp.microsoft.com with Microsoft SMTPSVC(5.0.2195.5600); Wed, 16 Apr 2003 10:38:50 -0700 Received: from win-imc-01.wingroup.windeploy.ntdev.microsoft.com ([157.54.0.39]) by red-imc-02.redmond.corp.microsoft.com with Microsoft SMTPSVC(5.0.2195.5600); Wed, 16 Apr 2003 10:38:49 -0700 Received: from WIN-MSG-10.wingroup.windeploy.ntdev.microsoft.com ([157.54.12.81]) by win-imc-01.wingroup.windeploy.ntdev.microsoft.com with Microsoft SMTPSVC(6.0.3788.0); Wed, 16 Apr 2003 10:38:48 -0700 Content-class: urn:content-classes:message Subject: RE: AES and SHA-1 timing MIME-Version: 1.0 Date: Wed, 16 Apr 2003 10:38:52 -0700 Content-Type: multipart/signed; boundary="----=_NextPart_000_0036_01C30404.5CBD5C80"; micalg=SHA1; protocol="application/x-pkcs7-signature" X-MimeOLE: Produced By Microsoft Exchange V6.5.6851.8 Message-ID: <91D7F2CEE3425A4A9D11311D09FCE2460196A80E@WIN-MSG-10.wingroup.windeploy.ntdev.microsoft.com> X-MS-Has-Attach: yes Thread-Topic: AES and SHA-1 timing Thread-Index: AcMD7Dei7A27+tKGTXyn65BPsrcpAgAUjOUg From: "Paul Leach" <[email protected]> To: "Marcus Watts" <[email protected]>, <[email protected]> X-OriginalArrivalTime: 16 Apr 2003 17:38:48.0461 (UTC) FILETIME=[0974DBD0:01C3043F] X-Spam-Status: No, hits=-100.0 required=5.7 tests=USER_IN_WHITELIST version=2.53 X-Spam-Checker-Version: SpamAssassin 2.53 (1.174.2.15-2003-03-30-exp) Sender: [email protected] Precedence: bulk X-Scanned-By: MIMEDefang 2.32 (www . roaringpenguin . com / mimedefang) This is a multi-part message in MIME format. ------=_NextPart_000_0036_01C30404.5CBD5C80 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit I hope it is clear that the iteration count in the AES string-to-key cipher suite can be precomputed by the KDC when the password is changed; thus, it should not normally have any significant impact on KDC load. (Unless you have a really high volume of password change operations.) Finally, the iteration count is just the default -- it can be changed if a large number of really slow machines are in one's environment, and if the increased risk of password breakability can be accepted. ------=_NextPart_000_0036_01C30404.5CBD5C80 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Disposition: attachment; filename="smime.p7s" Content-Transfer-Encoding: base64 MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIpCjCCA7Ew ggKZoAMCAQICEGLjZmVSIbeyRuVfQYoWnmIwDQYJKoZIhvcNAQEFBQAwTDELMAkGA1UEBhMCVVMx EjAQBgNVBAoTCU1pY3Jvc29mdDEOMAwGA1UECxMFTnRkZXYxGTAXBgNVBAMTEE5UREVWIFNBIFJv b3QgQ0EwHhcNMDIwODA3MDM0NTAyWhcNMDcwODA3MDM1NTAyWjBMMQswCQYDVQQGEwJVUzESMBAG A1UEChMJTWljcm9zb2Z0MQ4wDAYDVQQLEwVOdGRldjEZMBcGA1UEAxMQTlRERVYgU0EgUm9vdCBD QTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOoI+NpQ4wnW1e11kPkhTnigAO0ked3R JGftlHdGD3DPOwNAkTRzTtSIQTYZkTx+Asu+aoqsru6ed6W/Mxhd7+DxQ2E6nXFvPd7WnSMqEBrA ITOWcEpSZaS2afWL7up5R7w6PZl8+lheotfJVMdUgDtBvgBC8xTs7PD+zT09iZ4PchILTK0DdKXU J163rordZSG0cmeCV+pz1/EtBtw6uD8tLsDlIcNWQnph4McYjmNf6jdtuzuwr++CGHi5SEAhHLl0 WjtwzAFltSfRmj2VcljijzpTPEj0lHnXH/G49ohh24NexdzQ0KHjajkM36rIfJplmACDkzmIvl6S jkyzJW0CAwEAAaOBjjCBizATBgkrBgEEAYI3FAIEBh4EAEMAQTALBgNVHQ8EBAMCAUYwDwYDVR0T AQH/BAUwAwEB/zAdBgNVHQ4EFgQUiMnNnJw6IoDq5C3aFUcv9fvEvJswEgYJKwYBBAGCNxUBBAUC AwEAATAjBgkrBgEEAYI3FQIEFgQUnpC7JiTk2txjEbgYLa+tOVaBZlEwDQYJKoZIhvcNAQEFBQAD ggEBAFhv2fkYKXwaad2xA9h+RjyS8twwPfcAuPRD+W7kvsvBtPeoI4cpMU+f12+SH1WfdhNErRYs I2Whc+Xlkqm6KLZtUG52qNsHI5aRB2zHVYXLFdFnSZ0xFOsu9y11fh/6Yv3SS7etGrLVtOdzfeOL xzosK8ZbdBh/wF1b/jB/orp4bgXqsGqQyXGLanR29TLLT2QZjzrt8k9tMM1u+vjQ1tHNEK7qfm4D plgZUu4wK/QZLwCYoz4u29mQSJ6TWC0VoFQeZu2cv2jtIikzYR/HI9PNJv5AErQ63RJOLy45GosR S14poZyAoFv9233bFpHXnXz/oeMnW1Rwr5p4JBxsFLEwggWSMIIFUqADAgECAgoppSGSAAUAAAIg MAkGByqGSM44BAMwYTELMAkGA1UEBhMCVVMxEjAQBgNVBAoTCU1pY3Jvc29mdDEOMAwGA1UECxMF TnRkZXYxLjAsBgNVBAMTJU5UREVWIEludGVybWVkaWF0ZSBTdWJvcmRpbmF0ZSBXaGljYTIwHhcN MDIxMDEwMjA0MzA3WhcNMDQxMDEwMjA1MzA3WjBLMQswCQYDVQQGEwJVUzESMBAGA1UEChMJTWlj cm9zb2Z0MQ4wDAYDVQQLEwVOdGRldjEYMBYGA1UEAxMPTlRERVYgSVNTVUUzIENBMIGfMA0GCSqG SIb3DQEBAQUAA4GNADCBiQKBgQCslBWXY0NTtIV2J0MY5hQTlVtFlPH3K27ZVXbdGUMe0szXI/jh rktkRDINZX0v6ej3CWL9mSvqqeVfYUJ4RDcuNjjx1tBibQ5Tk4ujVXIiXdJwKTBiu3YqDhv8ajoj ZgASrQnAOz+qNGt3EP1Sn0YaNxjPvpy7yLFDd3O7QjxngQIDAQABo4IDwDCCA7wwDwYDVR0TAQH/ BAUwAwEB/zAdBgNVHQ4EFgQUi9HNYfHpr468kdBA6im/5i6FQFcwCwYDVR0PBAQDAgGGMBIGCSsG AQQBgjcVAQQFAgMCAAMwIwYJKwYBBAGCNxUCBBYEFG63AnsLfqwCcPqopI+9FMOWUqPPMBEGA1Ud IAQKMAgwBgYEVR0gADAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTAfBgNVHSMEGDAWgBTivgNw 1Ysg0kFEaq/myHdxWiUAHzCCAWkGA1UdHwSCAWAwggFcMIIBWKCCAVSgggFQhoHnbGRhcDovLy9D Tj1OVERFViUyMEludGVybWVkaWF0ZSUyMFN1Ym9yZGluYXRlJTIwV2hpY2EyKDQpLENOPXdoaWNh MixDTj1DRFAsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmln dXJhdGlvbixEQz1udGRldixEQz1jb3JwLERDPW1pY3Jvc29mdCxEQz1jb20/Y2VydGlmaWNhdGVS ZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50hmRodHRw Oi8vd2hpY2EyLm50ZGV2LmNvcnAubWljcm9zb2Z0LmNvbS9DZXJ0RW5yb2xsL05UREVWJTIwSW50 ZXJtZWRpYXRlJTIwU3Vib3JkaW5hdGUlMjBXaGljYTIoNCkuY3JsMIIBhgYIKwYBBQUHAQEEggF4 MIIBdDCB3QYIKwYBBQUHMAKGgdBsZGFwOi8vL0NOPU5UREVWJTIwSW50ZXJtZWRpYXRlJTIwU3Vi b3JkaW5hdGUlMjBXaGljYTIsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNl cnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9bnRkZXYsREM9Y29ycCxEQz1taWNyb3NvZnQsREM9 Y29tP2NBQ2VydGlmaWNhdGU/YmFzZT9vYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5 MIGRBggrBgEFBQcwAoaBhGh0dHA6Ly93aGljYTIubnRkZXYuY29ycC5taWNyb3NvZnQuY29tL0Nl cnRFbnJvbGwvd2hpY2EyLm50ZGV2LmNvcnAubWljcm9zb2Z0LmNvbV9OVERFViUyMEludGVybWVk aWF0ZSUyMFN1Ym9yZGluYXRlJTIwV2hpY2EyKDUpLmNydDAJBgcqhkjOOAQDAy8AMCwCFG0a0eml aHCZ0XREh9+8PT+SuANMAhQLuEXjuaULz1r4zciD4EyvpGjZ7DCCBtAwggY5oAMCAQICChWC27AA AgAdDLIwDQYJKoZIhvcNAQEFBQAwSzELMAkGA1UEBhMCVVMxEjAQBgNVBAoTCU1pY3Jvc29mdDEO MAwGA1UECxMFTnRkZXYxGDAWBgNVBAMTD05UREVWIElTU1VFMyBDQTAeFw0wMjA5MTEwMTE2MDJa Fw0wMzA5MTEwMTE2MDJaMIHdMRMwEQYKCZImiZPyLGQBGRYDY29tMRkwFwYKCZImiZPyLGQBGRYJ bWljcm9zb2Z0MRQwEgYKCZImiZPyLGQBGRYEY29ycDEVMBMGCgmSJomT8ixkARkWBW50ZGV2MRAw DgYDVQQLEwdJTS1TZWxmMRcwFQYDVQQLEw5MaWdodGx5TWFuYWdlZDERMA8GA1UECxMITG93VENP LUUxEzARBgNVBAMTClBhdWwgTGVhY2gxKzApBgkqhkiG9w0BCQEWHHBhdWxsZUB3aW5kb3dzLm1p Y3Jvc29mdC5jb20wgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBALfXtAe4rPaOte+60lbRKMsa tUQWvwkrf+Pivmnc7mY/s2QcLnXpztWu7p2zlVct+IvYlF+sR5k929NVgDwUYqA1Mzuakg94aFjz 0a7QoRGmUR6QnzbcG6CJEXEgjpnUIhvs0kFS4wyN1QE2+VS8Cd3BsYqvpOIG737DpY+DheI1AgMB AAGjggQmMIIEIjALBgNVHQ8EBAMCBaAwRAYJKoZIhvcNAQkPBDcwNTAOBggqhkiG9w0DAgICAIAw DgYIKoZIhvcNAwQCAgCAMAcGBSsOAwIHMAoGCCqGSIb3DQMHMB0GA1UdDgQWBBQEnI/IeQPDcIBQ 4jjAFnC6zEaHUjApBgkrBgEEAYI3FAIEHB4aAFMAbQBhAHIAdABjAGEAcgBkAFUAcwBlAHIwHwYD VR0jBBgwFoAUi9HNYfHpr468kdBA6im/5i6FQFcwggGIBgNVHR8EggF/MIIBezCCAXegggFzoIIB b4aBz2xkYXA6Ly8vQ049TlRERVYlMjBJU1NVRTMlMjBDQSgyKSxDTj1XSElDQTMsQ049Q0RQLENO PVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9 bnRkZXYsREM9Y29ycCxEQz1taWNyb3NvZnQsREM9Y29tP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxp c3Q/YmFzZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludIZNaHR0cDovL3doaWNhd2Vi Lm50ZGV2LmNvcnAubWljcm9zb2Z0LmNvbS9OVERFVkNSTHMvTlRERVYlMjBJU1NVRTMlMjBDQSgy KS5jcmyGTGh0dHA6Ly93aGljYTMubnRkZXYuY29ycC5taWNyb3NvZnQuY29tL0NlcnRFbnJvbGwv TlRERVYlMjBJU1NVRTMlMjBDQSgyKS5jcmwwggFUBggrBgEFBQcBAQSCAUYwggFCMIHFBggrBgEF BQcwAoaBuGxkYXA6Ly8vQ049TlRERVYlMjBJU1NVRTMlMjBDQSxDTj1BSUEsQ049UHVibGljJTIw S2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJhdGlvbixEQz1udGRldixEQz1j b3JwLERDPW1pY3Jvc29mdCxEQz1jb20/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNl cnRpZmljYXRpb25BdXRob3JpdHkweAYIKwYBBQUHMAKGbGh0dHA6Ly93aGljYTMubnRkZXYuY29y cC5taWNyb3NvZnQuY29tL0NlcnRFbnJvbGwvV0hJQ0EzLm50ZGV2LmNvcnAubWljcm9zb2Z0LmNv bV9OVERFViUyMElTU1VFMyUyMENBKDIpLmNydDApBgNVHSUEIjAgBgorBgEEAYI3FAICBggrBgEF BQcDBAYIKwYBBQUHAwIwUwYDVR0RBEwwSqAqBgorBgEEAYI3FAIDoBwMGnBhdWxsZUBudGRldi5t aWNyb3NvZnQuY29tgRxwYXVsbGVAd2luZG93cy5taWNyb3NvZnQuY29tMA0GCSqGSIb3DQEBBQUA A4GBAEWTH/l9t20BxpXengbCu5JV2++sbzBbiyWIAU5MKaVDFzQPzP30rKwhVl4yCIdgAs30tCF2 6t3PSF9JA0i3wF2xqXfhOSyGs4u+v0LPS3Fu09tjxDHAQNwUK6AuLOsReLZ3qz5s+1hWOeVNHLma C8ogdSpfOQPOC17OHaHT9BpRMIIIGzCCBwOgAwIBAgIKKMbncgABAAAANTANBgkqhkiG9w0BAQUF ADBMMQswCQYDVQQGEwJVUzESMBAGA1UEChMJTWljcm9zb2Z0MQ4wDAYDVQQLEwVOdGRldjEZMBcG A1UEAxMQTlRERVYgU0EgUm9vdCBDQTAeFw0wMjEwMTAxNjMzMDBaFw0wNTEwMTAxNjQzMDBaMGEx CzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlNaWNyb3NvZnQxDjAMBgNVBAsTBU50ZGV2MS4wLAYDVQQD EyVOVERFViBJbnRlcm1lZGlhdGUgU3Vib3JkaW5hdGUgV2hpY2EyMIIBtzCCASsGByqGSM44BAEw ggEeAoGBAPoSz3u7mLB5rhlH5CE5AalrBl6Ntst+vZLNPRPhI8ABrNuHKYWlR6hWd/ikP5IMgDQr 7DUpJrrdv4Z2T1pJPVEHIxCua3HTX/o+XVGTZXdBv4x+OhHLmt11KcTy9B+0tpg3psJC4m+taONa bd+yw/EB9AoPldGdHoGBBSGOdALjAhUAmE+UPbJ1WtXpFK2UwmM6G/zo60MCgYBmyg997xQQPnCr 4IraxqUi5sXXsvSPvimwO/UEFxJwAiWS8OUunvnh7Gd0/scD5YNkVAsbRYF+XNgyYVCsYusC1LH8 DvoOzq4Hz8lg9K/2kA80v2Skr4DH1EFM2JG3J9Hbq362Dk9i8V6HAZEA/P8kB9/J+cI1LoXlWtfw 5uaCmAOBhQACgYEAokrSViTIQt7ZG0Ytjr2GLccq5bTzDsmUdROQz1qi9eb5cOIYa2YXgE6cmZTI IFOLx6bPdgbwZSAsOfBQofQoLG3vJeQcGsA/vj7wzjmzlaImYsBF9OZRFKl7C3r/TLShHXBTQHo1 6zcCGuLCXhQvOsrjJhlKvhvR5fMmNpOK4jmjggRTMIIETzAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud DgQWBBTivgNw1Ysg0kFEaq/myHdxWiUAHzALBgNVHQ8EBAMCAYYwEgYJKwYBBAGCNxUBBAUCAwQA BTAjBgkrBgEEAYI3FQIEFgQU1lIoN1kh422F4hJqLWNtqmi8a0AwGQYJKwYBBAGCNxQCBAweCgBT AHUAYgBDAEEwHwYDVR0jBBgwFoAUiMnNnJw6IoDq5C3aFUcv9fvEvJswggGZBgNVHR8EggGQMIIB jDCCAYigggGEoIIBgIaB2WxkYXA6Ly8vQ049TlRERVYlMjBTQSUyMFJvb3QlMjBDQSgxKSxDTj13 aGljYXNhcm9vdGNhLENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl cyxDTj1Db25maWd1cmF0aW9uLERDPW50ZGV2LERDPWNvcnAsREM9bWljcm9zb2Z0LERDPWNvbT9j ZXJ0aWZpY2F0ZVJldm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9u UG9pbnSGUWh0dHA6Ly93aGljYXdlYi5udGRldi5jb3JwLm1pY3Jvc29mdC5jb20vQ2VydEVucm9s bC9OVERFViUyMFNBJTIwUm9vdCUyMENBKDEpLmNybIZPaHR0cDovL3doaWNhMy5udGRldi5jb3Jw Lm1pY3Jvc29mdC5jb20vQ2VydEVucm9sbC9OVERFViUyMFNBJTIwUm9vdCUyMENBKDEpLmNybDCC AekGCCsGAQUFBwEBBIIB2zCCAdcwgcgGCCsGAQUFBzAChoG7bGRhcDovLy9DTj1OVERFViUyMFNB JTIwUm9vdCUyMENBLENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl cyxDTj1Db25maWd1cmF0aW9uLERDPW50ZGV2LERDPWNvcnAsREM9bWljcm9zb2Z0LERDPWNvbT9j QUNlcnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTCBhAYI KwYBBQUHMAKGeGh0dHA6Ly93aGljYXdlYi5udGRldi5jb3JwLm1pY3Jvc29mdC5jb20vQ2VydEVu cm9sbC93aGljYXNhcm9vdGNhLm50ZGV2LmNvcnAubWljcm9zb2Z0LmNvbV9OVERFViUyMFNBJTIw Um9vdCUyMENBKDEpLmNydDCBggYIKwYBBQUHMAKGdmh0dHA6Ly93aGljYTMubnRkZXYuY29ycC5t aWNyb3NvZnQuY29tL0NlcnRFbnJvbGwvd2hpY2FzYXJvb3RjYS5udGRldi5jb3JwLm1pY3Jvc29m dC5jb21fTlRERVYlMjBTQSUyMFJvb3QlMjBDQSgxKS5jcnQwEQYDVR0gBAowCDAGBgRVHSAAMA0G CSqGSIb3DQEBBQUAA4IBAQA0wmQlGbxPwheWF+0oj8v1hjBbV13gmBK/2Oy0q2OcgC/o+GSkKK+5 S36xOxTvVIBio37Pi6jtJI8WneO9ONcLQK5NHuUV3j9FFtCM2TnLbq/OJHu+rKrYIBRYAjn3y6oW PaZQnH1Ug6Qa54ACEl1bocfKBM6bVNlJKnB+WRpnwb4MrXQinvr0rYrlYH+Z7xECHo+aJ9qnp7cX XzELF57Y9qBBbqY5keifWFfX+NxhFpRrgwtS6LtdIPOInQLG2kPoY8QafHvTSBj4IuSxdaN+d0d9 n1ODnN4IKRhRYiVSpwP7aoLrK3FelYjdLEH7XQC2q+T41duYgNhWl0Dkf26XMIIIUzCCCBOgAwIB AgIKFDyh8QAEAAACDjAJBgcqhkjOOAQDMGExCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlNaWNyb3Nv ZnQxDjAMBgNVBAsTBU50ZGV2MS4wLAYDVQQDEyVOVERFViBJbnRlcm1lZGlhdGUgU3Vib3JkaW5h dGUgV2hpY2EyMB4XDTAyMDkxMTIxMjkxMVoXDTA0MDkxMTIxMzkxMVowgZwxEzARBgNVBAgTCldh c2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxEjAQBgNVBAoTCU1pY3Jvc29mdDEbMBkGA1UECxMS Q29ycG9yYXRlIFNlY3VyaXR5MR8wHQYDVQQDExZJVEcgTlRERVYgTGV2ZWwgMiBDQSAxMSEwHwYJ KoZIhvcNAQkBFhJwa2l0QG1pY3Jvc29mdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK AoIBAQDK3WSfPiHuUTHaYPDEpnk3Rb16aCgk8MVvtyqDzjO1xJrR4XzXq+HYnbFG4YD/89eWe6Fn A2j7coULWcw3JuHGTTvWKYYhQ7Y3c7HeMw70Hh2X9nCuKZS8HuADCBkp9Qn4MW2ebwlx5qD5RuRN NwypZ9SLzbC1uBELuJ55NwMYCX3wQUGfipGEC0nQcy2vxhlKfno1jZOcx+yUm3/78A8f49iJjDBF bIdw4nBBPtfH6y7TTjBLNDMk28QFFKCJoEuaW7F0ToGLDI0ZJ0wL3FdF6u3Up29ipiRePu5HYTlp lU51R/UU7JXP9kgq2eJE/Ep0w2wNbARV3Vof3D2MCREzAgMBAAGjggWrMIIFpzCBhAYJKwYBBAGC NxUKBHcwdTAKBggrBgEFBQcDBDAKBggrBgEFBQcDAjAMBgorBgEEAYI3KgIBMAwGCisGAQQBgjcU AgIwCgYIKwYBBQUHAwEwDAYKKwYBBAGCNwoDBDAKBggrBgEFBQgCAjAMBgorBgEEAYI3FAIBMAsG CSsGAQQBgjcVBTCCAQIGA1UdHgEB/wSB9zCB9KCB8TAmoCQGCisGAQQBgjcUAgOgFgwULm50ZGV2 Lm1pY3Jvc29mdC5jb20wJqAkBgorBgEEAYI3FAIDoBYMFEBudGRldi5taWNyb3NvZnQuY29tMCug KQYKKwYBBAGCNxQCA6AbDBkubnRkZXYuY29ycC5taWNyb3NvZnQuY29tMCugKQYKKwYBBAGCNxQC A6AbDBlAbnRkZXYuY29ycC5taWNyb3NvZnQuY29tMAKBADAWghQubnRkZXYubWljcm9zb2Z0LmNv bTAbghkubnRkZXYuY29ycC5taWNyb3NvZnQuY29tMASkAjAAMAKGADAChwAwbAYDVR0lBGUwYwYI KwYBBQUHAwQGCCsGAQUFBwMCBgorBgEEAYI3KgIBBgorBgEEAYI3FAICBggrBgEFBQcDAQYKKwYB BAGCNwoDBAYIKwYBBQUIAgIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBTA2BgkrBgEEAYI3FQcEKTAn Bh8rBgEEAYI3FQiN4NGJToTXnMMHhqaG+xyP07+mFQEZAgFuAgEAMAsGA1UdDwQEAwIBhjAPBgNV HRMBAf8EBTADAQH/MB0GA1UdDgQWBBSJxTTWfvOjehK5aUoXNz82pJexAjAdBgkrBgEEAYI3FAIE EB4OAEMAcgBvAHMAcwBDAEEwHwYDVR0jBBgwFoAU4r4DcNWLINJBRGqv5sh3cVolAB8wggFpBgNV HR8EggFgMIIBXDCCAVigggFUoIIBUIZkaHR0cDovL3doaWNhMi5udGRldi5jb3JwLm1pY3Jvc29m dC5jb20vQ2VydEVucm9sbC9OVERFViUyMEludGVybWVkaWF0ZSUyMFN1Ym9yZGluYXRlJTIwV2hp Y2EyKDQpLmNybIaB52xkYXA6Ly8vQ049TlRERVYlMjBJbnRlcm1lZGlhdGUlMjBTdWJvcmRpbmF0 ZSUyMFdoaWNhMig0KSxDTj13aGljYTIsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz LENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9bnRkZXYsREM9Y29ycCxEQz1taWNyb3Nv ZnQsREM9Y29tP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFzZT9vYmplY3RDbGFzcz1jUkxE aXN0cmlidXRpb25Qb2ludDCCAYYGCCsGAQUFBwEBBIIBeDCCAXQwgd0GCCsGAQUFBzAChoHQbGRh cDovLy9DTj1OVERFViUyMEludGVybWVkaWF0ZSUyMFN1Ym9yZGluYXRlJTIwV2hpY2EyLENOPUFJ QSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9u LERDPW50ZGV2LERDPWNvcnAsREM9bWljcm9zb2Z0LERDPWNvbT9jQUNlcnRpZmljYXRlP2Jhc2U/ b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTCBkQYIKwYBBQUHMAKGgYRodHRwOi8v d2hpY2EyLm50ZGV2LmNvcnAubWljcm9zb2Z0LmNvbS9DZXJ0RW5yb2xsL3doaWNhMi5udGRldi5j b3JwLm1pY3Jvc29mdC5jb21fTlRERVYlMjBJbnRlcm1lZGlhdGUlMjBTdWJvcmRpbmF0ZSUyMFdo aWNhMig0KS5jcnQwCQYHKoZIzjgEAwMvADAsAhRaLZp2dcfe6nBfd9/NNngDpZHeTQIULNKpFBWL jC3FWsWDtboFL51FNu8wgghxMIIHWaADAgECAgoptgwUAAAAAAvJMA0GCSqGSIb3DQEBBQUAMIGc MRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMRIwEAYDVQQKEwlNaWNyb3Nv ZnQxGzAZBgNVBAsTEkNvcnBvcmF0ZSBTZWN1cml0eTEfMB0GA1UEAxMWSVRHIE5UREVWIExldmVs IDIgQ0EgMTEhMB8GCSqGSIb3DQEJARYScGtpdEBtaWNyb3NvZnQuY29tMB4XDTAyMDkxOTIwMDI1 OFoXDTAzMDkxOTIwMDI1OFowgd0xEzARBgoJkiaJk/IsZAEZFgNjb20xGTAXBgoJkiaJk/IsZAEZ FgltaWNyb3NvZnQxFDASBgoJkiaJk/IsZAEZFgRjb3JwMRUwEwYKCZImiZPyLGQBGRYFbnRkZXYx EDAOBgNVBAsTB0lNLVNlbGYxFzAVBgNVBAsTDkxpZ2h0bHlNYW5hZ2VkMREwDwYDVQQLEwhMb3dU Q08tRTETMBEGA1UEAxMKUGF1bCBMZWFjaDErMCkGCSqGSIb3DQEJARYccGF1bGxlQHdpbmRvd3Mu bWljcm9zb2Z0LmNvbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAziH54lXGcWawhNm9t/AT rqP2Y98RXkGiaZpybBsokiHrJg8/MTQtvBj9KV/9mi11pZMk57BtSb7vBmW/Y3gFUYknaw/IRbPo xukV9pxj2AeVG30aqS6xwQLTlZvTgfosqoz/LNIauCvLAvnKHJVV9G0gyEOgEyol1ejZnZT3kZMC AwEAAaOCBPQwggTwMAsGA1UdDwQEAwIHgDBEBgkqhkiG9w0BCQ8ENzA1MA4GCCqGSIb3DQMCAgIA gDAOBggqhkiG9w0DBAICAIAwBwYFKw4DAgcwCgYIKoZIhvcNAwcwNQYDVR0lBC4wLAYIKwYBBQUH AwQGCisGAQQBgjcqAgEGCisGAQQBgjcUAgIGCCsGAQUFBwMCMB0GA1UdDgQWBBSveyBQJ+9rMmTI qxi3Yv0HJpQgBzAfBgNVHSMEGDAWgBSJxTTWfvOjehK5aUoXNz82pJexAjCCAY8GA1UdHwSCAYYw ggGCMIIBfqCCAXqgggF2hoHebGRhcDovLy9DTj1JVEclMjBOVERFViUyMExldmVsJTIwMiUyMENB JTIwMSxDTj1yZWRpdGdjYWIxMSxDTj1DRFAsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049 U2VydmljZXMsQ049Q29uZmlndXJhdGlvbixEQz1udGRldixEQz1jb3JwLERDPW1pY3Jvc29mdCxE Qz1jb20/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3Ry aWJ1dGlvblBvaW50hltodHRwOi8vcmVkaXRnY2FiMTEubnRkZXYuY29ycC5taWNyb3NvZnQuY29t L0NlcnRFbnJvbGwvSVRHJTIwTlRERVYlMjBMZXZlbCUyMDIlMjBDQSUyMDEuY3JshjZodHRwOi8v Y3JsLm1pY3Jvc29mdC5jb20vcGtpL21zY29ycC9jcmwvbnRkZXZsMmNhMS5jcmwwggG3BggrBgEF BQcBAQSCAakwggGlMIHSBggrBgEFBQcwAoaBxWxkYXA6Ly8vQ049SVRHJTIwTlRERVYlMjBMZXZl bCUyMDIlMjBDQSUyMDEsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp Y2VzLENOPUNvbmZpZ3VyYXRpb24sREM9bnRkZXYsREM9Y29ycCxEQz1taWNyb3NvZnQsREM9Y29t P2NBQ2VydGlmaWNhdGU/YmFzZT9vYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MIGN BggrBgEFBQcwAoaBgGh0dHA6Ly9yZWRpdGdjYWIxMS5udGRldi5jb3JwLm1pY3Jvc29mdC5jb20v Q2VydEVucm9sbC9yZWRpdGdjYWIxMS5udGRldi5jb3JwLm1pY3Jvc29mdC5jb21fSVRHJTIwTlRE RVYlMjBMZXZlbCUyMDIlMjBDQSUyMDEuY3J0MD4GCCsGAQUFBzAChjJodHRwOi8vd3d3Lm1pY3Jv c29mdC5jb20vcGtpL21zY29ycC9udGRldmwyY2ExLmNydDA8BgkrBgEEAYI3FQcELzAtBiUrBgEE AYI3FQiGuYgUhvKOIYedlRyF94Jk16ZvgXrojxqB1bUgAgFkAgEFMEMGCSsGAQQBgjcVCgQ2MDQw CgYIKwYBBQUHAwQwDAYKKwYBBAGCNyoCATAMBgorBgEEAYI3FAICMAoGCCsGAQUFBwMCMFMGA1Ud EQRMMEqgKgYKKwYBBAGCNxQCA6AcDBpwYXVsbGVAbnRkZXYubWljcm9zb2Z0LmNvbYEccGF1bGxl QHdpbmRvd3MubWljcm9zb2Z0LmNvbTANBgkqhkiG9w0BAQUFAAOCAQEAQFcbgYkE2up56ZijDN7P 10+ieuL+CSuIz2ZCgDwdyHQlcFBIdSSD7tJszEO28e37JvkbdGzFe9xUJJ5IAL7xiGs138IejcFT 2BHRKztV1NrE2bFsLtEwM35zf0PfWoR+gH6eFMB3u4bj6K1xUq/kT/5xZxlaYf6xpP/EJVlcK/+Y 78p/bLVNGk3hP8j0NBsa02OFTEcoCBpDh9D4tV1vZ3kZZBTYCwVm3CWDwPFgW877gGS+kJlfN4/b EbACsljgXAqtt5HcImnrqtEptfkwa+gY7dZbcm9QU4HZOSQCiJR0NDj6gCAa47kxncv6OoJwUe+y 4zZA5SEZMzIH2jYAfjGCAvIwggLuAgEBMIGrMIGcMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYD VQQHEwdSZWRtb25kMRIwEAYDVQQKEwlNaWNyb3NvZnQxGzAZBgNVBAsTEkNvcnBvcmF0ZSBTZWN1 cml0eTEfMB0GA1UEAxMWSVRHIE5UREVWIExldmVsIDIgQ0EgMTEhMB8GCSqGSIb3DQEJARYScGtp dEBtaWNyb3NvZnQuY29tAgoptgwUAAAAAAvJMAkGBSsOAwIaBQCgggGcMBgGCSqGSIb3DQEJAzEL BgkqhkiG9w0BBwEwHAYJKoZIhvcNAQkFMQ8XDTAzMDQxNjE3Mzg0N1owIwYJKoZIhvcNAQkEMRYE FHE7e03e8jQQQV8hXtuhMJfnzlK9MGcGCSqGSIb3DQEJDzFaMFgwCgYIKoZIhvcNAwcwBwYFKw4D AhowDgYIKoZIhvcNAwICAgCAMA0GCCqGSIb3DQMCAgFAMAcGBSsOAwIHMA0GCCqGSIb3DQMCAgEo MAoGCCqGSIb3DQIFMGgGCSsGAQQBgjcQBDFbMFkwSzELMAkGA1UEBhMCVVMxEjAQBgNVBAoTCU1p Y3Jvc29mdDEOMAwGA1UECxMFTnRkZXYxGDAWBgNVBAMTD05UREVWIElTU1VFMyBDQQIKFYLbsAAC AB0MsjBqBgsqhkiG9w0BCRACCzFboFkwSzELMAkGA1UEBhMCVVMxEjAQBgNVBAoTCU1pY3Jvc29m dDEOMAwGA1UECxMFTnRkZXYxGDAWBgNVBAMTD05UREVWIElTU1VFMyBDQQIKFYLbsAACAB0MsjAN BgkqhkiG9w0BAQEFAASBgA8DyRsJ5d5r0Xl3PE8go4WzixWjx34iBg2wpLOu5Z/OjcOwSRsyhj3T ckKKEfFlSDXKWUuiF4SK/QcpiqMRAo4YMibtrfgty6IqpCoeHoptjDT+RN+3TFN1h2H3CxgvfGB6 waRTuqrVQXSeG7PEYSx1qc7TeF9EOZB3Q/D0vGrHAAAAAAAA ------=_NextPart_000_0036_01C30404.5CBD5C80-- Actual Results: The results are unpredictable depending on the e-mail. Memory is being overwritten. Sometimes mozilla crashes. Sometimes it refuses to shutdown. Sometimes it becomes completely unresponsive. Expected Results: mozilla should have downloaded the e-mail and allowed it to be read.
204,994
1,843,790
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4b) Gecko/20030504 Mozilla Firebird/0.6 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4b) Gecko/20030504 Mozilla Firebird/0.6 attachment 116918 on bug 196977 is a bmp that crashed firebird. Reproducible: Always Steps to Reproduce: 1. http://bugzilla.mozilla.org/attachment.cgi?id=116918&action=view Actual Results: crash Expected Results: viewed the bmp, or shown it as corrupt. IE shows the bmp as corrupt. not many apps can view that bmp correctly. TB19928957E TB19929076Y
205,129
1,844,927
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.3a) Gecko/20021207 Phoenix/0.5 Build Identifier: Phoenix nightly 04-May-2003 09:14 When the above problem occurs with phoenix, at the same time other browsers have no difficulty opening www.mozilla.org Reproducible: Always Steps to Reproduce: 1.click on phoenix.exe in the phoenix installation directory 2. 3. Actual Results: Precisely what I wrote above Expected Results: phoenix should have open the stat up URL (as stable phoenix-0.5 does)
192,272
1,737,233
When Mozilla is trying to resolve a cranky DNS (bug 192271), if connection is attempted to another site in another tab or in MailNews that connection will pause until the recalcitrant DNS query completes. Sometimes, Mozilla will crash if Quit in this state. Steps to reproduce: 1. Attempt to access <http://www.imagemagick.org/> using the DNS <206.13.28.12> 2. Attempt to access <> in another tab 3. Observe that access attempt "pause" while the first access hangs 4. Attempt to access an SSL IMAP account 5. Quit Mozilla. Expected results: Mozilla should abort all the connection attempts and quit successfully. Actual results: Mozilla crashes sometimes. Reproducibility: Tried, could not reproduce.
192,478
1,738,916
User-Agent: Mozilla/5.0 (X11; U; Linux i686; de-AT; rv:1.3b) Gecko/20030201 Build Identifier: Mozilla/5.0 (X11; U; Linux i686; de-AT; rv:1.3b) Gecko/20030201 I found a document (using_priv_help.html), which freezes the Mozilla window when asking for the sourcecode of a selected part. Reproducible: Always Steps to Reproduce: 1. Start Mozilla 2. Open URL as given above 3. Mark section 'Using the Cookie Manager ... ... and sends them back to the web site.' 4. Right-click and choose 'View Selection Source' Actual Results: Mozilla windows dont work, they are not addressable and display nothing. Mozilla process has to be terminated. Expected Results: Show the source code of the selected section.
192,589
1,739,886
User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US; rv:1.3a) Gecko/20021212 Build Identifier: MachO nightly of today The MachO nightly installs and runs, very fast, but when you have to check the mail or navigate, it waits indefinitely for a connection which does not arrive. If I run other browsers, I can navigate. Is there something special to set? Reproducible: Always Steps to Reproduce: 1. 2. 3.
193,710
1,748,531
User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.3b) Gecko/20030210 Build Identifier: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.3b) Gecko/20030210 I will attach a small HTML file which consistently crashes Mozilla. It is zipped because the crash does not occur when the file is read over the network. Download the zipped HTML file and open it locally. Disclaimer: I know nothing about javascript. I was working on a test case for bug 167499. Reproducible: Always Steps to Reproduce: 1. Download crash.zip 2. Open crash.html locally 3.
193,847
1,749,758
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.3b) Gecko/20030210 Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.3b) Gecko/20030210 On the page <http://research.salutia.com/tiki/tiki-view_faq.php?faqId=1>, clicking the "show comments" link at the bottom immediately crashes the browser with "pure virtual method called", and no talkback window. Reproducible: Always Steps to Reproduce: See details. Actual Results: Immediate crash with "pure virtual method called". Expected Results: Show comments.
199,966
1,800,113
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.4a) Gecko/20030331 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.4a) Gecko/20030331 I took Eric's demo and adapted the css as follows: div#content { position: absolute; color: inherit; /* http://jigsaw.w3.org/css-validator wants this */ background: rgb(233,233,233) url(hands-grey.gif) 0.0cm 2.4cm no-repeat fixed; ... Reproducible: Always Steps to Reproduce: 1. load a page based on the css (I do that on my harddrive as file:// not http://) 2. rename hands-grey.gif to hands-grey0.gif in the file explorer 3. click on reload (a few times e.g. 3) Actual Results: the browser crashes Expected Results: the background image would disappear or an error would be displayed
200,498
1,804,370
Steps to reproduce: Install Mozilla 4/3 nightly Check TEMP directory (see bug 197847) notice bookmarks.html and bookmarks-1.html files Install commercial 4/3 nightly (testing GRE) check TEMP again now bookmarks-2 and bookmarks-3 files show up did more installs and get 2 copies of the bookmarks file each time adding ssu in case he is aware of bookmark changes during installation
200,774
1,806,691
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4a) Gecko/20030404 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4a) Gecko/20030404 I have observed this with 1.3 and the 4 April 2003 nightly. It occurs with a page with a fixed DIV at the top, and lots of text beneath, enough that a printout would be 2 pages long (checked in IE). Doing a Print Preview crashes the browser. If the text below the fixed DIV is trimmed down to one page, the Print Preview works. Reproducible: Always Steps to Reproduce: 1. Load testcase.html. 2. Select File->Print Preview. 3. Actual Results: The "Preparing Print Preview" alert appears, and after several seconds, Mozilla crashes. Expected Results: Mozilla should show the print preview. Hopefully it will be rendered correctly, but the crash is the immediate concern. OS is Windows XP SP1. Talkback ID TB18827459G
197,153
1,777,393
User-Agent: Mozilla/5.0 Galeon/1.2.6 (X11; Linux i686; U;) Gecko/20020830 Build Identifier: Mozilla/5.0 Galeon/1.2.6 (X11; Linux i686; U;) Gecko/20020830 80: my $filename = "data/webdot/$$.dot"; 81: my $urlbase = Param('urlbase'); 82: 83: open(DOT, ">$filename") || die "Can't create $filename"; shouldn't we check for '-e $filename' before we clobber it? something like: my $filename; for (my $i = $$;; $i++) { $filename = "$i.dot"; last unless (-e $filename); } i can't figure out exactly how the webdot directories are created, but in my setup group has rwx, so the possibility exists of someone doing something bad. Reproducible: Always Steps to Reproduce: 1. 2. 3.
194,187
1,752,788
User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; de-AT; rv:1.2.1) Gecko/20021204 Build Identifier: Mozilla/5.0 (X11; U; Linux x86_64; de-AT; rv:1.2.1) Gecko/20021204 jsemit.h has this: #define BITS_PER_PTRDIFF (sizeof(ptrdiff_t) * JS_BITS_PER_BYTE) #define BITS_PER_BPDELTA (BITS_PER_PTRDIFF - 1 - JT_UNTAG_SHIFT) #define BPDELTA_MAX ((ptrdiff_t)(JS_BIT(BITS_PER_BPDELTA) - 1)) And jstypes.h has: /*********************************************************************** ** MACROS: JS_BIT ** JS_BITMASK ** DESCRIPTION: ** Bit masking macros. XXX n must be <= 31 to be portable ***********************************************************************/ #define JS_BIT(n) ((JSUint32)1 << (n)) #define JS_BITMASK(n) (JS_BIT(n) - 1) Which of course leads to gcc warning: warning: left shift count >= width of type when actually using BPDELTA_MAX, as shifting a JSUint32 by 64 bits definitely exceeds its size. I'd propose to change the definition of BPDELTA_MAX to #define BPDELTA_MAX ((ptrdiff_t)(((prtdiff_t)1 << BITS_PER_BPDELTA) - 1)) Reproducible: Always Steps to Reproduce: Just look at the code :)
194,493
1,755,594
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.3b) Gecko/20030221 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.3b) Gecko/20030221 In the page http://www.futurecrew.com/skaven/, the image changing (onmouseover) code crashes the mozilla. When using IE6.0SP1 the page works fine. I don't know whether this is a javascript or layout problem. Reproducible: Always Steps to Reproduce: 1.Open page http://www.futurecrew.com/skaven/ 2.Move mouse cursor on and around the images 3.The mozilla crashes Actual Results: The mozilla crashes instead of changing the picture. Expected Results: Change the picture layout using javascript or don't do anything (if the script language is not compatible with mozilla one) Mozilla version 1.3.20030.22105, module gklayout.dll versio 1.3.20030.22105, Address 0x000c3af5.
194,708
1,757,420
User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.3b) Gecko/20030223 Build Identifier: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.3b) Gecko/20030223 When entering molly.island.liu.se into the location bar all I get is: "Redirection limit for this URL exceeded" And the page is not displayed. But if i enter https:// in front the page loads ok. The actual server has a redirect to the HTTPS-port but this doesn't work. It has worked in all earlier mozillabuilds and work in all other browsers but Mozilla doesn't seem to follow the redirect. Reproducible: Always Steps to Reproduce: 1. Enter molly.island.liu.se into the location bar 2. 3. Actual Results: Mozilla gets into a loop and then says: "Redirection limit for this URL exceeded." Expected Results: Follow the redirect and load the correct page.
195,412
1,763,613
Build: 2003-02-27-09 Platform: All Expected Results: No crash should occur if the image is deleted while resizing What I got: A crash occur if the resized image is deleted and the user mouses up Steps to reproduce: 1) Insert a image 2) Click on in to display it's handles 3) Start to resize image. While resizing, press the delete key or any key that replaces it (A-Z, 0-9). 4) After the image has been replaced or deleted, mouse up. 5) A crash occurs.