Commit Graph

142350 Commits

Author SHA1 Message Date
Jim Mathies
3dd67ace3c Bug 904204 - Bug fix for send mouse move to clear hover from the apzc landings. r=bbondy 2013-08-15 06:16:43 -05:00
Jim Mathies
5591e7b59e Bug 901019 - Disable selection ui when pasting into the address bar using the context menu. r=bbondy 2013-08-15 06:16:42 -05:00
Jim Mathies
9de58700d3 Bug 903737 - Fix: right click on non-selected content with selected text in page brings up text selection context menu. r=rsilveira 2013-08-15 06:16:42 -05:00
Dão Gottwald
3f846129e7 Backed out changeset 55f9c5aeece6 2013-08-15 10:42:57 +02:00
Tim Taubert
a449f33890 Bug 898744 - Make browser_394759_basic.js wait for tab invalidation before closing the window; r=yoric 2013-08-15 08:19:13 +02:00
Victor Porof
890146a6e2 Bug 904471 - Group and document the events emitted by the netmonitor's panel window, r=msucan 2013-08-15 06:45:34 +03:00
Victor Porof
d767d5fa4f Bug 904472 - Add license block to netmonitor's test files, r=msucan 2013-08-15 06:45:33 +03:00
Victor Porof
ef97c835e0 Bug 904475 - When filtering in the Variables View and no matches are found, some annoying margins are added between scopes, r=past 2013-08-15 06:45:30 +03:00
Gavin Sharp
561eb50fb7 Bug 896986 - Recent closed tab history middle click only opens top entry, r=jaws
--HG--
extra : rebase_source : dd02458f60c5a937852b14671dbd1c50e80e7a8c
2013-08-14 14:34:27 -07:00
Mounir Lamouri
505ea91183 Bug 610346 - Remove nsIFormSubmitObserver interface from FormTracker. r=rnewman 2010-11-08 13:23:39 +01:00
Wes Kocher
9eb7a41199 Backed out changeset 88e21b727815 (bug 903653) 2013-08-14 17:47:16 -07:00
Sam Foster
1370a8ed5f Bug 903653 - Raise ColorAnalyzers MAXIMUM_PIXELS to 144x144. r=ttaubert 2013-08-14 15:54:18 -07:00
Sam Foster
022f5ebd99 Bug 895457 - Override single-row notification layout in snapped-view. r=mbrubeck 2013-08-14 15:43:29 -07:00
Lucas Rocha
cb8f321ee2 Bug 905139 - Fix alpha setter for pre-HC AnimatorProxy (r=sriram) 2013-08-14 23:18:56 +01:00
Ryan VanderMeulen
d031db52f8 Merge fx-team to m-c. 2013-08-14 17:04:38 -04:00
Gaia Pushbot
20b2df4597 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/58c6fafc2ed4
Author: Olav Nymoen <olav@comoyo.com>
Desc: Merge pull request #11525 from comoyo/allow_open_remote

Bug 819882: Allow all apps to open OOP. From & to , string separator. r=alive

========

https://hg.mozilla.org/integration/gaia-central/rev/9ddf51e471de
Author: Olav Nymoen <olav@comoyo.com>
Desc: Bug 819882: Allow all apps to open OOP. From & to , string separator. r=alive
2013-08-14 12:05:23 -07:00
Erik Vold
445e8c2685 Bug 689291 test-tabs.test window focus changes active tab | Test output exceeded timeout (60s). r=Mossop 2013-08-14 10:57:38 -07:00
Erik Vold
94bbfc26b2 Bug 846165 - Intermittent tests/test-panel.test Document Reload. r=gozala 2013-08-14 11:02:03 -07:00
Erik Vold
39b9cfb340 Bug 904136 - Intermittent test failure: TEST-UNEXPECTED-FAIL | simple-prefs/main.testAOM | Timed out. r=Mossop 2013-08-14 11:02:18 -07:00
ZER0
1a697ff438 Bug 865391 - Intermittent Jetpack TEST-UNEXPECTED-FAIL | unknown | Test output exceeded timeout (60s). r=Mossop 2013-08-14 11:00:14 -07:00
Yuan Xulei
ef579c676c Bug 904628 - Make the code dealing with contentEditable in forms.js more robust. r=fabrice 2013-08-14 13:54:36 -04:00
Yuan Xulei
ffbf20220b Bug 902168 - Ignore editable document in forms.js. r=fabrice 2013-08-14 13:53:53 -04:00
Gaia Pushbot
f232d1f01d Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/4e8dc46f1c1e
Author: James Lal <james@lightsofapollo.com>
Desc: Merge pull request #11469 from KevinGrandon/bug_903652_calendar_swiping

Bug 903652 - Add delayed transition visibility for tooltip

========

https://hg.mozilla.org/integration/gaia-central/rev/7c19afa8af95
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Bug 903652 - Add delayed transition visibility for tooltip
2013-08-14 10:45:23 -07:00
Gaia Pushbot
ee9383454e Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/de813755d4a4
Author: Rick Waldron <waldron.rick@gmail.com>
Desc: Bug 904220 - [Clock] Unit tests should not create actual alarm records r=ian-liu

commit af2a65ee86cc861a5b76dd2aca05bb1c6dfcd95d
Author: Mike Pennisi <mike@mikepennisi.com>
Date:   Tue Aug 13 15:32:54 2013 -0400

    Fix bug in unit tests

    Loading the application HTML into the unit test environment breaks some
    assumptions made by the tests. Notably: elements appended to the DOM
    which have identical DOM IDs will no longer be returned by
    `document.getElementById`.

    A slightly cleaner approach might involve re-loading the `body` HTML
    before *every* test and referencing elements from the global `ClockView`
    object directly. This has two drawbacks:

    1. It will tend to slow down the test suite (especially as more tests
       are written)
    2. It will require further re-factoring of the application logic (which
       caches references to its DOM nodes when they are first referenced).

    For these reasons, we might prefer the simplistic fix outlined by this
    patch.

    Part of this fix requires consistently loading the `loadBodyHTML`
    utility function in `setup.js` (so that it is loaded when the test-agent
    runs the entire test suite *and* when it runs individual test files).

commit 0ca745a11747ec7c27f333ae0bf675c7da883c6c
Author: Rick Waldron <waldron.rick@gmail.com>
Date:   Mon Aug 12 18:46:31 2013 -0400

    Bug 904220 - [Clock] Unit tests should not create actual alarm records

    https://bugzilla.mozilla.org/show_bug.cgi?id=904220

    - Reorders require files alphabetically
    - Adds Mocks:
        - mock_alarm_list.js
        - mock_alarm_manager.js
        - mock_navigator_mozl10n.js
    - Update tests to use actual markup as fixture
    - Update tests to use the same mocha API as other tests
    - Use mocks instead of creating real alarm records
    - Use sinon sandbox features

    Signed-off-by: Rick Waldron <waldron.rick@gmail.com>

Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
2013-08-14 10:35:23 -07:00
Nick Fitzgerald
ea11a569a6 Bug 840684 - Source map the location of frames in the RDP; r=vporof 2013-08-14 09:50:28 -07:00
Brian Nicholson
56b2532c64 Bug 901903 - Don't try to fetch guest profile if it doesn't exist. r=wesj 2013-08-14 09:07:00 -07:00
Markus Stange
c3dfe63783 Bug 903586 - Use position:relative to provide a reference element for absolutely positioned highlighter elements. r=dao 2013-08-14 15:31:44 +02:00
Ms2ger
3d504dcb66 Merge latest PGO-green inbounc changeset to m-c. 2013-08-14 14:45:47 +02:00
Carsten "Tomcat" Book
be8d541051 merge fx-team to mozilla-central 2013-08-14 14:29:37 +02:00
Carsten "Tomcat" Book
f2f7753492 merge b2g-inbound to mozilla-central 2013-08-14 14:11:03 +02:00
Ms2ger
5b19b311dc Bug 904178 - Part d: Use nsIDocument in nsMenuItemIconX::GetIconURI; r=smichaud 2013-08-14 09:03:40 +02:00
Ms2ger
77e22ca96b Bug 904178 - Part c: Use nsIDocument in UndoManager::DispatchTransactionEvent; r=wchen 2013-08-14 09:03:15 +02:00
Ms2ger
d032b52f00 Bug 904178 - Part b: Use nsIDocument in nsEventListenerManager::SetEventHandler; r=smaug 2013-08-14 09:02:49 +02:00
Ms2ger
654b140108 Bug 904178 - Part a: Use nsIDocument in logging::DocLoad; r=surkov 2013-08-14 09:01:27 +02:00
Ms2ger
c2315a28ab Bug 904110 - Move alignment features out of Util.h into a new header; r=Waldo 2013-08-14 09:00:52 +02:00
Ms2ger
7f2eb46c31 Bug 903794 - Cleanup PluginModuleParent.h includes; r=johns 2013-08-14 09:00:47 +02:00
Ms2ger
63c343bbec Bug 903797 - Update mfbt/STYLE to the current policy about include guards; r=Waldo 2013-08-14 09:00:42 +02:00
Ms2ger
363f72b597 Bug 903849 - Use MOZ_ASSERT consistently in XPConnect; r=bholley 2013-08-14 09:00:34 +02:00
Ms2ger
106e39af77 Bug 904030 - Remove unnecessary make rules in layout/base/Makefile.in; r=glandium 2013-08-14 09:00:29 +02:00
Ms2ger
4579943f93 Bug 897909 - Cleanup some SIMPLE_PROGRAMS; r=gps
* * *
FOLD
2013-08-14 09:00:13 +02:00
Ms2ger
bbe4225d9d Bug 902901 - Give nsScriptElement.h an include guard; r=hsivonen 2013-08-14 08:57:41 +02:00
Ms2ger
16c808b7e8 Bug 902316 - followup: Add a license header to the new moz.build file; r=tbsaunde 2013-08-14 08:57:26 +02:00
Ms2ger
0c3b97da57 Bug 901063 - Remove HB_DONT_DEFINE_STDINT defines; r=gps
These defines have been unnecessary since we removed mozilla/StandardInteger.h.
The upstream code will default to stdint.h typedefs without them.
2013-08-14 08:57:22 +02:00
Ms2ger
2e3d829eba Bug 903791 - Make HTMLOptionElement.index infallible; r=mounir 2013-08-14 08:57:04 +02:00
Ms2ger
6ce073631d Bug 903046 - Remove dead EXPORTS_mozilla/jsipc assignment; r=dvander+mshal 2013-08-14 08:56:48 +02:00
Ms2ger
9da2f1b3f4 Bug 901320 - Stop including AutoRestore.h in nsContentUtils.h; r=jlebar 2013-08-14 08:56:25 +02:00
Ms2ger
6ec28362b3 Bug 901323 - Don't include nsContentUtils.h unnecessarily; r=jlebar 2013-08-14 08:56:21 +02:00
Ms2ger
772a9d87b7 Bug 901269 - Part b: Stop including nsContentUtils.h in Element.h; r=jlebar 2013-08-14 08:55:46 +02:00
Ms2ger
c1baf7b07f Bug 901269 - Part a: Move HTMLOutputElement::GetValue out of line; r=dzbarsky 2013-08-14 08:55:11 +02:00
Ms2ger
2a3db67e63 Bug 887499 - Null-check mSelect in HTMLOptionsCollection::Add; r=smaug 2013-08-14 08:54:44 +02:00