Ginn Chen
2a18ac76b5
Bug 505678: Downloadable font feature is broken with Sun Studio compiler r=jdaggett
2009-07-29 17:40:33 +08:00
Dão Gottwald
fb4609c4d3
merge
2009-07-29 10:50:20 +02:00
Alexander Surkov
554be1d1c5
Bug 494815 - Accessible name subtree computation should ignore whitespace when determining whether to strip user-entered value, r=davidb
2009-07-29 17:03:20 +08:00
Alexander Surkov
323c53cf3a
Bug 468659 - Crash [@ nsAccessNode::GetDocAccessibleFor(nsIDocShellTreeItem*, int) ], r=ginn.chen
2009-07-29 17:01:48 +08:00
Dão Gottwald
930df1b2af
Backed out changeset 27b53ca1b085
2009-07-29 10:49:59 +02:00
Wolfgang Rosenauer
6220ecce9c
Bug 506901 - preference advanced pane not updated on init; r=gavin
2009-07-29 09:49:27 +02:00
Ehsan Akhgari
821f9279d3
Bustage fix for the test for bug 501413
2009-07-29 12:09:38 +04:30
Ehsan Akhgari
1a574c8f1d
Bug 501413 - In a right-to-left localization, clicking any url in the bookmark sidebar doesn't work (tests); r=mak77
2009-07-29 12:06:34 +04:30
Ehsan Akhgari
0a02e029df
Bug 506111 - consolidate getService calls in browser.js. r=dao
2009-07-29 08:22:12 +02:00
Justin Dolske
a03d767bfa
Bug 503573 - moz-icon doesn't work on Window CE. r=vlad
2009-07-28 23:19:34 -07:00
Justin Dolske
bd374e7c5d
Bug 506811 - nsIconChannel assumes writing to non-aligned 32bit int is ok. r=joe
2009-07-28 23:19:31 -07:00
Dão Gottwald
f7fa537188
Bug 506861 - make more use of makeURI(). r=gavin
2009-07-29 07:55:18 +02:00
Nochum Sossonko
3f2b8bfc51
Bug 506116 - speed up makeURI(str) and use it in browser.js. r=gavin, sr=vlad
2009-07-29 07:55:03 +02:00
Vivien Nicolas
bf4c343a15
Bug 506641: Click image resizing for nsImageDocument should be disabled, r=bzbarsky
2009-07-28 23:02:55 -04:00
Rob Arnold
f694df7b3e
Merge due to backout
2009-07-28 18:14:22 -07:00
Rob Arnold
3cdff97f5b
Backed out changeset d41cc3134424
2009-07-28 18:11:57 -07:00
Jonathan Griffin
5be7c83a1a
add reftest for bug 467472
2009-07-28 17:26:39 -07:00
Jonathan Griffin
78e4b34fb8
Another attempt to fix bug 503988: change the way we invoke find, check the Find bar's status afterwards.
2009-07-28 17:16:51 -07:00
Wan-Teh Chang
8e431a056c
Bug 504080: Update NSS from NSS_3_12_4_FIPS1_WITH_CKBI_1_75 to
...
NSS_3_12_4_FIPS4 in mozilla-central. r=kaie.
2009-07-28 17:01:39 -07:00
Peter Weilbacher
e23e6cf01c
[OS/2] Bug 506869: remove obsolete file, r=wuno@lsvw
2009-07-29 02:05:05 +03:00
Rob Arnold
dc96b0c630
Bug 502710 - Refactor the widget icon creation code r=jimm
...
--HG--
extra : rebase_source : 2f145f67bdc7d9f630970786a498fb5a411ad7d0
2009-07-28 11:52:40 -07:00
Rob Arnold
a7d4f226fc
Bug 502715 - Enable the canvas 2d context to function without an actual canvas element r=vlad
...
--HG--
extra : rebase_source : ac4f5e0038dd5d4ccb055ae2324b17867106d827
2009-07-28 11:52:31 -07:00
Honza Bambas
185d23cf88
Bug 427715 - nsCryptoHash apparently being called while NSS is in shutdown state [@ NSSRWLock_LockRead_Util], r=kaie
2009-07-28 23:26:26 +02:00
Jim Blandy
337d1489a6
Bug 475654: Allow workaround for NSPR installations with no nspr-config script. a=wes, r=jimb
2009-07-28 13:18:50 -07:00
Boris Zbarsky
b4eb9b7084
Backed out changeset 622a29736f33 to see whether bug 496823 causes the WinXP Txul regression.
...
--HG--
extra : rebase_source : 450a2a83442a2326e303f97ad82d8213fbe11490
2009-07-28 14:35:28 -04:00
Boris Zbarsky
b63722a57d
Backed out changeset b55e7e3c0bfb to see whether bug 495176 might be causing the WinXP Txul regression
...
--HG--
extra : rebase_source : c854c6a8afad67c583ff08e23bbac27cbf99c0cd
2009-07-28 14:34:01 -04:00
Boris Zbarsky
0dc99e9f40
Backed out changeset 9d5e247b5052 to see whether bug 495176 might be causing
...
the WinXP Txul regression.
--HG--
extra : rebase_source : 41a0fe73ec43dff97ada391db29dc121fb677403
2009-07-28 14:32:45 -04:00
Christian Biesinger
ce834cd636
Fix memory leaks from changeset dcda49ff1a26 - need to make sure that
...
the destructor gets called for the hashtable entries.
Also fixes a nit (AddRef() -> NS_ADDREF_THIS())
r+sr=bz
2009-07-28 19:46:04 +02:00
Boris Zbarsky
d5f00639ad
Make this test actually test the right thing
2009-07-28 13:19:17 -04:00
Christian Biesinger
d8e3f09412
Bug 487638 - status bar blames wrong resource when downloading slow responding resource
...
- Makes nsDocLoader store the last-sent status message for each request in the
corresponding nsRequestInfo, and keeps a flag to indicate whether the request
is done
- When a request finishes, it looks for a random request that is not done and
has a non-empty status, and if it finds one, sends that status message to the
listeners
- To make this all work, the patch also changes imagelib so that status and
state messages sent for images are sent with the imgIRequest as the request and
not the channel. This is necessary because the channel is not part of the
loadgroup for images, only the imgIRequest is.
- Make the BrowserStatusFilter always update its pending status message if it
is dirty, even when that matches the currently displayed status message
r+sr=bz
2009-07-28 18:13:48 +02:00
David Zbarsky
a3748ef858
Bug 484200. src attribute on <style> makes styles not apply. r=bzbarsky
2009-07-28 12:07:31 -04:00
Boris Zbarsky
cc46915a25
Followup for bug 504221 to fix debug orange. Have to hold on to an object, not a reference, if the thing passed in might be a temporary.
2009-07-28 11:04:45 -04:00
Boris Zbarsky
2a109b5e0a
Bug 504975. Go back to overriding HandleMultiplePress on various XUL frames. r=roc
2009-07-28 08:53:20 -04:00
Boris Zbarsky
a2aaeadc49
Bug 504972. Remove some redundant code. r=roc
2009-07-28 08:53:20 -04:00
Boris Zbarsky
5fefb45a48
Bug 504221 part 12. Switch SetInitialChildList to nsFrameList. r=fantasai, r+sr=roc
2009-07-28 08:53:20 -04:00
Boris Zbarsky
9d47a166af
Bug 504221 part 11. Switch the {ib}-split list munging to nsFrameList. r=fantasai,roc
2009-07-28 08:53:19 -04:00
Boris Zbarsky
cddaf1831c
Bug 504221 part 10. Switch the first-line frame list munging to nsFrameList. r=fantasai, r+sr=roc
2009-07-28 08:53:19 -04:00
Boris Zbarsky
dca83c78dc
Bug 504221 part 9. Get rid of a silly LengthOf function. r+sr=roc
2009-07-28 08:53:18 -04:00
Boris Zbarsky
c749fe8981
Bug 504221 part 8. Make CreateAnonymousColFrames saner. r=bernd, sr=roc
2009-07-28 08:53:18 -04:00
Boris Zbarsky
b5d9390d06
Bug 504221 part 7. Make nsFrameItems inherit from nsFrameList. rfantasai, r+sr=roc
2009-07-28 08:53:18 -04:00
Boris Zbarsky
31d4329c40
Bug 504221 part 6. Switch nsBlockFrame::AddFrames to nsFrameList. r=fantasai,roc
2009-07-28 08:51:10 -04:00
Boris Zbarsky
db6ff446ab
Bug 504221 part 5. Switch from GetFirstChild to GetChildList (returning an nsFrameList). For now, keep a GetFirstChild shim so callers don't have to be updated. r=fantasai, r+sr=roc
2009-07-28 08:51:09 -04:00
Boris Zbarsky
a345d5a408
Bug 504221 part 4. Switch MarkFramesForDisplayList to nsFrameList. r+sr=roc
2009-07-28 08:51:09 -04:00
Boris Zbarsky
b0259fd19b
Bug 504221 part 3. Switch overflowFrames storage to nsFrameList. r=fantasai, r+sr=roc
2009-07-28 08:51:09 -04:00
Boris Zbarsky
14796e6173
Bug 504221 part 2. Switch ReparentFrameViewList to nsFrameList. r+sr=roc
2009-07-28 08:51:09 -04:00
Boris Zbarsky
58ab0561e4
Bug 504221 part 1. Introduce framelist slice and enumerator classes and make the framelist versions of nsFrameList::AppendFrames/InsertFrames return a slice for the new frames. r=fantasai, r+sr=roc
2009-07-28 08:51:08 -04:00
Makoto Kato
b47c10e3d6
Bug 501877 - Don't define USE_ASM on Windows x64. r=chris.double
2009-07-28 19:48:21 +09:00
Makoto Kato
ad3a18a9f5
Bug 452912 - Optimize Windows x64 build for javascript engine. r=dvander
2009-07-28 19:47:34 +09:00
Makoto Kato
b9909fb293
Bug 505691 - Remove unnecessary include of nsIPref.h. r=vlad
2009-07-28 18:33:20 +09:00
Masatoshi Kimura
fd105e7c22
Bug 468351 - "display of header values with unencoded special characters broken" - core fix [r=smontagu sr=bienvenu]
2009-07-28 10:04:14 +01:00