Commit Graph

9493 Commits

Author SHA1 Message Date
vladimir%pobox.com
914cd1b9bd b=298743, fix drawWindow on OSX, r=pavlov,a=bsmedberg 2005-07-27 15:39:33 +00:00
bzbarsky%mit.edu
f87303c155 Make reentering nsRange::DeleteContents safe, and make RemoveChildAt deal with
the mutation event removing the child.  Bug 293388, r=sicking, sr=peterv,
a=bsmedberg
2005-07-26 15:45:49 +00:00
bzbarsky%mit.edu
a9d9597368 Disable just the script loader during innerHTML sets, not all script
execution.  Bug 299231, r=sicking, sr=peterv, a=bsmedberg
2005-07-26 15:40:25 +00:00
masayuki%d-toybox.com
2aa85fe265 Bug 275960 document.lastModified cannot handle non-ascii characters when the page's HTTP header doesn't have Last-Modified r=jshin, sr=bzbarsky, a=benjamin 2005-07-26 15:40:14 +00:00
timeless%mozdev.org
d954808c1c Bug 301675 : default value of size DOM attribute of HTMLSelectElement should be 0 when the attribute is missing,
patch by Anne van Kesteren <bug@annevankesteren.nl>
r+sr=bzbarsky, a=bsmedberg

fixing this correctly instead of incurring build bustage by removing the previous definition
2005-07-26 08:11:42 +00:00
gavin%gavinsharp.com
b21c71adbf backing out last patch 2005-07-26 08:08:22 +00:00
gavin%gavinsharp.com
55f1d39635 Bug 301675 : default value of size DOM attribute of HTMLSelectElement should be 0 when the attribute is missing, patch by Anne van Kesteren <bug@annevankesteren.nl>, r+sr=bzbarsky, a=bsmedberg 2005-07-26 07:45:05 +00:00
mats.palmgren%bredband.net
c9c69dd3b1 Prefer a MAP that has AREAs over an empty one with the same name (in quirks mode). b=264624 r+sr=bzbarsky a=benjamin 2005-07-25 23:37:56 +00:00
bryner%brianryner.com
83216585ac Change PageShow/PageHide events to be lowercase and hook them up so that onpageshow= works on the body tag. Bug 297887, patch by brettw@gmail.com, r=me, a=bsmedberg. 2005-07-25 22:09:39 +00:00
mozilla.mano%sent.com
dd136ee95d Partial fix to bug 102330 - Back/Forward menu gets stuck on click-and-hold. r=jhpedemonte, sr=roc, a=bsmedberg. 2005-07-25 21:41:56 +00:00
aaronleventhal%moonset.net
c188efadf0 Bug 300783. Fix unsafe firing of events and perf regression for multi select in HTML listboxes. r+sr=bz, a=mkaply 2005-07-25 21:40:31 +00:00
mats.palmgren%bredband.net
9e90d126c5 Prevent having kbd focus inside the content document in Print Preview. b=244128 r=bryner sr=bzbarsky a=asa 2005-07-21 00:15:27 +00:00
timeless%mozdev.org
b68005a043 Bug 298875 align=right should not be applied to input elements with a type other than image
patch by martijn.martijn@gmail.com r=bz sr=bz a=asa
2005-07-20 23:24:28 +00:00
aaronleventhal%moonset.net
f39377c63d Fixing bustage 2005-07-20 20:08:18 +00:00
aaronleventhal%moonset.net
a889275dc8 Fixing bustage. Forgot to check in this file 2005-07-20 19:50:40 +00:00
aaronleventhal%moonset.net
f3ae3ea672 Bug 301436. Start using official DHTML a11y namespaces. r+sr=jst, a=asa 2005-07-20 19:34:55 +00:00
roc+%cs.cmu.edu
ba0eb45c1a Bug 296838. Rework drawWindow a bit so it draws fixed-position elements. r/rs=dbaron,a=asa 2005-07-19 23:24:30 +00:00
bzbarsky%mit.edu
b0732b1395 Preserve XPCNativeWrappers when "expando" properties are set on them. Bug
295937, r=shaver, sr+a=brendan
2005-07-19 21:40:33 +00:00
bzbarsky%mit.edu
0df391c168 Deal better with innerHTML for documents whose types we don't have encoders
for.  Bug 155723, r+sr=jst, a=bsmedberg
2005-07-19 21:11:07 +00:00
bzbarsky%mit.edu
30298a402a More event coordinate hackery. Bug 296004, patch by John Sullivan
<jsfbbz@kanargh.force9.co.uk>, r+sr=roc, a=bsmedberg
2005-07-19 21:07:47 +00:00
timeless%mozdev.org
0363b55fbf Bug 299940 Class nsEvent forward-declared as struct
patch by b.jacques@planet.nl r=dbaron sr=dbaron a=bsmedberg
2005-07-19 21:03:06 +00:00
bzbarsky%mit.edu
ae5c6e2f82 Convert InsertData calls into AppendData calls (which require less
reflow/painting to handle) when the data is inserted at the end.  Bug 300797,
r=sicking, sr=roc, a=bsmedberg
2005-07-19 20:52:12 +00:00
cbiesinger%web.de
27335d05f5 bug 300024 remove assertion when putting XUL buttons in an XHTML document
patch by Caleb <bugs.caleb@gmail.com> r+sr=bz a=bsmedberg
2005-07-18 16:43:47 +00:00
roc+%cs.cmu.edu
67a0394d02 Bug 297080. Mouse exit events from top-level windows should always be treated as exit events even if the cursor is still within window bounds (it must have moved into an on-top window). r+sr=bzbarsky,a=bsmedberg 2005-07-17 21:50:56 +00:00
timeless%mozdev.org
4d9765f287 Bug 289645 nsXBLPrototypeHandler::ExecuteHandler doesn't null/rv check
patch by b.jacques@planet.nl r=bz sr=bz a=bsmedberg
2005-07-17 18:50:36 +00:00
bzbarsky%mit.edu
ca7e31d8ab Fix serialization of innerHTML in XML documents. Bug 155723, r=sicking,
sr=jst, a=bsmedberg
2005-07-15 22:45:14 +00:00
smfr%smfr.org
ea6060bbb9 Fix bug 299419: crash on Mac on double-click-hold in a text widget. We crashed in the context-click timer callback dereferencing a null mCurrentTarget, which gets nulled out when SetMouseDownState() dispatches a selection changed event. Fixed by moving the mouse event higher up, while mCurrentTarget is still good. r/sr=roc 2005-07-15 00:44:28 +00:00
bzbarsky%mit.edu
b85cfbfdc5 Don't flush our parent if we're not safe to flush. Bug 281922, r+sr=jst, a=asa 2005-07-14 16:13:09 +00:00
aaronleventhal%moonset.net
37551fbadf Bug 290354. Support multiple selection. r=timeless, sr=bryner, a=asa 2005-07-14 14:20:21 +00:00
timeless%mozdev.org
108d205184 Bug 298129 Event.timeStamp always returns 0 for mouse click events
patch by martijn.martijn@gmail.com r=dbaron sr=bz a=asa
2005-07-13 18:52:09 +00:00
jshin%mailaps.org
fcf7e6f914 bug 224820 : support UTF-16/32 (non-byte oriented char. encoding) in the form submission : r=biesi, sr=bz, a=asa 2005-07-13 16:55:59 +00:00
masayuki%d-toybox.com
4678ab27a3 Bug 300105 The found link doesn't have pseudo-focus in FAYT on frame page r+sr=bzbarsky, a=asa 2005-07-13 16:03:57 +00:00
bzbarsky%mit.edu
670b519b89 Fix rules="none" regression for tables. Bug 299723, r+sr=dbaron, a=asa 2005-07-07 17:14:36 +00:00
masayuki%d-toybox.com
8f458edf50 Bug 299748 On listbox, Sometimes, We cannot scroll the page to bottom by mouse wheel r+sr=roc, a=asa 2005-07-07 15:53:07 +00:00
bzbarsky%mit.edu
75933a51dc Make sure to notify XPConnect if an XBL constructor or destructor throws an
exception so they get reported in a timely manner.  Bug 299741, r+sr=jst, a=chofmann
2005-07-06 15:46:12 +00:00
smontagu%smontagu.org
cd922206ba Process non-ASCII access keys correctly. Bug 255696, r+sr=roc, a=asa 2005-07-03 12:19:26 +00:00
mats.palmgren%bredband.net
32773fe4f6 Fix crash opening/minimizing window that has onfocus/onblur=window.close(). b=296300 r+sr=bzbarsky a=asa 2005-07-02 22:58:22 +00:00
dbaron%dbaron.org
ea8847cd51 Followup patch to bug 286303 to prevent hotspot coordinates outside of image from getting to platform APIs, even though they might make sense in some cases. b=286303 r=biesi sr=bzbarsky a=asa 2005-07-02 22:24:38 +00:00
brendan%mozilla.org
d0a48d5659 Support E4X by default in chrome windows and in XUL scripts (293392, r+sr=peterv/jst). 2005-07-02 19:52:25 +00:00
bsmedberg%covad.net
d8791d2f29 Bug 296102 - If a <xul:script src="chrome://missing-package/content/file.js" /> cannot be loaded, don't leave the window in an unopened zombie state, r+sr=jst a=asa 2005-07-01 12:18:18 +00:00
dbaron%dbaron.org
22c8c10292 Implement css3 syntax for url() values of cursor with optional hotspot coordinates. b=286303 r=biesi sr=bzbarsky a=asa 2005-07-01 04:29:42 +00:00
jst%mozilla.jstenback.com
c28b2e4aa2 Fixing bug 277434. Make setting element.type on a plugin element (object or embed) set the 'type' attribute as well. r=bugmail@sicking.cc, sr=peterv@propagandism.org, a=benjamin@smedbergs.us 2005-06-30 01:23:12 +00:00
cvshook%sicking.cc
23fe2ae1ed Bug 296764: Move html keybindings to chrome to make sure they work even with js turned off
r=bsmedberg sr=jst a=bsmedberg
2005-06-29 22:41:59 +00:00
roc+%cs.cmu.edu
41bf2924b1 Bug 288438. Turn off SVG <foreignobject> because it's pretty broken. r=benjamin,sr=dbaron,a=benjamin,patch by jwatt,tor and roc 2005-06-29 03:51:44 +00:00
mats.palmgren%bredband.net
f04a34f8aa Don't resolve <form action=""> to the base uri. b=297761 r+sr=jst a=chofmann 2005-06-28 23:22:28 +00:00
mats.palmgren%bredband.net
97417c0bb6 Make drag-n-drop of frame-less content work again. b=289667 r+sr=roc a=benjamin 2005-06-28 21:40:15 +00:00
vladimir%pobox.com
1a594dcab9 b=296388, drawWindow with null window should give more informative error message, r=vladimir,a=bsmedberg 2005-06-25 03:05:41 +00:00
mats.palmgren%bredband.net
f68de81ba3 Fix event.relatedTarget for MouseOver events. b=298477 r+sr=roc a=asa 2005-06-25 01:32:02 +00:00
darin%meer.net
800a1ddbc1 fixes bug 295544 "Expose more designMode options to web apps" r=brade sr=jst a=bsmedberg 2005-06-24 17:18:27 +00:00
masayuki%d-toybox.com
1f93ebdcd5 Bug 259454 IME input (e.g., Chinese, Japanese and Korean) cannot be performed in Find Toolbar when opened with "/" or "'" r=bryner, dbaron, sr=dbaron, a=benjamin 2005-06-24 04:25:43 +00:00