Commit Graph

73597 Commits

Author SHA1 Message Date
Kai Engert
7faadb5faa Bug 673382, Upgrade to NSPR 4.8.9, landing beta 5, r=wtc 2011-08-05 17:51:26 +02:00
Kai Engert
03e2453b23 Bug 673382, Upgrade to NSS 3.12.11, landing beta 3, r=wtc 2011-08-05 17:50:59 +02:00
Marco Bonardo
5e27f4fd35 Merge mozilla-central and mozilla-inbound in the hope to reopen soon a CLOSED TREE 2011-08-05 17:09:02 +02:00
Alexander Surkov
b0052f46ea Bug 675861 - Crash [@ AccIterator::GetNext()], r=tbsaunde 2011-08-05 17:10:41 +09:00
Luke Wagner
30ebc3e8b0 Bug 676023 - Increment pc on error path out of JSOP_RETURN (r=dvander) 2011-08-04 23:15:35 -07:00
Mark Finkle
3aaa8fe255 Bug 674791 - dragging the left text selection marker down selects to the bottom of the page [r=wjohnston] 2011-08-04 15:26:42 -04:00
Mark Banner
7d5cca131f Bug 676499 - Mac 64 bit crash [@ fts3SegReaderNext] in Thunderbird's gloda tests following change to optimisation levels in sqlite - switch Mac back to -O2 optimisation for sqlite for now; r=glandium 2011-08-04 14:50:41 +01:00
Jez Ng
3194f3fc24 Bug 440093 - Bookmarks opened via "Open All in Tabs" should not replace current tab. r=mak 2011-08-04 14:34:02 +02:00
Tim Taubert
bda47cf25d back out 6458c6116c97 (pushed with the wrong bug number) 2011-08-04 14:27:30 +02:00
Tim Taubert
ac7e86dd05 merge the last green changeset on fx-team to m-c 2011-08-04 14:09:03 +02:00
Joshua M
cae47fb2cf Bug 673164 - Sync button in tab bar changes to Back button while syncing. r=dao 2011-08-04 13:50:12 +02:00
Marco Bonardo
8dfa1762f3 Merge last green changeset from mozilla-inbound to mozilla-central 2011-08-04 11:19:01 +02:00
Alexander Surkov
48fc52420e Bug 676340 - Crash [@ nsAccessible::NativeState() ] (called by nsXULTextFieldAccessible::GetValue), r=tbsaunde 2011-08-04 12:57:31 +09:00
Alexander Surkov
a3dc493816 Bug 676240 - Crash [@ nsXULTreeAccessible::GetChildCount(), r=tbsaunde 2011-08-04 12:57:22 +09:00
Alexander Surkov
9aa1f9b34a Bug 675515 - Crash [@ TextUpdater::DoUpdate] with long text node, r=tbsaunde, sr=neil 2011-08-04 12:57:08 +09:00
Patrick McManus
8cb5471157 bug 674905 - implement ws extensions attribute r=biesi r=sicking sr=bz 2011-08-03 23:46:13 -04:00
Jim Blandy
32f475624f Bug 672736: Implement the 'findReferences' shell function. r=jorendorff
findReferences(thing)

Walk the entire heap, looking for references to |thing|, and return a
"references object" describing what we found.

Each property of the references object describes one kind of reference. The
property's name is the label supplied to MarkObject, JS_CALL_TRACER, or what
have you, prefixed with "edge: " to avoid collisions with system properties
(like "toString" and "__proto__"). The property's value is an array of things
that refer to |thing| via that kind of reference. Ordinary references from
one object to another are named after the property name (with the "edge: "
prefix).

Garbage collection roots appear as references from 'null'. We use the name
given to the root (with the "edge: " prefix) as the name of the reference.

Note that the references object does record references from objects that are
only reachable via |thing| itself, not just the references reachable
themselves from roots that keep |thing| from being collected. (We could make
this distinction if it is useful.)

If any references are found by the conservative scanner, the references
object will have a property named "edge: machine stack"; the referrers will
be 'null', because they are roots.

js> var o = { x: { y: { z: {} } }}
js> findReferences(o.x.y.z)
({'edge: z':[{z:{}}], 'edge: machine stack':[null, null, null, null, null]})
js> o = { get x() { return 42 } }
({get x () {return 42;}})
js> findReferences(Object.getOwnPropertyDescriptor(o, 'x').get)
({'edge: shape; x getter':[{get x () {return 42;}}],
  'edge: constructor':[{}],
  'edge: machine stack':[null, null, null, null, null],
  'edge: get':[{configurable:true,
                enumerable:true,
                get:#1=(function () {return 42;}),
                set:(void 0)}]})
js> findReferences(Math.atan2)
({'edge: atan2':[Math], 'edge: machine stack':[null, null, null, null, null]})
js> findReferences(o)
({'edge: o':[{o:{get x () {return 42;}}}], 'edge: machine stack':[null, null, null, null, null]})
js>
2011-08-03 20:19:38 -07:00
Ali Juma
6224d810fd Bug 675210 - Postpone texture creation on Android to prevent internal format errors. r=mwoodrow 2011-08-03 23:18:31 -04:00
Matt Woodrow
c296cab4d8 Bug 675470 - Handle eCSSKeyword_interpolatematrix in AddTransformLists. r=dbaron 2011-08-04 14:08:37 +12:00
Michael Wu
bfc8ebbc5c Bug 675567 - Fix PRBool/JSBool mixups, r=mrbkap 2011-08-03 18:59:10 -07:00
Michael Wu
48f2ffa17a Bug 675873 - Switch nsHttpConnectionMgr from nsHashtable to nsClassHashtable, r=bz 2011-08-03 18:59:10 -07:00
Tim Taubert
e608cd7642 Bug 666475 - Intermittent browser_tabview_privatebrowsing.js | Test timed out; r=ehsan 2011-08-04 03:49:43 +02:00
Tim Taubert
2c846a49c3 Bug 651643 - Private browsing service executes transition even when no mode switch required; r=ehsan,zpao 2011-08-04 03:49:38 +02:00
Jason Orendorff
aeda130b6d Bug 673070 - Fix name lookups in let scopes a bit more ("Assertion failure: sharedBlock" with e4x after fixing bug 646968). r=brendan. 2011-08-03 20:13:56 -05:00
Justin Dolske
2defc58264 Remove trailing whitespace from login manager and satchel. b=none 2011-08-03 17:52:47 -07:00
Justin Dolske
202caee5f8 Bug 669217 - Remove nsISecurityCheckedComponent from videocontrols. r=mrbkap 2011-08-03 17:52:45 -07:00
Patrick McManus
a18697492c bug 676277 - websockets onmessage event.origin should be ws://* r=sicking 2011-08-03 20:32:23 -04:00
Taras Glek
6769ff0594 Bug 675737: Calculate time taken for by write/open/sync per db + main/other thread r=mak 2011-08-03 17:05:29 -07:00
Honza Bambas
333edf60a8 Bug 662511 - localStorage.key() gets out-of-sync when localStorage is updated in a separate window, r=jst 2011-08-03 23:36:51 +02:00
Honza Bambas
a5507482fc Bug 675617 - Fix browser_installssl.js to support keep-alive connections (add Connection: close ^headers^ files), r=dtownsend 2011-08-03 23:36:50 +02:00
Honza Bambas
de967ceeda Bug 675616 - Change usage of localhost:8888 to mochi.test:8888 in test_css_cross_domain.html, r=zwol 2011-08-03 23:36:49 +02:00
Honza Bambas
31244a0e63 Bug 675613 - Increase limit for thread number in ssltunnel, r=ted.mielczarek 2011-08-03 23:36:49 +02:00
Teddy Ni
2bb08bd2fb Bug 653423 - Undo option is grayed out although action is applicable in Scratchpad; r=rcampbell,gavin.sharp approval-mozilla-aurora=gavin.sharp 2011-08-03 16:42:44 -03:00
Jez Ng
393c1a4a80 Bug 675359 - Follow-up fix for bug 588506: Remove unused code. r=zpao 2011-08-03 11:20:32 -07:00
Jez Ng
13e79f8b7f Bug 440098 - Bookmarks opened via "Open All in Tabs" should not replace current tab. r=mak 2011-08-03 11:19:55 -07:00
Javi Rueda
54d81c92cc Bug 625018 - Duplicated access key for search engines entry in update panel, r=gavin 2011-08-03 11:16:09 -07:00
Margaret Leibovic
506ca451b9 Bug 670341 - about:permissions queries hosts for favicons, r=mak 2011-08-03 11:09:10 -07:00
Tim Taubert
c437e5e1f6 merge the last green changeset on m-c to fx-team 2011-08-03 16:45:19 +02:00
Marco Bonardo
b92ca56a08 Merge last green changeset from mozilla-inbound to mozilla-central 2011-08-03 10:46:22 +02:00
Mark Finkle
e1814fad02 Bug 676052 - gingerbread theme for android 2.3.5 [r=mbrubeck] 2011-08-03 01:48:13 -04:00
Tim Taubert
78553de4f1 merge the last green changeset on m-c to fx-team 2011-08-03 07:41:10 +02:00
Tim Taubert
a801bf5ebe Bug 673196 - When creating a new TabGroup near the edge of the screen in Panorama, a part of it is invisible; r=dietrich 2011-08-03 07:38:07 +02:00
Tim Taubert
00301a3c9f Bug 673729 - When a stacked group's expand button is clicked the group starts to zoom; r=dietrich 2011-08-03 07:38:07 +02:00
Tim Taubert
433e3b3fdf Bug 625668 - Resizes for single groups don't stick correctly, returning them to their userSize values; r=dietrich 2011-08-03 07:38:07 +02:00
Mark Finkle
80fe888cfa Bug 675920 - Difficult to select text if you don't tap directly on text [r=wjohnston] 2011-08-03 00:23:40 -04:00
Mounir Lamouri
7f8f6d95bf Bug 670986 - Create nsLocation.h to declare nsLocation instead of doing that in nsGlobalWindow.h. r=jst 2011-08-02 21:22:40 -07:00
Masayuki Nakano
1380b10143 Bug 675865 backout new dragginf for selection handling code from Mozilla8 r=smaug (backed out patches are: bug 552707, bug 644621, bug 670058, bug 670508, bug 671319) 2011-08-03 12:39:02 +09:00
Chris Double
155df8e73f Bug 666132: Account for trailing data in the last frame of audio data in ogg backend debug code - r=cpearce 2011-08-03 15:08:56 +12:00
Chris Double
8a2bd27f46 Bug 675839 - Update playback position more frequently when writing in linux backend for libsydneyaudio - r=kinetik 2011-08-03 15:08:53 +12:00
Matt Woodrow
05f861d628 Bug 505115 - Part 12b - Layout changes to use -moz-perspective-origin. r=roc 2011-08-03 15:04:24 +12:00