Commit Graph

50790 Commits

Author SHA1 Message Date
Julian Viereck
b1e5ef3b7e Bug 576642 - JSTerm: expanding/shrinking inputNode, r=enn, a=bsmedberg 2010-08-09 16:02:20 -03:00
Patrick Walton
abdc12dcb5 Bug 583349 - Add a prompt to the input line in the Web Console, r+a=gavin 2010-08-09 16:02:20 -03:00
Benjamin Smedberg
ad169ffd0f Bug 578478 part B - Create and use dependencies from the python IDL parser, r=khuey 2010-08-09 14:38:44 -04:00
Benjamin Smedberg
04d9914b13 Bug 559711 - Disable NSS in the content process, r=honzab 2010-08-09 14:38:44 -04:00
Benjamin Smedberg
afbda24a70 Bug 578478 - Make header.py process the following new attributes: deprecated, optional_argc, implicit_jscontext, r=jorendorff 2010-08-09 14:38:44 -04:00
Josh Aas
80c7aced07 Bug 584143 - Crashes when streams are open and a plugin instance is closed at/under nsNPAPIPluginInstance::Stop, r=bsmedberg 2010-08-09 14:38:43 -04:00
Patrick Walton
bd6b3373f5 Bug 581183 - Divide the Console filters into categories, and rename them for clarity, r+a=dietrich 2010-08-09 15:35:33 -03:00
Patrick Walton
ad0c7999fe Bug 580400 - Console should display dividers to separate messages, r+a=dietrich 2010-08-09 15:35:33 -03:00
Patrick Walton
1569207050 bug 583145 - Theme the web console filter bar appropriately on the mac, r+a=dietrich 2010-08-09 15:35:33 -03:00
Mark Banner
acb2967879 Bug 585628 Shared builds broken building xpcshell by bug 579178 - manifest enumeration changes - link xpcshell against libxul as well. r+a=bsmedberg 2010-08-09 19:34:41 +01:00
Marco Bonardo
f44612a7ac followup to Bug 552023 - Temporarily disable test_bug500328.html while we figure out a contention in adding the visited page. 2010-08-09 20:02:31 +02:00
Marco Bonardo
187bde0e1f followup to Bug 572030 - fix a typo in a keywords query, should fix Xo and Xd failures 2010-08-09 20:01:36 +02:00
Neil Deakin
fb66fae998 Bug 383930/552341, allow usage of a property on popups instead of using document.popupNode, should fix leak of popupNode, r=neil,sr=roc 2010-08-09 12:17:19 -04:00
Neil Deakin
cd970262b2 Bug 577316, add preference to allow form elements to be focused when clicked, r=smaug 2010-08-09 12:15:47 -04:00
Neil Deakin
0284f4eb26 Bug 583255, don't involve views in tree offset computation, fixes inspector mouse events, r=roc,a=dbaron 2010-08-09 12:15:39 -04:00
Steven Michaud
5a386e9432 Bug 585064 - Crash (null dereference) [@ -[ChildView inactiveWindowAcceptsMouseEvent:]. r=josh,mstange a=blocking2.0 2010-08-09 11:12:50 -05:00
Marco Bonardo
8b758ffd5b Bug 552023 - Kill Places partitioned temp tables. r=sdwilsh a=blocking 2010-08-09 17:59:59 +02:00
Marco Bonardo
697912c684 Bug 572030 - Use a memory cache for keywords associations. r=dietrich a=sdwilsh 2010-08-09 17:59:43 +02:00
Marco Bonardo
02f143eeb0 Bug 584658 - Switch to tab should not register subframes as open pages. r=gavin a=blocking 2010-08-09 17:59:31 +02:00
Mark Finkle
b13d673527 Backing out dea6175f4b07 (bug 584864) to fix regression filed as bug 585606 2010-08-09 11:29:34 -04:00
Benjamin Smedberg
ccb16680db Merge bug 579178 to mozilla-central. reviews by Mossop/khuey/jwalden/ted 2010-08-09 10:04:10 -04:00
Robert Sayre
304cbeb993 Merge tracemonkey to mozilla-central. 2010-08-09 06:40:52 -07:00
Dão Gottwald
3a7b62f309 Bug 585361 - Increase delay tolerance in browser_bug380960.js 2010-08-09 10:01:29 +02:00
Dão Gottwald
13ae167b79 Bug 585294 - Enable closing animation for tabs removed via the tab context menu. r=mano 2010-08-09 09:45:27 +02:00
Dão Gottwald
1b3ed923a4 Bug 581770 - Simplify and tweak tab styling. r=mano 2010-08-09 09:43:45 +02:00
Dão Gottwald
d6cbf77b97 Bug 582678 - Dragging app tab behind normal tab should make it a normal tab and vice versa. r=gavin 2010-08-09 09:43:24 +02:00
Robert Sayre
ae30736d6a Merge mozilla-central to tracemonkey. 2010-08-08 23:24:30 -07:00
Makoto Kato
30640f3b73 Bug 582910 - 64-bit win7: TEST-UNEXPECTED-FAIL | e4x/Regress/regress-347155.js | Exited with code -1073741571 during test run. r=dbaron, a=dbaron 2010-08-09 12:58:33 +09:00
Robert Sayre
71a8430976 Merge mozilla-central to tracemonkey. 2010-08-08 14:31:45 -07:00
Jeff Muizelaar
e1b778434f Bug 585163. reftest: Adjust scales and text sizes to an exact representation. r=roc
This fixes the test with Direct2D. Inaccurate values for font_matrix come
from converting 6/60 into a float and then treating it as a double.
2010-08-08 15:54:27 -04:00
Jeff Muizelaar
556e5abfa9 Bug 584515. Fix border-breaking-000-cols.xhtml on D2D. r=roc
We are running into rasterization inaccuracies here.

This test draws green circles on a green rectangle and assumes that the result
will be solid green.

Here's what happens with D2D:

D2D computes coverage values in floating point so assume that we get a coverage
of about 0.112399 or 0.112399*255 == 28.6

green (128/255 == 0.50196) is multiplied by the coverage to get 0.0564702 or
.0564702*255 == 14.39

the results of the pixel shader get rounded before blending. So we get
(r=0,g=14,b=0,a=29)

blending this OVER green gives:

14+(255-29)*128/255 == 127 instead of 128.

This doesn't happen with other backends because they typically use integer
coverage amounts.

We fix it by using '&nbsp' instead of '.'
2010-08-08 15:54:24 -04:00
Robert Sayre
a11c4c6043 Merge mozilla-central to tracemonkey. 2010-08-07 23:05:12 -07:00
Robert Sayre
2e619a2217 Merge backout. 2010-08-07 20:11:53 -07:00
Robert Sayre
5672347230 Backed out changeset 96ef97b766e6. (Bug 458271 - Property cache causes resolve hooks not to be called. r=brendan.) 2010-08-07 20:11:42 -07:00
Andreas Gal
5322ed0408 JSString::mLengthAndFlags and mChars are not constant (585309, r=apierce). 2010-08-07 20:01:02 -07:00
L. David Baron
2d948cf4d9 Mark known random assertion due to bug 585394. 2010-08-07 19:21:44 -07:00
Gregor Wagner
35c318f12b Bug 583598 - GC-related JS_ASSERT (r=igor) 2010-08-07 18:56:24 -07:00
Jason Orendorff
6e4e0d61ae Bug 458271 - Property cache causes resolve hooks not to be called. r=brendan. 2010-08-07 14:57:59 -05:00
Josh Matthews
f7027404ae Bug 575346 - e10s: Geolocation access token isn't remembered. r=dougt
--HG--
extra : rebase_source : a0f9cd69c4709fdac82b9f5fe3b9d956848b9dde
2010-08-06 22:18:51 -04:00
Michael Wu
d56b570bf5 Bug 587389 - dependentlibs.list not updated properly after bug 580407, r=khuey a=android build bustage 2010-08-14 21:58:07 -07:00
Josh Matthews
c2166a5c0d Bug 575348 - e10s: Fennectrolysis crashes in cycle collection after geolocation test. r=dougt
--HG--
extra : rebase_source : eb456a0f15ee2ac98d8b10d8cdd5a3af8ad6790c
2010-08-06 21:20:53 -04:00
Michael Wu
938170e221 Bug 587350 - Crash on startup from bug 580407 on Android, r=dougt 2010-08-14 19:51:15 -07:00
Robert Sayre
f5027815c6 Merge backout. 2010-08-14 21:27:54 -04:00
Robert Sayre
0ab67ae195 Backed out changeset 7b475a00cd7c. Reftest bustage. 2010-08-14 21:27:43 -04:00
Robert Longson
011cb3e886 Bug 584322 - feDisplacementMap seems to be adding an offset. r=roc, a=dbaron 2010-08-14 20:42:18 -04:00
Chris Leary
49275c8275 [Bug 587183] TM merge broke android in Nitro. r=sayrer. 2010-08-14 16:46:37 -07:00
Vladimir Vukicevic
aaaa0e8330 b=587304; fix no-op optimization back to what it really says; r=jrmuizel 2010-08-14 12:59:52 -07:00
Vladimir Vukicevic
af97417715 b=587304; fix some string usage in WebGL shader validation; r=jeff 2010-08-14 12:59:29 -07:00
Vladimir Vukicevic
67ec40f4fa b=576716; crash with ArrayBuffer test case; r=waldo 2010-08-14 10:52:51 -07:00
Vladimir Vukicevic
c820f5632e b=572522; add experimental mozArrayBuffer to XHR; r=jst, a=bsmedberg 2010-08-14 10:52:19 -07:00