Commit Graph

825 Commits

Author SHA1 Message Date
Andrew Halberstadt
11b824f09b Bug 1066735 - Remove root b2g and android specific xpcshell manifests, r=chmanchester 2014-10-07 18:18:28 -04:00
Jon Morton
4a98f87acc Bug 979835: Port BoxObject and its subclasses to WebIDL. r=khuey sr=bz 2014-10-14 13:15:21 -07:00
Mark Hammond
10efb6fb0a Bug 932651 - getClipboardData in specialpowersAPI uses the chrome window so it works in e10s. r=ted 2014-09-26 14:03:41 +10:00
Bill McCloskey
daff0feda8 Bug 1069059 - [e10s] Convert isWindowPrivate calls to isBrowserPrivate/isContentWindowPrivate as appropriate (r=mconley,margaret) 2014-09-23 15:48:52 -07:00
Shu-yu Guo
40c62f33a5 Bug 1001090 - Part 5: Fix errors in tests throughout the tree. (r=robcee,gavin) 2014-09-15 16:30:47 -07:00
Shu-yu Guo
6cfc2eb110 Bug 1001090 - Part 4: Fix errors in chrome code. (r=zombie,gavin,fitzgen,dcamp,bgrins,fabrice,gwagner,margaret,mrbkap,mak,njn,vicamo) 2014-09-15 16:30:46 -07:00
Blake Kaplan
f2fd820398 Bug 1045987 - Fix doorhanger notifications for the login manager. r=billm/dolske 2014-09-04 17:01:32 -07:00
Bill McCloskey
3fc52acc1d Bug 1061013 - Disable various browser chrome tests when running with e10s. r=jimm 2014-09-02 13:47:12 -05:00
Mark Banner
488d98a82e Bug 1057884 - WARNING nsLoginManagerPrompter.js:1340 - assignment to undeclared variable port. r=dolske 2014-08-27 09:52:01 +01:00
Jared Wein
06f47636a0 Bug 1037049 - In-content preference subdialogs that contain a <resizer> need to have their <resizer> removed and passed in as a "resizable" window opening parameter. r=Gijs 2014-08-20 17:22:55 -04:00
Mihaela Velimiroviciu
1e66ecc881 Bug 1042769 - Add automated test for checking that the metainfo fields are displayed in password manager. r=paolo 2014-07-29 17:18:15 +03:00
Birunthan Mohanathas
5a22403492 Bug 1049214 - Fix 'setting a property that has only a getter' warnings on shutdown for nsContentPrefService.js and nsLoginManager.js. r=mossop 2014-08-12 09:16:38 -07:00
Alexandre Poirot
6188942e57 Bug 1027242 - Blacklist mulet's failing tests + expose 'mulet' to ini files; fix previous bustage on a CLOSED TREE, r=ahal 2014-07-02 15:40:56 -07:00
Blake Kaplan
8b4054b828 Bug 949617 - Make the login manager work in e10s. r=dolske/mconley/mfinkle/jimm 2014-06-28 11:09:45 -07:00
Blake Kaplan
06dadd79f0 Bug 993197 - Asynchronize nsILoginManager::autoCompleteSearch. r=dolske 2014-06-28 11:09:45 -07:00
Wes Kocher
ebff445559 Merge inbound to m-c a=merge 2014-06-27 17:40:49 -07:00
Blake Kaplan
a6eb1067e6 Bug 1029128 - Fix bug in failure case biting debugging mochitest failures. r=dolske 2014-06-24 16:57:39 -04:00
Blake Kaplan
197bf4e441 Bug 1029128 - Fix strict-mode error in the JSON storage file. r=dolske 2014-06-24 16:57:40 -04:00
Carsten "Tomcat" Book
40a0119636 Backed out changeset f556e62f5ee8 (bug 993197) for causing bug 1030663 a=orange 2014-06-27 15:18:16 +02:00
Carsten "Tomcat" Book
bbb698791d Backed out changeset 8c1ee05fbbd6 (bug 949617) 2014-06-27 15:17:42 +02:00
Carsten "Tomcat" Book
9d2a7bcb4d Backed out changeset 958aaea55e3f (bug 1029128) 2014-06-27 15:17:37 +02:00
Carsten "Tomcat" Book
73708a0db4 Backed out changeset df7bcbbeda21 (bug 1029128) 2014-06-27 15:17:23 +02:00
Ed Morley
04f4709f97 Bug 919016 - Disable test_privbrowsing_perwindowpb.html on all platforms for crying wolf one too many times (even though it's likely just been eaten == tough) 2014-06-27 16:30:17 +01:00
Blake Kaplan
e7396ccb03 Bug 1029128 - Fix strict-mode error in the JSON storage file. r=dolske 2014-06-24 16:57:40 -04:00
Blake Kaplan
c96c39f2dc Bug 1029128 - Fix bug in failure case biting debugging mochitest failures. r=dolske 2014-06-24 16:57:39 -04:00
Blake Kaplan
f02a554b71 Bug 949617 - Make the login manager work in e10s. r=dolske 2014-06-24 16:57:39 -04:00
Blake Kaplan
95838aff2d Bug 993197 - Asynchronize nsILoginManager::autoCompleteSearch. r=dolske 2014-06-25 17:07:38 -07:00
Jim Blandy
39dc0c6097 Bug 914753: Make Emacs file variable header lines correct, or at least consistent. DONTBUILD r=ehsan
The -*- file variable lines -*- establish per-file settings that Emacs will
pick up. This patch makes the following changes to those lines (and touches
nothing else):

 - Never set the buffer's mode.

   Years ago, Emacs did not have a good JavaScript mode, so it made sense
   to use Java or C++ mode in .js files. However, Emacs has had js-mode for
   years now; it's perfectly serviceable, and is available and enabled by
   default in all major Emacs packagings.

   Selecting a mode in the -*- file variable line -*- is almost always the
   wrong thing to do anyway. It overrides Emacs's default choice, which is
   (now) reasonable; and even worse, it overrides settings the user might
   have made in their '.emacs' file for that file extension. It's only
   useful when there's something specific about that particular file that
   makes a particular mode appropriate.

 - Correctly propagate settings that establish the correct indentation
   level for this file: c-basic-offset and js2-basic-offset should be
   js-indent-level. Whatever value they're given should be preserved;
   different parts of our tree use different indentation styles.

 - We don't use tabs in Mozilla JS code. Always set indent-tabs-mode: nil.
   Remove tab-width: settings, at least in files that don't contain tab
   characters.

 - Remove js2-mode settings that belong in the user's .emacs file, like
   js2-skip-preprocessor-directives.
2014-06-24 22:12:07 -07:00
Ryan VanderMeulen
e3bc0bb1f8 Backed out 5 changesets (bug 993197, bug 949617, bug 995489, bug 1029128) for Android test failures.
Backed out changeset 033d6271fd19 (bug 1029128)
Backed out changeset f568b1dc9880 (bug 1029128)
Backed out changeset daa9c46d19dc (bug 949617)
Backed out changeset 2baf5c61cbf5 (bug 995489)
Backed out changeset 654c1f0c88bc (bug 993197)
2014-06-24 15:36:18 -04:00
Blake Kaplan
2284458971 Bug 1029128 - Fix strict-mode error in the JSON storage file. r=dolske 2014-06-24 14:34:02 -04:00
Blake Kaplan
df23048b05 Bug 1029128 - Fix bug in failure case biting debugging mochitest failures. r=dolske 2014-06-24 14:34:02 -04:00
Blake Kaplan
c531e6e6c4 Bug 949617 - Make the login manager work in e10s. r=dolske 2014-06-24 14:34:02 -04:00
Blake Kaplan
e700c8e0bc Bug 993197 - Asynchronize nsILoginManager::autoCompleteSearch. r=dolske 2014-06-24 14:34:02 -04:00
Justin Dolske
a9db2e9bda Bug 499649: trivial followup to remove temporary dump() logging. 2014-06-22 14:03:26 -07:00
Paolo Amadini
30c6a9bbf0 Bug 1021031 - Remove temporary migration code added in bug 1019885. r=dolske 2014-06-19 21:02:57 +01:00
Carsten "Tomcat" Book
e157ff8879 merge fx-team to mozilla-central a=merge 2014-06-17 14:09:46 +02:00
aceman
50b2bc5517 Bug 1025340 - Declare encType variable in toolkit/components/storage-mozStorage.js. r=MattN 2014-06-13 16:37:00 -04:00
Gijs Kruitbosch
c257f278e0 Bug 1025483 - fire 'input' event for password autocompletes, r=MattN 2014-06-15 14:17:00 +01:00
Paolo Amadini
edfeef2857 Bug 1019885 - Fix broken import of disabled hosts from previous profiles. r=dolske 2014-06-05 16:44:42 +01:00
Paolo Amadini
999537c1cc Bug 853549 - Use a JSON storage back-end in the Login Manager, except on Android. r=dolske 2014-01-07 17:29:41 +01:00
Carsten "Tomcat" Book
be98627aee Backed out changeset ca4caf0d721c (bug 853549) for valgrind testfailures 2014-05-28 15:53:13 +02:00
Paolo Amadini
3bf90d715a Bug 853549 - Use a JSON storage back-end in the Login Manager, except on Android. r=dolske 2014-01-07 17:29:41 +01:00
Phil Ringnalda
6657aeb3af Bug 499649 followup, skip test_case_differences.html on Android since it's just a modified copy of the already-skipped test_basic_form_autocomplete.html
CLOSED TREE
2014-05-27 20:32:26 -07:00
Gavin Sharp
d0bc22c9f8 Bug 499649: fix auto-filling behavior when text doesn't match stored username case, r=dolske 2014-02-24 21:39:16 -08:00
Paolo Amadini
5282b0e351 Bug 956550 - The modifyLogin method should validate input like addLogin. r=dolske 2014-01-05 13:45:38 +01:00
Justin Dolske
4d620fdfa8 Bug 998081 - Show login metadata in password manager UI. r=mattn 2014-05-22 12:18:36 -07:00
Michael Pruett
e4b3983d54 Bug 431901 - Update preference dialogs to treat backspace and delete equivalently on Mac OS X. r=MattN 2014-05-12 23:11:19 -05:00
Paolo Amadini
b56239888a Bug 956332 - Reorganize Login Manager tests and update interfaces. r=dolske 2014-01-03 18:03:45 +01:00
Paolo Amadini
04bc877d5f Bug 856470 - Login Manager no longer requires initialization at startup. r=dolske 2013-09-14 20:24:00 +02:00
Michael Pruett
9b631e0ffb Bug 1004881 - Fix key press handling in saved passwords exceptions dialog. r=MattN 2014-05-05 18:16:21 -05:00