Tags: arkhi/wpt
Tags
Don't import mozrunner unless it's actually going to be used This is only required for running android tests, so avoid importing it until the relevant code is called so the top-level module can still be loaded. This is required by at least the docs-generating code.
Simplify test for HTMLButtonElement buttons (web-platform-tests#18896) The conditional tests boil down to just checking `length`. Spotted because of the `assert_true(true, ...)` which cannot fail.
Revert "Temporarily send `Sec-Fetch-*` headers via non-secure transpo… …rt." This commit reverts the change in [1] which sent `Sec-Fetch-*` headers over non-secure transport. Now that [2] has landed, we can impose the restriction safely, as we're consistently setting `Sec-Fetch-Mode` whenever we set `Sec-Fetch-Site`. The `*.cc` file changes are a strict revert of the original patch. The test changes are rewrites of tests that originally landed with incorrect expectations. Now that the code is sending the `Sec-Fetch-Mode` header when it's supposed to, the tests need to change as well. [1]: https://chromium-review.googlesource.com/c/chromium/src/+/1762079 [2]: https://chromium-review.googlesource.com/c/chromium/src/+/1780725 Bug: 995745, 971938, 964053 Change-Id: I240ed9e62d18583c2d48e290d1cae086a387fc8b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1787318 Commit-Queue: Mike West <[email protected]> Reviewed-by: Daniel Vogelheim <[email protected]> Reviewed-by: Kinuko Yasuda <[email protected]> Cr-Commit-Position: refs/heads/master@{#694207}
Remove unnecessary idlharness.js include (web-platform-tests#18893)
Update interfaces/webxr.idl (web-platform-tests#18891) Source: https://github.com/tidoust/reffy-reports/blob/7fb8409/whatwg/idl/webxr.idl Build: https://travis-ci.org/tidoust/reffy-reports/builds/581528285
Update interfaces/web-nfc.idl (web-platform-tests#18890) Source: https://github.com/tidoust/reffy-reports/blob/7fb8409/whatwg/idl/web-nfc.idl Build: https://travis-ci.org/tidoust/reffy-reports/builds/581528285
Update interfaces/payment-request.idl (web-platform-tests#18889) Source: https://github.com/tidoust/reffy-reports/blob/7fb8409/whatwg/idl/payment-request.idl Build: https://travis-ci.org/tidoust/reffy-reports/builds/581528285
[webnfc] NFCReader constructor should have no options (web-platform-t… …ests#18885)
Part 2 - Remove -moz prefix for all multi-column properties in testin… …g and css files. This patch is generated by the following script: ``` function remove_column_prefix() { echo "Renaming $1 to $2" find .\ -type f\ ! -path "./obj*"\ ! -path "./.git"\ ! -path "./.hg"\ \( -name "*.html" -or\ -name "*.xhtml" -or\ -name "*.xht" -or\ -name "*.xul" -or\ -name "*.xml" -or\ -name "*.css" \)\ -exec sed -i -e "s/$1/$2/g" "{}" \; } remove_column_prefix "-moz-columns" "columns" remove_column_prefix "-moz-column-width" "column-width" remove_column_prefix "-moz-column-count" "column-count" remove_column_prefix "-moz-column-fill" "column-fill" remove_column_prefix "-moz-column-gap" "column-gap" remove_column_prefix "-moz-column-rule" "column-rule" remove_column_prefix "-moz-column-rule-width" "column-rule-width" remove_column_prefix "-moz-column-rule-color" "column-rule-color" remove_column_prefix "-moz-column-rule-style" "column-rule-style" ``` Note: after running the above script, I reverted one minor change to the file multicol-nested-column-rule-001.xht in the theoretically read-only directory layout/reftests/w3c-css/received/css-multicol/. Differential Revision: https://phabricator.services.mozilla.com/D44870 bugzilla-url: https://bugzilla.mozilla.org/show_bug.cgi?id=1308587 gecko-commit: bb59a0c3716298bd4645885b530d501809715541 gecko-integration-branch: autoland gecko-reviewers: dholbert
PreviousNext