Automatic update from web-platform-testsMove AudioBuffer ctor test to WPT.
This test fails on Firefox because it signals the incorrect type on
some tests. A bug was filed and should be fixed soon.
Bug: 745778
Change-Id: Idb0ece151a3f9404b4a10ddb719cfc4982a57959
Reviewed-on: https://chromium-review.googlesource.com/1035917
Reviewed-by: Hongchan Choi <hongchan@chromium.org>
Commit-Queue: Raymond Toy <rtoy@chromium.org>
Cr-Commit-Position: refs/heads/master@{#554887}
--
wpt-commits: e580c7e9126412a44880755aeb17b05e13a02a88
wpt-pr: 10720
Automatic update from web-platform-tests[css-tables] Scrollbar should be removed from OverrideLogicalHeight()
When computing the percentage height of table cell replaced children,
if the table cell has horizontal scrollbar we have to subtract
its height from the OverrideLogicalHeight().
The patch is just following a suggestion from a TODO in
LayoutBox::AvailableLogicalHeightUsing().
BUG=838144
TEST=external/wpt/css/css-tables/height-distribution/percentage-sizing-of-table-cell-replaced-children-001.html
Change-Id: I21f33b82978ffaeb7a6f04eb49ef2e1a52c1e8c0
Reviewed-on: https://chromium-review.googlesource.com/1035125
Reviewed-by: Morten Stenshorne <mstensho@chromium.org>
Commit-Queue: Manuel Rego Casasnovas <rego@igalia.com>
Cr-Commit-Position: refs/heads/master@{#554853}
--
wpt-commits: 621c98d70bc30cae3319aef809c98929420c0f06
wpt-pr: 10714
Automatic update from web-platform-testsMakes OffscreenCanvas dispatch on MainThread and Workers
- removes old commit() from OffscreenCanvasRenderingContexts.
- makes sure that DidDraw is correctly called and triggers a BeginFrame
that will trigger a Dispatch of the frame.
Bug: 833902
Change-Id: I08ceeba9e7e00da35977bcc4e96a189b366a856c
Reviewed-on: https://chromium-review.googlesource.com/1028559
Commit-Queue: Fernando Serboncini <fserb@chromium.org>
Reviewed-by: Kenneth Russell <kbr@chromium.org>
Reviewed-by: Miguel Casas <mcasas@chromium.org>
Reviewed-by: Justin Novosad <junov@chromium.org>
Cr-Commit-Position: refs/heads/master@{#554825}
--
wpt-commits: 161d6c4fa0dd8c24b93db569c7e76f877443ad02
wpt-pr: 10662
Automatic update from web-platform-testsHTML: document.open() and mutation events
See https://github.com/whatwg/html/pull/3598.
--
wpt-commits: e4b690a768b15c0b2aab558e97454385ec7164e1
wpt-pr: 10680
Automatic update from web-platform-tests[css-writing-modes] Fix percentages on orthogonal replaced children
This patch modifies LayoutBox::ComputeReplacedLogicalWidth|HeightUsing()
so it's aware of the orthogonal flow cases.
For example to compute the relative widths of replaced elements,
if the element direction is perpendicular to its containing block
it should use the containing block height instead of the width.
BUG=837146
TEST=external/wpt/css/css-writing-modes/sizing-percentages-replaced-orthogonal-001.html
Change-Id: I655c984703e2073be9a3a649ac79a63f8c136cc0
Reviewed-on: https://chromium-review.googlesource.com/1029852
Reviewed-by: Javier Fernandez <jfernandez@igalia.com>
Commit-Queue: Manuel Rego Casasnovas <rego@igalia.com>
Cr-Commit-Position: refs/heads/master@{#554731}
--
wpt-commits: 435b33acfe825349ac7c18262a8e0b11e2be38e5
wpt-pr: 10651
Automatic update from web-platform-testsFix RequestHeaders to proper concat repeats (#10562)
Previously RequestHeaders only provided the last instance
of a repeated header.
--
wpt-commits: 82530fb7c6c2145b1448faec668be99e6e9d3fd7
wpt-pr: 10562
Automatic update from web-platform-testsMerge pull request #10539 from tabatkins/css-syntax-whitespace
Test for https://github.com/w3c/csswg-drafts/pull/1986
--
wpt-commits: cc364d6f98b111e488aa1d88064af21566ec4184
wpt-pr: 10539
Automatic update from web-platform-testsAdd tests for floats next to new formatting contexts.
Whether an in-flow block-level box that establishes a new formatting
context fits beside a float or not determines whether the float is
adjoining with the new formatting context box or not.
This matters if the box that establishes a new formatting context has a
top margin. If the float turns out to be adjoining, it's affected by
that margin, but not otherwise, i.e. if the new formatting context box
needs to go below the float due to insufficient available width.
Cq-Include-Trybots: master.tryserver.chromium.linux:linux_layout_tests_layout_ng
Change-Id: I66455845974cbcd5bef36927876512b05a15f435
Reviewed-on: https://chromium-review.googlesource.com/1032732
Reviewed-by: Ian Kilpatrick <ikilpatrick@chromium.org>
Commit-Queue: Morten Stenshorne <mstensho@chromium.org>
Cr-Commit-Position: refs/heads/master@{#554510}
--
wpt-commits: ea89515a92d0580fc85e9cff8aa6895c9aa509f5
wpt-pr: 10685
Automatic update from web-platform-testsRename a WPT
The test does not require nor use "server-side substitution" and the
flag ".sub" was left by mistake.
Bug: 611982
Change-Id: I5674911c22d1fb55e7aa41125d343966f4b8a84f
Reviewed-on: https://chromium-review.googlesource.com/1033352
Reviewed-by: Ian Clelland <iclelland@chromium.org>
Commit-Queue: Ehsan Karamad <ekaramad@chromium.org>
Cr-Commit-Position: refs/heads/master@{#554432}
--
wpt-commits: da2fb690481adb7fda393474459c066568b96029
wpt-pr: 10690
--HG--
rename : testing/web-platform/tests/feature-policy/experimental-features/vertical-scroll-scrollintoview.tentative.sub.html => testing/web-platform/tests/feature-policy/experimental-features/vertical-scroll-scrollintoview.tentative.html
Automatic update from web-platform-testsMake KeyframeEffectReadOnly::setKeyframes take effect immediately
Previously we wouldn't notice that the keyframes had changed until the
next animation update. This CL fixes that by clearing any cached sampled
effects and notifying the owning Animation that it needs to invalidate
it's information.
This also fixes updating composited animations; invalidating the effect
on the animation causes us to properly restart the composited animation.
Bug: 799061, 835824
Change-Id: Ib307a5409c52c5dab1ee0f98c989d7dbaef42937
Reviewed-on: https://chromium-review.googlesource.com/1026700
Commit-Queue: Stephen McGruer <smcgruer@chromium.org>
Reviewed-by: Majid Valipour <majidvp@chromium.org>
Cr-Commit-Position: refs/heads/master@{#554484}
--
wpt-commits: e7d3e5206b87ece7e9c80b46a21740d508f924da
wpt-pr: 10618
Automatic update from web-platform-testsSet taskcluster log level to INFO
--
Explicitly set Firefox to use the fast reftest runner.
This should happen by default on Linux, but it doesn't hurt to be explicit.
--
Ensure we have enough commits that a manifest can be downloaded
--
Use less-verbose mach logs for stdout.
Save the tbpl log as an artifact since this can be useful for getting the screenshots for reftests.
--
wpt-commits: 83e53587e7400d7119681ec0810e562d401fcfe6, 1e51e1722a294830c85866462757d6924de7bac4, f259d821cfb915164a71759938a69c58e391f2c6, ee911cd691204506a63a651e2411db422a876be2
wpt-pr: 10692
Automatic update from web-platform-testsBump the versions of some moz* dependencies
--
wpt-commits: 500811b1ae3a2fd90212258125cb979dcb0a0768
wpt-pr: 10694
Automatic update from web-platform-testsAdd a infrastructure test to ensure that we can set Firefox prefs.
--
wpt-commits: a12d3faef43491233345c225377546cbb09f4799
wpt-pr: 10406
Automatic update from web-platform-testsSet log level to INFO for PR tagging script (#10677)
--
wpt-commits: 69ab442726d0f4e435aaddeb8e6fd5b5c5d4f983
wpt-pr: 10677
Automatic update from web-platform-testsIgnore css/tools/_virtualenv in .gitignore (#10683)
It is created by css/build-css-testsuites.sh
--
wpt-commits: e36d2be3dc7b90ecca42be620a7bac36158c06b1
wpt-pr: 10683
Automatic update from web-platform-testsLog the response body when something goes wrong in tag_master.py (#10681)
Towards debugging https://github.com/w3c/web-platform-tests/issues/10572.
--
wpt-commits: ae34fb2b39f8b2cf9c3989a566ab938cde45dec0
wpt-pr: 10681
Automatic update from web-platform-testsIncrease taskcluster test chunks and timeouts.
Tests seem to be a little slower than in mozilla-central so increase the number of chunks
from 6->10 for reftests and 10->15 for testharness tests. Also make the task timeout 2 hours
rather than 1.5.
--
wpt-commits: 43f72f51dca8388bab131aa15cbb7528befd1b91
wpt-pr: 10665