Bug ID
int64 961
1.91M
| Comment ID
int64 3.98k
17.1M
| Author
stringlengths 8
48
| Comment Text
stringlengths 1
64.3k
⌀ |
---|---|---|---|
174,123 | 1,585,661 |
Steps to reproduce (I'm using a Linux debug build):
1. start browser, using XPCOM_MEM_LEAK_LOG=leak.log in the environment
2. Press Ctrl-L to select in URL bar
3. Type about:blank
4. Hit enter.
(The last step may not be needed based on the leak logs I'm seeing.)
This leaks a bunch of EditTxn objects, which owns an nsRange, which onws a
content node, which owns some CSS style rule stuff.
I looked at the refcount balance on the first 2 of the EditTxn objects leaked
(serial numbers 5 and 6). They're both EditAggregateTxn objects, and they're
both leaked because they were added to an nsSupportsArray in
EditAggregateTxn::AppendChild and never released from that array. This makes me
wonder whether there's a cycle of EditAggregateTxn objects. It's also possible
that there's a larger aggregate (created later) that was leaked some other way,
but I didn't have the patience to look at the refcount logs for all 16 of the
leaked objects. At least not yet...
|
|
174,634 | 1,589,948 |
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.2b) Gecko/20021015
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.2b) Gecko/20021015
The URL uses a certificate chain: CA -> SSL signing -> certificate. This chain
is recognized in previous versions of Mozilla, but in the current trunk the
certificate wont be recognized as valid even though the CA is imported.
The URL is using a SSL certificate certified with "UNIT Best-Effort CA 2nd SSL
signing certificate", which in turn is based on "UNIT Best-Effort CA Root
Certificate". The latter is documented and can be found at
http://www.ida.liu.se/ca/.
Reproducible: Always
Steps to Reproduce:
1. Import CA cert from http://www.ida.liu.se/ca/beca-root-pem.crt
2. Try https://www.ida.liu.se/
Actual Results:
"Unable to verify the identity of www.ida.liu.se as a trusted site"
Expected Results:
Opened the page in secure mode.
With CA imported in profile, tested with:
release 1.0 - OK
trunk 20020730 - OK
release 1.2a - OK
trunk 20021001 - Fails
trunk 20021015 - Fails
|
|
176,125 | 1,602,185 |
User-Agent: Mozilla/5.0 (Windows; U; Win95; en-US; rv:1.2b) Gecko/20021016
Build Identifier: Mozilla/5.0 (Windows; U; Win95; en-US; rv:1.2b) Gecko/20021016
I give the login URL; the problem is the same inside the site at least.
Reproducible: Always
Steps to Reproduce:
1. Go to specified URL.
2. Click on "Valider".
3. Acknowledge the dialog box (which says that your number is wrong)
Actual Results:
*View Frame Info says that the URL is "javascript:if
(testform01(document.form01) == true) {document.form01.submit();}"
*View Frame Source is blank.
*Mozilla shows "true" instead of the (previous) frame.
Expected Results:
Supposedly:
The page should not have changed;
And I should be able to "correct" the wrong number in the fields.
I think this bug did not exist before v1.2b !?
Workaround:
Press "Back" to return to the correct frame.
|
|
177,620 | 1,614,118 |
BUILD: Linux build 2002-10-25-08.
STEPS TO REPRODUCE:
1) Load bugzilla attachment page
2) Tab to "patch" checkbox
3) Hit "space"
4) Try to tab to submit button
ACTUAL RESULTS: Lots of tabs needed
EXPECTED RESULTS: disabled radio buttons not in tab order
|
|
160,065 | 1,471,428 |
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.0) Gecko/20020529
BuildID: 2002052918
An attempt to dynamically add an @import rule (for the purposes of 'dynamically
importing' a style sheet) fails on Mozilla 1.0 Final.
Reproducible: Always
Steps to Reproduce:
1.Open the attached 'test_dyn_import.html' file.
2.Go to the setup() function in the <head> and make sure the 'useCSSImport' flag
is set to true.
3.Open the html file in a Mozilla 1.0 Final build. The text should be colored
red. It won't be.
4.Go back into the html file and set the 'useCSSImport' flag to false.
5. Open the html file in a Mozilla 1.0 Final build. The text will be colored red
this time.
Actual Results: The text did not take on the color specified in the separate
external style sheet file.
Expected Results: The text should take on the color specified in the separate
external style sheet file.
|
|
162,090 | 1,490,632 |
When using expanded system bar at bottom of screen, Mozilla window is partially
obscured behind system bar. This also obscures any horizontal scroll bar that
might be at bottom on window within main window. Makes for difficulty in reading
even the Bugzilla pages. Same problem may exist for system bar in other locations.
|
|
170,588 | 1,559,064 |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.1) Gecko/20020826
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.1) Gecko/20020826
Ok this is a weird one. If you have an iframe on a page and inside that iframe
you load a frameset with one or more frames. If that iframe is initially set to
dispaly:none the contents of the frameset will not be loaded. If you
subsequently set the display value to '' the contents of the frameset will then
load at this point. What worse is if you repeatedly set and unset the dispaly
value the contents get reloaded everytime. This is important if you are trying
to build dynamic widgets and you want to make sure the whole thing is finished
loading before displaying it to the user. You should be able to load things
into hidden frames like this and then display them later with out reloading the
pages.
Reproducible: Always
Steps to Reproduce:
1.Create a page with an iframe and set style="display:none"
2.set src of iframe to a frameset document.
3.use dom inspector to explore loaded tree or set an onload event on one of the
inner frames loaded by frameset so you can see that the pages all loaded.
Actual Results:
inner frames do not load.
Expected Results:
all frames should have loaded.
|
|
171,924 | 1,569,216 |
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020827
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020827
The <form> tag no longer behaves properly when no action is specified and the
page has a base href. Perhaps according to someone's interpretation of the
spec, this is an improvement, but my code depends on the behavior existant in
IE, and Netscape < 7
The behavior I'm used to is that a <form> with no action submits to itself,
regardless of the existance of a <base href> tag. But the new version of
Netscape (and mozilla 1.0+) submits to the base href instead of the original
document.
I didn't worry about it when I saw it in Mozilla since I primarilly use Linux
and Mozilla and I'm used to bugs, but now that Netscape 7.0 is released, I'm
getting reports of bugs from end users.
Another extra-weird thing about this is it works fine and as expected if the
base href does not begin with http://.
Reproducible: Always
Steps to Reproduce:
1. Create a page like http://reliv.stage.icentris.com/netscapeBug.htm
2. View it, submit the form
3. If you go to
http://reliv.stage.icentris.com/netscapeBug.htm?testname=testvalue
all is well, if you go to
http://reliv.stage.icentris.com/help/wrong/place?testname=testvalue
you've got a problem.
Actual Results:
In Mozilla < 1 and Netscape <= 6.2, I go to
http://reliv.stage.icentris.com/netscapeBug.htm?testname=testvalue
In Mozilla 1+ and Netscape 7.0, I go to
http://reliv.stage.icentris.com/help/wrong/place?testname=testvalue
Expected Results:
When there's no action, submit form to the document rather than the base href.
|
|
172,956 | 1,576,623 |
User-Agent: Mozilla/5.0 (Windows; U; Win95; en-US; rv:1.2b) Gecko/20021006
Build Identifier: Mozilla/5.0 (Windows; U; Win95; en-US; rv:1.2b) Gecko/20021006
When surfing, the backspace key does not return the browser to the previous page.
Reproducible: Always
Steps to Reproduce:
1. Open Mozilla
2. Click on links or type address in address bar to get to another web page
3. Press backspace
Actual Results:
Nothing
Expected Results:
Returned to the previous page, equivalent to hitting the back button.
|
|
152,275 | 1,402,321 |
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1a) Gecko/20020610
BuildID: 20002061108
When you request a document to be saved to disk Mozilla will specify that GZIP
encoding is allowed but not ungzip the document before saving. For example,
downloading a ZIP file off my web server will cause the store ZIP file to
actually be a valid GZIP compressed ZIP file. Mozilla should either not allow
GZIP encoding or it should decompress it automatically.
Reproducible: Always
Steps to Reproduce:
1.run a server that will GZIP pretty much anything that the client allows
2.watch in horror as the download doesn't work!
Actual Results: You have to rename the ZIP file to .ZIP.GZ then ungzip and
unzip... pain!
Expected Results: Should be a valid ZIP file (or whatever you saved!)
This is running under a personal webserver I wrote. I know it works mostly
because WGET will not specify GZIP encoding and the file gets downloaded intact.
|
|
153,519 | 1,413,246 |
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (Windows; U; Win 9x 4.90; en-US; rv:1.0.0) Gecko/20020530
BuildID: 2002053012
The JavaScript in the above example loads an XML file of employees. The script
keeps references to all the "person" elements in the XML file, but does not keep
a reference the the top document. It then adds the ids of the "person" elements
to a select list, and when you select an id from the window, the name gets
written into the "text" input area.
Reproducible: Always
Steps to Reproduce:
1. Open the above URL.
2. Wait for the id's "1", "2", and "3" to appear in the select menu.
3. Select ids. When an id is selected, Mozilla should display a name in the
"text" field.
Actual Results: Sometimes, Mozilla works the first few times, but then fails.
Often, it files right off the start. Each new id selection should show a
different name (1="Monty Burns", 2="Wayland Smithers", and 3="Carl Carlson".)
Expected Results: When an id is selected, Mozilla should display a name in the
text field.
There is a relatively simple work-around - keep a global reference to the
document that was loaded. In this example, uncomment the lines:
//var parsedDoc;
and
//parsedDoc=xmldoc;
and the file works.
It's not clear to me at all which part of the product is at fault here - is it
JavaScript that is doing the wrong thing, or the DOM handlers? Obviously, there
are no further references to the document, so JavaScript thinks it can delete
the document, even though it still has references to the *internal* elements of
the document.
|
|
153,995 | 1,416,383 |
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.1a+) Gecko/20020624
BuildID: 2002062408
When a form contains a table, and that table contains a submit button, the
button can bleed off of the edge of the table.
Table borders draw over the button and look funny.
You can't click on the button in the space that is not inside the table, even
though the button shows. This is true if borders are visible or not. Having
the borders visible makes it much more obvious what is going on.
This happened on a page on our private intranet; I have reduced it to a much
smaller form and removed any possibly proprietary data. I will attach the HTML
for this form to the bug.
This HTML validates with the W3C's validator and looks fine in other browsers.
The paint bug is strange, but the inability to click on the bottom third of the
button is particularly annoying.
Reproduced in Mozilla 1.0 release and in build 2002062408.
If there is any other information I can provide, I am happy to do so.
Reproducible: Always
Steps to Reproduce:
1. View HTML with <form><table><submit></table></form> construct. Sample included.
Actual Results: Form draws, but button bleeds out of form, and part of it
cannot be clicked.
Expected Results: Form should contain all of the button, and it should all be
clickable.
I will attach a sample file containing HTML to reproduce this.
|
|
165,823 | 1,521,338 |
[Build-ID: 2002-08-30-22]
As soon as I start Customize Toolbar, either by right-clicking on the toolbar or
by selecting it under the View menu, the current page goes blank (white).
Reproducable: always
Steps to reproduce:
1) Go to a URL
2) Open Customize Toolbar
Result: current page goes blank.
|
|
166,189 | 1,523,673 |
Hi,
Steps to reproduce the bug :
----------------------------
- Assume the basedn to be ( ou=a, o=b, c=z )
- Let the 'valid' filter be "(&(|(category=1)(category=all)))"
- We get proper results for this filter. When we add 1 or 2 more
'parentheses' to the filter string, we get appropriate error
string "ldap_search_ext_s() failed Bad search filter"
modified filter = (&(|(category=1)(category=all)))))
- When we add any more 'parentheses' to this filter the SDK
we get a segmentation fault.
modified filter = (&(|(severity=1)(severity=all)))))))
gdb trace for the same :
------------
#0 0x400506bd in ber_put_seqorset (ber=0x804eae0) at encode.c:431
#1 0x40050fb4 in ber_printf (ber=0x804eae0, fmt=0x40055dcf "]") at
encode.c:647
#2 0x400453cb in put_filter (ber=0x804eae0, str=0x804f1c2 "))") at
search.c:541
#3 0x40044dec in nsldapi_build_search_req (ld=0x804e5a8, base=0x804d658
-------------
Please confirm if this is a bug.
Thanks and regards,
Devendra Badhani
|
|
166,340 | 1,524,630 |
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1b) Gecko/20020902
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1b) Gecko/20020902
For me typeaheadfind won't find any of (at least) abgiloruz1 as the first
character, in full search mode.
see bug 30088 comment 196
Reproducible: Always
Steps to Reproduce:
I: 1. user_pref("accessibility.typeaheadfind", true);
2. user_pref("accessibility.typeaheadfind.linksonly", false);
3. say branch
II: 1. user_pref("accessibility.typeaheadfind", true);
2. user_pref("accessibility.typeaheadfind.linksonly", true);
3. say 'branch
Actual Results:
not finding 'b', 'r', 'a'; hilight nch
Expected Results:
find & hilight branch
linux trunk cvs 2002-09-02
|
|
167,493 | 1,534,083 |
User-Agent: Mozilla/4.75 [en] (X11; U; Linux 2.2.12 i386)
Build Identifier: Mozilla/5.0 (X11;U; FreeBSD i386;en-US;rv:1.0rc1) Gecko/200020905
If I make my own XML element in the HTML <HEAD> of a frameset it isn't
recognized/created and I can't do any XBL binding to it...
<HTML>
<HEAD>
<MyElement Help> </MyElement>
</HEAD>
<Frameset>
<frame>
</frameset>
</html>
Reproducible: Always
Steps to Reproduce:
1.Load a HTML frameset document with a user defined element in the<HEAD>
2.Try to access the element or do some XBL binding...element wasn't created.
Actual Results:
Nothing
Expected Results:
Created the user defined element in the DOM model and call the XBL constructor.
|
|
167,615 | 1,535,135 |
1. download the AOL CRL from
http://certificates.netscape.com/getCRL?issuepoint=MasterCRL&op=importCRL and
install it into Mozilla / Netscape 7
2. Send encrypted email to an employee
3. witness the following crash :
pk11_FindCrlAttribute(PK11TokenObjectStr * 0x027cf780, unsigned long 0x00000011)
line 1004 + 5 bytes
pk11_FindTokenAttribute(PK11TokenObjectStr * 0x027cf780, unsigned long
0x00000011) line 1111 + 13 bytes
pk11_FindAttribute(PK11ObjectStr * 0x027cf780, unsigned long 0x00000011) line
1141 + 22 bytes
pk11_objectMatch(PK11ObjectStr * 0x027cf780, CK_ATTRIBUTE * 0x0012dbd4, int
0x00000001) line 2340 + 22 bytes
pk11_tokenMatch(PK11SlotStr * 0x027a0198, SECItemStr * 0x0012da40, unsigned long
0x50000000, CK_ATTRIBUTE * 0x0012dbd4, int 0x00000001) line 2752 + 17 bytes
pk11_crl_collect(SECItemStr * 0x0012da58, SECItemStr * 0x0012da40, int
0x00000004, void * 0x0012da7c) line 3585 + 31 bytes
nsslowcert_TraverseDBEntries(NSSLOWCERTCertDBHandleStr * 0x027f9798, int
0x00000004, int (SECItemStr *, SECItemStr *, int, void *)* 0x0392a769
pk11_crl_collect(SECItemStr *, SECItemStr *, int, void *), void * 0x0012da7c)
line 4006 + 19 bytes
pk11_searchCrls(PK11SlotStr * 0x027a0198, SECItemStr * 0x0012dadc, int
0x00000000, unsigned long 0x0000000d, PK11SearchResultsStr * 0x02817d00,
CK_ATTRIBUTE * 0x0012dbd4, unsigned long 0x00000001) line 3621 + 20 bytes
pk11_searchTokenList(PK11SlotStr * 0x027a0198, PK11SearchResultsStr *
0x02817d00, CK_ATTRIBUTE * 0x0012dbd4, long 0x00000001, int * 0x0012db78, int
0x00000000) line 4261 + 33 bytes
NSC_FindObjectsInit(unsigned long 0x01000001, CK_ATTRIBUTE * 0x0012dbd4,
unsigned long 0x00000001) line 4306 + 29 bytes
pk11_FindObjectByTemplate(PK11SlotInfoStr * 0x02b24fd8, CK_ATTRIBUTE *
0x0012dbd4, int 0x00000001) line 176 + 23 bytes
pk11_getcerthandle(PK11SlotInfoStr * 0x02b24fd8, CERTCertificateStr *
0x02b60988, CK_ATTRIBUTE * 0x0012dbd4, int 0x00000001) line 1829 + 17 bytes
PK11_FindObjectForCert(CERTCertificateStr * 0x02b60988, void * 0x02804d40,
PK11SlotInfoStr * * 0x0012dc08) line 2447 + 25 bytes
PK11_FindKeyByAnyCert(CERTCertificateStr * 0x02b60988, void * 0x02804d40) line
2476 + 17 bytes
NSS_CMSSignerInfo_Sign(NSSCMSSignerInfoStr * 0x02aa8ea8, SECItemStr *
0x02acfba8, SECItemStr * 0x038dc7c4) line 140 + 19 bytes
NSS_CMSSignedData_Encode_AfterData(NSSCMSSignedDataStr * 0x02aa8df0) line 271 +
26 bytes
nss_cms_after_data(NSSCMSEncoderContextStr * 0x02aa11a0) line 377 + 12 bytes
nss_cms_encoder_notify(void * 0x02aa11a0, int 0x00000000, void * 0x02aa8e2c, int
0x00000004) line 208 + 9 bytes
sec_asn1e_notify_after(sec_EncoderContext_struct * 0x02b5e8c0, void *
0x02aa8e2c, int 0x00000004) line 180 + 23 bytes
sec_asn1e_next_in_sequence(sec_asn1e_state_struct * 0x02b5eaa8) line 1131 + 25 bytes
SEC_ASN1EncoderUpdate(sec_EncoderContext_struct * 0x02b5e8c0, const char *
0x00000000, unsigned long 0x00000000) line 1213 + 9 bytes
NSS_CMSEncoder_Finish(NSSCMSEncoderContextStr * 0x02aa11a0) line 731 + 15 bytes
PIPNSS! 60a6a6d2()
MSGSMIME! 609620bb()
MSGSMIME! 60961b27()
MSGCOMPO! 60843830()
MSGCOMPO! 60846afe()
MSGCOMPO! 60847308()
MSGCOMPO! 608485fd()
MSGCOMPO! 60837e04()
MSGCOMPO! 6083825a()
XPCOM! 611774d0()
XPC3250! 60d5239d()
XPC3250! 60d5591c()
JS3250! 60e4a7f8()
JS3250! 60e4f898()
JS3250! 60e4a835()
XPC3250! 60d4fdc6()
XPC3250! 60d4e745()
XPCOM! 611769a7()
XPCOM! 611774d0()
XPC3250! 60d5239d()
XPC3250! 60d5591c()
JS3250! 60e4a7f8()
JS3250! 60e4f898()
JS3250! 60e4a835()
JS3250! 60e4aacf()
JS3250! 60e34957()
JSDOM! 606f3ce6()
JSDOM! 6070e502()
GKCONTENT! 60308df4()
GKCONTENT! 6030a0b5()
GKCONTENT! 602ced32()
GKLAYOUT! 603d6ea0()
GKLAYOUT! 60434966()
GKLAYOUT! 60434799()
GKLAYOUT! 603d6e16()
GKLAYOUT! 603d6ceb()
GKCONTENT! 6030e492()
GKCONTENT! 6030d248()
GKLAYOUT! 603d6e3e()
GKLAYOUT! 603d6c5d()
GKVIEW! 60547853()
GKVIEW! 6054130d()
GKVIEW! 60541b5d()
GKWIDGET! 60554792()
GKWIDGET! 60557d86()
GKWIDGET! 60558176()
GKWIDGET! 60554cae()
USER32! 77e11b60()
USER32! 77e11cca()
USER32! 77e183f1()
APPSHELL! 600d7232()
NETSCP! 00401bdf()
NETSCP! 004038b6()
KERNEL32!
|
|
154,634 | 1,422,130 |
if you collapse the message pane, the security status can be misleading
steps to reproduce:
open mail, with the message pane open.
view a signed message.
hide the message pane
click on a message that isn't signed.
the security status will still show that the message is signed, and if you
click on the security status area, it will give you status about the signed
message, not the message you have currently selected in the thread pane.
I think the fix is to clear (or hide) the security status area when the message
pane is hidden.
|
|
155,025 | 1,425,558 |
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.1a+) Gecko/20020629
BuildID: 2002062908
After installing (with default options), when the installer runs the new
instance of Mozilla, at the time the splash screen is first displayed, all
desktop icons are rearranged down the LHS of the desktop. (as when one
right-clicks on the desktop and chooses Arrange Icons By->Name)
Reproducible: Always
Steps to Reproduce:
1.Install Mozilla from today's nightly build
I think this is new to the last few nightly builds; certainly 1.0 and Alpha
don't cause this to occur.
This occurs irrespective of whether there already is a Mozilla shortcut on the
desktop.
|
|
155,081 | 1,425,875 |
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.0) Gecko/20020629
BuildID: 2002062907
This page is a forumpage called "Programming & webscripting". It is set to "show
all topics" (which goes back to about december 2000).
As you can see when you go there; it only shows the header and footer of the
page but no contents whatsoever (takes 24 seconds).
It DOES work fine for other pages on the same forum which are set to "show all
topics".
If instead you choose e.g. "Non-Windows Operating Systems" from the "Selecteer
forum" drop-down menu and then select "Alle topics laten zien" from the adjacent
"Oudere topics" drop-down menu you'll see it works fine (go grab some coffee at
this point 'cuz on my Duron 900+DDR system it takes 4-5 minutes to render the
page ;)
It doesn't matter if you're logged-in or not.
Opera 5 and Netscape 4.77 both crash and burn after making my CPU load 100% for
a couple of minutes. Moz atleast hangs in there :)
This bug is very similar to bug #105952 and more-or-less so to #152745 and #138821
Reproducible: Always
Steps to Reproduce:
1.Go to the page
2.Follow above directions to compare to other pages
|
|
155,957 | 1,433,105 |
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.1a+) Gecko/20020627
BuildID: 2002062713
Adding a style such as input:before { content: "* "; } causes the text inputs to
break. On focusing one, the caret appears well before the input box itself.
Reproducible: Always
Steps to Reproduce:
1. Go to test url
2. Focus the text field
Actual Results: Caret appears before the box.
Expected Results: Caret should appear in the box.
|
|
157,444 | 1,445,930 |
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.1a+) Gecko/20020714
BuildID: 2002071420
When going to the listed URL, the page is rendered incorrectly (see attached
screen shot, gc-1stload.png) with some text appearing in the top bar. Reloading
the page solves the problem, though sometimes two reloads are necessary.
Also seen on fairly recent Windows builds.
Reproducible: Always
Steps to Reproduce:
1. Go to this URL: http://www.geekculture.dk/arkiv.php3?reviewid=1230
2. Notice how it looks bad
3. Push the reload button
4. Notice how it looks good (if not, repeat from 3)
If there is no problem on first load, try selecting other articles from
http://www.geekculture.dk/ and see if it happens. (Sorry, the contents of the
site are in Danish only.)
Actual Results: First load looks weird (as in gc-1stload.png), second load is
fine (as in gc-2ndload.png).
Expected Results: Even first load should look fine.
I have verified the source code on first and second load and this is the very
same code so the server is not generating different pieces of code.
This happens using both classic and modern theme. Not tested with other themes.
|
|
157,730 | 1,449,013 |
this works in Mozilla 1.0 RTM but reproducably fails in Mozilla 1.1a or 1.1b.
I can add the security module to the security device manager but going to a site
that uses cert-auth causes NSS to crash. I'm attaching the kernel dump.
|
|
158,049 | 1,452,503 |
A script can determine whether a variable is defined in another domain using
scope tricks. The attacker cannot find the value of the variable. The impact
is the same as in bug 59208: a script can find out whether you're logged into
nytimes.com and possibly other sites.
1. eval('amz_js_PopWin',frame)
- "Permission denied" error if amz_js_PopWin exists.
- Uncatchable "undefined" error if amz_js_PopWin does not exist. Note that this
method never looks in the attacker's context. (Why is the error uncatchable?)
2. with(frame)amz_js_PopWin
- "Permission denied" error if amz_js_PopWin exists.
- Catchable does-not-exist error, or the value in the attacker's context, if
defined in the attacker's domain.
|
|
238,807 | 2,111,396 |
User-Agent: Mozilla/5.0 (X11; U; HP-UX 9000/785; en-US; rv:1.4) Gecko/20031022
Build Identifier: Mozilla/5.0 (X11; U; HP-UX ia64; en-US; rv:1.6) Gecko/20040227
Encountered the following compilation error when
building Mozilla 1.6 on HP-UX platform with aCC compiler.
code
----
http://lxr.mozilla.org/mozilla/source/extensions/transformiix/source/xpath/txXPathTreeWalker.h
73 class txXPathTreeWalker
74 {
75 public:
76 explicit txXPathTreeWalker(const txXPathTreeWalker& aOther);
77 explicit txXPathTreeWalker(const txXPathNode& aNode);
78 ~txXPathTreeWalker();
compile
-------
http://lxr.mozilla.org/seamonkey/source/extensions/transformiix/source/xml/parser/txXMLParser.cpp
aCC -ext +DA1.1 +DS2.0 -o txXMLParser.o -c txXMLParser.cpp
error
-----
Error 513: "./../../xpath/txXPathTreeWalker.h", line 76 # 'explicit' may be used
only for convertin
g constructors.
explicit txXPathTreeWalker(const txXPathTreeWalker& aOther);
^^^^^^^^^^^^^^^^^
compiler
-------
aCC: HP ANSI C++ B3910B A.03.25
fix
--
The compiler error goes away on removing the 'explicit'
73 class txXPathTreeWalker
74 {
75 public:
76 txXPathTreeWalker(const txXPathTreeWalker& aOther);
77 txXPathTreeWalker(const txXPathNode& aNode);
78 ~txXPathTreeWalker();
Reproducible: Always
Steps to Reproduce:
On HP-UX platform using aCC compilers
1. Build extensions/transformiix/source/xml/parser
2. aCC -ext +DA1.1 +DS2.0 -o txXMLParser.o -c txXMLParser.cpp
Actual Results:
Error 513: "./../../xpath/txXPathTreeWalker.h", line 76 # 'explicit' may be used
only for convertin
g constructors.
explicit txXPathTreeWalker(const txXPathTreeWalker& aOther);
Expected Results:
Expected no compilation error.
|
|
238,945 | 2,112,153 |
User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.7b) Gecko/20040326
Build Identifier: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.7b) Gecko/20040326
The URL is the testcase of Bug 216065, crashing in Mozilla 1.5b when sorting the
table.
I couldn´t see the table in current nightly and Mozilla 1.7b, saw it in 1.4.1,
and saw it and tested sorting in Mozilla 1.6.
1.6 based Firefox 0.8 also shows the table, current nightly of Firefox doesn´t.
Javascript Console generates errors using Mozilla 1.7b, none with 1.4.1 or 1.6.
1.7b shows the table using a local copy of the website made with 1.6.
1.6 saves 10 files, 1.7b only 7 files.
Reproducible: Always
Steps to Reproduce:
1.Load URL using Mozilla 1.4.1, 1.6 or Firefox 0.8, see the table, save complete
2. Load URL using Mozilla 1.7b or current nightly, don´t see table, save complete
3. Using Mozilla 1.7b compare saved pages.
Actual Results:
Mozilla 1.4.1, 1.6 and Firefox 0.8 didn´t show errors on the Javascript Console,
displayed the table.
Mozilla 1.7b and current nightlies don´t show the table, show errors on the
Javascript Console, save less files than the older browsers, but display
correctly the files saved using the older browsers.
Expected Results:
no regression, working like Mozilla 1.4.1 and 1.6 or Firefox 0.8 resp.
|
|
238,989 | 2,112,460 |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6) Gecko/20040206 Firefox/0.8
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6) Gecko/20040206 Firefox/0.8
<b>text</b> more text comes out looking like this: textmore text.
<b>text </b> more text comes out correctly.
I've been having to use <span style="font-weight: bold;">text</span> more text
to make it look right.
Reproducible: Always
Steps to Reproduce:
1. Just try putting some whitespace after a </b> tag, it won't show up.
2. <b>text</b> more text comes out looking like this: textmore text.
Actual Results:
textmore text
Expected Results:
text more text
|
|
239,218 | 2,114,374 |
User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.6) Gecko/20040206 Firefox/0.8
Build Identifier: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.6) Gecko/20040206 Firefox/0.8
When any of the items in the Tools menu are open and focused (except the DOM
Inspector) the menubars don't work (nor do they appear to be disabled).
Reproducible: Always
Steps to Reproduce:
1.Go to the tools menu and select Downloads, JavaScript Console, or Page Info.
2.Go to the File menu and select New Window.
Actual Results:
Nothing happens.
Expected Results:
Created a new browser window and changed focus to the new window.
Related to bug 232673.
|
|
240,496 | 2,125,752 |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7b) Gecko/20040316
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7b) Gecko/20040316
A signed jar file served from an https site does not show the padlock icon in
the locked position and the Page Info "Security" tab indicates the connextion is
no secured.
Reproducible: Always
Steps to Reproduce:
1. Open URL
2. The jar file will display a Hello World alert
3: Click on the padlock icon to view the security page info.
Actual Results:
Web Site Identity Not Verified
--
Connection Not Encrypted
Expected Results:
Web Site Identity Verified
--
Connection Encripted...
|
|
232,272 | 2,057,375 |
User-Agent:
Build Identifier: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7a) Gecko/20040102 Firebird/0.7+
There should be a GUI method implemented for the management of search engine
extensions in the toolbar. It is a straightforward process to add new ones using
the "Add New Engines" option in the drop-down menu, but there is presently no
way to use the GUI to manage installed plugins. Currently, the files have to be
removed manually from the searchplugins folder through the filesystem, which
works fine but is a hassle. Instead of an "add engines" menuitem which goes
directly to Mycroft, a GUI interface should be implemented, perhaps under "Web
Features" which could have controls for adding (which would go to Mycroft),
removing (would work like the extensions list - click on one and click remove to
get rid of it). Finally, search engines should be stored in user profile, not in
the browser root, so they persist if the browser is upgraded.
Reproducible: Always
Steps to Reproduce:
|
|
232,754 | 2,061,564 |
User-Agent:
Build Identifier: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7a) Gecko/20040111 Firebird/0.8.0+
When using the css padding function in cunjuction with a bakground-color style
in tables, Firebird does not respect the specified width.
Reproducible: Always
Steps to Reproduce:
1. When loading pages with code as in the demo URL.
Actual Results:
Rendering errors
Expected Results:
No rendering errors
Mozillazine forum thread about this:
http://forums.mozillazine.org/viewtopic.php?p=353097#353097
Example: http://www.ing.umu.se/~id01mjn/mozilla.html
http://www.ing.umu.se/~id01mjn/mozilla.png
|
|
232,951 | 2,063,434 |
User-Agent:
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6) Gecko/20040113
The following page does not work in Mozilla 1.6 but it did in Mozilla 1.6b: <a
href="http://www.mclibre.org/consultar/amaya/ejercicios/emperadores/Emperadores_Romanos_Formateado.html">Roman
emperors</a>
When you click the right or left coins, the center of the page should show
different roman emperor short biographies (in Spanish).
The structure of the page is quite simple: every emperor biography is contained
in a div ( position: relative; overflow: auto; width: 100%; height: 100%; } and
all these divs are in a big div { position: absolute; overflow: hidden; top:
10%; left: 20%; width: 60%; height: 80%; }.
W3C HTML and CSS validators give no errors in this page.
Reproducible: Always
Steps to Reproduce:
1.
2.
3.
This page is shown OK in Internet Explorer.
I am the author of the page, so I can make easily any change it is needed.
|
|
235,203 | 2,081,539 |
User-Agent:
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6b) Gecko/20040102 Firebird/0.7+
In download manager, pressing arrow keys, page up/down doesn't scroll the list
Reproducible: Always
Steps to Reproduce:
1. Open download manager with more files listed than can fit in window
2. Press down arrow
3. Hilight moves down the list and out of view
Actual Results:
doesnt scroll
Expected Results:
scroll
|
|
235,768 | 2,085,921 |
User-Agent:
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.5) Gecko/20040114 Firebird/0.7
On the page http://emergence.uk.net/about/ - you cannot see the smoke and
railtrails through the main content section with moz 1.6. moz 1.4 is fine.
Reproducible: Always
Steps to Reproduce:
1.go to http://emergence.uk.net/about/
2.look at it
3.feel sad
Actual Results:
i felt more and more sad
Expected Results:
displayed the background image under the text
|
|
236,618 | 2,093,242 |
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)
Build Identifier:
iDEFENSE Security Advisory xx.02.04:
I. BACKGROUND
Netscape SOAPParameter Constructor Integer Overflow Vulnerability
II. DESCRIPTION
Improper input validation to the SOAPParameter object constructor in Netscape
allows
execution of arbitrary code.
The SOAPParameter object's constructor contains an integer overflow which
allows
contollable heap corruption.
A webpage can be constructed to leverage this into remote execution of
arbitrary code.
III. ANALYSIS
Successful exploitation allows the remote attacker to execute abitrary code in
the
context of the user running the browser.
IV. DETECTION
Netscape version 7.0 and 7.1 have been confirmed to be vulnerable. Mozilla 1.6
is also
vulnerable to this issue. It is suspected that earlier versions of both
browsers may
also be vulnerable.
V. WORKAROUNDS
Disable Javascript in the browser.
VI. VENDOR RESPONSE
VII. CVE INFORMATION
VIII. DISCLOSURE TIMELINE
January 17, 2004 Exploit acquired by iDEFENSE.
IX. CREDIT
zen-parse (zen-parse at gmx.net) is credited with this discovery.
Reproducible: Always
Steps to Reproduce:
1.
2.
3.
|
|
236,919 | 2,096,215 |
User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.7b) Gecko/20040309 Firefox/0.8.0+
Build Identifier: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.7b) Gecko/20040309 Firefox/0.8.0+
CSS Background images are still shown even when "Load Images" is unchecked, e.g.
the image added by the following CSS at the example URL is still shown when
images are turned off:
background: url("/image/default/sky.png") repeat-x;
Reproducible: Always
Steps to Reproduce:
1. Disable Image Loading (e.g. In Firefox uncheck Tools->Options->Web
Features->Load Images).
2. Visit a site that uses background-images (e.g. http://www.mozillazine.org).
Actual Results:
Background images are drawn (at the example URL the blimp + clouds are shown).
Expected Results:
No images should be displayed.
Regression happened sometime between yesterday's (2004-03-08) official Firefox
nightly and when I built at approx. 1am PST today (2004-03-09).
Bug 57607 seems the likely cause (which is why I'm filing this one in the same
component).
|
|
237,717 | 2,103,417 |
User-Agent: Mozilla/5.0 (Windows; U; Win95; en-US; rv:1.6) Gecko/20040113
Build Identifier: Mozilla/5.0 (Windows; U; Win95; en-US; rv:1.6) Gecko/20040113
If an ifame element which has a text/html file as its src, or an object element
which has a type="text/html" file as its data, is loaded dynamically into a
positioned div (layer), the current document is reiterated inappropriately in
the history. The consequence is that one must hit the back button multiple
times to actually get back to the previous document.
Reproducible: Always
Steps to Reproduce:
1.use createRange() ... appendChild() to load <iframe src="foo.html"
...></iframe> or <object data="foo.html" type="text/html"...></object> into a
div with position:absolute.
2.check the history list (down-arrow button beside the back button) and you will
see that every time you do 1. another entry of the current document is added
inappropriately to the list.
3.
Actual Results:
Because of the inappropriate reiterations of the current document in the
history, one must hit the back button multiple times (or jump over those
reiterations in the dropdown with the history list) to actually get back to the
previous document.
Expected Results:
Neither IE nor Opera have this bug. Their back buttons take you back properly to
the previous document. So should Mozilla'a.
|
|
233,712 | 2,070,093 |
User-Agent:
Build Identifier:
Dropping an object on the dock icon should open a Firefox window with that object (link, file, etc).
I attempted to drag a link from a Terminal window to the Dock icon, and nothing happened.
Dragging the link to an open Firefox window opens the link as expected.
Reproducible: Always
Steps to Reproduce:
1.Select a URL in any other program.
2.drag to Firefox Dock icon.
3.drag to open Firefox window.
Actual Results:
2.link "snapped back" to terminal window
3.link opened in existing window.
Expected Results:
2.link opened in new window.
3.link opened in existing window.
|
|
234,015 | 2,072,357 |
User-Agent:
Build Identifier: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.5.1) Gecko/20031120
My page contains a fieldset (with legend) within a form. This fieldset contains a rather lengthy table
inside it, cause the fieldset to wrap across multiple pages when printing the document. Printing results
in an entirely blank page (no other part of the page prints). When I remove the content of the fieldset
bit by bit, printing is successful as soon as the fieldset does not wrap across multiple pages.
Reproducible: Always
Steps to Reproduce:
1. Make <fieldset> within a <form>
2. Add a lof of content in it (e.g. multi-row table)
3. Try to print, simply a blank page results.
Actual Results:
Blank page, not even the other content (Headers/Paragraphs) outside of the <fieldset> prints.
Expected Results:
Fieldset element should have been broken up across pages, like tables do.
|
|
234,058 | 2,072,628 |
User-Agent:
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.5) Gecko/20031007 Firebird/0.7
We were wondering why we don't get cert warnings when going to a site with a
cert for
'blahblah.internal.company.com' with a URL of the form: http://blahblah/file.html :
A colleague found the code:
> Looks like some shadiness in mozilla/security/nss/lib/certdb/certdb.c,
> specifically in cert_TestHostName (hn is the host, cn is the common
> name in the cert):
>
> ------------------
> if ((hndomain = PORT_Strchr(hn, '.')) == NULL) {
> /* No domain in URI host name */
> char * cndomain;
> if ((cndomain = PORT_Strchr(cn, '.')) != NULL &&
> (cndomain - cn) > 0) {
> /* there is a domain in the cn string, so chop it off */
> *cndomain = '\0';
> }
> }
> ------------------
>
> If the URI in the browser isn't fully qualified, it just checks it
> against the first part of the common name. Seems like this is
> intentional, which is weird.
This is a security vulnerability.
An attacker could get a cert issued by Verisign for www.badguys.com and
impersonate www.internal.company.com , assuming some users at company.com have
internal.company.com set as their default search domain and access their site
using the short name 'www'.
IMHO, the right way to do it would to expand the short name being accessed into
a FQDN and compare them. I don't have any idea how to do this in practice; it
might require a browser setting. Unfortunately, my first idea, resolving the
name from the cert and comparing IP addresses, is also insecure: it would just
require the attacker to modify their own DNS record for www.badguys.com to point
to the same ip address as www.internal.company.com.
This bug makes SSL security dependent on DNS security (which is bad).
However, being able to support the desired behavior is good: it's nice for
people to be able to use unqualified names, and the security infrastructure can
(and should) support them. It would be nice if NSS, rather than trimming the
qualification from the CN, added candidate qualifications to the non-qualified
host name until it got a match or ran out of candidates. The hard part is where
to get the candidate qualifications from.
Reproducible: Always
Steps to Reproduce:
|
|
240,837 | 2,128,488 |
User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7b) Gecko/20040417
Build Identifier: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7b) Gecko/20040417
In the page gopher://gopher.floodgap.com/0/gopher/wbgopher,
Text contains strange characters '">P' .
(that is quotation mark, greater the sign, caplital letter p)
this text appears within retrieved text.
Reproducible: Always
Steps to Reproduce:
1.open location gopher://gopher.floodgap.com/0/gopher/wbgopher
Actual Results:
[... some other text ...]
It ha">Ps been mentioned to me that Opera needs a proxy server to browse
[... some other text ...]
Expected Results:
[... some other text ...]
It has been mentioned to me that Opera needs a proxy server to browse
[... some other text ...]
The text shown is also truncated.
Original data can be retrieved by:
1. on command line enter:
telnet gopher.floodgap.com 70
2. in telnet session enter:
gopher/wbgopher
Can also somebody test other platforms?
|
|
241,320 | 2,132,601 |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7b) Gecko/20040421
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7b) Gecko/20040421
I am accessing a web page with the address http://127.0.0.1:7000. The page
displays correctly, but when I click on any of the links on that page, I get a
"connection refused" error. The reason for this is that the generated URL that
the browser is attempting to follow is incorrect because the port number has
been left off the generated URL.
This worked properly in Mozilla version 1.6 and it also works properly in
Microsoft Internet Explorer version 6.0.2800.1106.xpsp2.030422-1633.
The workaround is to type in the proper URL myself.
Reproducible: Always
Steps to Reproduce:
1. Display a page with a URL of the form http://127.0.0.1:7000
2. Hover over a relative link such as /archivedbuilds
Actual Results:
3. Observe the generated URL at the bottom of the browser window. It is
http://127.0.0.1/archivedbuilds
This is the URL that will be followed when the link is clicked. It is incorrect.
Expected Results:
4. It should be http://127.0.0.1:7000/archivedbuilds]
This is the URL that should be followed when the link is clicked.
|
|
241,591 | 2,134,689 |
This was really elusive, but it's a real leak that cause us hanging onto the RDF
service and the pref service:
If you launch seamonkey and it shows the profile manager, and you click "Start",
there's no leak.
However, if it shows the profile manager, and you tab around a bit to the
"start" button and hit "Enter", we leak an nsXULElement and a document, and
therefore hang onto the rdfservice and prefservice.
Steps to reproduce:
./mozilla -profilemanager
tab to "Start" (or even "Cancel")
hit "Enter"
look at trace-refcnt leaks or trace-malloc stats for leaked objects
I'm sorry to say I don't know how to debug this further
|
|
230,996 | 2,047,766 |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7a) Gecko/20040113
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7a) Gecko/20040113
With a particular combo of 3rd-party-CA signed certs (containing x509v3 alt
subject names), issued to different websites, Mozilla alerts a cert/site
mismatch and then "<site> recieved a message with incorrect Message
Authentication Code. If the error occurs frequently, contact the website
administrator." Subsequent connections fail until restart.
Reproducible: Always
Steps to Reproduce:
1. Open http://www.onnet.cc - click on and install the 3rd-party root CA cert
(it's the certificate image).
2. Open https://test.breezeway.tv , signed by the 3rd-party CA.
3. Mozilla will (falsely) alert a site/cert mistmatch.
4. If you click the OK button to continue, Mozilla then alerts "<site> recieved
a message with incorrect Message Authentication Code. If the error occurs
frequently, contact the website administrator."
Actual Results:
Mozilla will alert a site-name-mistmatch; stating that the cert belongs to
'Interactive Engines', even though '*.ascentmedia.com' is that site's cert's
primary-subject CN (an indication that site-1's cert is falsely being claimed by
Mozilla to have been served from site-2). Note that my CA signed that cert it
and that *.beeezeway.tv is in its alt-subject list.
Subsequent connection attempts to site-2 (test.breezeway.tv) fail until after
restarting Mozilla.
Also, note that connecting to the two sites in opposite order
(1:test.breezeway.tv, 2:www.onnet.cc) produces the opposite result; a warning
for the second site that the first-site's cert has been presented.
None of these issues occur in IE.
I've tried creating different profiles, and Linux and Windows builds - all yield
same result.
|
|
227,432 | 2,019,600 |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 (ax)
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 (ax)
If calling Script.exec() from JS_CallFunctionName, a crash happens in
js_CheckRedeclaration for lack of 'obj'. The problem seems to be in script_exec,
where a varobj is not provided correctly. More details w/ a stack trace are on
an email I sent to the jseng list under the subject "Crash in Script.exec()" on
12/03/2003. Sorry I can't add them here, as the email was sent via google groups
and has not shown up yet. Here's Brendan's response to it.
From : Brendan Eich <[email protected]>
Sent : Wednesday, December 3, 2003 8:34 PM
To : Celso Aguiar <[email protected]>
Subject : Re: Crash in Script.exec()
Celso Aguiar wrote:
Could someone please help me with this problem?
Please file a bug against the Browser/JS Engine product/component at
http://bugzilla.mozilla.org. The Script object code is not up to snuff -- it
assumes a caller to script_exec has a varobj, and as you note, calling
script_exec via JS_CallFunctionName does not do any such set-up. You can assign
the bug to me, cc: [email protected], and let most other fields default. Please
post the bug link as a followup. Thanks,
/be
Reproducible: Always
Steps to Reproduce:
You're going to have to call Script.exec() from JS_CallFunctionName and provide
the scope param. In my original code Script was the result of a frozen/thawed
script.
Expected Results:
No crash
|
|
227,554 | 2,020,440 |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; fr-FR; rv:1.5) Gecko/20031007
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; fr-FR; rv:1.5) Gecko/20031007
Hi,
I think I discovered a bug that has been in Mozilla since its early version and
that is platform independant.
This problem happens on the following versions: 1.5 on WinXP, 1.3 on Win98SE,
1.0.1 on Linux RH8.
A page has php code that generate the following code body
<p>There is an error...
<BR><BR>
<FORM>
<INPUT TYPE="button" value="OK" onclick="window.history.back()">
</FORM>
When the user presses the OK button, Mozilla does not show the previous page,
but if one dispalys the page source code, it is reflecting the previous page !
If the user presses again the OK button, then he/she returns to the *previous
previous page*.
This problems appears in only *one place* of our Web site, altgough we use that
kind of constructions in many places.
Note that Netscape 4.75 (and MS Internet Explorer) has no problem with this page.
If you are interested I can explain you how to reproduce the problem on our
French Web site, it is quite simple.
Regards,
Marc Rechté.
Reproducible: Always
Steps to Reproduce:
1. Register a new user (right part of the form)
2. Choose form the menu "Enregistrer une nouvelle demande de logement"
3. On the last field of the form (Code postal) enter: 99999, then click on the
button.
4. You get an error message. If you try to navigate back (or press the OK
button), nothing changes
Actual Results:
Nothing !
Try to display the page source code: it does not tally the display !
Expected Results:
Display the previous page
|
|
228,087 | 2,024,465 |
User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.6b) Gecko/20031208
Build Identifier: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.6b) Gecko/20031208
the link is a sample page. Basicly, something changed from Mozilla 1.5 to 1.6
about the way braces '{}' are handled inside regular expressions. Escaping them
will force it to work, but it shouldn't be necessarry. I know JavaScript handles
braces in a special way, but does the RegEx engine?
Reproducible: Always
Steps to Reproduce:
1. go to the web page
2. click the 'run test' button
3. view the error in the JavaScript console
Actual Results:
after clicking 'run test', it only pops up 2 alert boxes. The expressions were
not parsed properly.
Expected Results:
it should pop up 4 alert boxes.
|
|
218,639 | 1,953,269 |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5b) Gecko/20030827
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5b) Gecko/20030827
sessionHistory.PurgeHistory(num) decrements both the current count and the
current index by num, which can cause sessionHistory.index to become negative. A
furthur click to a link then causes count also to become negative, breaking the
history stack beyond repair.
Reproducible: Always
Steps to Reproduce:
1. Install and run the attached XUL demo.
2. Click on five links. Pressing "history-size" shows that six items are on the
stack and the current index is at 5.
3. Hit the back button two times. "history-size" shows that six items are on the
stack and the current index is at 3
4. Purge the history
5. "history-size" shows that the index got negative (-3) and the stack is empty
6. Click another link.
7. "history-size" now shows that the index is -2 and the size is -1, which seems
bad.
|
|
219,693 | 1,961,162 |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5b) Gecko/20030903 Firebird/0.6.1+
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5b) Gecko/20030917 Firebird/0.6.1+
at some build later than 20030903, definitely in 20030917, firebird started
using only part of the drawpane for the site http://derstandard.at.
This is documented with screenshots in http://dapeda.at/firebird_derstandard.htm.
It was confirmed in Windows 2000 SP4 and in Windows XP SP1.
Reproducible: Always
Steps to Reproduce:
1. display the page ;-)
Actual Results:
see http://dapeda.at/firebird_derstandard.htm
Expected Results:
use the whole drawpane
none
|
|
222,191 | 1,979,740 |
User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.6a) Gecko/20031014
Build Identifier: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.6a) Gecko/20031014
Setting the file location of an HTML frame with JavaScript fails if the frame's
name is "sidebar." That is, this:
top.sidebar.location = "sidebar.php";
fails with this error:
Error: uncaught exception: [Exception... "Cannot modify properties of a
WrappedNative" nsresult: "0x80570034 (NS_ERROR_XPC_CANT_MODIFY_PROP_ON_WN)"
location: "JS frame :: http://harborresearch.com/ct2/ :: populateFrames :: line
219" data: no]
Changing the name of the frame to "side" fixes it. Thus, it seems that the word
"sidebar" is incorrectly interpreted as a reserved word. This bug does NOT exist
in the latest Mac/Win IE, Navigator, and Mac-specific browsers like Safari and
Camino. Strangely, this bug also does NOT exist in the latest Win Firebird
(haven't tested the latest Win Mozilla, but presumably the Firebird testing
covers that).
Reproducible: Always
Steps to Reproduce:
1.Create a frameset where a frame is named "sidebar".
2.Attempt to set the location of that frame with top.sidebar.location = "file.html"
3.
Actual Results:
Failure to set frame file location. JavaScript console reports this:
Error: uncaught exception: [Exception... "Cannot modify properties of a
WrappedNative" nsresult: "0x80570034 (NS_ERROR_XPC_CANT_MODIFY_PROP_ON_WN)"
location: "JS frame :: http://harborresearch.com/ct2/ :: populateFrames :: line
219" data: no]
Expected Results:
Load the file in the frame.
|
|
222,733 | 1,982,862 |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5) Gecko/20031007
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5) Gecko/20031007
The following code segment as found on http://upcsuccess.com works in 1.4 and
under IE (used for comparison). Under Mozilla 1.5, it no longer works.
<a class='link' title='UPC Training' href='javascript:void(0);'
onClick="window.open('http://www.upctraining.com','Training',config='menubar=1,titlebar=0,toolbar=0,status=0,location=0,directories=0,width=700,height=460,maximize=yes,resizable=yes,scrollbars=yes');">Training</a>
Reproducible: Always
Steps to Reproduce:
1.Visit http://upcsuccess.com with Mozilla 1.4
2.Goto bottom (footer) of page.
3.Click on Training OR any other link with an OnClick event.
4.All works fine.
5.Repeat steps with Mozilla 1.5 and no new windows open.
Actual Results:
The onClick event either did not fire or the window.open did not open a new window.
Expected Results:
Mozilla should have opened a new window.
|
|
222,864 | 1,983,839 |
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030807
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030807
Adding a TEXTAREA using javascript produces visually two textarea's, with none
of the two accessible nor usable
<html>
<body>
<script>
document.body.appendChild( document.createElement( "TEXTAREA" ) );
</script>
</body>
</html>
Reproducible: Always
Steps to Reproduce:
1. open browser
2. use mini example in details
Expected Results:
show one working textarea
|
|
222,990 | 1,984,683 |
User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.5) Gecko/20031007
Build Identifier: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.5) Gecko/20031007
We have reproduced this bug in Mozilla 1.5 on Mac OSX and Windows 2000.
When JavaScript changes the class of a <select> element, and the subsequent
class has a different hard-coded width value, the height of the select changes.
In our test HTML, we alternate between two styles:
.large { width: 100px; height: 30px }
.small { width: 0px }
Reproducible: Always
Steps to Reproduce:
1. Go to the test URL
2. Click "Reduce"
3. Click "Enlarge"
Actual Results:
The select has a reduced height.
Expected Results:
The height should not have been affected.
We tried the following potential workarounds, all of which still exhibited the bug:
* set the height to 30px in the .small style
* set the width to between 1 and 4 pixels in the .small style
The following change prevented the bug's appearance:
* set the width to 5 or more pixels in the .small style
|
|
223,055 | 1,985,150 |
User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.5) Gecko/20031017
Build Identifier: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.5) Gecko/20031017
With the new Mozilla 1.5 i want to display an html-file on a CD.
Instead of reading and displaying it, a windows pops asking where to save this
file.
Kind regards, Erwin
Reproducible: Always
Steps to Reproduce:
1.Mozilla 1.5 start
2.file
3.open file
|
|
223,394 | 1,987,386 |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6a) Gecko/20031022
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6a) Gecko/20031022
div{
position: absolute;
/* height: auto; */
}
img{
height: 100%;
}
<div>
<img>
</div>
In this case, the image height is computed intrinsic height of img.
because img element is replaced element.
But img height is computed 0.
Reproducible: Always
Steps to Reproduce:
1.See http://bugzilla.mozilla.gr.jp/attachment.cgi?id=1835&action=view
Actual Results:
img height is computed 0.
Expected Results:
img height is computed intrinsic height of img.
See http://bugzilla.mozilla.gr.jp/attachment.cgi?id=1837&action=view
this case is img element having "height:auto;".
this case and above case should be same computed value of height.
this problem is reproduced with after 2003101804.
before 2003101704 build are not reproduce it.
and not reproduce on normal flow(position: static;).
|
|
223,926 | 1,991,336 |
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)
Build Identifier:
When I open your beta site in IE 6, pictures are owerlapped as well as menus
and icons.
Reproducible: Always
Steps to Reproduce:
1.
2.
3.
|
|
225,303 | 2,002,527 |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5) Gecko/20031007
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5) Gecko/20031007
New shiny simplified stored queries interface introduced in bug 179339 caused
that it is not possible to remove stored queries when no bugs are found.
Zero-length bug list has only following links:
Query Page Enter New Bug Edit this query
Reproducible: Always
Steps to Reproduce:
1. Create stored query which returns only one bug.
2. Modify the bug so that it doesn't anymore match search criteria of stored query
3. Open the stored query
Actual Results:
Got buglist which had no possibility to remove the stored query.
Expected Results:
Offer an opportunity to remove the query.
Tested with bugzilla 2.17.6
|
|
228,968 | 2,031,371 |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.6b) Gecko/20031218
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.6b) Gecko/20031218
Downloading a large file (about 3GB) displays negative values for file size
(Status:xxxKb of -1173483Kb at xxxKb/sec), after a while the speed becomes
negative (-xxxKB/sec).
Here are the equivalent headers:
Date: Fri, 19 Dec 2003 16:00:30 GMT
Server: Apache/1.3.22 (Unix) Debian GNU/Linux PHP/4.1.1
X-Powered-By: PHP/4.1.1
Expires: 0
Cache-Control: private
Connection: close
Content-length: 3093319680
Content-disposition: attachment; filename="pilatos1.tar"
Content-Type: application/octet-stream
Reproducible: Always
Steps to Reproduce:
|
|
229,052 | 2,032,056 |
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.5) Gecko/20031215 Firebird/0.7
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.5) Gecko/20031215 Firebird/0.7
Hi,
I tried to understand why and when the bug show up, but I was not successfull.
I experienced the problem with Firebird 0.7 under GNU/Linux (Debian sid) and
window 2000, the problem show up also on Mozilla 1.5 (Debian package 1.5-3)
always with the same html code I made. (my html code is bad and ugly, sorry
about that)
In order to experience the bug, just go to this address :
http://www.amigrave.com/select_box_bug/
Use the very first selectbox and select a value greater than 9 ... eg 14,
once selected, only the first digit will be diplayed (eg 1 if you selected 14)
The second select box will have the same behaviour, but the other ones (the one
that are used for a birthdate) are ok.
I wished i could help more than just reporting the bug.
Reproducible: Always
Steps to Reproduce:
1. go to http://www.amigrave.com/select_box_bug/
2. use the first select box and select 14
Actual Results:
The select box doesn't display correctly the selected option name.
Expected Results:
Should be displayed correctly
|
|
229,242 | 2,033,487 |
NISCC (http://www.uniras.gov.uk/vuls/) developed some testcases to detect
vulnerability in S/MIME implementation. Unfortuately, mozilla will crash when
receiving one kind of S/MIME message (Detached Signed Data with CA and client
certs).
Below is the stack when crashing:
#0 0x40799771 in nanosleep () from /lib/i686/libc.so.6
#1 0x40799639 in sleep () from /lib/i686/libc.so.6
#2 0x0806db06 in ah_crap_handler(int) (signum=11) at nsSigHandlers.cpp:149
#3 0x421a885c in nsProfileLock::FatalSignalHandler(int) (signo=11)
at nsProfileLock.cpp:195
#4 0x400f7a6a in pthread_sighandler () from /lib/i686/libpthread.so.0
#5 <signal handler called>
#6 0x42bb81d2 in NSS_CMSSignedData_GetDigestByAlgTag (sigd=0x80c99e0,
algtag=SEC_OID_UNKNOWN) at cmssigdata.c:765
#7 0x42bb7daf in NSS_CMSSignedData_VerifySignerInfo (sigd=0x80c99e0, i=0,
certdb=0x89eb160, certusage=certUsageEmailSigner) at cmssigdata.c:598
#8 0x42b7ff47 in nsCMSMessage::CommonVerifySignature(unsigned char*, unsigned)
(this=0xbfffe74c, aDigestData=0x0, aDigestDataLen=0) at nsCMS.cpp:371
#9 0x42b7f67f in nsCMSMessage::VerifySignature() (this=0x8bd1438)
at nsCMS.cpp:174
#10 0x43117545 in MimeCMS_eof (crypto_closure=0x8972fa0, abort_p=0)
at mimecms.cpp:606
#11 0x43115ee8 in MimeEncrypted_parse_eof (obj=0x85470e0, abort_p=0)
at mimecryp.cpp:240
#12 0x430e434a in MimeContainer_parse_eof (object=0x8bbfe00, abort_p=0)
at mimecont.cpp:141
#13 0x430f0e68 in MimeMessage_parse_eof (obj=0x8bbfe00, abort_p=0)
at mimemsg.cpp:544
#14 0x430fdbad in mime_display_stream_complete (stream=0xfffffffc)
at mimemoz2.cpp:928
#15 0x4310c410 in nsStreamConverter::OnStopRequest(nsIRequest*, nsISupports*,
unsigned) (this=0x88cb238, request=0x893dfc0, ctxt=0x0, status=0)
at nsStreamConverter.cpp:1059
#16 0x42145e4f in nsDocumentOpenInfo::OnStopRequest(nsIRequest*, nsISupports*,
unsigned) (this=0x875c1e0, request=0x893dfc0, aCtxt=0x0, aStatus=0)
at nsURILoader.cpp:251
#17 0x41035e78 in nsStreamListenerTee::OnStopRequest(nsIRequest*, nsISupports*,
unsigned) (this=0x886d9d8, request=0x893dfc0, context=0x0, status=0)
at nsStreamListenerTee.cpp:65
#18 0x41006150 in nsOnStopRequestEvent0::HandleEvent() (this=0x8b023f8)
at nsAsyncStreamListener.cpp:319
#19 0x41005965 in nsStreamListenerEvent0::HandlePLEvent(PLEvent*) (
aEvent=0x8b02408) at nsAsyncStreamListener.cpp:113
|
|
229,583 | 2,035,578 |
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7a) Gecko/20031221
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7a) Gecko/20031221
According mozilla/view/public/nsIScrollableView.h default height for mLineHeight
should be 12 points but now it is initialized to zero (0).
/**
* Set the height of a line used for line scrolling.
* @param aHeight new line height in app units. the default
* height is 12 points.
* @return error status
*/
NS_IMETHOD SetLineHeight(nscoord aHeight) = 0;
Normally this wouldn't be problem but I am writting XUL app that uses style
overflow: -moz-scrollbars-none
which seems to inhibit nsScrollPortView::SetLineHeight() calls for the view
in question so nsScrollPortView:ScrollByLines() doesn't work as expected
(no scrolling at all).
I have made a patch that initializes mLineHeight to 12 points as
nsScrollableView.h is documenting.
Reproducible: Always
Steps to Reproduce:
Actual Results:
Incorrect value (0) for mLineHeight.
Expected Results:
Default value (12 points) [or line height of applicable font].
Tested with own CVS build (trunk 2003122103 and 2003122302).
|
|
230,249 | 2,041,066 |
In a debug build from today, I am getting the following assertion several
hundred times while running the editor. It seems to be triggered just from
moving the mouse around the user interface - i.e. move the mouse from the text
input area over all of the buttons on the toolbar and all of the menus.
###!!! ASSERTION: Negative Width Input - very bad: 'mComputedWidth >= 0', file
/home/pkw/sb/mozilla/trunk/mozilla/layout/html/base/src/nsHTMLReflowState.cpp,
line 2532
Break: at file
/home/pkw/sb/mozilla/trunk/mozilla/layout/html/base/src/nsHTMLReflowState.cpp,
line 2532
I have only tested this on AIX (GTK2 build) for now so I'm not sure if this
affects all platforms or not.
The assertion (not necessarily the code which triggers the assertion) is a
result of the checkin for Bug 227819.
|
|
220,776 | 1,969,538 |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5) Gecko/20030925
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5) Gecko/20030925
If all jdk api help is in a jar file.
open it with jar protocol and with "frameset" mode.
you can see all the frame shown blank
Reproducible: Always
Steps to Reproduce:
1.Locate: jar:file:///D:/JBuilder9/doc//jdk_docs.jar!/java/api/index.html
2.
3.
|
|
221,669 | 1,976,158 |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.4) Gecko/20030624
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.4) Gecko/20030624
referencing an inexistent file in a <?xul-overlay ...> Processing Intruction in
a xul file make mozilla unable to load this xul file : mozilla never stops to
load it in fact.
Reproducible: Always
Steps to Reproduce:
drag&drop the linked xul page into the browser.
Actual Results:
It looks like it never finishes to download it. (Sandglass indefinitely, hit
ESCAPE to stop).
Expected Results:
retry without the 2nd line, it's ok.
<?xml version="1.0"?>
<?xul-overlay href="inexistent-file.xul"?>
<window
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
>
</window>
|
|
221,684 | 1,976,229 |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; es-AR; rv:1.5a) Gecko/20030728 Mozilla Firebird/0.6.1
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; es-AR; rv:1.5a) Gecko/20030728 Mozilla Firebird/0.6.1
When you open more of 25 tabs, the next to 25 isn't show in the firebird, and
you can't move to it (for example goto tab 28)
I'm using 800x600 resolution
Reproducible: Always
Steps to Reproduce:
1.Open more of 25 pages in tabs
2.try to goto 28
3.
Expected Results:
i'm think that the solution will be put an arrow button for scroll in the tabs
my resolution is 800x600
|
|
225,550 | 2,004,168 |
User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.6a) Gecko/20031029
Build Identifier: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.6a) Gecko/20031029
If I create an empty regular expression object an call toString or toSource on
it, I get "//" as the result. This isn't a valid RE string, since it's the start
of a comment:
var re = new RegExp // create an empty RE
var reSrc = re.toString() // gives "//"
var re2 = eval(reSrc) // gives "undefined" instead of an empty RE object
We should better return "/(?:)/" in this special case, as mentioned in ECMA262-3
7.8.5.
Reproducible: Always
Steps to Reproduce:
Most browsers (Mozilla, IE, Opera, iCab) show this behaviour, but a change for
this special case probably won't break any compatibility (I'm considering this
fix for iCab, too).
|
|
225,848 | 2,006,695 |
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030630
Build Identifier: mozilla 1.5, 1.6a, Firebird 0.7
Using Mandrake 9.2, Fedora1, Windows2000, Windows XP, using Mozilla 1.4 and
Mozilla 1.4.1 the problem is not present. But using Mozilla 1.5 or 1.6a or
Firebird 0.7 on Linux or Windows, when you view this webpage, the browser will
slow then freeze with the only way to exit is kill the process.
Reproducible: Always
Steps to Reproduce:
1.go to
http://download.fedora.redhat.com/pub/fedora/linux/core/1/i386/os/Fedora/RPMS/
2.during loading of the page, watch the mozilla icon in the top right. The page
will begin to slow down.
3.the browser eventually freezes.
Actual Results:
browser process had to be killed in the process manager/task manager.
Expected Results:
displayed the webpage quickly as in Mozilla 1.4 and 1.4.1
Browser exhibits same symptoms running Linux or Windows2000 or Windows XP.
It may be a webpage problem, but Mozilla 1.4 and 1.4.1 works properly.
http://download.fedora.redhat.com/pub/fedora/linux/core/1/i386/os/Fedora/RPMS/
|
|
225,859 | 2,006,740 |
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; Win64; AMD64)
Build Identifier:
Currently code isn't safe for 64bits-Windows.
ex) pointer structure is unsigned long (32bits). But 64bit-Windows uses 64bits
pointer.
Reproducible: Always
Steps to Reproduce:
This is build issue and port issue. So this doesn't need.
Actual Results:
cannot build.
Expected Results:
build and work fine.
|
|
226,230 | 2,009,870 |
User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/103u (KHTML, like Gecko) Safari/100
Build Identifier:
New with the 10/19 build, if I navigate to http://www.haaretzdaily.com/, a bunch of excel files
suddenly download to my desktop, which seem to be ads. This behavior was seen in early betas of
Safari, and has never been seen before with Camino.
Reproducible: Always
Steps to Reproduce:
1.Go to http://www.haaretzdaily.com/
2.
3.
Actual Results:
Several files download to my computer, which are interpreted as Excel files, representing ads from
that page. If I leave the browser open for several minutes to the Haaretz home page, the same
thing happens again.
Expected Results:
Download nothing, just load the page and that's it
|
|
226,416 | 2,011,372 |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.6a) Gecko/20031030
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.6a) Gecko/20031030
When a document is loaded into a new (or existing) frame or window it should be
expected, that a script doing this has a way to discover when that document has
been fully loaded and all its objects are available for use.
Apparently, neither the document property of the new window, nor document.body,
nor document.body.innerHTML all together are capable to do this.
By the way: in Internet Explorer one can use the condition
document.readyState == "complete"
to check on analogous situations.
It is very hard, however, to produce a test case.
So I use a document with a "very long" body containing a script which assigns a
long string to a variable.
I load this document at the same time into two new windows and monitor the
loading progress.
When document, document.body, and document.body.innerHTML seem to indicated that
all is finished, I try to read the 'data' variable from each window, which is
set by the new document.
In most cases I get an 'undefined' value.
Using simpler documents, however, succeeds.
But Mozilla should be a little more deterministic, shouldn't it?
Reproducible: Sometimes
Steps to Reproduce:
1. Load http://www.travelbasys.de/kauker/test/CheckReadyState.html
2.
3.
Actual Results:
Most of the time, the 'data' variable defined in one of the new windows has an
'undefined' value.
Expected Results:
The 'data' variable should be defined.
|
|
196,557 | 1,772,696 |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.3) Gecko/20030308
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.3) Gecko/20030308
The right column at http://theburritosband.vivelared.com/index.php, wich uses
Javascript to scroll some links makes Mozilla1.3 to use 100% of cpu and then hangs.
I had the same problem with Phoenix0.5 (1.3) but it only lasted a seconds, after
that the cpu utilization used to go down to normal cpu use.
Reproducible: Always
Steps to Reproduce:
1. Visit http://theburritosband.vivelared.com/index.php
2. Watch your CPU utilization
3.
I have tested it on Linux and Windows2K.
|
|
197,090 | 1,776,877 |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.3b) Gecko/20030312 Phoenix/0.5
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.3b) Gecko/20030312 Phoenix/0.5
Menu should expand when you hover it, but it doesn't. It blocks on one option,
the one you hover first.
It however, works in 1.3 RC builds.
Reproducible: Always
Steps to Reproduce:
1. Hover menu on the left with mouse.
Actual Results:
It is stuck on one option and you can't move it to another.
Expected Results:
It should change on hovering another option, the way it is done in 1.3 RC.
It works right in 1.3 first RC build, but in this Phoenix built from trunk it
doesn't work. I don't believe it is Phoenix specific.
|
|
197,451 | 1,779,688 |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.3) Gecko/20030312
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.3) Gecko/20030312
/1{0,1}\({0,1}\d{3}\){0,1}{0,1}\-{0,1}\d{3}\-{0,1}\d{4}/
Notice the repeatition of the {0,1} half way through the above statement,
mozilla constantly moved forward and never caught this problem, and the page
worked fully within mozilla, however when trying the same page in ie it would
constantly fail at this point. Mozilla should have noticed this error
Reproducible: Always
Steps to Reproduce:
1. repeat any section regular expression range code, mozilla never sees it, ie
always does
2.
3.
Actual Results:
mozilla submits fine, ie fails
Expected Results:
should have failed and returned the line as invalid
|
|
198,485 | 1,787,692 |
User-Agent: Mozilla/5.0 (X11; U; Linux y686; de-DE; rv:1.4a) Gecko/2003032011
Build Identifier: Mozilla/5.0 (X11; U; Linux y686; de-DE; rv:1.4a) Gecko/2003032011
Using position:relative for the wrapping div paints the "right" box where it is
in the code: at the top right beside the "Hello,". Using position:absolute pulls
it down to the height of the "left" box.
Mozilla changed behaviour with build 2003031204 – builds before (testet
2003031104) put the "right" box in the upper right corner even with
position:absolute.
Reproducible: Always
Steps to Reproduce:
|
|
199,353 | 1,795,311 |
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705)
Build Identifier:
In a persistent search, recurring memory leaks will quickly consume system
resources. The control array in ldapsearch.c is not freed. ldap_controls_free
should be called in function print_entry so that the control array is not
leaked.
There are a couple of other leaks - the filter pattern (filtpattern) is
leaked. Also, the argument parsing function leaks. But since these are small
non-recurring leaks, they are probably not significant.
Reproducible: Always
Steps to Reproduce:
1. Run a simple ldapsearch with a persistent search control: -C ps:any:1:1
2. Run some ldapmodify ops in the search base
3. With memory checking on, notice the leaks when the modified entries are
printed.
|
|
201,897 | 1,815,456 |
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4a) Gecko/20030401
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4a) Gecko/20030401
span or div blocks using absolute postioning fail to render properly beyond the
initial viewport when scrolling is required. It appears that because the text
box isn't rendered, the correct size for the box is never calculated and is thus
layed out as if it had no contents.
Reproducible: Always
Steps to Reproduce:
1.View http://strawberrians.org/Map/backup/DisplayMap.php
2.Scroll to right-hand side
Actual Results:
Markers beyond the initial viewport are rendered at a size as if they contained
no CDATA. The numbers are still layed out directly on the image.
Expected Results:
Size of bounding box should be calculated for all entities, not just those
rendered in the current view.
There is a work around, a table entity can be placed within the span or div
block, forcing proper display as at http://www.strawberrians.org/Map/Map.php
|
|
202,506 | 1,820,878 |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.3b) Gecko/20030312 Phoenix/0.5
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4a)
Images (in this case, navigation arrows) don't appear in the drop down DHTML
menus on this site or others that use this menu system (another example is
http://www.washingtonhikes.com). This works in mozilla 1.3b and earlier,
doesn't work in any of the 1.4a+ builds.
Reproducible: Always
Steps to Reproduce:
1. Go to http://www.burmees.nl/menu/menus.htm or http://www.washingtonhikes.com
2. Mouse over menus, watch menu items that expand to show submenus
Actual Results:
Menu expands correctly and is completely functional, but arrows don't appear in
menu items that have submenus.
Expected Results:
Arrow graphics should appear in menus that expand
Menu is also available at http://www.dynamicdrive.com/dynamicindex1/hvmenu/index.htm
|
|
203,278 | 1,828,134 |
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.3) Gecko/20030313
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.3) Gecko/20030313
function test1() {}
function test() { test1.call(this); }
test.prototype = new test1();
var length = 1024 * 1024 - 1;
var obj = new test()
var first = obj;
for(var i = 0 ; i < length ; i++) {
obj.next = new test();
obj = obj.next;
}
run it. it crashes at jsgc.c line 913 with a stack trace with 3544 frames. I
guess that's because js_MarkGCThing uses a recursive marking algorithm, and this
test case creates a linked list of 1024 * 1024 elements.
It seems like it wouldn't be that hard to make this use an explicit stack
allocated on the heap. i could probably even do the work myself, since it looks
pretty simple. Does anyone care enough about such a contrived example as this
to actually check in the code once i write it? Is there anything non-obvious
about getting this to work? I've heard there're some pretty evil aspects of
garbage collection in spidermonkey with respect to multiple threads or something
like that.
Reproducible: Always
Steps to Reproduce:
1.
2.
3.
|
|
204,364 | 1,837,363 |
If I have followed a URL with an anchor and I then follow a link and return back
again, Mozilla will lose track of where I was on the page - I will always end up
at the top of the page, having to reload the page or manually my previous position.
If I had followed the same link from a non-anchored URL Mozilla would have
returned to my previous position.
Seen in Mozilla Firebird/0.6-20030429 and Mozilla 1.4b-20030502 on Linux, and
Mozilla 1.4b-20030502 on Windows 98. I think this is a quite recent regression.
Netscape 7.02 doesn't have this annoying behaviour.
Instructions on how to reproduce the bug will be posted in a comment.
|
|
205,087 | 1,844,478 |
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4b) Gecko/20030507
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4b) Gecko/20030507
The site
http://www.searchy.nl/traffic/mysqlstat/mysqlstat/cgi-bin/mysqlstat.cgi?t=s001.searchy.nl&skin=
was correctly generated in previous versions of mozilla (1.2.1), but no in the
current version 1.4beta.
Reproducible: Always
Steps to Reproduce:
1. start mozilla (duh)
2. Go to
http://www.searchy.nl/traffic/mysqlstat/mysqlstat/cgi-bin/mysqlstat.cgi?t=s001.searchy.nl&skin=
3. See it for your self
Actual Results:
Shown website correctly
Expected Results:
Show website on a wrong manner (It was correct in 1.2.1)
|
|
205,213 | 1,845,572 |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4b) Gecko/20030510
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4b) Gecko/20030510
Going to an URL with a destination anchor (A HREF="foo.html#Anchor") that is not
specified in that document (with A NAME) opens to the top of that page. If you
click on a valid destination anchor link, it'll take you to that spot on the
page. However, if you then click on the back button, it doesn't return to the
top of the page. Subsequent back clicks also do nothing.
Reproducible: Always
Steps to Reproduce:
1. Go to the link ("SARS" is not a named destination anchor on that page)
2. Click on "HIV".
3. Click back button
Actual Results:
Nothing
Expected Results:
Gone back to the top of the page.
|
|
135,060 | 1,258,296 |
BUILD: 2002-04-02 on Linux
STEPS TO REPRODUCE:
1) Print preview
2) Click Page Setup button
3) Uncheck "Shrink to Fit"
4) Click OK
5) Watch nothing happen
6) Click Page Setup button
7) Check "Shrinkg to Fit"
8) Click OK
9) Watch content shrink a bit
10) Repeat steps 2--9 a few times. Watch content shrink with each iteration.
|
|
135,082 | 1,258,487 |
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.9) Gecko/20020311
BuildID: 2002031106
At the URL entered above there should be a "drop up" menu when you point the
mouse over the text items on the grey bar. To do this I tried to use
document.getElementById(elem).style.display = 'block'; where elem has been set
to display : none via css before.
IMHO the method I used is standardized and so this might be a bug.
Reproducible: Always
Steps to Reproduce:
1. Point your browser to the URL given above
2. Move the mouse over the menu items
3. See absolutely nothing happen
Actual Results: Nothing - in fact that's the problem
Expected Results: A menu should have popped up right above the menu item your
mose is over
The image used on my example page is intentionally non-existant...
|
|
135,408 | 1,261,619 |
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (X11; U; SunOS sun4u; en-US; rv:0.9.9) Gecko/20020311
BuildID: 2002031103
When printing a page to PostScript mozilla includes the line
/Helvetica_Oblique findfont
The name of the font is wrong. It should be:
/Helvetica-Oblique findfont
^
When sending this file to a PostScript printer, it results in the error message:
Helvetica_Oblique not found, using Courier
and the resulting print will be suboptimal.
Reproducible: Always
Steps to Reproduce:
1. Ctr-P
2. choose Print To: File
3. click Print
Actual Results: a file "mozilla.ps" (or whatever name you choose) is printed.
the command:
grep Helvetica mozilla.ps
results in:
/Helvetica findfont
/Helvetica-Bold findfont
/Helvetica-BoldOblique findfont
/Helvetica_Oblique findfont
The last line shows the incorrect fontname, using an underscore instead of a dash.
Expected Results: It should have printed:
/Helvetica-Oblique findfont
I found this behavior in several builds of mozilla.
The recent build mentioned above, the build that came with Gnome-1.4
provided by Sun and in the most recent Netscape-6.2 for linux.
|
|
136,476 | 1,271,870 |
Using 2002040803 commercial trunk on NT 4.0
I am very simple filter and when a new message arrived, it got
filtered to another folder. But as soon as I clicked on the inbox,
I was prompted for the request to send the RR back to the sender
before I had a chance to click on the folder and/or the new mesg.
I tested 4.79 and I don't get prompted to send a RR until I actually
click on the mesg in the filtered folder.
Steps to reproduce:
1.Create 2 mail accounts (I used 2 imap mail acnts)
2.I had check for new mesgs every 1 minute set
(if you set this, you need to save/quit/restart mozilla)
3.Set either Global or Customized MDN for each mail acnt:
Check the box 'When sending mesgs, always request a Return Receipt'
4.Set up a filter (I had a filter that filtered based on subject line
containing the word 'foo') for one of the mail acnts.
5.From the other mail acnt (non filtered), compose a mesg, address it to
the other acnt, put in whatever thing that will cause the mesg to be
filtered, and make sure you have RR on. Send it
6.Click on the other mail account with the filter
7.Click on the inbox (may have to do get mesg or wait 1 minute
for the new mesg to arrive)
result: you are prompted to send a RR back to the sender
expected: nothing to happen, I should click on the folder where
the mesg was filtered to and then click on the new mesg
and then have the prompt appear
|
|
136,670 | 1,273,422 |
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.9) Gecko/20020310
BuildID: 2002031008
For file-uploads, mozilla submits malformed content-types for some
content-types. Uploading a html files gives:
Content-Type: text/html
(correct), but uploading an .mpg gives:
Content-Type: type=video/mpeg
which (at least according to rfc2045, i haven't checked others), is malformed.
While we are at it: mozilla makes it impossible to develop internationalized
applications because it doesn't submit charset=-attributes for uploaded fields,
which make charset detection a guessing game (it's not possible to differentiate
ebtween windows-1258 and latin1 for example). This is only a "should" in the
html-recommendation, so this is not really a bug ;)
Reproducible: Always
Steps to Reproduce:
1. create a file upload form
2. upload a .mpg file (or a text file)
3. watch the content-type header in the form data
Actual Results: Content-Type: type=video/mpeg
or (for text fields, not only file-uploads)
Content-Type: text/html
Content-Type: text/plain
Expected Results: Content-Type: video/mpeg
or (for text fields, not only file-uploads, examples only)
Content-Type: text/html; charset=ISO-8859-1
Content-Type: text/plain; charset=UTF-8
Content-Type: text/plain; charset=UNKNOWN
http://rfc2045.x42.com/
http://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.2
|
|
136,804 | 1,274,860 |
If you run the certutil -A command to add a cert to a db, and you
don't specify -i to open an input file, then it crashes because inFile
is NULL instead of being PR_STDIN. I think there used to be some code
that set infile to PR_STDIN if no -i argument was given, but now certutil
doesn't seem to contain code to do that.
I reproduced this using these steps:
1. create a new certDB in directory ./tmp
certutil -N -d tmp
2. attempt to add a cert to the db using an RFC 1113 format file on stdin.
certutil -A -d tmp -n foo -a -t "" < /tmp/foocert.txt
result: segv
stack at crash is:
PR_GetOpenFileInfo(PRFileDesc * 0x00000000, PRFileInfo * 0x0012fe10) line 166 +
11 bytes
SECU_FileToItem(SECItemStr * 0x0012fe40, PRFileDesc * 0x00000000) line 545 + 14
bytes
SECU_ReadDERFromFile(SECItemStr * 0x0012fe80, PRFileDesc * 0x00000000, int
0x00000001) line 626 + 13 bytes
AddCert(PK11SlotInfoStr * 0x0051fe48, NSSTrustDomainStr * 0x00519430, char *
0x00494538, char * 0x004944b9, PRFileDesc * 0x00000000, int 0x00000001, int
0x00000000, void * 0x0012fef8) line 285 + 17 bytes
main(int 0x00000009, char * * 0x00494440) line 2808 + 49 bytes
You can clearly see all the null PRFileDesc pointers there.
Using -i works around this.
|
|
137,000 | 1,276,558 |
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (X11; U; Linux i386; en-US; rv:0.9.9+) Gecko/20020411
BuildID: 2002041108
When passing parameters to a parent object via parentObject.call(parameters) in
the child object constructor, member variables with the same name as the
parameter is forced to a value of undefined even if the parameter is not used to
set the member variable with its name.
Reproducible: Always
Steps to Reproduce:
1. Go to the URL, http://outroad.org/mozillaParamBug.html
Actual Results: The first two fields on the page are set to undefined
Expected Results: They should be set to values of "passed to matchAndSet" and
"match, but set inside".
This bug has also been verified for win32 build 2002041103, but did not exist
when using mozilla 0.9.7, so some change since then must be the cause.
|
|
137,628 | 1,282,647 |
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:0.9.9+)
Gecko/20020415
BuildID: 2002041503 (trunk)
the page at the given URL does include commented out HTML code that gets shown.
IMHO the comments are very valid, although the page does NOT validate as
HTML4.0/strict. (because wrapping <div> or <p> around text is missing)
Reproducible: Always (do you really need steps to reproduce??)
|
|
130,002 | 1,213,780 |
BUILD: 2002-03-10-07 (as well as all Mozilla builds as far back as I can
remember).
STEPS TO REPRODUCE:
1) Load attached testcase
2) Make sure a vertical scrollbar is present; shorten window as necessary until
this is true.
3) Mouse over the "This text should not go under the scrollbar when hovered"
text.
EXPECTED RESULTS: Text stays up against the right edge of the visible viewport
area when hovered.
ACTUAL RESULTS: Text moves under the vertical scrollbar and is no longer all
visible
|
|
130,078 | 1,214,358 |
Follow on from bug 91516 quote:
"IFRAME or BROWSER children of chrome do not get integrated into the view
hierarchy so they won't interact properly with siblings in terms of z-index and
overlap. This was a deliberate decision because I didn't want to change the
behavior of the main browser window (too risky). We can change this policy after
Mozilla 1.0 ships."
Thanks!
|
|
130,699 | 1,219,615 |
The internal token stores token symmetric keys by creating a dummy public key in
the database. PK11_ListPublicKeysInSlot will come across this key, try to
extract it with PK11_ExtractPublicKey, get back NULL from this function because
it's not a real public key, and then store NULL in the public key list.
(pk11cert.c:3622)
The function should check for the NULL from ExtractPublicKey and should not
enter it in the list in that case.
I can work around this by checking for NULL public keys in the list and skipping
them.
|
|
130,931 | 1,221,678 |
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.9+) Gecko/20020313
BuildID: 2002031321
When visiting a page with a refresh: header, view-source also goes to the url in
the header.
Reproducible: Always
Steps to Reproduce:
1. visit http://www.shop-engine.nl/moztest/redir.php
2. within 5 seconds, view the source
3. wait a couple of seconds
Actual Results: Window with source also show bugzilla.mozilla.org
Expected Results: Window with source displays the source of the page
The mentioned url contains this php code:
<?
header("Refresh: 5; url=http://bugzilla.mozilla.org");
?>
|
|
131,016 | 1,222,545 |
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:0.9.9+)
Gecko/20020311
BuildID: 2002031404?
Current "nightly" is hosed. Menu, address bar are gone, xul in the browser window
Reproducible: Always
Steps to Reproduce:
1. Download latest
2. install
3. Hosed
Actual Results: Hosed display
Expected Results: Nice workable browser
|
|
127,418 | 1,186,254 |
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:0.9.8) Gecko/20020204
BuildID: 2002020406
If I add an XBL binding to the BODY of an HTML document using
body.style.setProperty ('-moz-binding', ...), and if that XBL binding has a
<method> in its <implementation>, then many (all?) other DOM operations on nodes
in the HTML document fail with an error
Exception: Illegal operation on WrappedNative prototype object nsresult:
0x8057000c (NS_ERROR_XPC_BAD_OP_ON_WN_PROTO)
Reproducible: Always
Steps to Reproduce:
Load the test case (I will attach this shortly). It tries to attach the binding
to a BODY, H1, H2 and H3 element in turn.
Actual Results: Operations on the BODY succeed.
The binding is successfully set on the H1 element, but afterwards, retrieving
the nodetype fails with the above error.
Expected Results: Mozilla should successfully set bindings and report the node
type for each element in turn.
If the attempt to change the body is removed from the test case, then all
operations succeed.
|
|
127,847 | 1,190,608 |
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:0.9.8+) Gecko/20020220
BuildID: 2002022003
www.trenitalia.it provides a traintable search engine.
The query form is provided with default values (current
date and hour), but unfortunately the field placement
is wrong if you choose italian language, values are
not placed in their destination field, but in the next
one
Reproducible: Always
Steps to Reproduce:
1. www.trenitalia.it
2. enter the english version of the site, form is properly initialized
3. go back
4. enter the italian version of the site
5. the fields are not initialized properly
Actual Results: ... had to fill the form fields by hand
Expected Results: to work in Italian as it does in English, French, Espagnol,...
(works in every other language, and works as expected in IE)
|
|
128,101 | 1,193,127 |
Mozilla Build 2002022408, windows 2000
In the mail windows, I am using the quick search filter textbox.
Most characters I type whle the textbox has focus have the correct action -
the letters are inserted into the textbox.
However, some characters with other bindings in the mail window keep
that binding even when the search filter has focus.
(e.g. 'n' for next message)
The net effect is that when I type an 'n' in the search filter, the next
mail message is selected, and I lose focus in the search filter textfield.
If there are no unread messages in the current folder, a dialog appears asking
me to move to the next folder.
The same thing happens for me in the AIM password-entry field in
the commercial build.
|
|
129,428 | 1,207,648 |
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:0.9.9+) Gecko/20020306
BuildID: 2002030616
Ctrl+X followed by Ctrl+V doesn't work in Bookmark manage window.
It cuts current bookmark on Ctrl+X (Cut), but doesn't insert in on Ctrl+V (Paste)
Reproducible: Always
Steps to Reproduce:
1. Go to Manage Bookmark
2. Try to move some bookmark by Ctrl+X & Ctrl+V
3.
|
|
146,399 | 1,357,063 |
When bug 124990 is fixed we need to back out the changes put in for Bug 129002
|
|
139,556 | 1,300,384 |
This bug is a spinoff from bug 118014. Crash is in javascript engine somewhere now.
See talkback report:
http://climate.mcom.com/reports/singleincidentinfo.cfm?dynamicBBID=TB5484538k
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.