Commit Graph

618055 Commits

Author SHA1 Message Date
Chris Manchester
67d0cf78d1 Bug 1496853 - Enable link time optimization for rust in tup for --enable-release builds. r=mshal
Differential Revision: https://phabricator.services.mozilla.com/D7951

--HG--
extra : moz-landing-system : lando
2018-10-08 17:51:34 +00:00
Abdelrhman Ahmed
504ea44902 Bug 1496705 - Rename _inOverflow to _overflowing. r=dao 2018-10-08 16:46:18 +02:00
Nathan Froyd
28aa04a6d1 Bug 1483699 - part 2 - make InsertSlotsAt error checking more thorough; r=mccr8
I don't know what the existing code was trying to do, but it certainly
wasn't clear, and possibly not correct.
2018-10-08 10:39:44 -04:00
Nathan Froyd
1e6d9316da Bug 1483699 - part 1 - add overflow checks for extending arrays; r=mccr8 2018-10-08 10:39:44 -04:00
Cristina Coroiu
764da0c5ac Bug 1495110 - Disable test_fastblock_bug1477046.html for multiple failures on windows7 and mac r=jmaher 2018-10-07 15:37:00 +03:00
Chris Manchester
51a79e8c4f Bug 1496405 - Always build minidumpwriter on Windows to support 64 or 32 bit python. r=ted,firefox-build-system-reviewers
Differential Revision: https://phabricator.services.mozilla.com/D7953

--HG--
extra : moz-landing-system : lando
2018-10-06 01:16:01 +00:00
Christian Holler
fb3547413f Bug 1496868 - Make assertThrowsValue and assertThrowsInstanceOf overridable. r=sfink
Differential Revision: https://phabricator.services.mozilla.com/D7952

--HG--
extra : moz-landing-system : lando
2018-10-08 16:05:37 +00:00
Tiberius Oros
2f11f4a742 Merge mozilla-central to autoland. a=merge CLOSED TREE 2018-10-08 19:21:26 +03:00
Tiberius Oros
0f1b35f329 Merge inbound to mozilla-central. a=merge 2018-10-08 19:19:00 +03:00
Andreea Pavel
3764388b3e Backed out changeset 26d2f8e018b5 (bug 1492265) for failing xpcshell at devtools/server/tests/unit/test_promises_actor_attach.js a CLOSED TREE
--HG--
extra : amend_source : 05b3fe80cc8b79bebb697cddbe9ad22deb4261fc
2018-10-08 19:16:21 +03:00
Jean-Yves Avenard
3a0d9bef61 Bug 1495025 - P6. Remove now unused paramater. r=bryce
Depends on D7316

Differential Revision: https://phabricator.services.mozilla.com/D7491
2018-10-08 15:52:01 +02:00
Jean-Yves Avenard
34eeec152b Bug 1495025 - P5. Add Windows P010 and P016 support for software decoder r=cpearce
As we do not have an IMF nor D3D11 NV12 image, we always require a full copy of the data that will deinterleave the chroma channels.

Depends on D7316

Differential Revision: https://phabricator.services.mozilla.com/D7318
2018-10-08 15:52:01 +02:00
Jean-Yves Avenard
d14584ec03 Bug 1495025 - P4. Add COLOR_16 type r=nical
Depends on D7296

Differential Revision: https://phabricator.services.mozilla.com/D7316
2018-10-08 15:52:01 +02:00
Jean-Yves Avenard
e0e52e125f Bug 1495025 - P3. Store original IMFMediaType's subtype in D3D11SharedHandleImage. r=cpearce
This allows more easily the creation of the MFT required to convert to a RGBA32 image when doing a readback.

Depends on D7295

Differential Revision: https://phabricator.services.mozilla.com/D7296
2018-10-08 15:52:00 +02:00
Jean-Yves Avenard
dd9e74b3bb Bug 1495025 - P2. Use lambda for callback. r=cpearce
I find it easier to read than a function pointer making you search elsewhere to see what it's about

Depends on D7294

Differential Revision: https://phabricator.services.mozilla.com/D7295
2018-10-08 15:52:00 +02:00
Jean-Yves Avenard
c8d172b91e Bug 1495025 - P1. Search for alternative pixel format when stream change. r=cpearce
When decoding a vp9 profile 2 (10 bits), the MF_E_TRANSFORM_STREAM_CHANGE message is returned. We need to look for alternative format type other than NV12: 10/16 bits.

When using those formats, we can no longer assume that the D3D11ShareHandleImage can use NV12. So we will convert to RGBA32 on the fly via a MFT.

Differential Revision: https://phabricator.services.mozilla.com/D7294
2018-10-08 15:51:59 +02:00
Timothy Guan-tin Chien
ca71a35fa1 Bug 1496636 - add_task() should wait for document finishes loading before starting the test r=florian
Differential Revision: https://phabricator.services.mozilla.com/D7941

--HG--
extra : moz-landing-system : lando
2018-10-08 12:59:15 +00:00
Neil Deakin
f659f51906 Bug 1310193 - Remove wrapping of nsISupports as nsISupportsInterfacePointer in transferables. r=smaug
--HG--
extra : rebase_source : 562b3bcd621ad348b7e2ada8151775b188ba58ff
2018-10-07 16:33:07 +02:00
Tiberius Oros
8c963f7592 Merge mozilla-central to inbound. a=merge CLOSED TREE 2018-10-08 12:54:57 +03:00
Tiberius Oros
29aea2a2a3 Merge inbound to mozilla-central. a=merge 2018-10-08 12:51:36 +03:00
Henri Sivonen
2dc4ea580d Bug 1495011. r=baku.
MozReview-Commit-ID: 8d7DzFnZx4n

Differential Revision: https://phabricator.services.mozilla.com/D7273
2018-10-08 11:13:52 +03:00
Mantaroh Yoshinaga
4c95ba0b3d Bug 1493659 - Skip the click event handler if touch event has occurred. r=birtles
Tapping the menu button during the panel has shown make the menu button to be unopenable. This cause reason is removing the pointer-events property before the mouse event happens.
The tapping event will happen many the event like the following:
1) touchstart
2) touchmove (Long tap only)
3) touchend
4) mousedown
5) mouseup
6) click

This patch will detect the touchend event to eat the click event.

Differential Revision: https://phabricator.services.mozilla.com/D7827

--HG--
extra : moz-landing-system : lando
2018-10-07 17:52:11 +00:00
Dorel Luca
4865990e1a Merge mozilla-central to autoland 2018-10-08 01:01:55 +03:00
Jeff Muizelaar
8f95a3627c Bug 1493616. blob-inval: Log the some more data about the broken situation. 2018-10-07 13:15:01 -04:00
Bogdan Tara
fd6371b06e Merge mozilla-central to autoland. a=merge CLOSED TREE 2018-10-07 12:51:49 +03:00
Narcis Beleuzu
5786b9be9f Backed out 2 changesets (bug 1495153) for causing perma failures on dynamic-max-width.html
Backed out changeset 6d95f0e0cc76 (bug 1495153)
Backed out changeset 6800eb348ebe (bug 1495153)
2018-10-07 05:14:44 +03:00
Brian Hackett
5c7db5a769 Bug 1495261 - Watch for exceptions being thrown while stringifying old exceptions, r=lsmyth.
--HG--
extra : rebase_source : 23eab39d87346fa93e458c5280b7c02321f29194
2018-10-06 14:32:37 -10:00
Mats Palmgren
4ebe60371d Bug 1495153 part 2 - Implement cropping the filename for <input type=file>. r=emilio,jfkthame 2018-10-07 10:08:45 +02:00
Mats Palmgren
5cf920d8be Bug 1495153 part 1 - Replace the XUL label in <input type=file> with an HTML label. r=emilio 2018-10-07 09:44:51 +02:00
Narcis Beleuzu
18849ef0ae Backed out 6 changesets (bug 1495025) for webgl2 failures on test_2_conformance2__textures__misc__npot-video-sizing.html
Backed out changeset 24d67618f6b9 (bug 1495025)
Backed out changeset 68efa7588ba8 (bug 1495025)
Backed out changeset 9f59a50dcc6d (bug 1495025)
Backed out changeset 7fd1f6103294 (bug 1495025)
Backed out changeset f1afe7e2a9e3 (bug 1495025)
Backed out changeset c62823871aca (bug 1495025)
2018-10-07 02:03:46 +03:00
shindli
0a1e0ca8a1 Merge mozilla-central to autoland. a=merge CLOSED TREE 2018-10-07 00:13:57 +03:00
shindli
9dc23d90a5 Merge inbound to mozilla-central. a=merge 2018-10-07 00:11:08 +03:00
Siddhant085
190657496a Bug 1479445 - Return a new PageInfo object from _recordToPageInfo so that validateItemProperties can validate the object. r=lina
D5831 refactors validatePageInfo to use validateItemProperties. The record generated by _recordToPlaceInfo makes use of getters. validateItemProperties does a shallow copy of the properties and the visits properties is being left out because of the use of getters. Therefore as discussed we are returning a new object from _recordToPlaceInfo.

Differential Revision: https://phabricator.services.mozilla.com/D7467

--HG--
extra : moz-landing-system : lando
2018-10-06 19:07:12 +00:00
Thomas Wisniewski
d23454328e Bug 1491504 - shortcut blob responses from XHR and fetch when the URL is a blob URL; r=baku
shortcut blob responses from XHR and fetch when the URL is a blob URL

Differential Revision: https://phabricator.services.mozilla.com/D7253

--HG--
extra : moz-landing-system : lando
2018-10-06 17:34:24 +00:00
Jeff Muizelaar
20d9bc4191 Bug 1493616. Add some data gathering to try to figure out the crash. 2018-10-06 12:41:00 -04:00
Jeff Muizelaar
602e1c227d Bug 1496171. Remove bindings.rs.rej that slipped in 2018-10-06 12:38:14 -04:00
Emilio Cobos Álvarez
40d4cc80ad Bug 1496961 - Unship ::-moz-tree pseudos and -moz-box display values on release channels. r=mats
These have been been on nightly / beta for a couple months without any single
regression filed against them.

Let the prefs ride the trains, but keep them, so we can toggle them easily if
needed.

Differential Revision: https://phabricator.services.mozilla.com/D7960

--HG--
extra : moz-landing-system : lando
2018-10-06 12:17:01 +00:00
Jason Orendorff
e49114c01f Bug 1496099 - Fix upside-down error message when canceling a locked stream. r=baku
Differential Revision: https://phabricator.services.mozilla.com/D7633

--HG--
extra : moz-landing-system : lando
2018-10-06 12:27:10 +00:00
Emilio Cobos Álvarez
9aeb8183fd Bug 1444185 - More consistently round around fallback data. r=mstange
To avoid trimming pixels at the top / left.

This makes it closer to non-WR[1], and fixes both the checkboxes getting
cut off and the master password field.

[1]: non-WR at least at 124 scaling on a hiDPI display is still perfect, though I saw nin symmetric borders at other resolutions, so we might be able to improve here further.

Differential Revision: https://phabricator.services.mozilla.com/D7251

--HG--
extra : moz-landing-system : lando
2018-10-06 10:34:36 +00:00
Noemi Erli
4b6737ba40 Merge inbound to mozilla-central. a=merge 2018-10-06 12:27:35 +03:00
Andrea Marchesini
0b9c4b6f5a Bug 1496894 - Fix a typo in FeaturePolicy error reporting messages, r=fod 2018-10-06 09:07:19 +02:00
Boris Zbarsky
4983b1e55c Bug 1493449. Change the default credentials mode for module scripts from 'omit' to 'same-origin'. r=farre
The tests come directly from
https://github.com/web-platform-tests/wpt/pull/13176 and
https://github.com/web-platform-tests/wpt/pull/13245

Differential Revision: https://phabricator.services.mozilla.com/D7113

--HG--
extra : moz-landing-system : lando
2018-10-06 04:49:13 +00:00
Jeff Muizelaar
e8874566d6 Bug 1493616. Clear mInvalid more agressively so that we don't reuse it across paints r=mstange
Differential Revision: https://phabricator.services.mozilla.com/D7948

--HG--
extra : moz-landing-system : lando
2018-10-06 02:42:22 +00:00
Ciure Andrei
19cad53fba Backed out changeset f936a4baa698 (bug 1493616) for build bustages WebRenderCommandBuilder.cpp CLOSED TREE 2018-10-06 05:17:41 +03:00
Jeff Muizelaar
bd16ee6128 Bug 1493616. Clear mInvalid more agressively so that we don't reuse it across paints r=mstange
Differential Revision: https://phabricator.services.mozilla.com/D7948

--HG--
extra : moz-landing-system : lando
2018-10-05 22:27:59 +00:00
Drew Willcoxon
d98caa42ec Bug 1493636 - Always autofill bookmarks, regardless of their frecency and the autofill frecency threshold. r=mak
Differential Revision: https://phabricator.services.mozilla.com/D7673

--HG--
extra : moz-landing-system : lando
2018-10-06 00:22:04 +00:00
Botond Ballo
99951b7247 Bug 1452820 - Use correct window property for testing end of scroll range. r=rhunt
Differential Revision: https://phabricator.services.mozilla.com/D7950

--HG--
extra : moz-landing-system : lando
2018-10-05 23:58:04 +00:00
Ciure Andrei
a48af06d13 Backed out 3 changesets (bug 1414287) for build bustages module machine type 'x64' conflicts with target machine type 'x86 CLOSED TREE
Backed out changeset 5cc491e4d9cb (bug 1414287)
Backed out changeset 98bb6d9eb63c (bug 1414287)
Backed out changeset 73dcff37f846 (bug 1414287)
2018-10-06 03:02:41 +03:00
Ciure Andrei
07d14d0dbd Backed out 1 changesets (bug 1493636) for high frequency test_escape_autocomplete.py failures CLOSED TREE
Backed out changeset e9c7d14fc4a9 (bug 1493636)
2018-10-06 03:00:14 +03:00
Ciure Andrei
47efccbbca Backed out changeset c5ac0cb25238 (bug 1491504) for FetchConsumer.cpp build bustages CLOSED TREE 2018-10-06 02:58:44 +03:00