Commit Graph

109937 Commits

Author SHA1 Message Date
Peter Van der Beken
6fe13563e7 Fix for bug 799465 (Add complete support for non-nsISupports objects in new DOM bindings) - allow non-nsISupports object to be parents. r=bz.
--HG--
extra : rebase_source : 00c805373f99213bee8b17b24fed3024b8ac4752
2012-10-09 20:50:26 +02:00
Peter Van der Beken
86dcdcb94b Fix for bug 799465 (Add complete support for non-nsISupports objects in new DOM bindings) - fix CC traversal and wrapper preservation. r=bz.
--HG--
rename : dom/tests/mochitest/chrome/file_bug800817.xul => dom/tests/mochitest/chrome/file_bug799299.xul
rename : dom/tests/mochitest/chrome/test_bug800817.xul => dom/tests/mochitest/chrome/test_bug799299.xul
extra : rebase_source : bed68ffa15fe5933994c33fbd94ad2b597b5b1b9
2012-09-26 20:12:15 +02:00
Aryeh Gregor
62ddd9835d Bug 799917 - Make document.characterSet always lowercase; r=bz,f=hsivonen,smontagu 2012-10-14 10:13:19 +02:00
Aryeh Gregor
0159561890 Bug 799905 - .URL and .compatMode should be defined on Document, not HTMLDocument; r=bz 2012-10-11 14:48:31 +02:00
Jason Smith
1db5e37444 Bug 795367 - Establish makefiles/directories for gUM/webrtc test automation and add a simple gUM error test. r=jesup 2012-10-13 13:33:22 -07:00
Dave Hylands
9f2a7cbfe8 Bug 801362 - Fixed typo (>= s/b <=) introduced in bug 797239. r=cjones 2012-10-13 21:25:23 -07:00
Alexander Surkov
5f743adb53 Bug 799909 - decomify Accessible::GetNameInternal, r=tbsaunde 2012-10-14 13:18:39 +09:00
John Schoenick
dde37dece4 Bug 787778 - Add additional re-entrance checks in plugin object code. r=josh 2012-10-13 20:58:19 -07:00
Chris Jones
7f41ef3f67 Test for bug 800817. r=smaug
--HG--
rename : dom/tests/mochitest/chrome/file_bug799299.xul => dom/tests/mochitest/chrome/file_bug800817.xul
rename : dom/tests/mochitest/chrome/test_bug799299.xul => dom/tests/mochitest/chrome/test_bug800817.xul
2012-10-13 18:43:24 -07:00
Chris Jones
5231bb9e31 Bug 800817: Use the "real" top when deciding whether to switch focus on a preventDefault()ed tap. r=smaug 2012-10-13 18:43:24 -07:00
Ryan VanderMeulen
543edbebda Backed out a57ade621efb, 2a8fef2bd228, 632ce3e7d3ef (bug 799638) for bustage. 2012-10-13 21:22:30 -04:00
Benoit Girard
e5fb3b6225 Bug 799638 - Export profiler markers when saving profiler profiles. r=ehsan 2012-10-13 21:03:22 -04:00
Benoit Girard
7dce5de5cf Bug 799638 - Use timeline events as profiler startup markers. r=taras 2012-10-13 21:03:18 -04:00
Benoit Girard
bfc6918b6b Bug 799638 - Use stackwalk on startup profiling for win/mac. r=ehsan 2012-10-13 21:03:09 -04:00
Ryan VanderMeulen
6742b9d376 Merge m-c to inbound. 2012-10-13 19:27:51 -04:00
Ryan VanderMeulen
ec1d78bd1b Merge the last PGO-green inbound changeset to m-c. 2012-10-13 19:26:29 -04:00
Jim Blandy
45563a5f66 Bug 743311: Implement Debugger.prototype.findAllGlobals. r=jorendorff 2012-10-13 16:04:41 -07:00
Jim Blandy
157f965522 Bug 743311: Implement Debugger.prototype.onNewGlobalObject. r=jorendorff 2012-10-13 16:04:41 -07:00
Jim Blandy
c74f75707e Bug 743311: Add option to shell 'evaluate' to catch termination, for tests. r=jorendorff 2012-10-13 16:04:41 -07:00
Jim Blandy
22e36d9913 Bug 796073: Identify debuggees only by Debugger.Object instances and CCWs that can be unwrapped securely. r=luke
This patch affects behavior that a lot of debugger tests rely on; I've
tried to update the tests without losing coverage of behavior that is still
supported:

- A prior patch in this series removes uses of addDebuggee to generate
  Debugger.Object instances referring to random objects, using
  makeDebuggeeValue instead.

- The test debug/Debugger-debuggees-07.js is deleted, because it's testing
  for the very behavior we're removing. Other tests are trimmed to remove
  usage that is no longer supported.

- The new test debug/Debugger-debuggees-17.js checks that we reject objects
  that don't designate debuggees. The existing test
  Debugger-debuggees-06.js checks that non-object values are properly
  rejected.

- The new test debug/Debugger-debuggees-18.js checks that globals are
  correctly identified regardless of how we designate them.
2012-10-13 16:04:41 -07:00
Jim Blandy
d6f2b911ad Bug 796073: Use Debugger.Object.prototype.makeDebuggeeValue where appropriate, not Debugger.prototype.addDebuggee. r=luke
Many tests use Debugger.prototype.addDebuggee to produce Debugger.Object
instances referring to random objects. Now we have
Debugger.Object.prototype.makeDebuggeeValue to do that, which is more
careful about wrappers. This patch changes all the existing tests that
abuse addDebuggee in this way (well, they didn't have any choice when they
were written) to use makeDebuggeeValue instead, in preparation for
tightening up addDebuggee to only accept global objects.
2012-10-13 16:04:41 -07:00
Jim Blandy
06de1875b2 Bug 795119: Complain coherently when evalInGlobal{,withBindings} is passed a CCW to a global, not a global. r=luke 2012-10-13 16:04:16 -07:00
Jim Blandy
3d778ae143 Bug 799272: Implement Debugger.Object.prototype.unwrap. r=luke 2012-10-13 16:04:16 -07:00
Jim Blandy
6d7a04fbb0 Bug 799272: Implement Debugger.Object.prototype.global. r=luke 2012-10-13 16:04:16 -07:00
Ehsan Akhgari
92678e0cd1 Remove nsSelectionIterator::mType because it is unused, no bug 2012-10-13 17:37:09 -04:00
Ehsan Akhgari
a671d59e7c Remove nsGridRowGroupLayout::mRowColumn because it is unused, no bug 2012-10-13 17:34:22 -04:00
Ehsan Akhgari
e6a0a9dfa3 Silence a compiler warning about unused private field, no bug
--HG--
extra : rebase_source : 931d6682a63588501930c7b2f93496fb2ef747d1
2012-10-13 17:32:52 -04:00
Ehsan Akhgari
837fadd85b Silence a compiler warning about initialization order of nsIdleServiceDaily members, no bug
--HG--
extra : rebase_source : e78d2c0f443dd67ec147f38ee48d2e52e8ea92f8
2012-10-13 17:31:02 -04:00
Ehsan Akhgari
b3077d258d Silence a compiler warning about initialization order of RasterImage members, no bug
--HG--
extra : rebase_source : a109b2d20f362add2dbb38a6b2037adfab69941e
2012-10-13 17:28:39 -04:00
Ehsan Akhgari
d0c2253d59 Silence two compiler warnings about redifinition of LOG, no bug
--HG--
extra : rebase_source : b2ad9b63ef071b71620506e78bcf12d507eb6577
2012-10-13 17:27:31 -04:00
Tim Taubert
24fe0b12de merge m-c to fx-team 2012-10-13 23:20:19 +02:00
Gregor Wagner
b6def4db43 Bug 801075 - [contacts] aRequest misspelled and a check for "request" which fails. r=ddahl 2012-10-13 11:57:59 -07:00
David Zbarsky
a759821ae1 Backed out changeset 3884ab03451d (bug Bug 799407) because new warnings have
been added.
2012-10-13 14:49:35 -04:00
David Zbarsky
fdfb2183aa Bug 799407: Fix warnings under layout/generic, r=roc 2012-10-13 14:31:19 -04:00
Marshall Culpepper
4a09f12326 Bug 798948: Allow force checking of updates in B2G. r=fabrice 2012-10-13 13:11:09 -05:00
Marshall Culpepper
5c91ac1cf1 Bug 794211: Check for updates after coming online when a check fails because the network is offline. r=bbondy r=rstrong 2012-10-13 13:06:58 -05:00
Ryan VanderMeulen
eacb980a7f Backed out 302400cbd111 (bug 754350) and 9aa942155c05 (bug 791816) for Windows mochitest-2 orange. 2012-10-13 13:20:55 -04:00
Oonishi Atsushi
34863fccc0 Bug 754029 - Navigating from a new script tag does not add a session history entry. r=smaug, r=bz 2012-10-13 13:20:55 -04:00
Daniel Holbert
f0f4c982b9 Bug 801210: Remove unnecessary semicolon after NS_INLINE_DECL_THREADSAFE_REFCOUNTING in media/mtransport headers. r=jesup 2012-10-13 10:15:15 -07:00
Jonathan Kew
9475a2e7d3 bug 800668 - doubling of Cocoa widget sizes should depend on whether the context is HiDPI, not on the zoom factor. r=mstange 2012-10-13 13:10:54 +01:00
Chris Jones
db11da9481 Bug 799849: Wrap nothrow libstdc++ allocators. r=glandium 2012-10-13 03:16:53 -07:00
Ryan VanderMeulen
3075806156 Merge inbound to m-c. 2012-10-13 04:36:33 -04:00
Shane Caraveo
59f37ea968 Bug 785920 - reload for workers. r=gavin.sharp 2012-10-12 16:58:50 -07:00
Randell Jesup
df2270282f Bug 800847: Correctly regenerate Makefiles from gyp files, and handle fancy symlinked objdirs r=ted 2012-10-12 16:06:33 -04:00
Patrick McManus
8b408af6a4 bug 801013 - imgRequest::AdjustPriority wrongly adjusts loadgroup instead of channel r=joedrew 2012-10-13 12:47:36 -04:00
Jan Beich
da6e012aeb Bug 801295 - mincore() call has incorrect type on tier3 (non-Linux). r=jlebar
--HG--
extra : rebase_source : 3201ac0b491a8cb40f916276e5b34a14d3122dc7
2012-10-13 09:34:00 -04:00
Kyle Machulis
c9010dc7b5 Bug 800247: Add disconnect events to UnixSocket, update Bluetooth*Manager; r=echou r=cjones
--HG--
extra : rebase_source : 809d46954baea51bf4053c3a48ce45b18b1a58e9
2012-10-12 11:38:14 -07:00
Ehsan Akhgari
f979d7e7e8 Silence two uninitialized variable warnings; no bug 2012-10-13 12:16:22 -04:00
Doug Turner
dc764b680d Bug 754350 - Clean up Device Storage error strings. r=sicking 2012-10-13 08:20:14 -07:00
Doug Turner
2210e579b8 Bug 791816 - Use a different error string when we may overwrite a file location. r=sicking 2012-10-13 08:20:14 -07:00