Граф коммитов

27556 Коммитов

Автор SHA1 Сообщение Дата
Andreas Pehrson d9c5753c12 Bug 1581139 - Fire InvalidModificationError on MediaRecorder track set changes. r=bryce
Differential Revision: https://phabricator.services.mozilla.com/D95694
2020-11-05 19:57:19 +00:00
Mirko Brodesser 48b4cf3c06 Bug 1676157: fix error message in "select-all-and-delete-in-html-element-having-contenteditable.html". r=masayuki
Differential Revision: https://phabricator.services.mozilla.com/D96424
2020-11-09 15:01:17 +00:00
Andreas Pehrson e324dd6706 Bug 1670561 - Don't use getUserMedia in a http WPT. r=jib
Differential Revision: https://phabricator.services.mozilla.com/D93328
2020-11-05 15:11:46 +00:00
Andreas Pehrson 81190fe624 Bug 1670561 - Use a utils library for creating media streams in MediaRecorder wpt. r=jib
Differential Revision: https://phabricator.services.mozilla.com/D94044
2020-11-06 17:59:03 +00:00
Emilio Cobos Álvarez fe41e970c4 Bug 1675514 - Fix declaration block serialization and logical properties. r=boris
As per https://github.com/w3c/csswg-drafts/issues/3030.

Also remove a system font special-case. It's generally handled in
shorthands/font.mako.rs, and when it's not, it's really the same issue
as https://github.com/w3c/csswg-drafts/issues/2515.

Browsers are all over the place for the system font case, so I think
it's fine.

Differential Revision: https://phabricator.services.mozilla.com/D96045
2020-11-08 14:01:50 +00:00
moz-wptsync-bot e85040438d Bug 1675825 - [wpt-sync] Update web-platform-tests to 85ffb5bed019282a8963d73937cdc38bf24920d0, a=testonly
MANUAL PUSH: wpt sync bot

wpt-head: 85ffb5bed019282a8963d73937cdc38bf24920d0
wpt-type: landing
2020-11-07 07:59:22 +00:00
Robert Ma 17bfda9c7d Bug 1675786 [wpt PR 26432] - [wpt] Minor tweaks for MojoJS setup process, a=testonly
Automatic update from web-platform-tests
[wpt] Minor tweaks for MojoJS setup process

* Also catch OSError when checking the version of Chrome or chromedriver
  and produce more meaningful errors.
* Treat Canary the same as Nightly, since we don't have official Canary
  build on Linux (where we archive mojojs.zip).

--

wpt-commits: 85ffb5bed019282a8963d73937cdc38bf24920d0
wpt-pr: 26432
2020-11-07 07:59:21 +00:00
Christian Biesinger 8f39c06ad4 Bug 1675576 [wpt PR 26422] - [AspectRatio] Fix stack overflow with intrinsic max height, a=testonly
Automatic update from web-platform-tests
[AspectRatio] Fix stack overflow with intrinsic max height

R=ikilpatrick@chromium.org, mstensho@chromium.org

Fixed: 1145358
Change-Id: Ia078ba495ea717ad0d1e1acda428b3d3704acd0b
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2521041
Auto-Submit: Christian Biesinger <cbiesinger@chromium.org>
Reviewed-by: Morten Stenshorne <mstensho@chromium.org>
Commit-Queue: Christian Biesinger <cbiesinger@chromium.org>
Cr-Commit-Position: refs/heads/master@{#824858}

--

wpt-commits: 54eccf7623b98c2242853e2c7939c787fdde6c2b
wpt-pr: 26422
2020-11-07 07:59:21 +00:00
Anders Hartvoll Ruud ab15307262 Bug 1675504 [wpt PR 26413] - [scroll-animations] Handle implicit 'auto' offsets correctly, a=testonly
Automatic update from web-platform-tests
[scroll-animations] Handle implicit 'auto' offsets correctly

We currently don't handle that case where start/end offsets are
nullptr correctly. In this case they should behave as 'auto'. Possibly
a regression from the scrollOffsets implementation.

Fixed: 1145916
Bug: 1074052
Change-Id: Ib97e1157b957dc2de4393688967694fc9b0de736
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2520836
Reviewed-by: Olga Gerchikov <gerchiko@microsoft.com>
Reviewed-by: Kevin Ellis <kevers@chromium.org>
Commit-Queue: Anders Hartvoll Ruud <andruud@chromium.org>
Cr-Commit-Position: refs/heads/master@{#824632}

--

wpt-commits: 2691c36dd92b6b5b8570626ab98d4e828b4e0043
wpt-pr: 26413
2020-11-07 07:59:20 +00:00
Fredrik Söderqvist cc1d6953b7 Bug 1675575 [wpt PR 26421] - Missing value default for <animateTransform> 'type' is 'translate', a=testonly
Automatic update from web-platform-tests
Missing value default for <animateTransform> 'type' is 'translate'

Also make sure dynamic changes are reflected earlier by calling
AnimationAttributeChanged() when the parsed attribute value changes.
Previously it would only refresh when moving to the next value range, or
otherwise invalidating animation state.

Fixed: 1145548
Change-Id: I8ff82c02e6bf8e3cb82ef4d21e2381cbc99bcd3e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2520783
Commit-Queue: Fredrik Söderquist <fs@opera.com>
Reviewed-by: Stephen Chenney <schenney@chromium.org>
Cr-Commit-Position: refs/heads/master@{#824818}

--

wpt-commits: ef0435de07a7035997e1329ab5e3fb60f3f43fcc
wpt-pr: 26421
2020-11-07 07:59:20 +00:00
Javier Fernandez 001380b526 Bug 1675467 [wpt PR 26410] - Use paragraph base direction always for trailing spaces runs., a=testonly
Automatic update from web-platform-tests
Use paragraph base direction always for trailing spaces runs.

As per Unicode UAX#9 L1.4, line trailing whitespaces should always have
the direction of the paragraph no matter the direction they had before
line breaking.

To accomplish that, in inline layout algorithm CreateLine, when an
NGInlineItemResult is only trailing spaces, we ignore the bidi
level coming from the NGInlineItem, and just use the base direction
of the line.

This should fix the case of an LTR line with trailing space and
pre-wrap in an RTL line that would end up putting the trailing
space to the right of the last LTR line instead of to the left of
the line.

This fixes css/css-text/white-space/eol-spaces-bidi-002.html with
width of 7 characters. It is still not fixing the case for 8
characters.

Bug: 316409, 1142926
Change-Id: Iab220f79ba0b2526fd51d5341363cc8e9087e133

--

wpt-commits: 8641da2f1ea9a6b3346ac8fdae66c88b2a2ed9db
wpt-pr: 26410
2020-11-07 07:59:19 +00:00
achristensen07 b33ca27a60 Bug 1675749 [wpt PR 26385] - [encoding] Add tests for GBK and gb18030 encoding, a=testonly
Automatic update from web-platform-tests
Encoding: add tests for GBK and gb18030

These tests come from https://bugs.webkit.org/show_bug.cgi?id=218380.
--

wpt-commits: 3c9820d1cc5d9d2627c26ef1268b6d54a35adf22
wpt-pr: 26385
2020-11-07 07:59:19 +00:00
Simon Pieters ec8d6a1d25 Bug 1675729 [wpt PR 26428] - Remove zcorpan as suggested_reviewers in some directories, a=testonly
Automatic update from web-platform-tests
Remove zcorpan as suggested_reviewers in some directories

--

wpt-commits: a8fe47c7dce315b104123d56c29ab272c21c7f9c
wpt-pr: 26428
2020-11-07 07:59:18 +00:00
moz-wptsync-bot 18fb221033 Bug 1675713 [wpt PR 26368] - Update wpt metadata, a=testonly
wpt-pr: 26368
wpt-type: metadata
2020-11-07 07:59:18 +00:00
yiyix ccbebf5f85 Bug 1675713 [wpt PR 26368] - [Canvas new API] Add textRendering to Canvas new API, a=testonly
Automatic update from web-platform-tests
[Canvas new API] Add textRendering to Canvas new API

Add new attribute textRendering to canvas context 2d. Developers can
now choose between auto, optimizeSpeed, optimizeLegibility and
geometricPrecision for textRendering.

Bug: 1144620

Change-Id: I2420967849b1080b667cf6803a8edecc06327297

--

wpt-commits: 68512623f6b74070955634b7c256b9debc743250
wpt-pr: 26368
2020-11-07 07:59:17 +00:00
pyup.io bot 256215840c Bug 1673180 [wpt PR 26273] - Update psutil to 5.7.3, a=testonly
Automatic update from web-platform-tests
Update psutil from 5.7.2 to 5.7.3 (#26273)

--

wpt-commits: e3beb2e60916cac6b3eb102e60eef09f96c077bb
wpt-pr: 26273
2020-11-07 07:59:17 +00:00
Darryl Pogue c64da6ff19 Bug 1675692 [wpt PR 26426] - [input] Test some edge-cases for valueAsNumber with type number, a=testonly
Automatic update from web-platform-tests
[input] Test some edge-cases for valueAsNumber with type number (#26426)

--

wpt-commits: 36ff3198676718b4af5d55c5e6c1ec8c51a2a0d6
wpt-pr: 26426
2020-11-07 07:59:17 +00:00
moz-wptsync-bot efc6087ee8 Bug 1675130 [wpt PR 26388] - Update wpt metadata, a=testonly
wpt-pr: 26388
wpt-type: metadata
2020-11-07 07:59:16 +00:00
Chris Harrelson 108712eb9a Bug 1675130 [wpt PR 26388] - Ship changes to align with transform level 2 spec for grouping, a=testonly
Automatic update from web-platform-tests
Ship changes to align with transform level 2 spec for grouping

Intent-to-ship here:

https://groups.google.com/a/chromium.org/g/blink-dev/c/cubTsTuZWEY

Bug: 1008483

Change-Id: Ib66bb7f3dcfc79bbc8b01216a8f772cb6a33b0ce
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2518106
Reviewed-by: Xianzhu Wang <wangxianzhu@chromium.org>
Commit-Queue: Chris Harrelson <chrishtr@chromium.org>
Cr-Commit-Position: refs/heads/master@{#824636}

--

wpt-commits: aec21a62aa81dd9ebc777b827a1a3142059ef811
wpt-pr: 26388
2020-11-07 07:59:16 +00:00
moz-wptsync-bot 4cd4995282 Bug 1578343 [wpt PR 18799] - Update wpt metadata, a=testonly
wpt-pr: 18799
wpt-type: metadata
2020-11-07 07:59:15 +00:00
Javier Fernández García-Boente 80efd6ea6e Bug 1578343 [wpt PR 18799] - [css-text] Handling trailing ideographic spaces as regular spaces, a=testonly
Automatic update from web-platform-tests
[css-text] Handling trailing ideographic spaces as regular spaces

The CSS Text 3 specification states on its 'Phase II: Trimming and
Positioning' section:

https://www.w3.org/TR/css-text-3/#white-space-phase-2

3- A sequence at the end of a line of collapsible spaces is removed, as
well as any trailing U+1680 OGHAM SPACE MARK whose white-space property
is normal, nowrap, or pre-line.

4- If there remains any sequence of white space and/or and/or other space
separators, at the end of a line: If white-space is set to pre-wrap, the
UA must hang this sequence. It may also visually collapse the character
advance widths of any that would otherwise overflow.

Summarizing, other space separator are not considered as collapsible
spaces and should be hang, or broken in case of 'break-spaces', according
to the value of the 'white-space' property.

This CL tries to implement such behavior, since we were not considering
this kind of spaces in the hanging/collapsing logic.

For now this change affects LayoutNG only, but it'll be implemented for
Legacy in a different CL.

Bug: 972952
Change-Id: Idb0aff05f7f423f5b62f5169177c0240917435a7
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1687411
Reviewed-by: Koji Ishii <kojii@chromium.org>
Commit-Queue: Javier Fernandez <jfernandez@igalia.com>
Cr-Commit-Position: refs/heads/master@{#824597}

--

wpt-commits: 9c959d8835a582e864215eda9fe0e42086b046bf
wpt-pr: 18799
2020-11-07 07:59:15 +00:00
moz-wptsync-bot e8f944d461 Bug 1675350 [wpt PR 26398] - Update wpt metadata, a=testonly
wpt-pr: 26398
wpt-type: metadata
2020-11-07 07:59:14 +00:00
Mason Freed 75af1d38c6 Bug 1675350 [wpt PR 26398] - Change declarative Shadow DOM fragment parsing to be opt-in, a=testonly
Automatic update from web-platform-tests
Change declarative Shadow DOM fragment parsing to be opt-in

This CL implements most of the suggestions from [1], which effectively
block declarative Shadow DOM from being used by any fragment parser
entry point, unless an explicit opt-in is toggled.

The opt-ins include:
 - DOMParser.allowDeclarativeShadowDom = true;
 - HTMLTemplateElement.allowDeclarativeShadowDom = true;
 - XMLHttpRequest.allowDeclarativeShadowDom = true;
 - DocumentFragment.allowDeclarativeShadowDom = true;
 - Document.allowDeclarativeShadowDom = true; // For innerHTML
 - A new <iframe> sandbox flag: allow-declarative-shadow-dom

This mitigates the potential client-side XSS sanitizer bypass detailed
in the explainer and at [1]. Assuming these changes are functional,
and mitigate the issue, this new behavior will be folded into the
spec PRs at [2] and [3]. But given the security implications of the
existing code, I'd like to get this landed first.

[1] https://github.com/whatwg/dom/issues/912#issue-733465826
[2] https://github.com/whatwg/html/pull/5465
[3] https://github.com/whatwg/dom/pull/892

Bug: 1042130
Change-Id: I088f28f63078a0d26e354a4442494c0132b47ffc
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2513525
Commit-Queue: Mason Freed <masonfreed@chromium.org>
Reviewed-by: Kouhei Ueno <kouhei@chromium.org>
Reviewed-by: Kinuko Yasuda <kinuko@chromium.org>
Cr-Commit-Position: refs/heads/master@{#824591}

--

wpt-commits: b13461b9a46b46eb1b092a58bde2b10418e7a73d
wpt-pr: 26398
2020-11-07 07:59:14 +00:00
Xianzhu Wang 16397523c2 Bug 1675553 [wpt PR 26419] - Layout shift detection for fixed position, a=testonly
Automatic update from web-platform-tests
Layout shift detection for fixed position

With paint properties geometry mapping, we can already correctly detect
layout shift of fixed-position elements because the viewport scroll
offset doesn't exist in the paint property chain of fixed-position
elements.

Also removed the unnecessary layout viewport clip because it's already
applied in LocalToAncestorClipRect to the LayoutView property tree
state.

Change-Id: I0d77bb4fc828b495536b03f8674d8cab35d0f8bd
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2520330
Reviewed-by: Steve Kobes <skobes@chromium.org>
Commit-Queue: Xianzhu Wang <wangxianzhu@chromium.org>
Cr-Commit-Position: refs/heads/master@{#824480}

--

wpt-commits: 3a36f4adb22464404bf9a48b5a4d4d4a9210ee03
wpt-pr: 26419
2020-11-07 07:59:13 +00:00
Xianzhu Wang 9f33dfa236 Bug 1675396 [wpt PR 26403] - Let sticky elements be layout shift roots, a=testonly
Automatic update from web-platform-tests
Let sticky elements be layout shift roots

This makes PaintInvalidator to detect shifts of descendants of
a sticky ancestor based on the offset from the ancestor instead of the
LayoutView.

Bug: 1145078
Change-Id: I2887dd29e5ab7e7ad843d27673ad567775d4ecc1
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2519360
Reviewed-by: Steve Kobes <skobes@chromium.org>
Commit-Queue: Xianzhu Wang <wangxianzhu@chromium.org>
Cr-Commit-Position: refs/heads/master@{#824473}

--

wpt-commits: d64a0cd5bc104899051140e7e35e232aa692f85b
wpt-pr: 26403
2020-11-07 07:59:13 +00:00
David Grogan 9a9c38c6ef Bug 1675442 [wpt PR 26409] - [css-flex] Fix transferred size suggestion for stretched items, a=testonly
Automatic update from web-platform-tests
[css-flex] Fix transferred size suggestion for stretched items

Before this, Blink required flex items to have a definite _computed_
cross size to enable transferred size suggestions in automatic minimum
size computations. But a definite preferred cross size is sufficient,
which allows for definite cross sizes via stretching to be used for
transferred size suggestions.

Bug: 1132627
Change-Id: I0c6c0117159000f98bca29e722aaf7c7ddee5251
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2520082
Reviewed-by: Christian Biesinger <cbiesinger@chromium.org>
Commit-Queue: David Grogan <dgrogan@chromium.org>
Cr-Commit-Position: refs/heads/master@{#824467}

--

wpt-commits: e463526c30a7af8517d92f2645b55624f06e3d9f
wpt-pr: 26409
2020-11-07 07:59:13 +00:00
moz-wptsync-bot 2419106ba0 Bug 1675572 [wpt PR 26347] - Update wpt metadata, a=testonly
wpt-pr: 26347
wpt-type: metadata
2020-11-07 07:59:12 +00:00
Aaron Tagliaboschi 43d0c7c9ed Bug 1675572 [wpt PR 26347] - [Critical-CH] Add check for unsafe HTTP methods, a=testonly
Automatic update from web-platform-tests
[Critical-CH] Add check for unsafe HTTP methods

According to the Client Hint Reliability ietf draft
https://tools.ietf.org/html/draft-davidben-http-client-hint-reliability#section-3

> If the request did not use a safe method (Section 4.2.1 of
  [RFC7231]), ignore the Critical-CH header and continue processing
  the response as usual.

Also added a WPT to make sure.

Bug: 1127313
Change-Id: I82682077dfa51a4aa7204a973c192379cd6588c7
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2508711
Commit-Queue: Aaron Tagliaboschi <aarontag@chromium.org>
Reviewed-by: Matt Menke <mmenke@chromium.org>
Reviewed-by: Maksim Orlovich <morlovich@chromium.org>
Reviewed-by: Yoav Weiss <yoavweiss@chromium.org>
Cr-Commit-Position: refs/heads/master@{#824434}

--

wpt-commits: 49ea137684bf2172d8a899ee6f32d39999efa495
wpt-pr: 26347
2020-11-07 07:59:12 +00:00
moz-wptsync-bot d7a739c914 Bug 1675341 [wpt PR 26397] - Update wpt metadata, a=testonly
wpt-pr: 26397
wpt-type: metadata
2020-11-07 07:59:11 +00:00
Aaron Tagliaboschi 5151c7ab1b Bug 1675341 [wpt PR 26397] - [Critical-CH] Refactor WPTs, a=testonly
Automatic update from web-platform-tests
[Critical-CH] Refactor WPTs

Remove duplicate code and move to slightly less flaky messages

Bug: 1127313
Change-Id: I926c6f66d23ac6ed101ff85777d187a45ad9a50f
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2519393
Commit-Queue: Aaron Tagliaboschi <aarontag@chromium.org>
Reviewed-by: Yoav Weiss <yoavweiss@chromium.org>
Cr-Commit-Position: refs/heads/master@{#824415}

--

wpt-commits: b6abb52bbd50f4851ed8db57f07c5ed8a195ba3a
wpt-pr: 26397
2020-11-07 07:59:11 +00:00
autofoolip 73425318ce Bug 1675331 [wpt PR 26395] - Update interfaces/CSP.idl, a=testonly
Automatic update from web-platform-tests
Update interfaces/CSP.idl (#26395)

Source: https://github.com/w3c/webref/blob/41c9dd7/ed/idl/CSP.idl
Build: https://travis-ci.org/w3c/webref/builds/198293066
--

wpt-commits: 8719553b2dd8f0f39d38253ccac2ee9ab4d6c87b
wpt-pr: 26395
2020-11-07 07:59:10 +00:00
autofoolip dd66a0f971 Bug 1675333 [wpt PR 26396] - Update interfaces/ua-client-hints.idl, a=testonly
Automatic update from web-platform-tests
Update interfaces/ua-client-hints.idl (#26396)

Source: https://github.com/w3c/webref/blob/41c9dd7/ed/idl/ua-client-hints.idl
Build: https://travis-ci.org/w3c/webref/builds/198293066
--

wpt-commits: 805cfadc78b946e156eea1eef576341bf5b32104
wpt-pr: 26396
2020-11-07 07:59:10 +00:00
Emilio Cobos Álvarez 8bd419268c Bug 1664372 - Fix font loading invalidation to account for metrics coming from the parent style. r=jfkthame
We were only looking at the given frame's style, which is not
sufficient for this case.

Differential Revision: https://phabricator.services.mozilla.com/D96237
2020-11-06 22:30:28 +00:00
Sebastian Hengst 5aad6ff258 Bug 1675517 - set layout_change_should_fire_mouseover.html as intermittent on Windows with fission enabled. DONTBUILD. CLOSED TREE 2020-11-06 16:57:39 +01:00
Sebastian Hengst f05f601ec4 Bug 1675517 - set layout_change_should_fire_mouseover.html to pass on Windows with fission enabled. DONTBUILD. CLOSED TREE 2020-11-06 14:41:42 +01:00
Valentin Gosu 052d788334 Bug 1349969 - WebSocket: don't throw for bad ports r=annevk
Differential Revision: https://phabricator.services.mozilla.com/D96164
2020-11-06 12:57:05 +00:00
moz-wptsync-bot c61e5b9801 Bug 1675517 - [wpt-sync] Update web-platform-tests to 09e030df327205fe29640f24ff7085afc81759bc, a=testonly
MANUAL PUSH: wpt sync bot

wpt-head: 09e030df327205fe29640f24ff7085afc81759bc
wpt-type: landing
2020-11-06 12:14:22 +00:00
Hitoshi Yoshida cdf817b3c1 Bug 1675435 [wpt PR 26408] - BFCache: Make a WPT test work with BFCache, a=testonly
Automatic update from web-platform-tests
BFCache: Make a WPT test work with BFCache

If we enable same-site backward/forward cache, backward navigation
does not trigger onload event.

This CL updates a WPT that depends on the onload event to handle
pageshow event and makes it work with backward/forward cache.

Bug: 1132180
Change-Id: I663f9c78e8b9835f081c5262b446bd56dba07cf9
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2520558
Reviewed-by: Fergal Daly <fergal@chromium.org>
Reviewed-by: Rakina Zata Amni <rakina@chromium.org>
Commit-Queue: Hitoshi Yoshida <peria@chromium.org>
Cr-Commit-Position: refs/heads/master@{#824321}

--

wpt-commits: 09e030df327205fe29640f24ff7085afc81759bc
wpt-pr: 26408
2020-11-06 12:14:22 +00:00
moz-wptsync-bot 5d4b8b6b70 Bug 1675362 [wpt PR 26402] - Update wpt metadata, a=testonly
wpt-pr: 26402
wpt-type: metadata
2020-11-06 12:14:21 +00:00
Lan Wei db706d874d Bug 1675362 [wpt PR 26402] - Simulate user inputs in layout_change_should_fire_mouseover.html, a=testonly
Automatic update from web-platform-tests
Simulate user inputs in layout_change_should_fire_mouseover.html

Use testdriver Action API to simulate mouse actions in
uievents/mouse/layout_change_should_fire_mouseover.html.

Bug: 1145677
Change-Id: If90ec00d39b773df06570aeebb0a98dbcdd1c463
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2518599
Reviewed-by: Mustaq Ahmed <mustaq@chromium.org>
Commit-Queue: Lan Wei <lanwei@chromium.org>
Cr-Commit-Position: refs/heads/master@{#824163}

--

wpt-commits: f535a2e92b3c0b43996400b0f9bfae5b5579c4bd
wpt-pr: 26402
2020-11-06 12:14:21 +00:00
Lan Wei 18048475d2 Bug 1675123 [wpt PR 26387] - Simulate user inputs in mouseevent_move_button.html, a=testonly
Automatic update from web-platform-tests
Simulate user inputs in mouseevent_move_button.html

Use testdriver Action API to simulate mouse actions in
uievents/mouse/mouseevent_move_button.html.

Bug: 1145677
Change-Id: Ie0924fe1086655c30ea765731a4927f9ec2191cb
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2516439
Commit-Queue: Lan Wei <lanwei@chromium.org>
Reviewed-by: Mustaq Ahmed <mustaq@chromium.org>
Cr-Commit-Position: refs/heads/master@{#824152}

--

wpt-commits: 263a6d1a6397c683171646ad89d11966f363112e
wpt-pr: 26387
2020-11-06 12:14:20 +00:00
Lan Wei e92a680659 Bug 1675359 [wpt PR 26400] - Simulate user inputs in mouseover-out.html, a=testonly
Automatic update from web-platform-tests
Simulate user inputs in mouseover-out.html

Use testdriver Action API to simulate mouse actions in
uievents/order-of-events/mouse-events/mouseover-out.html.

Bug: 1145677
Change-Id: I7438c4faea4e5bbb8e757a8db265571cc559003a
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2518819
Reviewed-by: Mustaq Ahmed <mustaq@chromium.org>
Commit-Queue: Lan Wei <lanwei@chromium.org>
Cr-Commit-Position: refs/heads/master@{#824160}

--

wpt-commits: 7b165f8d2e8a3ac914102466ec2175a1817365b0
wpt-pr: 26400
2020-11-06 12:14:20 +00:00
Xianzhu Wang 39e3b47f08 Bug 1675352 [wpt PR 26384] - Fix clip-path with offset mix-blending-mode, a=testonly
Automatic update from web-platform-tests
Fix clip-path with offset mix-blending-mode

The synthethized clip layer should use the current transform instead of
the clip rect's transform.

Bug: 1144473
Change-Id: I6cd7457706d6b82b043a0b4bf20863a8a698d521
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2515206
Commit-Queue: Xianzhu Wang <wangxianzhu@chromium.org>
Reviewed-by: Stephen Chenney <schenney@chromium.org>
Cr-Commit-Position: refs/heads/master@{#824093}

--

wpt-commits: b1997c4b395772d5eb212656e995926f99ec8899
wpt-pr: 26384
2020-11-06 12:14:19 +00:00
moz-wptsync-bot 89cb65f7a5 Bug 1675146 [wpt PR 26389] - Update wpt metadata, a=testonly
wpt-pr: 26389
wpt-type: metadata
2020-11-06 12:14:19 +00:00
Xianzhu Wang ba523c3019 Bug 1675146 [wpt PR 26389] - Fix mask-based clip-path with backdrop filter, a=testonly
Automatic update from web-platform-tests
Fix mask-based clip-path with backdrop filter

Cc requires additional bookkeeping for the case, including setting the
mask layer as a backdrop mask layer, etc.

Also let CompositeAfterPaint composite the backdrop mask layer which is
also required by cc.

Bug: 1144520
Change-Id: Id9be79d398c1c4b41aa97a7c8c3e23546ce87365
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2518440
Reviewed-by: Mason Freed <masonfreed@chromium.org>
Commit-Queue: Xianzhu Wang <wangxianzhu@chromium.org>
Cr-Commit-Position: refs/heads/master@{#824041}

--

wpt-commits: 0bfbfff7078026df1303fd557b199d158a156778
wpt-pr: 26389
2020-11-06 12:14:18 +00:00
moz-wptsync-bot a3e31dc920 Bug 1673469 [wpt PR 26293] - Update wpt metadata, a=testonly
wpt-pr: 26293
wpt-type: metadata
2020-11-06 12:14:18 +00:00
Ziran Sun 8392c44b01 Bug 1673469 [wpt PR 26293] - Port two css-grid test files to WPT, a=testonly
Automatic update from web-platform-tests
Port two css-grid test files to WPT

The test that fails in Chromium related to calc() serialization is due to:
https://bugs.chromium.org/p/chromium/issues/detail?id=1050968

The test that fails in Firefox related to resolving percentage grid rows is due to:
https://bugzilla.mozilla.org/show_bug.cgi?id=1481876

BUG=767015

R=jfernandez@igalia.com

Change-Id: Ie219396d0e62181056ddf6c84b7b60f8251aeb43
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2436821
Commit-Queue: Ziran Sun <zsun@igalia.com>
Reviewed-by: Oriol Brufau <obrufau@igalia.com>
Reviewed-by: Javier Fernandez <jfernandez@igalia.com>
Reviewed-by: Manuel Rego <rego@igalia.com>
Cr-Commit-Position: refs/heads/master@{#823932}

--

wpt-commits: 7a287c9e26fbc12c91e1dde91859fabed96254b6
wpt-pr: 26293
2020-11-06 12:14:17 +00:00
moz-wptsync-bot dc145d14b4 Bug 1673606 [wpt PR 26305] - Update wpt metadata, a=testonly
wpt-pr: 26305
wpt-type: metadata
2020-11-06 12:14:17 +00:00
Philipp Hancke 60e4ba3636 Bug 1673606 [wpt PR 26305] - webrtc wpt: add test for payload type demuxing, a=testonly
Automatic update from web-platform-tests
webrtc wpt: add test for payload type demuxing

and rename the file

BUG=webrtc:12029

Change-Id: I52753f98686715a19f910d7d0ff883e55a840722
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2500842
Commit-Queue: Philipp Hancke <philipp.hancke@googlemail.com>
Reviewed-by: Harald Alvestrand <hta@chromium.org>
Cr-Commit-Position: refs/heads/master@{#823921}

--

wpt-commits: c36cb1e4eb48d0ed90ef3249ee47d26f71e234a1
wpt-pr: 26305
2020-11-06 12:14:16 +00:00
moz-wptsync-bot 5ce774185c Bug 1610842 [wpt PR 21341] - Update wpt metadata, a=testonly
wpt-pr: 21341
wpt-type: metadata
2020-11-06 12:14:16 +00:00