Skip to content

Tags: arkhi/wpt

Tags

merge_pr_18899

Toggle merge_pr_18899's commit message
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.

merge_pr_18896

Toggle merge_pr_18896's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
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.

merge_pr_18895

Toggle merge_pr_18895's commit message
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}

merge_pr_18894

Toggle merge_pr_18894's commit message
Make tests easier to debug

merge_pr_18893

Toggle merge_pr_18893's commit message
Remove unnecessary idlharness.js include (web-platform-tests#18893)

merge_pr_18885

Toggle merge_pr_18885's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[webnfc] NFCReader constructor should have no options (web-platform-t…

…ests#18885)

merge_pr_18884

Toggle merge_pr_18884's commit message
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