- 01 Nov, 2019 15 commits
-
-
Michael Kaply authored
Differential Revision: https://phabricator.services.mozilla.com/D48724 --HG-- extra : moz-landing-system : lando
-
Matthew Noorenberghe authored
Bug 1591181 - Hide <login-item> whenever a login isn't selected even if there are search results. r=sfoster I confirmed that the new test fails without the CSS change. Depends on D51234 Differential Revision: https://phabricator.services.mozilla.com/D51235 --HG-- extra : moz-landing-system : lando
-
Matthew Noorenberghe authored
Otherwise it will be selected as the `visibleListItem` and set as the @aria-activedescendant. I confirmed that the test fails without the fix. Differential Revision: https://phabricator.services.mozilla.com/D51234 --HG-- extra : moz-landing-system : lando
-
Matthew Noorenberghe authored
Differential Revision: https://phabricator.services.mozilla.com/D51212 --HG-- extra : moz-landing-system : lando
-
Ehsan Akhgari authored
Differential Revision: https://phabricator.services.mozilla.com/D50928 --HG-- extra : moz-landing-system : lando
-
Mark Banner authored
Bug 1593032 - Remove IRC/Mibbit from the list of default bookmarks that are used in nightly builds. r=mikedeboer Differential Revision: https://phabricator.services.mozilla.com/D51419 --HG-- extra : moz-landing-system : lando
-
Florens Verschelde authored
Differential Revision: https://phabricator.services.mozilla.com/D43640 --HG-- extra : moz-landing-system : lando
-
Gurzau Raul authored
Backed out 3 changesets (bug 1582751, bug 1575785, bug 1592616) for failing at browser_protections_UI.js on a CLOSED TREE. Backed out changeset 4905af6536bd (bug 1575785) Backed out changeset 13566afee847 (bug 1582751) Backed out changeset 5fe8f0955483 (bug 1592616)
-
Haik Aftandilian authored
Add the com.apple.security.smartcard entitlement to Firefox's entitlements list. Needed for clients of some CryptoTokenKit.framework API's, per SmartCardServices(7). Differential Revision: https://phabricator.services.mozilla.com/D51303 --HG-- extra : moz-landing-system : lando
-
Nicolas Chevobbe authored
Differential Revision: https://phabricator.services.mozilla.com/D51271 --HG-- extra : moz-landing-system : lando
-
Nicolas Chevobbe authored
A new parameter is added, and it expect an array of filter objects (which contain a pattern and a label properties), which are going to be used by the save file dialog. Depends on D51070 Differential Revision: https://phabricator.services.mozilla.com/D51078 --HG-- extra : moz-landing-system : lando
-
Ehsan Akhgari authored
Differential Revision: https://phabricator.services.mozilla.com/D51335 --HG-- extra : moz-landing-system : lando
-
Teja Bayya authored
Differential Revision: https://phabricator.services.mozilla.com/D49797 --HG-- extra : moz-landing-system : lando
-
Tim Nguyen authored
Differential Revision: https://phabricator.services.mozilla.com/D51384 --HG-- extra : moz-landing-system : lando
-
sotaro authored
The patch permits to resize compositor window's size after ::SetParent() call to prevent a conflict between ::SetParent() and ::SetWindowPos(). Then it triggers a composite after SetParent() call to resize compositor window correctly. Differential Revision: https://phabricator.services.mozilla.com/D49884 --HG-- extra : moz-landing-system : lando
-
- 31 Oct, 2019 1 commit
-
-
chujun authored
Change occurrence of extenstion to extension in debugger Differential Revision: https://phabricator.services.mozilla.com/D51239 --HG-- extra : moz-landing-system : lando
-
- 01 Nov, 2019 10 commits
-
-
Johann Hofmann authored
Differential Revision: https://phabricator.services.mozilla.com/D51260 --HG-- extra : moz-landing-system : lando
-
Ryan VanderMeulen authored
Differential Revision: https://phabricator.services.mozilla.com/D51191 --HG-- extra : moz-landing-system : lando
-
Oana Pop Rus authored
Backed out changeset e8ee20fdf6ac (bug 1589913) Backed out changeset 12d046056948 (bug 1589913)
-
Ryan Hunt authored
When adding a pointer to WasmInstance::memCopy, it appears that we ran out of GPRs for calling and the pointer needed to be passed via stack. GenerateBuiltinThunk uses ABIFunctionType/ABIArgType, and converts it to MIRType for calling StackCopy [1]. ArgType_General is treated as being equal to MIRType::Int32, leading to only half of the pointer being passed correctly on 64bit window systems. This means that all instance functions currently have an incorrect ABIFunctionType but avoid this issue because they don't have enough parameters or don't have a 64bit value that is passed by the stack. We have to use ABIFunctionType here for compatibility with the ARM/ARM64 simulators, otherwise it would be convenient to use a different representation. This commit: 1. Adds an ArgType_Pointer which is equivalent to MIRType::Pointer 2. Adds a helper constexpr for defining ABIFunctionType 3. Fixes the ABIFunctionType used for instance calls 4. Fixes the simulators to recognize the new ABIFunctionType's 5. Adds an assertion that the SymbolicAddressSignature and ABIFunctionType are compatible. Differential Revision: https://phabricator.services.mozilla.com/D51330 --HG-- extra : moz-landing-system : lando
-
Ryan Hunt authored
This commit uses the previous commits to actually optimize the OOL implementations. This is done by: * Passing the heap base pointer to each builtin * Acquiring the WasmArrayRawBuffer/SharedArrayRawBuffer from this pointer - This is trivial as they are embedded a fixed offset before the Wasm heap * Acquiring the heap length from the raw buffer By doing this, we avoid cache misses from accessing: TLSData -> Instance -> WasmMemoryObject -> ArrayBufferObject -> WasmArrayRawBuffer This is enough to get close enough to parity with V8 for small sizes. Further improvements should be done with an inline generated code path. Differential Revision: https://phabricator.services.mozilla.com/D50378 --HG-- extra : moz-landing-system : lando
-
Ryan Hunt authored
Currently the Wasm memory length for non-shared memory is stored in a slot of the ArrayBuffer. This commit tracks it in the WasmArrayRawBuffer as well, for use in a future commit. Differential Revision: https://phabricator.services.mozilla.com/D50377 --HG-- extra : moz-landing-system : lando
-
Ryan Hunt authored
This commit declares WasmArrayRawBuffer in the ArrayBufferObject header. This will allow WasmInstance to access the buffer in a future commit. Differential Revision: https://phabricator.services.mozilla.com/D50376 --HG-- extra : moz-landing-system : lando
-
Ryan Hunt authored
Whether a module uses shared memory or not is fixed throughout its lifetime. We can use this to specialize the implementation of memCopy/memFill and remove a branch on the memory type. This will also be useful when acquiring the memory length in a future commit, which will require different code per shared-ness. Differential Revision: https://phabricator.services.mozilla.com/D50375 --HG-- extra : moz-landing-system : lando
-
Ryan Hunt authored
This commit drops the requirement to acquire the shared memory lock when we are only acquiring the length. The length_ field is changed to be an Atomic<SeqCst> in the process. We still need to acquire the lock when growing the memory in order to atomically compute the new length and commit the new pages. Differential Revision: https://phabricator.services.mozilla.com/D50374 --HG-- extra : moz-landing-system : lando
-
Julian Descottes authored
Bug 1592996 - Bail out from walker.findNodeFront if the walker cannot reach the selectors r=rcaliman Differential Revision: https://phabricator.services.mozilla.com/D51321 --HG-- extra : moz-landing-system : lando
-
- 31 Oct, 2019 1 commit
-
-
Lars T Hansen authored
Spec compliance requires us to check the element type of the TypedArray at the same time as we check it's a shared TypedArray, not later. This results in some tests being done twice, but only for the slow C++ path. Differential Revision: https://phabricator.services.mozilla.com/D50158 --HG-- extra : moz-landing-system : lando
-
- 01 Nov, 2019 7 commits
-
-
Johann Hofmann authored
Bug 1575785 - Show a confirmation hint when a user successfully submitted a breakage report. r=nhnt11 Differential Revision: https://phabricator.services.mozilla.com/D51383 --HG-- extra : moz-landing-system : lando
-
Johann Hofmann authored
Bug 1582751 - Show an error message when content blocking breakage reporting fails. r=nhnt11,fluent-reviewers,flod Differential Revision: https://phabricator.services.mozilla.com/D51382 --HG-- extra : moz-landing-system : lando
-
Johann Hofmann authored
Differential Revision: https://phabricator.services.mozilla.com/D51381 --HG-- extra : moz-landing-system : lando
-
Florin Strugariu authored
Bug 1585456 - [mozproxy] Error out when mozproxy can't bind to port r=tarek,perftest-reviewers,davehunt Differential Revision: https://phabricator.services.mozilla.com/D50594 --HG-- extra : moz-landing-system : lando
-
Jon Coppeard authored
Bug 1592537 - Fix hazard warnings because the analysis can't tell that GCParallelTask::runTask won't GC r=me CLOSED TREE --HG-- extra : histedit_source : e7ee24460d29c770002dd5f1bde663027a41d4e0
-
Gurzau Raul authored
Backed out changeset 84c97e387e08 (bug 1591638) for failing at track-element-src-change-error.html on a CLOSED TREE.
-
Jon Coppeard authored
Bug 1592936 - Remove unncessary check that helper threads have been started in GCParallelTask::startWithLockHeld r=jandem Differential Revision: https://phabricator.services.mozilla.com/D51274 --HG-- extra : moz-landing-system : lando
-
- 31 Oct, 2019 1 commit
-
-
Marco Bonardo authored
Bug 1588515 - TypeError: document.getElementById(...) is null in permanent private browsing mode on Mac. r=Gijs Differential Revision: https://phabricator.services.mozilla.com/D51298 --HG-- extra : moz-landing-system : lando
-
- 01 Nov, 2019 5 commits
-
-
Bogdan Tara authored
-
Jon Coppeard authored
Differential Revision: https://phabricator.services.mozilla.com/D49947 --HG-- extra : moz-landing-system : lando
-
Jon Coppeard authored
Differential Revision: https://phabricator.services.mozilla.com/D49946 --HG-- extra : moz-landing-system : lando
-
Jon Coppeard authored
Differential Revision: https://phabricator.services.mozilla.com/D49944 --HG-- extra : moz-landing-system : lando
-
Jon Coppeard authored
Differential Revision: https://phabricator.services.mozilla.com/D49943 --HG-- extra : moz-landing-system : lando
-