- May 06, 2024
-
-
Bug 1802057 - Block the following characters from use in the cookie name in the cookie string: 0x3B (semi-colon), 0x3D (equals), and 0x7F (del) r=dveditz,cookie-reviewers Differential Revision: https://phabricator.services.mozilla.com/D182373
-
Bug 1738426 - Ignoring status 206 and vary header checking for opaque response in Cache API. r=asuth Differential Revision: https://phabricator.services.mozilla.com/D186431
-
- Apr 05, 2024
-
-
Kershaw Chang authored
Original Revision: https://phabricator.services.mozilla.com/D205234 Differential Revision: https://phabricator.services.mozilla.com/D206699
-
- Mar 30, 2024
-
-
Ryan VanderMeulen authored
Bug 1881416 - Relax expectations for /secure-payment-confirmation/enrollment.https.html to allow timeouts on all platforms. a=test-only This isn't a feature we support anyway, so let's not make things harder than they need to be.
-
- Mar 08, 2024
-
-
Emilio Cobos Álvarez authored
Differential Revision: https://phabricator.services.mozilla.com/D203927
-
- Jul 07, 2023
-
-
dependabot[bot] authored
Automatic update from web-platform-tests Bump aioquic from 0.9.20 to 0.9.21 in /tools Bumps [aioquic](https://github.com/aiortc/aioquic) from 0.9.20 to 0.9.21. - [Commits](https://github.com/aiortc/aioquic/compare/0.9.20...0.9.21 ) --- updated-dependencies: - dependency-name: aioquic dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by:
dependabot[bot] <support@github.com> -- wpt-commits: d86eab89c1e5dc4220c89d56cf4e5691ccedc542 wpt-pr: 40879
-
- Feb 12, 2024
-
-
Geoff Brown authored
Pin cffi to 1.14.5 only for our Windows 7 environment, approximated as "Windows and python 3.7". Differential Revision: https://phabricator.services.mozilla.com/D201634
-
- Feb 05, 2024
-
-
Julien Cristau authored
Original Revision: https://phabricator.services.mozilla.com/D187541 Differential Revision: https://phabricator.services.mozilla.com/D200112
-
serge-sans-paille authored
distutils have been removed from Python 3.12, so replace it: Sometimes using packaging's Version, sometimes providing our own in the case of mozrelease/versions.py. Add more tests for the latter. Original Revision: https://phabricator.services.mozilla.com/D190540 Differential Revision: https://phabricator.services.mozilla.com/D200111
-
serge-sans-paille authored
Following the official migration guide from https://docs.python.org/3/whatsnew/3.12.html#imp Original Revision: https://phabricator.services.mozilla.com/D190465 Differential Revision: https://phabricator.services.mozilla.com/D200107
-
- Jan 05, 2024
-
-
Tom Schuster authored
Differential Revision: https://phabricator.services.mozilla.com/D197783
-
- Jan 11, 2024
-
-
Ryan VanderMeulen authored
-
- Nov 20, 2023
-
-
Jonathan Kew authored
Bug 1865482 - Make CSS :lang() matching more correctly follow the BCP4647 Extended Filtering algorithm. r=layout-reviewers,emilio a=RyanVM The matching behavior implemented in bug 1857742 did not quite follow the spec, particularly with regard to language *ranges* (as used in the :lang() pseudo) that are not themselves valid language *tags*. This updates the LangTagCompare function to more correctly follow the BCP4647 "Extended Filtering" algorithm, and adjusts the relevant WPT tests (originally from bug 1857742) to reflect the corrected behavior. Differential Revision: https://phabricator.services.mozilla.com/D194054
-
- Dec 07, 2023
-
-
Jonathan Kew authored
Bug 1857742 - patch 3 - Add some more :lang()-matching reftests. r=layout-reviewers,dholbert a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D195824 Depends on D195823
-
- Nov 07, 2023
-
-
Henrik Skupin authored
Bug 1851376 - [geckodriver] Set "services.settings.server" to a dummy URL. r=webdriver-reviewers,Sasha a=test-only Differential Revision: https://phabricator.services.mozilla.com/D192831
-
- Nov 30, 2023
-
-
Kagami Sascha Rosylight authored
Bug 1849860 - Keep UnderlyingSourceAlgorithms alive until it's explicitly closed. r=smaug,asuth a=RyanVM 1. Adding mAsyncWaitAlgorithms to match mAsyncWaitWorkerRef and keep the algorithms object just like how the workerref is kept right now. 2. Closing mInput also on the window teardown, to prevent memory leak as Fetch does not close the stream automatically. Differential Revision: https://phabricator.services.mozilla.com/D195132 Depends on D195131
-
- Aug 11, 2023
-
-
Henrik Skupin authored
Bug 1848121 - [wptrunner] Increase timeout multiplier for TSAN builds from 4 to 8. r=jgraham a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D185917
-
- Oct 07, 2023
-
-
Masayuki Nakano authored
Bug 1852849 - Make `HTMLEditor::AutoInlineStyleSetter::ExtendOrShrinkRangeToApplyTheStyle` recompute common ancestor of the range if it updates the range r=m_kato a=RyanVM In this case, `<font face="monospace">abc []<br></font>`, the range applying new style will be extended as `<font face="monospace">abc [<br>}</font>` first. https://searchfox.org/mozilla-central/rev/29bdf6ff9965a647c6f64d63fed2b5bd094532c7/editor/libeditor/HTMLStyleEditor.cpp#1944 Then, the start point should be shrunken and the range should become `<font face="monospace">abc {<br>}</font>`. https://searchfox.org/mozilla-central/rev/29bdf6ff9965a647c6f64d63fed2b5bd094532c7/editor/libeditor/HTMLStyleEditor.cpp#1977-1978 However, `commonAncestor` is still the text node because it's not updated after extending the range to include the `<br>`. Then, `AutoInlineStyleSetter::GetNextEditableInlineContent` fails to get `<br>` from the text node. https://searchfox.org/mozilla-central/rev/29bdf6ff9965a647c6f64d63fed2b5bd094532c7/editor/libeditor/HTMLStyleEditor.cpp#1576-1578 Finally, the unexpected range computation will reach here with the text editor and adjust the start of the range to start of the text node. https://searchfox.org/mozilla-central/rev/29bdf6ff9965a647c6f64d63fed2b5bd094532c7/editor/libeditor/HTMLStyleEditor.cpp#420-423 Therefore, the new text which the new style should be applied is jumped to start of the text node. Differential Revision: https://phabricator.services.mozilla.com/D190028
-
- Oct 02, 2023
-
-
Gabriele Svelto authored
Bug 1851829 - Do not send close messages for MIDI ports that have already been disconnected from their remote object r=padenot, a=dmeehan
-
- Sep 05, 2023
-
-
Sean Feng authored
Bug 1830820 - Update geckodriver prefs to disable delayed user input event handling r=whimboo,webdriver-reviewers, a=dmeehan We don't need this feature when running geckodriver tests Differential Revision: https://phabricator.services.mozilla.com/D187234
-
Sean Feng authored
In some edge cases, we may start handling user input events that are not supposed to be handled by the current document. This patch introduces some delay to handle user input events. Differential Revision: https://phabricator.services.mozilla.com/D180976
-
- Sep 28, 2023
-
-
Henrik Skupin authored
Bug 1853147 - [remote] Disable captive portal service for web-platform tests only. r=webdriver-reviewers,Sasha a=test-only
-
- Sep 11, 2023
-
-
Henrik Skupin authored
Bug 1849972 - [wptrunner] Do not remove "MOZ_DISABLE_NONLOCAL_CONNECTIONS" for wdspec tests. r=jdescottes a=test-only Depends on D186825 Differential Revision: https://phabricator.services.mozilla.com/D186823
-
Henrik Skupin authored
Bug 1849972 - [wdspec] mozilla/tests/webdriver/classic/new_session/binary.py has to correctly pass capabilities. r=webdriver-reviewers,jdescottes a=test-only Differential Revision: https://phabricator.services.mozilla.com/D187781
-
Henrik Skupin authored
Bug 1849972 - [wdspec] Improve stability for desired and no capabilities new session tests. r=webdriver-reviewers,jgraham a=test-only Differential Revision: https://phabricator.services.mozilla.com/D187780
-
Henrik Skupin authored
Bug 1849972 - [remote] Sync preferences from Marionette to disable services trying to connect to remote addresses. r=webdriver-reviewers,jdescottes a=test-only Differential Revision: https://phabricator.services.mozilla.com/D186825
-
- Aug 31, 2023
-
-
Henrik Skupin authored
Bug 1821981 - [wpt] Do not download intermediate certificates for wpt tests. r=keeler,webdriver-reviewers,Sasha a=test-only Differential Revision: https://phabricator.services.mozilla.com/D186968
-
Henrik Skupin authored
Bug 1821981 - [remote] Do not download intermediate certificates. r=webdriver-reviewers,jdescottes a=test-only Differential Revision: https://phabricator.services.mozilla.com/D186967
-
- Oct 13, 2023
-
-
donal meehan authored
Backed out changeset e9b6f035374a (bug 1851829) with 1856695 and 185147 for causing crashtests failures
-
- Oct 02, 2023
-
-
Gabriele Svelto authored
Bug 1851829 - Do not send close messages for MIDI ports that have already been disconnected from their remote object r=padenot, a=dmeehan Differential Revision: https://phabricator.services.mozilla.com/D189361
-
- Oct 05, 2023
-
-
Joel Maher authored
Differential Revision: https://phabricator.services.mozilla.com/D190112
-
- Jul 26, 2023
-
-
Joel Maher authored
Differential Revision: https://phabricator.services.mozilla.com/D184649
-
- Jun 08, 2023
-
-
Julian Descottes authored
Bug 1836972 - [wdspec] Add timeout=long to /webdriver/tests/bidi/input/perform_actions/key_events.py r=webdriver-reviewers,whimboo a=test-only Differential Revision: https://phabricator.services.mozilla.com/D180126
-
- Sep 27, 2023
-
-
Joel Maher authored
Bug 1855195 - fix test-info-all job to have default value of runcount to work on non trunk branches. r=aryx, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D189417
-
- Sep 20, 2023
-
-
Joel Maher authored
Bug 1853973 - only collect testrun info for test-info-all job when on mozilla-central or try. r=aryx, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D188666
-
- Aug 10, 2023
-
-
Joel Maher authored
Bug 1810360 - disable url/failure.html to avoid silent and future failures. r=aryx a=test-only DONTBUILD Differential Revision: https://phabricator.services.mozilla.com/D185736
-
- Aug 04, 2023
-
-
Emilio Cobos Álvarez authored
This partially backs out bug 774398. This code was added to match what Chromium was doing, but it seems (per discussions with Chromium engineers) that: * Resize event listener in Chromium never changed innerWidth/innerHeight. That doesn't match my recollection from bug 774398, but it's true now in Chrome stable, at least. * Chromium canary no longer fires a resize event (https://crbug.com/1076867). * WebKit doesn't fire resize either. So let's get rid of this, which also causes some correctness issues with some iframes, and keep just the media query listeners firing. Differential Revision: https://phabricator.services.mozilla.com/D185404
-
- Aug 15, 2023
-
-
Lee Salzman authored
Somehow the WPT meta files got missed when changesets were combined for the backout. This finally adds them back. Differential Revision: https://phabricator.services.mozilla.com/D186200
-
- Aug 03, 2023
-
-
Mike Hommey authored
Bug 1847107 - Allow one-off extra mozconfig content in mozharness. r=releng-reviewers,gbrown, a=dmeehan This can be more versatile than having to add a new mozconfig variant, especially when used via extra-config in the taskgraph, rather than via mozharness configuration. Differential Revision: https://phabricator.services.mozilla.com/D185355
-
- Jul 27, 2023
-
-
Ryan VanderMeulen authored
Differential Revision: https://phabricator.services.mozilla.com/D184848
-