Граф коммитов

11906 Коммитов

Автор SHA1 Сообщение Дата
bzbarsky%mit.edu 24928e712a Fix bug 77110. Make us treat wrap="physical" like NS 4.x and IE do, not
as it was originally (in NS 2.x) intended.  r=timeless, sr=attinasi,
a=blizzard
2001-06-11 22:05:52 +00:00
rods%netscape.com 7ebb9ec167 Backing change for Bug 82626, looks like round-off error in line height calculation 2001-06-11 19:29:14 +00:00
karnaze%netscape.com af04743a83 fix bad file name for table printing regression tests. This does not affect the build. 2001-06-11 15:18:15 +00:00
dbaron%fas.harvard.edu b659af71e9 Make implied universal selectors be equivalent to ns|* where ns is the default namespace, and make appropriate changes to our CSS files. This brings us into conformance with the CSS3 selectors draft and improves performance by reducing the number of universally hashed selectors. Most of this patch is by attinasi. (35847, 83482) Also make first-node/last-node rules in quirks.css non-universal to improve performance. (83839) r=rbs sr=waterson a=asa b=35847 2001-06-09 01:32:19 +00:00
rods%netscape.com 03abc1d1f3 setting line-height to 1em ! important, selects should not inherit the line height
nor should users be able to set it.
Bug 82626 r=kmcclusk sr=hyatt a=asa
2001-06-08 13:04:17 +00:00
mkaply%us.ibm.com 5fda37ce94 senna REQUIRES bustage 2001-06-08 04:26:51 +00:00
mkaply%us.ibm.com 946d0ece89 remove inline keyword to fix SunOS bustage - note sent to rods 2001-06-08 04:24:48 +00:00
timeless%mac.com d3b6e9cc1f Bugzilla Bug 41572 Prefer matched case for Access keys
patch by dean_tessman@hotmail.com r=timeless sr=blake a=dbaron
2001-06-08 03:25:44 +00:00
rods%netscape.com c20f157140 Major rework of how items are added, removed and selected (while being added and removed) with script
Now all the changes are performed, but no reflows are issued until the timer fires, which would be
after the script is done executing. The selection that take place during the script execution are
also cached and done afterward.
Bug 53165 r=pollmann sr=attinasi a=asa
2001-06-08 02:34:09 +00:00
rods%netscape.com 31c328366a Removed availableWidth/height from the boolean check to see if the values should be cached. With those in
it caches the wrong values and ten reflows at the wrong width.
Bug 70998 r=kmcclusk sr=attinasi a=dbaron
2001-06-08 02:25:22 +00:00
waterson%netscape.com 05dced413e Bug 42138. Remove ancient, unused {ib} code that causes the browser to hang. We don't need to descend into inlines looking for list-item frames anymore, because inlines cannot contain them: frame construction makes sure of that. r=rbs, sr=attinasi, a=dbaron. 2001-06-07 02:09:38 +00:00
attinasi%netscape.com 05d59e6b31 Disable Quirk ruels for XUL documents by setting the compatibility mode to Standard. b=83495 r=dbaron sr=hyatt a=blizzard 2001-06-06 23:34:17 +00:00
sfraser%netscape.com 80ff858fd9 Fix for blocker bug 83669; crash in history on Mac classic skin. Check for null childBoxSize. r=pinkerton/evaughan, a=pchen (sheriff) 2001-06-06 23:16:38 +00:00
rods%netscape.com 1b4c6f1a94 When script sets the index when multiple it needs to deselect all the items and then set the new index
Bug 77039 r=kmcclusk sr=attinasi a=dbaron
2001-06-06 10:47:33 +00:00
rods%netscape.com 9e16855ea0 The selectedindex is now getting set to -1 when there are no more items selected and it
is sending onchange events by clearing the mOldSelectedIndex.
Bug 68135 r=kmcclusk sr=attinasi a=dbaron
2001-06-06 10:41:17 +00:00
bernd.mielke%snafu.de 8052df4516 fix table margins - remove redundancy in margin handling, bug 83786
r=karnaze sr=attinasi a=dbaron
2001-06-06 07:35:03 +00:00
yokoyama%netscape.com d608082b01 bug 52464:
Preventing type cast to char which results loss of data.
/r=ftang, /sr=scc, /a=blizzard
2001-06-06 00:37:15 +00:00
pavlov%netscape.com 11c8370603 fixing bug 82520 r=jag sr=hyatt a=tor 2001-06-05 20:22:52 +00:00
rods%netscape.com 1879e17fa4 Fixed up reload to it will correctly reflow to w/h of zero
Bug 58220 r=kmcclusk sr=attinasi a=dbaron
2001-06-05 18:09:13 +00:00
peterlubczynski%netscape.com bf605eb2f2 Fix for BASE HREF not affecting applet bug 59430 patch by alexsavulov r=peterl sr=attinasi a=blizzard 2001-06-05 17:58:31 +00:00
rods%netscape.com b935b2ac50 removed "! important" for input text so allows users to tailer border sizes
This reopens bug 25580, which I have marked won't fix
Fixes Bug 55336 r=kmcclusk sr=attinasi a=dbaron
2001-06-05 12:52:37 +00:00
shanjian%netscape.com e34e0f10e9 #19265 [TEXT] Word-wrap improperly breaks before space following last word [INLINE]
r = waterson
r/sr=attinasi a=asa
2001-06-05 02:40:27 +00:00
hyatt%netscape.com dcd5777197 Fix for 83642. r=jag, sr=blake, a=tor 2001-06-05 01:08:31 +00:00
dbaron%fas.harvard.edu d4918d0cb3 Miscellaneous performance fixes related to selector matching:
* cut in half the number of (expensive, universally hashed) selectors needed for many UA-stylesheet :link and :visited rules by implementing :-moz-any-link (bug 83484)
 * remove most of EnumerateTagRules since most of it does no useful work (bug 83506)
 * avoid refcounting of atoms for stack-based hash keys (bug 83511)
 * add logging (turned off, except for me) to evaluate effectiveness of RuleHash
 * add a namespace hash, which will be a big win once bug 35847 is fixed (bug 83497)
 * avoid repeated reallocation of mEnumList by setting the initial length to a minimum of 8
 * remove an unneeded variable in the beginning of SelectorMatches
 * fix one case in CSS error reporting (bug 65469), not part of default build
b=83482  r=attinasi@netscape.com  sr=waterson@netscape.com  a=asa@mozilla.org
2001-06-05 01:00:11 +00:00
pinkerton%netscape.com 489aec8c58 bullet-proof hiding the view. we might not have one if things are not dismissed correctly. r=pchen/sr=hyatt/a=asa. bug 83753. 2001-06-04 23:55:48 +00:00
hyatt%netscape.com d5e373a2c8 Fixes for 83027, 83892, and 80512. r/sr=blake,alecf,pink, sr=hewitt,blake, a=asa 2001-06-04 23:23:35 +00:00
pchen%netscape.com 6d42aa08c7 bug 78409, r=pinkerton, sr=hyatt, a=asa, apply patch for bug 66848 which fixes submenus not knowing that its parent menu popped up in the opposite direction (usually because of hitting a screen boundary) 2001-06-04 23:03:24 +00:00
hyatt%netscape.com 358a2b68ed Fix build bustage. 2001-06-04 00:57:43 +00:00
hyatt%netscape.com 6c393ae2f4 Fixes for 80512 and 83707. r=blake, sr=waterson, a=asa 2001-06-04 00:22:43 +00:00
hyatt%netscape.com 853bd58405 Fix for smoketest blocker 82194. sr=waterson, r=soemone, go look in the bug 2001-06-01 22:48:05 +00:00
hyatt%netscape.com 407949652d Fix for 83613. r=dbaron, sr=brendan, a=leaf 2001-06-01 21:04:23 +00:00
dbaron%fas.harvard.edu 478c463cd4 Adding newline to end of file to fix HP bustage. 2001-05-31 23:59:22 +00:00
hyatt%netscape.com b135c5b55a Fix for 78695 (rule matching improvements). r/sr=attinasi, jst, waterson 2001-05-31 22:19:43 +00:00
waterson%netscape.com 1b7c44aeaf Bug 58674. If |ContentAppended()| ends up appending frames to the anonymous block frame, we don't need to |ReframeContainingBlock()|. r=karnaze, sr=attinasi, a=chofmann 2001-05-31 04:28:50 +00:00
waterson%netscape.com 54f2523771 Remove vestigial cruft. 2001-05-31 04:23:22 +00:00
waterson%netscape.com 5c33f5bde4 Bug 58674. Add regression tests. Not part of the build. 2001-05-31 03:23:37 +00:00
rods%netscape.com d8a1f418ba Need to cache a pointer to the currently focused DOMWin because the Print Dialog
"steals" the focus away and then getting it returns null.
Bug 83358 r=kmcclusk sr=attinasi a=asa
2001-05-31 01:06:33 +00:00
waterson%netscape.com 888ac0c959 Add regression test for bug 82221. Not part of the build. 2001-05-31 00:15:42 +00:00
rods%netscape.com bf413d89a7 makes sure the views for the pages that are not being printed are completely hidden
Bug 83138 r=kmclusk sr=attinasi a=dbaron
2001-05-30 21:19:46 +00:00
waterson%netscape.com 7db715079e Bug 81905. Process 'timeout' reflows before calling |DoneRemovingReflowCommands()|. r=karnaze, sr=jst, a=asa 2001-05-30 19:28:37 +00:00
pollmann%netscape.com 1ac7a3715e Bug 77834: Fix problem where form control state is being restored to the wrong form control or not restored at all when going back and forth through session history. The problem was that the hash key we used was the content ID, which was not consistent from page load to page load. The fix was to key instead by index of form in document / index of control in form, with logic to fall back to content ID if we are unable to do this. r=nisheeth@netscape.com, sr=jst@netscape.com, a=drivers@mozilla.org (blizzard@mozilla.org) 2001-05-30 11:26:21 +00:00
attinasi%netscape.com 470a41f127 Fixed crash when mouse move event is handled by image frame and the baseURI is null (after traversing to the link'd document). b=81728 r=pavlov@netscape.com sr=hyatt2netscape.com a=asa@mozilla.org 2001-05-26 05:46:33 +00:00
mjudge%netscape.com af97e71209 80937, null check for out of bounds on arrowing. r=cmanske sr=kin a=asa 2001-05-25 20:27:41 +00:00
roc+%cs.cmu.edu 8865fc53de Fix for bug 77507. Set default background color correctly. Warn if it isn't set correctly. r=waterson,sr=attinasi,a=blizzard 2001-05-25 15:00:51 +00:00
kin%netscape.com 91badd7c66 Fix for bug #82566 (hang in nsTextFrame::GetPosition in BIDI code)
Fix for bug #81078 (UMR: nsTextFrame::GetPosition() when selecting text.)
Subtract mContentOffset from the index returned by the ip[] array, and
make sure this index is <= textLength.
r=mjudge  sr=sfraser  a=blizzard@mozilla.org
2001-05-25 13:20:38 +00:00
nisheeth%netscape.com 73edd4ea66 Fix for bug 57636. r=rpotts, sr=jst, a=asa. Onload handlers now fire on document.written content. 2001-05-25 08:49:03 +00:00
waterson%netscape.com ab25003da8 Bug 73291. Handle case where paint arrives before reflow for modified content. r=karnaze, sr=attinasi, a=asa 2001-05-24 18:40:45 +00:00
ftang%netscape.com a7c5759a22 fix 81957. return error code when error happen when we do not get a good frame result to stop a selection crash
in a page which have bidi/table/image
proposed by yokoyama r=ftang/mjudge/attinasi sr=kin a=blizzard
2001-05-24 01:10:19 +00:00
hewitt%netscape.com bd7b740865 78771 - autocomplete popup results are empty in 2nd browser instance and mail compose, r=ben, sr=hyatt 2001-05-23 22:47:54 +00:00
mkaply%us.ibm.com 1f6d785923 #81078
r=simon@softel.co.il, sr=sfraser, a=blizzard
Fix UMR and bounds checking
2001-05-23 22:05:30 +00:00