Richard Newman
c8abd6c7c8
Merge m-c to s-c.
2012-06-29 23:45:13 -07:00
Kyle Huey
908601bb91
No bug: disable this test on Android until we can debug it.
2012-06-29 18:49:07 -07:00
Joel Maher
54991cc9c3
Bug 771587 - update a talos.zip to include specialpowers, a11y, dirty, v8, sunspider changes. r=jhammel
2012-07-09 13:56:13 -04:00
Gregory Szorc
8e71f71a3c
Bug 762837 - Try to find modules directory if not defined; r=ted
...
This is a workaround to enable modules to be found on the buildbot test
runners.
2012-06-29 13:27:11 -07:00
Gregory Szorc
145eee1e31
Bug 755339 - Package testing-only JS modules; r=ted
2012-06-29 13:27:06 -07:00
Ryan VanderMeulen
a04de6c03c
Merge m-c to inbound.
2012-07-07 10:06:52 -04:00
Joel Maher
2b34ec62fa
backout 9abaedb956a1
2012-07-06 15:59:19 -04:00
Mihnea Dobrescu-Balaur
8f3aa62469
Bug 770490 - Add ability to specify emulator resolution, r=jgriffin, DONTBUILD because NPOTB,
2012-07-06 11:54:59 -07:00
Joel Maher
643f3f15f5
Bug 771587 - update a talos.zip to include specialpowers, a11y, dirty, v8, sunspider changes. r=armenzg
2012-07-06 14:26:46 -04:00
Masayuki Nakano
e5e6f98f79
Bug 769190 part.1 Rename Scroll and Win to ScrollLock and OS for the argument of getModifierState() r=smaug, sr=jst
2012-07-06 09:42:05 +09:00
Siddharth Agarwal
cd4f48b234
Fix orange due to botched mozprocess update in bug 769808.
2012-07-03 12:53:23 +05:30
Wes Kocher
9ce43507ca
Update revision of Jetpack code used for tests to fix bug 769440. r=philor
2012-07-02 14:26:35 -07:00
Siddharth Agarwal
36e256e89f
Bug 769808 - Update mozbase on m-c to include fix for bug 769789. r=jhammel
2012-07-03 01:52:54 +05:30
Nathan Froyd
a7eb97f896
Bug 370750 - consolidate mochitest files installation; r=glandium
...
With assistance on the patch from Ms2ger, Waldo, and Mossop.
2012-07-03 16:49:02 -04:00
Wes Kocher
154cc27240
no bug - Update revision of Jetpack tests used on m-c to green things up. r=me
2012-06-28 14:28:23 -05:00
Ben Adida
8bdbd55546
Bug 753238 - Identity module unit tests. rs=dolske
...
--HG--
extra : rebase_source : 9ee371fd16d903ed55a98a62c765fe67665b5229
2012-07-06 16:27:33 -07:00
Tal Aloni
c2e7a66cfa
Bug 248239 - Change standards mode height calculations for table cells to use content-box sizing rather than border-box sizing by default (and to honor -moz-box-sizing, which we do not do in quirks mode). Also remove -moz-box-sizing: border-box from default style for caption element (all modes). r=dbaron
2012-06-30 12:01:31 -04:00
Ms2ger
9f56b60843
Merge m-c to m-i.
2012-06-30 14:50:23 +02:00
Drew Willcoxon
f3a88b80ef
Bug 733631 - Create a unit test infrastructure for the webapp runtime. r=myk,felipc,ctalbert
2012-06-29 15:52:43 -07:00
Malini Das
47d1faba9f
Bug 761202 - Load special powers only if needed in Marionette. r=dburns
2012-06-25 15:08:38 -04:00
Doug Turner
ac832ab236
Bug 767894 - Device Storage - Move test from dom/tests/mochitest/devicestorage to dom/devicestorage. rs=bent
...
--HG--
rename : dom/tests/mochitest/devicestorage/Makefile.in => dom/devicestorage/test/Makefile.in
rename : dom/tests/mochitest/devicestorage/devicestorage_common.js => dom/devicestorage/test/devicestorage_common.js
rename : dom/tests/mochitest/devicestorage/test_basic.html => dom/devicestorage/test/test_basic.html
rename : dom/tests/mochitest/devicestorage/test_dotdot.html => dom/devicestorage/test/test_dotdot.html
rename : dom/tests/mochitest/devicestorage/test_enumerate.html => dom/devicestorage/test/test_enumerate.html
rename : dom/tests/mochitest/devicestorage/test_enumerateMultipleContinue.html => dom/devicestorage/test/test_enumerateMultipleContinue.html
rename : dom/tests/mochitest/devicestorage/test_enumerateNoParam.html => dom/devicestorage/test/test_enumerateNoParam.html
rename : dom/tests/mochitest/devicestorage/test_enumerateOptions.html => dom/devicestorage/test/test_enumerateOptions.html
rename : dom/tests/mochitest/devicestorage/test_lastModificationFilter.html => dom/devicestorage/test/test_lastModificationFilter.html
rename : dom/tests/mochitest/devicestorage/test_overwrite.html => dom/devicestorage/test/test_overwrite.html
rename : dom/tests/mochitest/devicestorage/test_sanity.html => dom/devicestorage/test/test_sanity.html
2012-06-27 13:47:36 -07:00
Ehsan Akhgari
45fe6d3ae2
Bug 722872 - Part 1: Add nsITransferable::Init(nsILoadContext*), enforce that it's called in debug builds, and add nsIDOMDocument* arguments to nsIClipboardHelper methods; r=roc
...
This patch does the following:
* It adds nsITransferable::Init(nsILoadContext*). The load context
might be null, which means that the transferable is non-private, but
if it's non-null, we extract the boolean value for the privacy mode
and store it in the transferable.
* It adds checks in debug builds to make sure that Init is always
called, in form of fatal assertions.
* It adds nsIDOMDocument* agruments to nsIClipboardHelper methods which
represent the document that the string is coming from.
nsIClipboardHelper implementation internally gets the nsILoadContext
from that and passes it on to the transferable upon creation. The
reason that I did this was that nsIClipboardHelper is supposed to be a
high-level helper, and in most of its call sites, we have easy access
to a document object.
* It modifies all of the call sites of the above interfaces according to
this change.
* It adds a GetLoadContext helper to nsIDocument to help with changing
the call sites.
2012-04-16 22:14:01 -04:00
Joel Maher
59e3e7a871
Bug 765193 - Intermittent Android test_text_wholeText.html, test_title.html. r=edmorley
2012-06-27 09:33:44 -04:00
Ed Morley
95c1dd9e55
Merge last PGO-green changeset of mozilla-inbound to mozilla-central
2012-06-27 11:29:26 +01:00
Masayuki Nakano
a9a8364195
Bug 768736 Define constants for system native virtual keys for nsIDOMWindowUtils::SendNativeKeyEvent() r=roc
2012-06-27 11:26:38 +09:00
Benoit Girard
0752a03cfe
Bug 765357 - Add xpcshell tests for the Profiler. r=ehsan
2012-06-26 17:57:43 -04:00
Gregory Szorc
b686be9543
Merge mozilla-central into services-central
2012-06-25 13:40:04 -07:00
Benoit Girard
2a3bded439
Backout 746513dca667 (Bug 765357) due to xpcshell orange (linux, mac).
2012-06-24 21:00:21 -04:00
Gregory Szorc
0190f2644c
Bug 754062 - Add skeleton for browser notifications service; r=gps
...
This is a reland. The original commit was c53f474c502b and was backed
out in 591fd1c696f0. The next commit is required to make xpcshell tests
not fail.
2012-06-22 09:24:39 -07:00
Ed Morley
4992a5b7b4
Merge mozilla-central to mozilla-inbound
2012-06-21 08:38:39 +01:00
Drew Willcoxon
530c9d7e3b
Bug 762579 - Implement SocialAPI service provider registry. r=gavin
2012-06-20 18:01:27 -07:00
Benoit Girard
3bcdb3f586
Bug 765357 - Add xpcshell tests for the Profiler. r=ehsan
2012-06-24 18:53:36 -04:00
Justin Lebar
c0b6231145
Bug 763694 - Part 2: Tests for securityChange event on <iframe mozbrowser>. (Disabled on native Android.) r=smaug
2012-06-20 12:15:39 -04:00
Ryan VanderMeulen
2d55deca2d
Merge m-c to inbound.
2012-06-19 21:13:46 -04:00
Malini Das
2b57d0dfae
Bug 766319 - Minor perfdata refactor, r=jgriffin, DONTBUILD because NPOTB
2012-06-19 17:17:40 -04:00
Jonathan Griffin
e742f5b11c
Bug 766206 - Add missing parameter to catch clause, DONTBUILD because NPOTB
2012-06-19 15:29:17 -07:00
Jonathan Griffin
e248d5a513
Bug 766206 - Workaround to get Marionette working on B2G again, r=mdas, DONTBUILD because NPOTB
2012-06-19 11:43:19 -07:00
Geoff Brown
90c6b47da4
Bug 756264 - Reduce devicemanager chmod calls; r=jmaher
2012-06-19 09:14:41 -07:00
Ed Morley
27774811c9
Bug 765193 - Re-disable test_text_wholeText.html for now, for too many intermittent failures; r=jmaher
2012-06-19 14:34:02 +01:00
Ed Morley
46646064fa
Bug 765182 - Re-disable test_bug13871.html on Android for now, for too many intermittent failures; r=jmaher
2012-06-19 14:33:58 +01:00
Ryan VanderMeulen
8096434a64
Merge m-c to inbound.
2012-06-21 20:44:27 -04:00
David Burns
5fea2e668b
Bug 759920: have status codes on errors bubble up from Atoms r=mdas
2012-06-21 13:47:13 -07:00
Kyle Machulis
0675ea3434
Bug 767045 - Unfinished merge of marionettecomponent.js commited; r=mdas
2012-06-21 10:43:24 -07:00
Ryan VanderMeulen
7511d396e5
Merge m-c to inbound.
2012-06-18 20:59:17 -04:00
David Burns
621725f489
Bug 765239: allow marionette to reuse script file when importing scripts. r=mdas
2012-06-18 11:59:39 -07:00
Jan Varga
1ac8eec4a0
Bug 763388 - Remove enablePrivilege calls from IndexedDB and FileHandle tests. r=bent
2012-06-18 19:09:26 +02:00
Ms2ger
6e8b98202d
Bug 763169 - Part b: Miscellaneous fixes; r=jhammel
2012-06-17 09:51:22 +02:00
Bobby Holley
2486dbf4ed
Bug 761982 - remove mozprefs.js. r=jmaher
2012-06-18 15:43:00 +02:00
Bobby Holley
c2dbe5e980
Bug 764315 - Trigger reification for QuickStubbed accessors in SpecialPowers wrappers before calling Object.getOwnPropertyDescriptor. r=mrbkap
2012-06-18 15:43:00 +02:00
Bobby Holley
4127f77199
Bug 763301 - Put SpecialPowers Xray detection in a try/catch. r=mrbkap
2012-06-18 15:43:00 +02:00
Andrew Halberstadt
03af05e76c
Bug 765015 - Don't stop server if it doesn't exist, r=jgriffin, DONTBUILD because NPOTB
2012-06-15 14:13:04 -07:00
Ed Morley
6c0104928c
Merge last PGO-green changeset of mozilla-inbound to mozilla-central
2012-06-15 13:32:55 +01:00
Mark Hammond
ae4a48da64
Bug 755558 - report exceptions in head.js during browser-test. r=gavin
2012-06-15 12:08:17 +10:00
Jonathan Griffin
82725c3219
Bug 765095 - Post logcat log to autolog, r=mdas, DONTBUILD because NPOTB
2012-06-14 18:26:43 -07:00
Wes Kocher
9edeed785e
Bug 764688 - Update revision of Jetpack code used in Firefox. r=gozala
2012-06-14 15:02:59 -05:00
Ryan VanderMeulen
c485f40f19
Merge m-c to inbound.
2012-06-13 21:12:31 -04:00
Gregory Szorc
239c666dc2
Merge m-c into s-c
2012-06-13 08:35:44 -07:00
Richard Newman
93fec4c994
Merge m-c to s-c.
2012-06-12 10:16:39 -07:00
Ed Morley
11c73f1659
Merge last PGO-green changeset of mozilla-inbound to mozilla-central
2012-06-12 10:36:42 +01:00
Matt Brubeck
a66da30249
Merge last green changeset from inbound to mozilla-central
2012-06-12 18:24:45 -07:00
Richard Newman
25acd05e17
Merge m-c to s-c.
2012-06-11 16:49:27 -07:00
Malini Das
65ef37d6e0
Bug 744902 - Update datazilla method names, a=test-only, DONTBUILD because NPOTB
2012-06-11 11:19:43 -07:00
Gregory Szorc
c61c32e78d
Merge m-c into s-c
2012-06-11 17:48:04 +02:00
Ryan VanderMeulen
891e38e528
Revert c39d36167b99 due to a horribly munged backout.
2012-06-10 19:44:50 -04:00
Ryan VanderMeulen
f497d31a0a
Backout the bug 754202 backout due to orange.
2012-06-10 19:37:47 -04:00
Richard Newman
4a82c21a14
Merge m-c to s-c.
2012-06-07 12:07:02 -07:00
Malini Das
725a2216df
Bug 744902 - Add datazilla and mozrunner to setup.py deps, r=jgriffin, DONTBUILD because NPOTB
2012-06-12 11:57:25 -07:00
Ben Turner
e0a018899b
Bug 664029 - 'Make indexeddb mochitests run in fennec'. r=khuey.
2012-06-11 14:59:27 -07:00
Jonathan Griffin
6477eb32f9
Bug 761860 - Add mozautoeslib to setup.py deps, a=test-only
2012-06-05 17:34:46 -07:00
Joel Maher
e827fcee03
Bug 761125 - switch from android.json to android-failures.json. r=jgriffin
2012-06-06 13:12:14 -04:00
Mark Cote
1d9b1e58c5
Bug 759000 Use accelKey instead of ctrlKey in peptest tests. r=ctalbert
2012-06-06 11:31:12 -04:00
Geoff Lankow
bdc2b4bb58
Merge m-c to m-i
2012-06-06 15:13:51 +12:00
Jonathan Griffin
36e0617209
Bug 759885 - Add support for running mochitest-plain on B2G emulators, r=jmaher, DONTBUILD because NPOTB
2012-06-05 15:17:26 -07:00
Malini Das
84af01311d
Bug 752065 - add importScript method to Marionette, r=jgriffin, a=test-only, DONTBUILD because NPOTB
2012-06-04 13:50:06 -04:00
Jonathan Griffin
adf8c51c90
Bug 761252 - Set devtools.debugger.remote-enabled from Marionette, a=test-only, DONTBUILD because NPOTB
2012-06-04 11:45:33 -07:00
Ryan VanderMeulen
53d33c67b1
Merge m-c to inbound
2012-06-09 14:22:32 -04:00
Jonathan Griffin
7b4f18f4a4
Bug 759887 - Add no-window support to runtestsb2g.py, a=test-only, DONTBUILD because NPOTB
2012-06-08 14:09:14 -07:00
Olli Pettay
93a765cab8
Bug 756277 - XMLHttpRequest started from Cc['@mozilla.org/xmlextras/xmlhttprequest;1'] ends up bound to some random window, r=bz
...
--HG--
extra : rebase_source : 480dbf41846fee3362697cb0bf537281f35845e0
2012-06-08 23:45:13 +03:00
Bobby Holley
92242cfbac
Bug 762529 - Handle constructors properly in SpecialPowers wrappers. r=mrbkap
...
--HG--
extra : rebase_source : edea7357a5e9f33d3cf68f09646492fb0a1cfc10
2012-06-08 00:09:55 +02:00
Joel Maher
e8483b12f5
Bug 586885 - [talos.zip] show search suggestions when entering text in awesome bar. r=armenzg
2012-06-05 14:08:47 -07:00
Brian Nicholson
355e9fdee1
Bug 586885 - Add raw host to robotium.config. r=jmaher
2012-06-05 14:07:14 -07:00
Ryan VanderMeulen
9180278d42
Merge m-c to inbound.
2012-06-14 18:45:40 -04:00
Bobby Holley
a2a3845832
Bug 762432 - Handle proxies on __lookupGetter__ and __lookupSetter__. r=jorendorff
2012-06-12 15:44:14 +02:00
Malini Das
5a582d70ca
Bug 753022 - Remove obsolete xpcshell Marionette tests, r=jgriffin
2012-06-14 10:56:54 -04:00
Joel Maher
a26d899b2d
Bug 761125 - change mochitests to run all tests except excludedtests in android.json. r=jgriffin
2012-06-14 09:01:23 -04:00
Joel Maher
8d12e67e5b
Bug 754873 - fennec automated tests should capture logcat output while test is running. r=wlach
2012-06-13 14:20:43 -04:00
Ehsan Akhgari
95a7aa1c4e
Merge the last green PGO changeset of mozilla-inbound to mozilla-central
2012-06-04 11:31:44 -04:00
Richard Newman
a977c26c34
Merge m-c to s-c.
2012-06-03 23:46:09 -07:00
Jan Varga
6e3e5ab48b
Bug 726593 - Implement FileHandle. r=bent
2012-06-03 18:33:52 +02:00
Anant Narayanan
cc516fdf58
Bug 754538 - Implement Apps in the Cloud REST client; r=gps, r=mconnor
2012-06-02 20:35:34 -07:00
Ehsan Akhgari
7b7a3556e8
Merge the last green changeset of mozilla-inbound to mozilla-central
2012-06-02 14:39:47 -04:00
Vicamo Yang
7bf41b202b
Bug 744360 - Part 1: add WspPduHelper, r=philikon
2012-06-04 13:04:24 +08:00
Panos Astithas
97ca775c67
Bug 758696 - Add a dialog to the debugger to deny or allow incoming server connections (Part 4: Marionette); r=jgriffin
2012-06-01 18:28:31 +03:00
Marshall Culpepper
60c62fa867
Bug 744344 - B2G RIL: Add DOM API for getting the list of available networks. r=philikon sr=sicking
...
Also added a new MobileOperatorInfo type that exposes operator name, MNC, MCC, and operator/network status, and accompanying emulator Marionette tests.
2012-06-01 14:10:39 -07:00
Gregory Szorc
b3dde36872
Bug 760576 - Define do_check_null test helper for xpcshell tests; r=ted
...
--HG--
extra : rebase_source : 533f5e85bf6d1f9f074fee227b60dde08a7baf17
2012-06-01 19:23:31 +02:00
Ben Turner
b072e01d8f
Bug 666693 - 'Remote IndexedDB for multiple IndexedDB-using processes'. r=cjones+sicking.
2012-06-01 10:21:12 -07:00
Marco Bonardo
78a91730ad
Backout 795990989746, ab1f122c4b1a, 429f20288742, 472671930994, 90465173c7e3, 743ebe50e914, b7c14c8eec98, 1deabba3bef5 (bug 749856), a704675ff365, 3dbfcccc583c (bug 744360) for xpcshell failure
2012-06-01 11:57:37 +02:00
Vicamo Yang
83e2b94766
Bug 744360 - Part 1: add WspPduHelper, r=philikon
2012-06-01 16:38:19 +08:00
Armen Zambrano Gasparnian
e9f95b4cc4
Bug 712630. Add machine-configuration.json. r=jmaher. DONTBUILD
2012-06-07 13:54:14 -04:00
Honza Bambas
0059493ca2
Bug 761529 - ssltunnel broken in non-proxy mode, r=jgriffin
2012-06-07 18:10:21 +02:00
Benoit Jacob
8eb89e608d
Bug 759221 - 3/6 - remove canvas mochitests from android-failures - r=jmaher
2012-06-08 13:41:40 -04:00
Benoit Jacob
a8dc8ff0e4
Bug 759221 - 1/6 - Enable content/canvas and content/media tests on Android - r=jmaher
2012-06-08 13:41:36 -04:00
Malini Das
b92a2b574b
Bug 744902 - Add perf testing to Marionette, r=jgriffin, DONTBUILD because NPOTB
2012-06-08 18:33:54 -04:00
Matt Brubeck
d1bcdbae1a
Back out bug 759221 and bug 761326 because of media test failures
2012-06-08 12:20:14 -07:00
Benoit Jacob
b9d9e9441c
Bug 759221 - 3/6 - remove canvas mochitests from android-failures - r=jmaher
2012-06-08 13:41:40 -04:00
Benoit Jacob
ceda76bc23
Bug 759221 - 1/6 - Enable content/canvas and content/media tests on Android - r=jmaher
2012-06-08 13:41:36 -04:00
Gregory Szorc
8dcf738875
Bug 755339 - Part 1b Create dummy file in modules/ directory; r=ted
2012-05-31 21:54:10 +02:00
David Burns
fa61566e7a
Bug 758192 : Updating exceptions to match that of Selenium. DONTBUILD because NPOTB. r=jgriffin
2012-05-31 01:30:14 -07:00
Gervase Markham
d4eb7d5782
Bug 759095 - upgrade license to MPL 2, and other licensing cleanups.
...
--HG--
extra : rebase_source : da55a4937383eda2baf7c9a362501da8ee664146
2012-05-29 16:52:43 +01:00
Ed Morley
7b41eeb233
Merge last PGO-green changeset of mozilla-inbound to mozilla-central
2012-05-30 12:20:57 +01:00
Wes Kocher
2013ce68e8
Bug 759667 - Update revision of Jetpack code used in Firefox tests. r=philor
2012-05-30 01:04:32 -05:00
Philipp von Weitershausen
ae7e2a7b70
Bug 756607 - Rewrite SMS tests. r=jgriffin DONTBUILD because NPOTB
...
--HG--
rename : dom/sms/tests/manifest.ini => dom/sms/tests/marionette/manifest.ini
rename : dom/sms/tests/test_emulators.py => dom/sms/tests/marionette/test_between_emulators.py
2012-05-29 17:41:44 -07:00
Joel Maher
3a6cc77c4f
Bug 759374 - deploy new talos.zip to capture bug 758738. r=armenzg
2012-05-29 13:56:28 -04:00
Ryan VanderMeulen
58da09e792
Merge the last PGO-green inbound changeset to m-c
2012-05-26 08:07:19 -04:00
Jonathan Griffin
351069c6d9
Bug 758834 - Add ability to flag tests to be skipped in manifest, a=test-only, DONTBUILD because NPOTB
2012-05-25 16:51:23 -07:00
Jonathan Griffin
94b4b87db8
Bug 754361 - Don't reset todo count at beginning of testsuite, a=test-only, DONTBUILD because NPOTB
2012-05-25 10:44:13 -07:00
Ed Morley
28d48cf58f
Merge mozilla-central to mozilla-inbound
2012-05-25 22:44:48 +01:00
Philipp von Weitershausen
89c24ea8c1
Bug 758448 - Make callback optional for runEmulatorCmd. r=jgriffin
2012-05-25 10:37:21 -07:00
Ryan VanderMeulen
bdbda03e1f
Merge m-c to inbound
2012-05-24 20:43:34 -04:00
Jonathan Griffin
91850279d3
Bug 758329 - disable test_emulator_order, a=test-only, DONTBUILD because NPOTB
...
--HG--
extra : rebase_source : 225a39534da9d0b547635818a441efd5f7ef38cf
2012-05-24 12:37:04 -07:00
Wes Kocher
9785c03635
Bug 758092 - Update revision of Jetpack used in Firefox tests r=ehsan
2012-05-24 15:36:37 -04:00
Jonathan Griffin
d5b388d952
Bug 758325 - Add --userdata argument to runemu, a=test-only, DONTBUILD because NPOTB
2012-05-24 12:12:52 -07:00
Ed Morley
b3716758ef
Merge last PGO-green changeset of mozilla-inbound to mozilla-central
2012-05-24 15:48:20 +01:00
David Burns
12c7f51ac9
Bug 757174: Better error message when marionette can no longer communicate with Gecko. DONTBUILD because NPOTB r=jgriffin
2012-05-24 05:07:53 -07:00
David Burns
4a1fd8699f
Bug 747200: Adding MPL header to new file. DONTBUILD because NPOTB r=ctalbert
2012-05-24 04:44:14 -07:00
Malini Das
ae281a2f32
Bug 747200: Allow binary to be passed in for marionette tests. DONTBUILD because NPOTB
2012-05-23 03:10:54 -07:00
David Burns
c98f517777
Backed out changeset db18074e2a25 to correct bug number
2012-05-24 03:06:52 -07:00
Malini Das
b1920f6a22
Bug 757174: Allow Firefox binary and profile to be passed in during tests. DONTBUILD because NPOTB r=jgriffin
2012-05-24 03:00:46 -07:00
Jonathan Griffin
356026ced5
Bug 756966 - Fail test if finish is called while emulator callbacks are pending, r=philikon, a=test-only, DONTBUILD because NPOTB
2012-05-23 17:23:36 -07:00
Jonathan Griffin
15b9721375
Bug 758066 - Add --no-window to runemu's arguments, a=test-only, DONTBUILD because NPOTB
2012-05-23 16:58:44 -07:00
Jonathan Griffin
dad3325e77
Bug 755473 - Mark script as executable, a=test-only, DONTBUILD because NPOTB
2012-05-23 16:50:36 -07:00
Wes Kocher
22f4d5c992
no bug - Update Jetpack revision used for tests on mozilla-central. r=philor
...
--HG--
extra : rebase_source : 9940dc253571b3b3c29e1467d190ef3f5c5f5423
2012-05-22 18:46:05 -05:00
David Burns
ae4ba9af3c
Bug 756233: Removing Selenium proxy from marionette r=jgriffin
2012-05-22 07:09:46 -07:00
Ryan VanderMeulen
cd23034067
Merge m-c to inbound.
2012-05-21 20:37:54 -04:00
Jonathan Griffin
a526261c6a
Bug 755473 - Add convenience script to launch qemu and navigate to a url, a=test-only, DONTBUILD because NPOTB
2012-05-21 13:41:55 -07:00
Gervase Markham
ca171eec44
Bug 716478 - update licence to MPL 2.
2012-05-21 12:12:37 +01:00
Chris Pearce
f0483c44f2
Bug 753546 Part 1 - Make nsDocument listen for 'fullscreen-approved' notification rather than 'perm-changed' to signal fullscreen approved. r=smaug
2012-05-22 08:43:36 +12:00
Ryan VanderMeulen
638cab1035
Merge m-c to inbound
2012-05-23 20:56:31 -04:00
Gregory Szorc
7f478b0a05
Bug 755339 - Create modules directory in tests archive; r=ted
2012-05-23 19:43:48 +02:00
Gregory Szorc
3831df8bd3
Bug 757397 - Make test package generation quieter; r=ted
...
This may reduce the size of the buildbot build logs by up to half!
--HG--
extra : rebase_source : 87b3f2f40654d69ecd91e19520e2341fc8aac9a6
2012-05-23 16:51:21 +02:00
William Lachance
df12b7646d
Bug 757546 - shell() in devicemanager should return an int;r=gbrown
2012-05-23 10:26:07 -04:00
Ed Morley
ed4bcc5143
Backout cfac7b6a1f9c (bug 728893) for mochitest-1 orange
2012-05-23 11:56:03 +01:00
Diogo Golovanevsky Monteiro
a5f0597339
Bug 728893 - Allow mochitest iframe to go fullscreen r=ctalbert
2012-05-23 10:36:26 +01:00
Ryan VanderMeulen
1024fae581
Merge m-c to inbound.
2012-05-18 20:22:14 -04:00
Philipp von Weitershausen
07c32d0221
Bug 754216 - Control the emulator from within Marionette JS scripts. r=jgriffin DONTBUILD because NPOTB
2012-05-18 13:30:43 -07:00
Philipp von Weitershausen
8998e5052c
Bug 754178 - Expose SpecialPowers in Marionette content JS. r=jgriffin
2012-05-18 13:30:13 -07:00
Philipp von Weitershausen
d34b2f9dc6
Bug 754178 - Expose SpecialPowers in Marionette chrome JS. r=jgriffin
2012-05-18 13:30:04 -07:00
Joel Maher
23de4fe787
Bug 756346 - please update a new talos.zip to fix tcheckerboard3. r=armenzg
2012-05-18 11:03:37 -04:00
Jonathan Griffin
5c3ff82552
Bug 756339 - Setup DNS fix when launching emulator, a=testonly, DONTBUILD because NPOTB
2012-05-17 19:11:16 -07:00
Dão Gottwald
97df5908f9
Bug 734172 followup - add gBrowser check for sanity
2012-05-17 16:45:40 +02:00
Dão Gottwald
5f38e25ec2
Bug 734172 - Stop blaming tests that replace the first tab for leaking. r=ttaubert
2012-05-17 16:41:08 +02:00
David Burns
c45e154ce4
Bug 755700 - Part A: test case, r=mdas, DONTBUILD because NPOTB
2012-05-16 13:44:24 -07:00
Jonathan Griffin
9919bfc713
backout e0d419369fd0 due to inadvertent changes
2012-05-18 11:48:32 -07:00
Malini Das
75607d1a39
Bug 755700 - Part B: better handling of window switching, r=jgriffin
...
--HG--
extra : rebase_source : 1fab5d784b55db1ce0d84c56f69a7c826b2fcdfa
2012-05-17 14:53:55 -04:00
David Burns
1e27d75a32
Bug 755700 - Part A: test case, r=mdas
...
--HG--
extra : rebase_source : 526cf4d07a39e7cede83808c0787ce5906aa9169
2012-05-16 13:44:24 -07:00
Jason Duell
5504d09bc1
bug 752776. Mozilla tweaks to pywebsocket v631. r=mcmanus
2012-05-16 17:04:46 -07:00
Jason Duell
0ec80db052
Bug 752776 - Upgrade pywebsocket to v631. r=mcmanus
2012-05-16 17:04:15 -07:00
Marshall Culpepper
6f83dc4d52
Bug 755427: Use the darwin-x86 host directory for the emulator in OSX. Added a new --emulator-binary argument to runtests.py to allow overriding of the emulator used by Marionette. r=mdas
2012-05-16 12:42:59 -07:00
David Burns
37c8d1d890
Bug 754278 - Support floats in executeScript arguments, r=jgriffin, DONTBUILD because NPOTB
2012-05-15 13:20:57 -07:00
Gregory Szorc
5a8cec33cc
Bug 754436 - Move xpcshell protocol handler registration into standalone function; r=ted
2012-05-15 09:53:28 -07:00
Ed Morley
c3bb3733dc
Backout 85eb1308f976 & 09da30d622c0 (bug 728893) until the test is ready to land
2012-05-15 17:44:18 +01:00
Ryan VanderMeulen
ba69a9d0c7
Disable test for bug 728893
2012-05-15 09:44:59 -04:00
Diogo Golovanevsky Monteiro
a80f370e8f
Bug 728893 - Allow mochitest iframe to go fullscreen. r=ctalbert
2012-05-15 09:00:54 -04:00
Ehsan Akhgari
a3acad4ec8
Merge mozilla-central into mozilla-inbound
2012-05-24 14:52:27 -04:00
Bobby Holley
6c95fda518
Bug 553102 - Add __exposedProps__ for MockFilePicker. r=ted
2012-05-24 13:04:57 +02:00
Bobby Holley
77291b468d
Bug 553102 - Waive COW checks on SpecialPowers wrapper objects. r=mrbkap
2012-05-24 13:04:57 +02:00
Bobby Holley
590b3bd9e9
Bug 553102 - Fix SpecialPowers DOMWindowUtils. r=ted
2012-05-24 13:04:57 +02:00
Bobby Holley
5f74170fd0
Bug 553102 - Make the SpecialPowers wrapping API a bit nicer. r=ted
2012-05-24 13:04:57 +02:00
Panos Astithas
564465b6cb
Merge m-c to fx-team
2012-06-21 10:11:14 +03:00
Panos Astithas
727e12a234
Use a preference setting to decide whether to bind to the loopback interface only, or all interfaces (Bug 764679); r=dcamp,mfinkle,jgriffin,vingtetun
2012-06-20 16:31:50 +03:00
Jeff Hammel
60b48f0b87
Bug 754392 - deploy new talos.zip to fix tp5 responsiveness regressions on windows. r=jmaher
2012-05-14 10:19:29 -04:00
Philipp von Weitershausen
6096145716
Bug 753607 - Overhaul existing Marionette WebAPI tests. r=jgriffin DONTBUILD because NPOTB
2012-05-11 13:09:21 -07:00
Philipp von Weitershausen
1f13bc361d
Bug 754059 - Clean up some repetition in Marionette actors/listeners. r=jgriffin
2012-05-11 13:06:53 -07:00
Philipp von Weitershausen
55231eafe9
Bug 753606 - Support loading a test page while setting whitelist prefs. r=jgriffin
2012-05-11 13:06:53 -07:00
Philipp von Weitershausen
86d9abb176
Bug 754229 - Support x86 emulator in Marionette. r=jgriffin
2012-05-11 13:06:45 -07:00
Kyle Huey
96861eeeb2
Bug 726376: Prevent infinite recursion in indexedDB::cmp. r=sicking
2012-05-11 10:47:27 -07:00
Joe Drew
676206951d
Merge last PGO-clean cset from inbound to central.
2012-05-10 21:25:37 -04:00
Jonathan Griffin
6b3d93cdfd
Bug 754087 - Let waitFor share the script timeout, r=mdas, a=test-only, DONTBUILD because NPOTB
2012-05-10 16:07:07 -07:00
Neil Rashbrook
0efdc15974
Bug 678726 Improved diagnostics to try to figure out what this random orange is r=ted
2012-05-10 22:46:15 +01:00
Malini Das
0ea814a9f5
Bug 753168 follow-up: if GECKO_OBJDIR is not set, create venv in MARIONETTE_HOME. r=philikon DONTBUILD because NPOTB
2012-05-10 10:57:59 -07:00
Joel Maher
c3de35df10
Bug 753822 - please upload a talos.zip to support tcheckerboard3 as well as talos updates. r=armenzg
2012-05-10 13:45:06 -04:00
Jonathan Griffin
bda6cf19b6
Bug 753273 - Wait for window and browser at the start of newSession, r=mdas, a=test-only, DONTBUILD because NPOTB
2012-05-10 11:42:54 -07:00
Ed Morley
1cb05a71f6
Merge last PGO-green changeset of mozilla-inbound to mozilla-central
2012-05-10 13:04:35 +01:00
Jonathan Griffin
d9f1dc8e38
Bug 753181 - Interpret paths relative to cwd instead of Marionette, r=mdas, a=test-only, DONTBUILD because NPOTB
...
--HG--
extra : rebase_source : 5b94c5fc397c8190a76bb05f247c655e5b72eac9
2012-05-09 17:03:13 -07:00
Jonathan Griffin
2ec243c586
Bug 753013 reuse secondary emulators, r=mdas, DONTBUILD because NPOTB
2012-05-09 13:39:19 -07:00
Philipp von Weitershausen
3025c86b7f
Bug 751783 - Allow sandbox reuse between execute_script calls, r=jgriffin, r=mdas, DONTBUILD because NPOTB,
2012-05-09 12:05:39 -07:00
Ryan VanderMeulen
575be44426
Merge last PGO green changeset on inbound to m-c.
2012-05-08 21:32:23 -04:00
Philipp von Weitershausen
13d019ea0c
Bug 753168 - Create Marionette virtualenv in objdir. r=jgriffin DONTBUILD because NPOTB
2012-05-08 17:16:05 -07:00
Philipp von Weitershausen
8994c6faa5
Bug 752991 - Support new B2G in Marionette. r=jgriffin
2012-05-08 17:14:02 -07:00
Chris Pearce
fdc9ccd271
Bug 746885 part 3 - Change pointer lock tests to always run on a domain with fullscreen-approved permissions. r=smaug
2012-05-09 09:48:27 +12:00
Jonathan Griffin
cfaab91fe1
Bug 752763 - Store logcat output for emulator runs, r=mdas, a=test-only
2012-05-08 11:37:49 -07:00
Jonathan Griffin
a15184bc9b
Bug 752958 - Don't assume self.message is a str, a=test-only
2012-05-08 10:01:01 -07:00
Gregory Szorc
e9891e32e5
Merge services-central into mozilla-central
2012-05-08 09:52:27 -07:00
Justin Lebar
30ce54f7ce
Bug 749018 - Make OOP <iframe mozbrowser> pass current browser frame tests. r=smaug,cjones
...
--HG--
extra : rebase_source : f15018bf2c9427a0d6e8d44da348d8d7d1693219
2012-05-08 09:20:35 -07:00
Richard Newman
c77aeb8752
Merge m-c to s-c.
2012-05-06 18:58:00 -07:00
Richard Newman
09079ed922
Merge m-c to s-c.
2012-05-04 14:25:04 -07:00
Gregory Szorc
4cc790e537
Merge m-c to s-c
2012-05-03 14:33:48 -07:00
Geoff Brown
ae9ad92333
Bug 749771 - Set HOME directory for Android xpcshell tests. r=jmaher
2012-05-04 22:46:36 -04:00
Wes Kocher
b9b53a7a22
No bug, update Jetpack revision to update tests on m-c.
2012-05-04 18:44:27 -07:00
Matt Brubeck
e3b7b8e191
Merge mozilla-central and mozilla-inbound
2012-05-02 15:58:11 -07:00