Commit Graph

5174 Commits

Author SHA1 Message Date
timeless%mac.com
1d6d2167b1 Bugzilla Bug 77080 Show application/x-javascript in browser window instead of trying to download
fix by bzbarsky@mit.edu, r=harishd, sr=jst
2001-05-03 22:28:44 +00:00
arik%netscape.com
bdbe6b224a moving from using 32 to using nsIDOMKeyEvent::DOM_VK_SPACE to make the code more clear as per brendan's suggestion. 2001-05-03 22:26:06 +00:00
jdunn%netscape.com
3866ca5116 Fixing tinderbox bustage
fixing per pierre's suggested patch on the n.p.m.b
r=pierre@netscape.com,jdunn@netscape.com
2001-05-03 20:37:06 +00:00
mkaply%us.ibm.com
d55543cda7 OS/2 TB break - forgot a false 2001-05-03 18:05:27 +00:00
mkaply%us.ibm.com
b4b92d9caf OS/2 TB break - need to change true to PR_TRUE and false to PR_FALSE 2001-05-03 16:09:42 +00:00
pierre%netscape.com
8c7ba4bba1 Changed 2 stray |bool|s to |PRBool| to make OS/2 happy. Thanks to dbaron. 2001-05-03 15:40:05 +00:00
pierre%netscape.com
08aac85e54 43457: change the mutable style context APIs, disable style context sharing, implement style data sharing. r=waterson. 2001-05-03 13:20:48 +00:00
scc%mozilla.org
6860a0a739 bug #75504; sr=jband. simple fixes correcting where people inappropriately applied |getter_AddRefs| 2001-05-03 10:09:59 +00:00
pierre%netscape.com
45e5ab78ac 78541 Typos in nsCSSStyleRule.cpp. Fix by sfraser, r=valeski. 2001-05-03 07:39:57 +00:00
rbs%maths.uq.edu.au
4cb7d4deb1 Low hanging optimization: save some cycles by avoiding to copy strings. b=77659 r=waterson 2001-05-03 05:37:09 +00:00
heikki%netscape.com
68d71281ad Bug 78455, regression with link target. My attempt to override GetbaseTarget was foiled by extraneous 'const'. r=harishd, sr=jst. 2001-05-02 22:31:02 +00:00
pierre%netscape.com
2ae03292f4 74773 UMR in AccumulateCRC(). r=attinasi 2001-05-02 10:55:08 +00:00
pierre%netscape.com
b0fcb3608c 62304 [CASCADE] Can't style form controls. r=attinasi, a=hyatt, sr=the man formerly known as buster. 2001-05-02 10:45:07 +00:00
pierre%netscape.com
e9070a9f0a 14448 'border' property not resetting 'border-color' to initial value. tested=dbaron/hixie 2001-05-02 10:31:31 +00:00
pierre%netscape.com
35c37fb0de 63502 Content-Style-Type don't ignore parameters. r=attinasi 2001-05-02 10:24:57 +00:00
pierre%netscape.com
8585a14bb1 66190 External style sheet with unrecognized charset is ignored / 63502 Content-Style-Type don't ignore parameters. r=attinasi/glazman 2001-05-02 10:24:33 +00:00
rbs%maths.uq.edu.au
651dbbfef2 Fix bug 76567 (load viewsource.css on demand rather than at startup). Patch mostly by bzbarsky@mit.edu r=harishd,brendan sr=jst 2001-05-02 04:53:38 +00:00
arik%netscape.com
ffc7c7df2c checking in the rest of the code that was accidentally not included. sorry all. 2001-05-02 02:59:17 +00:00
hyatt%netscape.com
9ac35d4459 Fix for 76495. r=danm, sr=rpotts 2001-05-01 22:54:11 +00:00
hyatt%netscape.com
dddabd000c Fix for 76495. r=danm, sr=rpotts 2001-05-01 22:50:16 +00:00
heikki%netscape.com
a009f495a9 Bugs 67887, 67893, 67882, 68185, 73160, 77923. Added support for XHTML base href and target attributes, meta http-equiv and link href. Fixed the blank page bug when xml-stylesheet PI did not contain href attribute. Fixed getElementById() to not match XHTML name attribute. This fix also includes some minor cleanup. r=nisheeth, sr=vidur. 2001-04-30 23:35:09 +00:00
bryner%uiuc.edu
89eef2617e Bug 76920 - fire a mouseout event before doing a mousewheel scroll to avoid stuck tooltips. r=blake, sr=hyatt. 2001-04-30 08:11:03 +00:00
cls%seawood.org
00f28396a9 Set EXPORT_LIBRARY=1 in all pertinent Makefile.ins. Allows us to build the final link list as we traverse the tree. Bug #46775 2001-04-28 19:48:12 +00:00
jfrancis%netscape.com
6561038a28 adding NSIRangeUtil implementation and interface to content so that folks outside of layout will have some way to compare dom points to ranges or other points. Groundwork for 65557, among others. r=fm; sr=kin 2001-04-28 12:02:14 +00:00
hyatt%netscape.com
4fb15f81ee Fix for 75024. r=danm, sr=ben 2001-04-28 05:50:46 +00:00
dbaron%fas.harvard.edu
60db9f50dc Fix OS/2 bustage. |nsISupportsArrayEnumFunc| should not have |PR_CALLBACK|. 2001-04-28 04:30:42 +00:00
arik%netscape.com
e93a72a5c9 moved the spacebar handling code from js to c++ so that spacebar works for embedding apps. fixed bug 71760, r=brendan, sr=hyatt, a=blizzard. 2001-04-28 02:32:14 +00:00
dbaron%fas.harvard.edu
33fd6335e4 Fix unneeded construction of |nsAutoString|s in |SelectorMatches| by pulling one out of a loop and rewriting matching of ^= and $= CSS3 selectors to remove the other. b=77063 r=glazman@netscape.com sr=attinasi@netscape.com
Fix O(N^2) cascading by replacing insertion into one large |nsISupportsArray| with appending into a hashtable (hashed by weight) of |nsISupportsArray| and then combining those arrays into the larger array.  b=77066  r=attinasi@netscape.com  sr=waterson@netscape.com
Reduce construction of |SelectorMatchesData| by retaining (so they can be used for matching other selectors) any new ones constructed in |SelectorMatchesTree| until the one originally passed to |SelectorMatchesTree| is destroyed.  b=77090  r=attinasi@netscape.com  sr=waterson@netscape.com
2001-04-28 02:16:16 +00:00
valeski%netscape.com
00bca056ef mozilla diffs r=tao, sr=alecf, commercial diffs r=syd, sr=syd/shaver. lower-casing JS calls to createBundle. removing un-used nsILocale param from nsIStringBundle::CreateBundle(). 76332 2001-04-27 21:30:24 +00:00
blakeross%telocity.com
a54a91e8fa Reset the content state after dropping so dragged nodes don't remain :active (48857). r=saari sr=ben 2001-04-27 21:23:02 +00:00
sfraser%netscape.com
44cbfd57f8 Fix for 76758, 63241 and 68307. Make Find search through all frames, bring the Find dialog up from JS, and make a docShell enumerator. r=adamlock, sr=kin 2001-04-27 21:11:03 +00:00
rpotts%netscape.com
259fce8009 fix for bugs #55867, 63529, 26295, 63247 (r=darin, valeski) 2001-04-27 21:05:52 +00:00
sfraser%netscape.com
245d4eb76f Backing out valeski 2001-04-27 05:53:22 +00:00
valeski%netscape.com
54db7dffa3 mozilla tree r=tao, sr=alecf. commercial tree r=syd, sr=syd/shaver. lowercasing the first char in JS method calls to createBundle. removing the dead locale parameter in the CreateBundle() method call. 76332 2001-04-27 04:16:22 +00:00
darin%netscape.com
4cd0b698bf Fixes bug 77269 "ibench test performance regression" r=gordon, sr=brendan. 2001-04-27 02:26:32 +00:00
brade%netscape.com
32304af1c0 remove selectAll (moved to the global file); r=akkana, sr=kin (bug#74643) 2001-04-26 19:41:12 +00:00
brade%netscape.com
074db000cf put selectAll back in the global file; r=akkana, sr=kin (bug#74643) 2001-04-26 19:40:14 +00:00
heikki%netscape.com
4095a51dde Bugs 65848 and 75031, support for application/xml and application/xhtml+xml mime types. This also fixes almost all of content to use NS_LITERAL_STRING instead of NS_ConvertASCIItoUCS2. r=harishd, valeski (mime types), sr=vidur. 2001-04-26 19:33:12 +00:00
pinkerton%netscape.com
4184e12c03 kill click-hold timer when shutting down esm. don't start click-hold timer if a <menubutton> or if content has a |popup| tag. Fixes dual-menus on bookmarks button. r=pchen/sr=hyatt. bug# 75842. 2001-04-26 19:12:31 +00:00
shaver%mozilla.org
0329a20c36 77540: reduce default mMaxTextRun from 8192 to 8191, to greatly improve page load performance. r=harish, sr=blizzard 2001-04-26 14:37:31 +00:00
hyatt%netscape.com
8130400b54 Fix for 77002. reviewers=jst,waterson,hixie,shaver,brendan,pavlov 2001-04-25 19:52:49 +00:00
dbaron%fas.harvard.edu
e4c7bd1fee Fix regression caused by fix for bug 67478 that caused the default canvas background to be propagated (via HTMLDocumentColorRule) to the backgrounds of elements within tables when both HTML and BODY had transparent backgrounds and we were in quirks mode. b=70831 r=attinasi@netscape.com sr=roc+moz@cs.cmu.edu a=chofmann@netscape.com 2001-04-25 02:55:03 +00:00
dr%netscape.com
eec73874cf fix for 70224 (need nsIWebBrowserChromeFocus for embedding). r=danm, sr=hyatt, a=asa 2001-04-25 02:04:56 +00:00
pollmann%netscape.com
1d23952a32 Bug 77227: Check if javascript is enabled every page load instead of caching the pref value in the DocShell (Remove bit of dead code I missed) 2001-04-24 23:59:45 +00:00
pollmann%netscape.com
ef6ef894d1 Bug 77227: Check if javascript is enabled every page load instead of caching the pref value in the DocShell, r=harishd@netscape.com, sr=brendan@mozilla.org 2001-04-24 23:25:09 +00:00
saari%netscape.com
46736afcfa 76450, fix for initial focus problems on pages with a text field that gets focused on load like google. r=pinkerton, sr=hyatt, a=drivers 2001-04-24 22:52:03 +00:00
pollmann%netscape.com
2d5eeda5a9 Bug 74639: Preserve frame state through form demotion, don't store uninitialized frame state, r=nisheeth@netscape.com, sr=jst@netscape.com 2001-04-24 08:43:08 +00:00
pollmann%netscape.com
d0a846e19a Bug 76684: Fix crash on recursive submit event processing, r=rods@netscape.com, sr=brendan@mozilla.org, a=asa@mozilla.org 2001-04-24 05:18:10 +00:00
heikki%netscape.com
ca3a97dba5 Bug 76641, back out baseURI property in the Node interface to fix binary compatibility. baseURI property is implemented in a different way on the DOM conversion branch, so baseURI will get back when the branch lands. This fix by jst, r=heikki, sr=brendan, a=chofmann. 2001-04-24 00:04:11 +00:00
attinasi%netscape.com
9de44f8bbb Image dimensions now show up in title with or without IMG2. b=57549 r=pavlov sr=waterson a=blizzard 2001-04-23 23:46:50 +00:00
joki%netscape.com
3a7e98920c Fix for bug 71283, null pointer check for event listeners passed into AddEventListener. a:choffmann 2001-04-23 05:33:07 +00:00
harishd%netscape.com
d62a1ccbe9 fixing the bustage...again 2001-04-21 23:40:05 +00:00
harishd%netscape.com
d4272380d9 69455 - enable noframes content when frames are disabled
r=heikki,sr=waterson,a=choffmann
2001-04-21 22:22:15 +00:00
disttsc%bart.nl
5662ed0812 Bug 45143: fix <meta http-equiv="refresh" content="X; url=URI"> to accept URI which contain commas. While I'm at it, merging the implementations in nsDocShell.cpp and nsHTMLContentSink.cpp. r=brendan@mozilla.org, sr=rpotts@netscape.com, a=hofmann 2001-04-20 08:11:12 +00:00
hyatt%netscape.com
5ebeb25160 Fix for 76367. r=saari, sr=waterson, a=asa 2001-04-20 01:45:07 +00:00
hyatt%netscape.com
c60ed6c236 Fix for 76746. r=saari, sr=waterson, a=asa 2001-04-20 00:16:39 +00:00
waterson%netscape.com
03fd8c94bb Bug 75591. Null check to handle case where element has been removed from doc, but reference not dropped yet. r=hyatt, sr=jst, a=asa. 2001-04-19 23:28:57 +00:00
dr%netscape.com
425957fc57 fix for 76733 (DocumentViewer::GetInLink, ::GetInImage should be quieter -- needed for immediate silencing of unnecessary mailnews assertions). r=pink, sr=scc, a=asa 2001-04-19 21:47:17 +00:00
maolson%earthlink.net
fc69b17ec2 bug 70810 [XUL Syntax] Change tab syntax - another of the XUL 1.0 changes
r=ben, sr=hyatt
2001-04-18 06:59:04 +00:00
bryner%uiuc.edu
2e185075af Bug 31809:
- When a docshell first takes focus, give focus to its first focusable content
- Make the docshell come after all of its content in the tabbing order

r=saari, sr=hyatt.
2001-04-18 06:18:10 +00:00
dr%netscape.com
2e8fbd1253 64313 (Implement cmd_copyLink, cmd_copyImageLocation, cmd_copyImageContents). Implement the commands, hook them up in the navigator and mailnews frontends, provide hooks for embedding. r=hyatt, sr=waterson 2001-04-18 06:06:31 +00:00
pierre%netscape.com
7e44a669bf #12386 "Matching of case sensitive attribute values should be case sensitive" sr=waterson 2001-04-18 04:36:52 +00:00
hyatt%netscape.com
174428fb65 Fix for my 0.9 focus issues. r=saari, sr=brendan 2001-04-18 01:41:20 +00:00
mjudge%netscape.com
5b3dcdb1f8 needed PR_MIN and MAX bustage 2001-04-18 00:33:23 +00:00
dbaron%fas.harvard.edu
68d7ca3932 Fix MOZ_TRACK_MODULE_DEPS bustage by adding htmlparser to REQUIRES. 2001-04-18 00:17:21 +00:00
heikki%netscape.com
1f6e826dca Bug 51339, XHTML map elements did not work, r=harishd, sr=vidur. 2001-04-18 00:14:34 +00:00
mjudge%netscape.com
bf9ef32d15 removing optimization unneeded for table selection to fix 60846sr= kin r= manske after making changes they requested 2001-04-17 23:31:34 +00:00
harishd%netscape.com
fa9d1080cf 68790 - Remove nsHTMLContentSinkStream dependency. Not in use anymore
r=heikki
sr=jst
2001-04-17 23:23:33 +00:00
pierre%netscape.com
ebd847e390 #59933. When a |smaller| font size results in something smaller than the |xx-small| of the base font, we use the parent's font size. Same thing for |larger| and |xx-large|. r=attinasi 2001-04-17 23:23:09 +00:00
erik%netscape.com
e65d9dcf8c bug 76311; author=simon@softel.co.il; r=mjudge; sr=erik; This fixes the bug
where we were running bidi selection code even on a non-bidi document. It
also fixes a problem in the bidi code where we were ignoring the return
values of a few calls.
2001-04-17 23:03:38 +00:00
gordon%netscape.com
b718ed6d4d bug 72528, removing old cache from build. sr=darin. 2001-04-17 10:40:13 +00:00
pollmann%netscape.com
5a825e5b27 Bug 76208: Store control that submitted form in event so we can submit it to the server (fixes regression), r=harishd@netscape.com, sr=jst@netscape.com 2001-04-17 10:02:11 +00:00
joki%netscape.com
81041e89f4 Fix for smoketest block 76304. r:jst 2001-04-17 09:53:37 +00:00
peterv%netscape.com
6b574e5f35 Fix for bug 45377 (document base is not set right in nsXMLDocument::Load). Code by heikki, r=me, sr=jst. 2001-04-17 09:46:29 +00:00
jst%netscape.com
b99bf67adc Fixing regression bug 75645, anonymous form controls were ending up in form.elements. r=pollmann@netscape.com, sr=rpotts@netscape.com 2001-04-17 08:35:49 +00:00
joki%netscape.com
26b7f822c3 Fixes for Create/Init/Dispatch of new DOM events. Bugs 25889, 71544, 52129, 61022, 71823. sr:jst, hyatt 2001-04-17 05:52:11 +00:00
pavlov%netscape.com
5b7ab2c22a fixing bug 75830 r=harishd sr=jst 2001-04-17 04:39:56 +00:00
dbaron%fas.harvard.edu
3edaff6670 Add 3 proposed CSS3 system colors as -moz-FieldText, -moz-Dialog, and -moz-DialogText, which are needed to accurately represent system colors on GTK.
Restore GTK system color for WindowText to the correct value (fg rather than text).
Add debugging code that can be enabled to debug use of system colors in themes.
r=pierre@netscape.com  sr=blizzard@mozilla.org  b=67448
2001-04-17 00:46:07 +00:00
pollmann%netscape.com
6e6edb6a25 Bug 64702: Fix crash on focus by adding null checks, and make form.submit call onsubmit handlers before submitting. r=rods@netscape.com, sr=jst@netscape.com 2001-04-16 06:36:45 +00:00
attinasi%netscape.com
075cacae44 Fix for problem where a StyleContext changes its CRC and does not update the styel context cache. b=73553 r=karnaze sr=waterson 2001-04-14 14:06:27 +00:00
attinasi%netscape.com
91b83e404f Fix for regression: only restrict HTML content from event pseudo application. b=75823 sr=hyatt 2001-04-14 06:34:50 +00:00
erik%netscape.com
0b6dd6cae3 bug 75066; author=simon@softel.co.il; r=jst; sr=erik; this change addresses
a comment made during the review of 75066 (nsBidiOptions -> PRUint32)
2001-04-13 22:09:44 +00:00
erik%netscape.com
b87478bd9c bug 75066; author=simon@softel.co.il; r=jst; sr=erik; this change addresses
a comment made during the review for 75066 (nsBidiOptions ->PRUint32)
2001-04-13 21:46:28 +00:00
ftang%netscape.com
35534b4971 fix unix bustage 2001-04-13 13:44:16 +00:00
rods%netscape.com
e8e83262c6 Fixing clipping problem with IFrames and the page timer not being stopped
and started correctly.
Bug 75740 r=dcone
2001-04-13 12:32:18 +00:00
peterv%netscape.com
39eb23e581 Fix for 75724 (duplicate data in inline stylesheets). r=glazman, sr=attinasi. 2001-04-13 10:35:40 +00:00
jst%netscape.com
6bb4c4f6b5 Adding missing trailing '/' in the xmlns namespace uri, fixes bug 37649. Fix by sicking@bigfoot.com, r=disttsc@bart.nl, sr=jst@netscape.com 2001-04-13 07:54:21 +00:00
waterson%netscape.com
28d30a3789 Fix some code that is #ifdef DEBUG_waterson 2001-04-13 03:46:23 +00:00
disttsc%bart.nl
35e20a0413 Fix senna bustage (MOZ_TRACK_MODULE_DEPS) 2001-04-13 02:00:19 +00:00
sfraser%netscape.com
7e1751ab0f Fix for bug 75492 -- make <button>s selectable in composer. r=rods, sr=attinasi 2001-04-13 00:39:52 +00:00
mjudge%netscape.com
72784fe41e 68396 removing unused ifdefs and includes from project for nsGfxTExtControlFrame2 sr=kin r= kin 2001-04-12 23:39:19 +00:00
erik%netscape.com
4b8e61185d bug 75066; author=simon@softel.co.il; r=jst; sr=erik; diffs from IBM bidi
project (e.g. Arabic, Hebrew)
2001-04-12 23:35:24 +00:00
rods%netscape.com
be33a15835 Implements Print FrameAsIs and other frame printing options
Bug 7201 r=dcone sr=attinasi
2001-04-12 13:04:29 +00:00
jst%netscape.com
32fbbc9342 Checking in a workaround for scrollbar code bug 55334, this bug causes scrollbars to not show up in pages that are completely generated with document.write(). r=brendan@mozilla.org/nisheeth@netscape.com, sr=vidur@netscape.com 2001-04-12 09:50:55 +00:00
alecf%netscape.com
7d84604d1d fix for bug 73313 - put Gecko back in the user agent
problem was that there was no entry in the content DLL's CreateInstance for the HTTP Startup listener that actually set the date. duh.
sr=ben@netscape.com
2001-04-12 07:54:26 +00:00
pollmann%netscape.com
988417adb4 Bug 66399: Fix anchor target fetch to default to base target, r=nisheeth@netscape.com, sr=jst@netscape.com 2001-04-12 06:57:02 +00:00
hyatt%netscape.com
355c4b887b Fix a counting error in ReplaceMatch. r=danm, sr=waterson 2001-04-12 04:31:16 +00:00
hyatt%netscape.com
c72ca35e9c Fix error in empty testing in templates. r=brendan, sr=waterson 2001-04-12 01:57:50 +00:00
pete%alphanumerica.com
2ba37e2cc2 fix for bug #74381
http://bugzilla.mozilla.org/show_bug.cgi?id=74381

 r=pollmann@netscape.com, sr=jst@netscape.com

--pete
2001-04-12 01:05:42 +00:00
attinasi%netscape.com
ba852bc4c0 'Fixes' major performance problem with universal dynamic pseudo selectors by restricting their application in Standard mode to the same elements we restrict them to in QuirksMode. b=68821 r=waterson sr=shaver 2001-04-11 23:47:34 +00:00
shaver%mozilla.org
a0daa1645d 75152: Remove GetVersionNumber stub in favour of upcoming, less-invasive
preloader strategy. r=jag, sr=attinasi.
2001-04-11 14:23:13 +00:00
dcone%netscape.com
3072888e9a Fixed some timer issues that crashed the Mac. r=mmclusk sr=attinasi b=74083 2001-04-11 14:06:39 +00:00
hyatt%netscape.com
558eaf3113 Fix for 75189. r=jag. sr=attinasi 2001-04-11 03:55:39 +00:00
hyatt%netscape.com
c210ea2241 Fix for 75189. r=jag, sr=attinasi 2001-04-11 03:55:19 +00:00
hyatt%netscape.com
33aeb4f73d Adding support for advancing and rewinding the focus using the command dispatcher. r=saari, sr=jst 2001-04-11 03:11:34 +00:00
hyatt%netscape.com
26a2d9444e Adding support for advancing and rewinding the focus using the command dispatcher. r=saari, sr=jst 2001-04-11 03:05:42 +00:00
blakeross%telocity.com
80bf68ccea Implement css3 :empty selector (75186). Patch by the evil QA-turned-engineer Ian Hickson <ian@hixie.ch> who insists on using me shamelessly for my cvs account. r=pierre sr=attinasi 2001-04-11 02:55:41 +00:00
glazman%netscape.com
63836c542e fix for :not() due to 72302; b=71647, r=pierre, sr=attinasi 2001-04-10 13:43:20 +00:00
jfrancis%netscape.com
f8787df377 fix for 74991: nsDocumentEncoder::SerializeRangeToString() reverses order of ancestors. r=anthonyd; sr=sfraser 2001-04-10 12:37:23 +00:00
glazman%netscape.com
2eb62ea2f4 CSS2+ identifiers should support underscores ; b=74845, r=pierre, sr=attinasi 2001-04-10 11:09:07 +00:00
darin%netscape.com
00a7e27ee6 Necko API changes, bug 74221. r=valeski, sr=rpotts. 2001-04-10 06:01:08 +00:00
varga%utcru.sk
0336388aa1 Bug 73865.
Changes to RDF outliner, needed for folder outliner.
r=waterson sr=ben
2001-04-10 05:30:51 +00:00
hyatt%netscape.com
7b2a26b37c Fix for 73137. r=danm, sr=hewitt 2001-04-10 02:10:02 +00:00
mozilla.BenB%bucksch.org
3b6bf60891 58377: We output space(s) at the end of the line way too often. That causes messy output in format=flowed-aware readers.
Examples (fixed): end of lists, after headers, empty lines in quotes.
Reason was broken indention and broken space-stuffing.
Also made empty lines around list items more similar to NGLayout (looks better now).
Part of fix contributed by Daniel Bratell
r=akk, sr=jst
2001-04-10 01:11:39 +00:00
waterson%netscape.com
a6c83f4203 Bug 5569. Make sure that Terminate() can propogate DidBuildModel() to the sink, and that the sink will ensure an initial reflow has occurred. r=harishd, sr=jst 2001-04-10 00:49:49 +00:00
hyatt%netscape.com
c9707ad906 Fix for 75189. r=jag. 2001-04-09 01:40:19 +00:00
hyatt%netscape.com
fa6e409fe0 Fix regression to :-moz-bound-element caused by the :not checkin. 2001-04-08 22:22:47 +00:00
hyatt%netscape.com
e0b15c4f11 Fix for 75039. sr=waterson 2001-04-07 01:57:21 +00:00
sfraser%netscape.com
33b438047e Fix for XUL assertions when loading browser windows. sr=hyatt 2001-04-06 01:02:17 +00:00
attinasi%netscape.com
e1128e740c Fixed performance problem caused by unused nsAutoString in SelectorMatches.
Patch by bratell@lysator.liu.se, r=glazman@netscape.com sr=attinasi@netscape.com b=74830
2001-04-05 23:14:00 +00:00
blakeross%telocity.com
c9b9689e26 Use more efficient command structure, refactor commands, broadcasters and keys, remove unused attributes, do some other optimization (72923). Landing navigator part only; this should help new window opening and some other areas. r=ben sr=hyatt 2001-04-05 19:53:13 +00:00
dprice%netscape.com
8c0b9eaf97 65845 - new order files 2001-04-05 06:02:32 +00:00
bratell%lysator.liu.se
b9a018fb6f The right fix for bug 74328. This was the one that was reviewed and I have no idea where the old one came from. r=waterson sr=jst 2001-04-05 03:38:20 +00:00
ben%netscape.com
5d67a73fc1 First part of fix for bug 73508, create nsIXULOutlinerBuilderObserver interface,
and install notifications for it. r=waterson, sr=shaver
2001-04-05 03:17:17 +00:00
bratell%lysator.liu.se
e0376b654e Fix for bug 74328, removing O(n^2) algorithm from ContentAppended. This saves time on big pages. r=waterson sr=jst 2001-04-05 03:14:57 +00:00
dr%netscape.com
ec68e28def fix for 61187 (nsIController ignores COM identity rules), contributed by MarkH@ActiveState.com, r=dr, sr=brendan 2001-04-05 02:45:17 +00:00
sfraser%netscape.com
ae21d8429d Fix for 74143, change nsIController to use DOMStrings. sr=hyatt, r=kin 2001-04-04 23:48:03 +00:00
jdunn%netscape.com
66345ca194 just adding a comment with reference to the bug to let people looking
at this know what the heck is going on
2001-04-04 21:57:14 +00:00
jdunn%netscape.com
6d5ffd1e43 aix,os/2 & solaris are all having problems with this. It has to do with
struct/union access and nested classes, but it is a big pain.

r= mkaply@us.ibm.com,waterson@netscape.com,scc@mozilla.org
a= scc@mozilla.org
# 74725
2001-04-04 21:54:18 +00:00
jdunn%netscape.com
115a7fc3ee fixing ports bustage
# 74725
2001-04-04 14:43:39 +00:00
mkaply%us.ibm.com
c22519336d Nope, didn't work 2001-04-04 13:44:01 +00:00
mkaply%us.ibm.com
1031cda62b Attempt to fix ports bustage 2001-04-04 13:08:27 +00:00
cls%seawood.org
94488695d7 Some compilers/platforms (Irix) only have <new.h> not <new>. Fixing cement tinderbox bustage 2001-04-04 11:16:58 +00:00
waterson%netscape.com
1623249efc Wild stab at fixing ports bustage. 2001-04-04 09:05:06 +00:00
waterson%netscape.com
d95d2ab2a0 Fix more gcc-2.7.2.3 bustage. Whee\! 2001-04-04 08:26:32 +00:00
waterson%netscape.com
f127fd0c45 Fix gcc-2.7.2.3 bustage. 2001-04-04 07:54:23 +00:00
ben%netscape.com
6251aa58fa Partial fix for 73905, JS files not loaded with nsIChannel::LOAD_NORMAL.
r=darin, sr=hyatt
2001-04-04 07:21:36 +00:00
darin%netscape.com
aaa5e0e11a Fixes bug 73905 "CSS/JS documents are not cached" r=pierre, sr=waterson 2001-04-04 07:20:46 +00:00
hyatt%netscape.com
53b3103260 Missed the XML bit of my mutation patch. 2001-04-04 07:07:33 +00:00
hyatt%netscape.com
82ae29b0f4 Missed a bit of my mutation patch. 2001-04-04 07:07:20 +00:00
hyatt%netscape.com
672f152fb8 Missed a piece of the mutation patch. 2001-04-04 05:06:18 +00:00
waterson%netscape.com
8e6365a96f Bug 68213. Require users of nsFixedSizeAllocator to specify object size at Free() time to avoid 8 byte overhead per allocation. r=harishd, brendan, shaver, hyatt; sr=scc 2001-04-04 05:00:08 +00:00
hyatt%netscape.com
ae684d48b4 Fix for mutation event crashers. 2001-04-04 04:30:03 +00:00
sspitzer%netscape.com
9ebd9a19d2 fix for #74357. do what 4.x mac did for collapsed read messages, that are threads that had unread chidren. r/sr=hyatt,bienvenu 2001-04-04 02:13:41 +00:00
rickg%netscape.com
169a621d42 preloader update. r=peterl, sr=attinasi 2001-04-03 22:58:59 +00:00
av%netscape.com
b9da232f88 For 73856, adding plugin host notification that the plugin instance is scriptable, sr=vidur, ra=jst 2001-04-03 22:33:32 +00:00
dr%netscape.com
e373fb7108 fix for 74065. r=pinkerton, sr=hyatt 2001-04-03 20:45:13 +00:00
dr%netscape.com
02a685888f fix for 72010 (contrib by alex.fritze@crocodile-clips.com). r=dr, sr=hyatt 2001-04-03 20:42:41 +00:00
dr%netscape.com
f891bf4c29 fix for 40105. r=jst, sr=hyatt 2001-04-03 20:39:34 +00:00
jst%netscape.com
b5534b8bc2 Fixing crasher/regression bug 74431 that I caused a few weeks ago. 2001-04-03 07:14:12 +00:00