Mounir Lamouri
b8cd71234c
Bug 619236 - Set user_version in generated permissions.sqlite for tests. r=sicking
2012-08-23 11:39:41 -07:00
Mounir Lamouri
c99ed99904
Bug 777072 - 6/7 Update the Permission Manager database to save appId/isInBrowserElement. r=sicking
2012-08-23 11:38:26 -07:00
Mounir Lamouri
e2963d6494
Bug 775815 - Use new Permission Manager API in SpecialPowers. r=sicking
2012-08-23 11:23:48 -07:00
Kyle Machulis
7eb2fcd355
Backout be6da7f8989c due to bustage
2012-08-22 18:11:52 -07:00
Kyle Machulis
b836bcf93f
Bug 783426: Patch 2 - Tests for Async DOMRequest Firing; r=sicking
2012-08-22 18:04:01 -07:00
Kyle Machulis
b29f5f6001
Backing out 542abbd15139 due to incorrect commit messages
2012-08-22 18:00:57 -07:00
Kyle Machulis
428ec0171b
Bug 783426: Patch 2 - Tests for Async DOMRequest Firing
2012-08-22 17:58:05 -07:00
Vicamo Yang
26ae05bb6d
Bug 707659 - Part 2: fix test scripts, r=philikon
2012-08-23 01:30:40 +08:00
Ehsan Akhgari
8c296bbcd4
Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
...
This patch was generated by a script. Here's the source of the script for
future reference:
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name nsXPCOMCID.h \
! -name prtypes.h \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.c" \
-o -iname "*.cc" \
-o -iname "*.idl" \
-o -iname "*.ipdl" \
-o -iname "*.ipdlh" \
-o -iname "*.mm" \) | \
xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}
convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t
convert PRIntn int
convert PRUintn unsigned
convert PRSize size_t
convert PROffset32 int32_t
convert PROffset64 int64_t
convert PRPtrdiff ptrdiff_t
convert PRFloat64 double
2012-08-22 11:56:38 -04:00
jmaher@mozilla.com
28f7095817
Bug 781580 - deploy a new talos.zip to capture bug 781507;r=Callek
2012-08-21 20:57:11 -07:00
Donovan Preston
59c3f2f38b
Bug 733573 - Expose a client TCP socket API to web applications [r=honzab,fabrice]
2012-08-21 09:46:27 -07:00
Ed Morley
f67e6384d0
Backout 3c39fdebf386 (bug 733573) for native Android m3 failures in test_tcpsocket_enabled_no_perm.html on a CLOSED TREE
2012-08-21 23:01:09 +01:00
Donovan Preston
4e92071ac7
Bug 733573 - Expose a client TCP socket API to web applications [r=honzab,fabrice]
2012-08-21 09:46:27 -07:00
Wes Kocher
55f11925ad
Bug 784113 - Update Jetpack code being tested against mozilla-central.
...
--HG--
extra : rebase_source : 157a1246653d6a58eddeaca0defc97a3a58d6e92
2012-08-20 16:13:46 -05:00
Ian Melven
0accdcb109
Bug 341604 - tests for iframe sandbox - plugins r=jst
2012-08-20 11:34:33 -07:00
Wes Kocher
a2f7cf0719
Bug 783728 - Update revision of Jetpack code tested on m-c. r=philor
2012-08-17 21:29:52 -05:00
Bobby Holley
e80993f0d4
Bug 695292 - Port SimpleTest.executeSoon() to SpecialPowers. r=mrbkap
...
If we just naively use the thread manager to dispatch the event via SpecialPowers,
we cannot avoid the XPCWrappedJS for the runnable being in chrome scope (even if
we pass a content object, we make the call in chrome scope, so we pass a cross-
compartment wrapper). This means that the machinery in
nsXPCWrappedJSClass::CheckForException ends up calling the error reporter for the
SpecialPowers scope, which isn't what we want.
Messing around with the implementation of CheckForException is playing with fire.
So we work around this with an explicit Cu API. :-(
2012-08-17 15:13:23 -07:00
Brian R. Bondy
641186f842
Bug 731307 - Async filepicker test changes. r=roc
2012-08-17 11:35:01 -04:00
Ed Morley
e8a1951fde
Bug 783515 - Re-enable falsely blamed native Android M3 tests now dom/indexedDB/ipc/test_ipc.html is disabled; r=gbrown,jmaher
2012-08-17 14:42:26 +01:00
Ed Morley
37d5a229ad
Bug 783509 - Disable the newly created test_browserElement_inproc_AppWindowNamespace.html on Android for permaorange timeouts; r=jmaher
2012-08-17 14:42:26 +01:00
Ed Morley
acba0c1f75
Bug 783513 - Disable dom/indexedDB/ipc/test_ipc.html on Android for mochitest-3 permaorange due to OOMs; r=jmaher
2012-08-17 14:42:26 +01:00
Phil Ringnalda
d8f4aa9d3c
Back out e6761635f9cf (bug 695292) for Android mochitest bustage on a CLOSED TREE
2012-08-16 21:35:53 -07:00
Bobby Holley
5a6f34eba3
Bug 695292 - Port SimpleTest.executeSoon() to SpecialPowers. r=mrbkap
...
If we just naively use the thread manager to dispatch the event via SpecialPowers,
we cannot avoid the XPCWrappedJS for the runnable being in chrome scope (even if
we pass a content object, we make the call in chrome scope, so we pass a cross-
compartment wrapper). This means that the machinery in
nsXPCWrappedJSClass::CheckForException ends up calling the error reporter for the
SpecialPowers scope, which isn't what we want.
Messing around with the implementation of CheckForException is playing with fire.
So we work around this with an explicit Cu API. :-(
2012-08-16 18:33:27 -07:00
Myk Melez
9922c76c72
bug 783391 - NS_ERROR_FILE_IS_DIRECTORY on mochitest-chrome runs; r=adw
2012-08-16 15:20:29 -07:00
Bob Silverberg
a45f7b3609
Bug 781920 - Remove getElementValue from HTMLElement in Marionette. r=dburns
2012-08-16 17:35:20 -04:00
Jonathan Griffin
e0b4eafdf0
Bug 783132 - bump mozprocess dep and add call to processOutput, r=ahal, DONTBUILD because NPOTB
2012-08-16 10:59:47 -07:00
Jonathan Griffin
c62a48cb54
Bug 783120 - Make datazilla import conditional on options.pref, r=mdas
2012-08-16 10:55:25 -07:00
Ekanan Ketunuti
6b8bb27da3
Bug 781932 - Update enabled() to be is_enabled to make Selenium API. r=jgriffin
2012-08-15 08:21:41 +07:00
Myk Melez
37ce4e65cd
bug 770770: refactor webapp runtime test harness to reduce complexity/special-casing; r=adw
...
--HG--
extra : rebase_source : 183331b565d8c0577c9ba60a89f3c1ea6b11af9a
2012-08-14 15:27:26 -07:00
Bobby Holley
fd354b6384
Bug 781521 - Fix test_SpecialPowersExtension. r=Ms2ger
...
The constructor function lives in content, but it's being invoked from chrome, so the |this| object is actually privileged.
2012-08-14 20:54:33 -07:00
Sanchit Gangwar
14cfcf8448
Bug 781935 - Change the function names in /testing/marionette/client/marionette/tests/unit/test_selected.py. r=jgriffin
2012-08-13 00:24:42 +05:30
David Keeler
c9b632ded8
Bug 749257 - Improve test plugin. r=josh, r=bsmedberg
2012-08-13 10:40:15 -07:00
Ed Morley
f8d0a70603
Bug 782431 - Disable dom/imptests/editing/selecttest/* on Android for being permaorange
2012-08-13 23:09:29 +01:00
Ed Morley
36f267d3fe
Bug 782328 - Disable dom/imptests/webapps/DOMCore/tests/approved/* on Android for being permaorange; r=Ms2ger
2012-08-13 18:44:25 +01:00
Ed Morley
9c9c80e6c9
Bug 782275 - Disable devicestorage tests on Android; r=dougt
2012-08-13 18:44:25 +01:00
Jonathan Griffin
4ddae57e84
Bug 777842 - make Marionette Python2.6 compatible, r=dburns
2012-08-10 17:04:28 -07:00
Paul Dagnelie
4dcffa2862
Bug 779006 - Display pid in xpchsell's check-interactive mode. r=ctalbert
2012-08-13 13:19:11 -04:00
Ed Morley
f5a36850d5
Bug 782254 - Disable dom/imptests/webapps/DOMCore/tests/submissions/* on Android for being permaorange; r=Ms2ger
2012-08-13 14:42:34 +01:00
Ryan VanderMeulen
212cdce23a
Merge inbound to m-c.
2012-08-11 22:33:42 -04:00
Masayuki Nakano
29aa654039
Bug 719320 part.9 Implement nsIDOMWindowUtils::sendWheelEvent() for tests r=smaug, sr=jst
2012-08-12 10:42:36 +09:00
Gregor Wagner
37ec55dcdb
Bug 781929 - Fix SpecialPowers.addPermission typo. r=bent
2012-08-10 13:55:42 -07:00
Andrew Halberstadt
b4d43b25cb
Bug 770490 - Infrastructure to run reftests on B2G, r=jgriffin
2012-08-10 14:25:20 -04:00
David Burns
de807f4c93
Bug 757069: add the ability to get session data out of the browser; r=jgriffin
2012-08-10 11:51:35 -07:00
Jonathan Griffin
4a6abe3fb3
Bug 781711 - Make mochitest manifests work properly with both runtests and excludetests, r=jmaher
2012-08-10 09:44:50 -07:00
Ed Morley
27e8ad6437
Bug 781837 - Disable dom/imptests/webapps/WebStorage/tests/submissions/* on Android for being permaorange; r=jmaher
2012-08-10 17:36:24 +01:00
Kyle Huey
018dc47367
Bug 781700: Don't hold strong references to databases from the synchronization queue, so that GCing a database will unblock waiting operations. r=bent
...
--HG--
extra : rebase_source : 2f1b2405ffc91831d33eb91e4b2d61c2b1ac872b
2012-08-10 09:15:02 -07:00
Takanori MATSUURA
6a81a68d60
Bug 781338 - .mkdir.done file should not be bundled with final package and omnijar archive. r=mhommey
2012-08-10 11:29:58 -04:00
Ed Morley
416352a711
Bug 781789 - Disable dom/devicestorage/test/test_stat.html on Android for being permaorange; r=jmaher
2012-08-10 15:01:28 +01:00
David Burns
a5589dd4b1
Bug 781050: Change equals() to __eq__() to be more idiomatic for python r=jgriffin
2012-08-09 13:01:56 -07:00
David Burns
bf461b926e
Bug 738408: Adding the ability to get the page source; r=jgriffin
2012-08-09 12:31:12 -07:00