- Jun 06, 2017
-
-
Alex Gaynor authored
Bug 1367560 - Remove an assertion from the Directory constructor that the directory exists on disk from DEBUG builds; r=baku As long as Directory objects can be constructed in the content process, trying to access the file system conceptually does not make sense because of sandboxing. The canary in the coal mine for this was tests which started crashing on Directory construction as we further locked down read access in the sandbox. MozReview-Commit-ID: HZitALYpO5H --HG-- extra : rebase_source : 1f7e0361e40e45a9c23d5d78bdcdc1696d44d298
-
Mike de Boer authored
Bug 1367970 - when switching panels quickly, the auto-resize workaround can cause wonky animations. Clear the timeout when a new animation starts. r=Gijs MozReview-Commit-ID: CpQFjDDm2BR --HG-- extra : rebase_source : 971fe451fc50ddde02842dfef38c1e8908c05620
-
- May 30, 2017
-
-
milindl authored
Bug 1368754 - fix consumers which wait for `NodeHistoryDetailsChanged`/`NodeURIChanged` to be called to use node for new values, r=mak Updated time, access count and uri can be accessed using the node passed to the method. There is no need to access the other arguments, which contain the old values of the quantities changed. MozReview-Commit-ID: 3WEwAs8gQ0w --HG-- extra : rebase_source : 4f6f8bb9d9747cb9cfacf0a5ee5ed58dfca41c0d
-
milindl authored
Bug 1368754 - Change `NodeHistoryDetailsChanged` and `NodeURIChanged` to be called with old time,access count and uri, r=mak Update interface and all instances where the method is called to be called with the old values, since the new values are already there as a part of the node, and thus redundant. MozReview-Commit-ID: 5pcfJbg9tej --HG-- extra : rebase_source : 4053523f466c3b1f77148376e1e93aa4bcb7e417
-
- Jun 06, 2017
-
-
Michael Ratcliffe authored
MozReview-Commit-ID: 3W9BpRMec4C --HG-- extra : rebase_source : b8283e2eb3da96601adced69fb4629abc018f712
-
Simon Sapin authored
Source-Repo: https://github.com/servo/servo Source-Revision: 87005a0df33531995635728989c929572de429e7 --HG-- extra : subtree_source : https%3A//hg.mozilla.org/projects/converted-servo-linear extra : subtree_revision : 132d1a167ffd5a75ed978da5c82b71b8530bc8b1
-
- Jun 05, 2017
-
-
Michael Ratcliffe authored
MozReview-Commit-ID: LXFr5hAlHZe --HG-- extra : rebase_source : c8245b1a3361ae276dec86e1553872ed31220f52
-
- Jun 06, 2017
-
-
Kate Ustiuzhanina authored
MozReview-Commit-ID: KSt07czm7Kt --HG-- extra : rebase_source : 588835ced106e7effe1afbd6e6490af2313f4cd4
-
- Jun 05, 2017
-
-
Ian Bicking authored
--HG-- extra : rebase_source : ac3c11c0383ab7cac3417b8d218d931d8f592e1b
-
Matt Brubeck authored
MozReview-Commit-ID: AA3tKHCQ5E0 --HG-- extra : rebase_source : 9a7b16043e4aff09a4997138a9016e2f7f791f58
-
- May 26, 2017
-
-
Chris H-C authored
It causes an assert failure in gtk which prints to the console. MozReview-Commit-ID: A4106Z4rT36 --HG-- extra : rebase_source : 642c94a95cfa3939bc475e9139ee63caa78e3005
-
- Jun 06, 2017
-
-
Manish Goregaokar authored
MozReview-Commit-ID: DIipQabhnz1
-
- Jun 05, 2017
-
-
Brad Werth authored
Bug 1369903 Part 3: Ensure that Loader enables all cloned stylesheets, and checks modified state of all stylesheets, regardless of backend. r=emilio MozReview-Commit-ID: EEnFeaw2r0u --HG-- extra : rebase_source : 1ff76aee934c6fe191105ce397c0e191e9802acb
-
Brad Werth authored
MozReview-Commit-ID: JSlJ8yhqLXm --HG-- extra : rebase_source : 35fd4c941fd09109779f454020c7af8de72dba55
-
Brad Werth authored
MozReview-Commit-ID: 6YHC0vvvrtn --HG-- extra : rebase_source : 3bdd45f055fc3d9f35080984cd2c5ccbab77b1a6
-
Brad Werth authored
Bug 1351117 Part 1: Change an assert on nsLayoutStylesheetCache::Shutdown into a warning, since it only notes that the cache was never used. r=heycam MozReview-Commit-ID: 5dHMnjE8ufl --HG-- extra : rebase_source : 0d251371af654882e3d83c8634fa6951d26da359
-
- Jun 06, 2017
-
-
Kartikaya Gupta authored
MozReview-Commit-ID: H7J8BK7regw --HG-- extra : rebase_source : d7bc3004a0ed48d0204424c829f7bbde28afc826
-
- Jun 02, 2017
-
-
Mike Hommey authored
Bug 1369622 - Add a static_assert when no variadic argument is given to MOZ_CRASH_UNSAFE_PRINTF. r=froydnj If MOZ_CRASH_UNSAFE_PRINTF is only given a format string, it means either arguments are missing, or MOZ_CRASH should be used instead. Hint at that with a static_assert. --HG-- extra : rebase_source : 355c37deb8b007e61939a4c657e411d110e7bbe7
-
Mike Hommey authored
Bug 1368932 removed MOZ_STATIC_ASSERT_VALID_ARG_COUNT because it didn't actually work for large numbers of arguments. But it was kind of useful for macros that expand to something broken when they are given no variadic argument at all. Now that we have a macro that doesn't require tricks to count empty arguments lists, however, we can use straightforward static_asserts instead of a generic macro, which has the side effect of providing more context in the error message. --HG-- extra : rebase_source : 223f85c2c5cc7b3fa8c584b70bb084784fb5764a
-
Mike Hommey authored
In a couple places, MOZ_PASTE_PREFIX_AND_ARG_COUNT is used to only count the number of arguments, we can now use MOZ_ARG_COUNT directly for that. --HG-- extra : rebase_source : 1064e4cc231863dc4aff83ee6bc90d318b4be418
-
Mike Hommey authored
I'm not sure how I tested MOZ_FOR_EACH in bug 1368932, but it turns out it doesn't work with an empty list, despite MOZ_PASTE_PREFIX_AND_ARG_COUNT now supporting 0 arguments. Macros can be tricky, and it ends up being easier to make things work cross-compiler with a separate macro that does the counting, and (re)building MOZ_PASTE_PREFIX_AND_ARG_COUNT on top of that. Then MOZ_FOR_EACH ends up working as expected with an empty list. So this adds a MOZ_ARG_COUNT macro that counts the number of variadic arguments it's given, and derives MOZ_PASTE_PREFIX_AND_ARG_COUNT from it. And this adds a testcase validating that MOZ_FOR_EACH works properly with an empty list as a result. --HG-- extra : rebase_source : 309371d87bd1561fbd2153f44fc1256185045d23
-
- Jun 06, 2017
-
-
Manish Goregaokar authored
MozReview-Commit-ID: FAwr9rgj58c --HG-- extra : rebase_source : 4a8e77964d309afad78955a6f1a1c8b14bf06481
-
- Jun 05, 2017
-
-
Sylvestre Ledru authored
MozReview-Commit-ID: Dxi5jTGcrow --HG-- extra : rebase_source : 959956094e6e64a50e307e48b11bb8791940d297
-
Sylvestre Ledru authored
Bug 1370369 - Use the new MOZ_DIAGNOSTIC_ASSERT_ENABLED instead of several defines - follow up patch r=froydnj MozReview-Commit-ID: I4ffmvKClc6 --HG-- extra : rebase_source : 0039cd09dfb199f77a1cbdca3bfdbcab21cc0049
-
- May 25, 2017
-
-
Kevin Chen authored
MozReview-Commit-ID: 1XAPVwW8zv3 --HG-- extra : rebase_source : ee6358a3d7a262281bcd1e4049509c44646428a9
-
- Jun 05, 2017
-
-
flyingrub authored
Redirect the link to about:preferences#privacy-reports MozReview-Commit-ID: HIq9zpT6Jz9 --HG-- extra : rebase_source : 8393573834367174ef743c09470f74c22e1ccbdd
-
- Mar 22, 2017
-
-
Mathieu Leplatre authored
MozReview-Commit-ID: 8vAuTImx7IH --HG-- extra : rebase_source : 15995e30bd1fdb697eb2374a0c28c68e0828e1e6
-
- Jun 06, 2017
-
-
Jared Wein authored
Bug 13705282 - Remove gramatically incorrect 'size' from CompositorAnimationWarningContentTooLargeArea string. r=flod MozReview-Commit-ID: CufsKyWezU8 --HG-- extra : rebase_source : 99f68432905e483f786994d00983c505bcb58928
-
- May 10, 2017
-
-
Johann Hofmann authored
On OSX, we want to not fade the entire back button when it is inactive. Instead we only fade the arrow icon. For that, we use the SVG context-fill-opacity property. MozReview-Commit-ID: J9I9BKHLedv --HG-- extra : rebase_source : 8500a742d08d78e89f66bfc009fd54f59d2d2303
-
- Jun 06, 2017
-
-
Dão Gottwald authored
Bug 1368672 - Don't set a color on toolbar buttons by default (color should be inherited) and explicitly inherit color in hover/open states for custom-styled toolbar buttons. r=johannh MozReview-Commit-ID: J2QF8FBi0Ll --HG-- extra : rebase_source : 021063246dbaecff59a362f105a900d9d3f96234
-
Emilio Cobos Álvarez authored
Hopefully the last. MozReview-Commit-ID: JjNP7zrqmge
-
- Jun 05, 2017
-
-
Rob Wood authored
MozReview-Commit-ID: 35IPFDPG0vR --HG-- extra : rebase_source : 97462bf38a0c85feec4b45e5775c087ee107f59d
-
- Jun 04, 2017
-
-
Masatoshi Kimura authored
MozReview-Commit-ID: BDWahhdAV8Z --HG-- extra : rebase_source : d5ccc74e62b21ba66a838f7351d595e9e1c4b694
-
- Jun 06, 2017
-
-
Mike Hommey authored
--HG-- extra : rebase_source : 22730dc61162a172d91b192d0a64d2e09f057a1c
-
Emilio Cobos Álvarez authored
MozReview-Commit-ID: 2CjkNLrvklq
-
- Jun 05, 2017
-
-
Jean-Yves Avenard authored
MozReview-Commit-ID: ESYagjKpS5E --HG-- extra : rebase_source : 6a267996f09deb11c8929cdb4f00f83a4bf02163
-
Jean-Yves Avenard authored
MozReview-Commit-ID: A3IOOIKR187 --HG-- extra : rebase_source : cf5723bebc1a11fe665b54ce7ee02b4e02ecd3c4
-
- Jun 06, 2017
-
-
Sebastian Hengst authored
Backed out changeset 8ecdc6d29e1d (bug 1367424) for failing jetpack's test-dev-panel.js.test Panel API and more. r=backout
-
Sebastian Hengst authored
-
Emilio Cobos Álvarez authored
MozReview-Commit-ID: C7i5uv60tQD
-