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

686279 Коммитов

Автор SHA1 Сообщение Дата
Daniel Varga 1d798d7582 Bug 1605297 - disable browser_policyOverride.js for frequent failures. r=jmaher
Differential Revision: https://phabricator.services.mozilla.com/D58421

--HG--
extra : moz-landing-system : lando
2020-01-01 23:34:25 +00:00
Coroiu Cristina bb687ca476 Backed out changeset 7da82c2eea17 (bug 1597488) for chrome failures at layout/xul/test/test_resizer.xhtml on a CLOSED TREE 2020-01-03 17:14:49 +02:00
Yoshi Cheng-Hao Huang fb45407510 Bug 1605633 - Check if it's a dead wrapper in WeakRef constructor. r=jonco
Throw error if the wrapped WeakRef is a dead wrapper.

Differential Revision: https://phabricator.services.mozilla.com/D58522

--HG--
extra : moz-landing-system : lando
2020-01-03 13:01:10 +00:00
Andreas Tolfsen d9f8d5f71e bug 1606317: remote: revert "Disable Puppeteer tests in ignorehttpserrors.spec.js which crash the browser." r=remote-protocol-reviewers,whimboo
This reverts the commit:

	git:	d640ab64b993431099cd9205297bfff464d76927
	hg:	9f6327c0d8298ec58a6c9f8d51526872d01d765e

Differential Revision: https://phabricator.services.mozilla.com/D58503

--HG--
extra : moz-landing-system : lando
2020-01-03 13:44:39 +00:00
Andreas Tolfsen 691d52fe90 bug 1606317: security: allow remote agent to disable security checks; r=keeler
The remote agent is an implementation of a subset of
the Chromium Remote Debugging Protocol (CDP) for Gecko.
For similar reasons as Marionette it needs the ability to call
nsCertOverrideService::SetDisableAllSecurityChecksAndLetAttackersInterceptMyData().

It calls this method from remote/domains/parent/Security.jsm which
implements the Security.setIgnoreCertificateErrors protocol method.

The remote agent is slated to replace Marionette, but there is
currently no timeline for this.

Differential Revision: https://phabricator.services.mozilla.com/D58435

--HG--
extra : moz-landing-system : lando
2020-01-03 13:46:00 +00:00
Andreas Tolfsen a0465d6c54 bug 1606317: security: use nsIMarionette.running() for disable security check; r=keeler
It must only be possible to call
nsCertOverrideService::SetDisableAllSecurityChecksAndLetAttackersInterceptMyData()
when Marionette is actually active, but the MOZ_MARIONETTE environment
variable can in theory be set by any user.

MOZ_MARIONETTE was introduced to support in-application restarts
so that the forked main process knows to re-initialise Marionette.
This makes it approximately equivalent to passing the --marionette flag.

Because Marionette can be started and stopped at runtime through
modifying the marionette.enabled preference, and Marionette never
resets MOZ_MARIONETTE, this makes it theoretically possible that
a future caller could circumvent this security check.

This is however not a security problem at present because the
method is only ever called from within testing/marionette/cert.js,
which itself is never called unless Marionette indeed is active.

Still, it would be safer for this to use nsIMarionette.running()
which returns true whenever the Marionette server is listening for
connections, and false when the Marionette automation protocol is
not enabled.

Differential Revision: https://phabricator.services.mozilla.com/D58434

--HG--
extra : moz-landing-system : lando
2020-01-03 13:46:38 +00:00
Tetsuharu OHZEKI ddb1860966 Bug 1597488 - Fix uses of nsResizerFrame::GetContentToResize in layout/xul/nsResizerFrame.cpp. r=emilio
Differential Revision: https://phabricator.services.mozilla.com/D58483

--HG--
extra : moz-landing-system : lando
2020-01-03 13:45:46 +00:00
Dorel Luca de5c64c8f9 Backed out changeset a1487e1518de (bug 1605854) for ESline failure in gecko/devtools/shared/transport/local-transport.js. CLOSED TREE 2020-01-03 15:52:46 +02:00
Tom Schuster 7d4773b478 Bug 1605854 - Remove uneval/toSource from devtools tests. r=jlast
For test browser_net_prefs-reload.js, I am not sure about this change firstValue/currentValue seems to be different types numbers, strings, objects.
toString is maybe not the best way to compare those values.

Differential Revision: https://phabricator.services.mozilla.com/D58313

--HG--
extra : moz-landing-system : lando
2020-01-03 13:08:26 +00:00
Coroiu Cristina 9513ceda80 Backed out 3 changesets (bug 1606317) for build bustage at build/src/security/manager/ssl/nsCertOverrideService.cpp on a CLOSED TREE
Backed out changeset 9c34a0a40e62 (bug 1606317)
Backed out changeset 467db2b310a7 (bug 1606317)
Backed out changeset b12669c3ade7 (bug 1606317)
2020-01-03 15:11:29 +02:00
Andreas Tolfsen 27106918c7 bug 1606317: remote: revert "Disable Puppeteer tests in ignorehttpserrors.spec.js which crash the browser." r=remote-protocol-reviewers,whimboo
This reverts the commit:

	git:	d640ab64b993431099cd9205297bfff464d76927
	hg:	9f6327c0d8298ec58a6c9f8d51526872d01d765e

Differential Revision: https://phabricator.services.mozilla.com/D58503

--HG--
extra : moz-landing-system : lando
2020-01-03 10:16:13 +00:00
Andreas Tolfsen bb0887db1e bug 1606317: security: allow remote agent to disable security checks; r=keeler
The remote agent is an implementation of a subset of
the Chromium Remote Debugging Protocol (CDP) for Gecko.
For similar reasons as Marionette it needs the ability to call
nsCertOverrideService::SetDisableAllSecurityChecksAndLetAttackersInterceptMyData().

It calls this method from remote/domains/parent/Security.jsm which
implements the Security.setIgnoreCertificateErrors protocol method.

The remote agent is slated to replace Marionette, but there is
currently no timeline for this.

Differential Revision: https://phabricator.services.mozilla.com/D58435

--HG--
extra : moz-landing-system : lando
2020-01-03 10:16:48 +00:00
Andreas Tolfsen 3d48cf1cf1 bug 1606317: security: use nsIMarionette.running() for disable security check; r=keeler
It must only be possible to call
nsCertOverrideService::SetDisableAllSecurityChecksAndLetAttackersInterceptMyData()
when Marionette is actually active, but the MOZ_MARIONETTE environment
variable can in theory be set by any user.

MOZ_MARIONETTE was introduced to support in-application restarts
so that the forked main process knows to re-initialise Marionette.
This makes it approximately equivalent to passing the --marionette flag.

Because Marionette can be started and stopped at runtime through
modifying the marionette.enabled preference, and Marionette never
resets MOZ_MARIONETTE, this makes it theoretically possible that
a future caller could circumvent this security check.

This is however not a security problem at present because the
method is only ever called from within testing/marionette/cert.js,
which itself is never called unless Marionette indeed is active.

Still, it would be safer for this to use nsIMarionette.running()
which returns true whenever the Marionette server is listening for
connections, and false when the Marionette automation protocol is
not enabled.

Differential Revision: https://phabricator.services.mozilla.com/D58434

--HG--
extra : moz-landing-system : lando
2020-01-03 10:16:35 +00:00
Michael Hoffmann 85c3b123f5 Bug 1604482 - Fix TypeScript type error for gIsDarkMode r=gregtatum
Differential Revision: https://phabricator.services.mozilla.com/D57649

--HG--
extra : moz-landing-system : lando
2020-01-03 12:24:09 +00:00
Julian Descottes ec780daa43 Bug 1606787 - Exclude CSS files from Prettier configuration r=vporof
It seems that the recommended Prettier extension for VSCode automatically formats CSS.
I guess this is also true for any editor extension that formats on save.

However ./mach lint is not checking CSS formatting issues, and we have not auto-formatted CSS files in the tree.

This can lead to unexpected formatting changes for developers using VSCode.

Differential Revision: https://phabricator.services.mozilla.com/D58593

--HG--
extra : moz-landing-system : lando
2020-01-03 12:26:41 +00:00
Ksenia Berezina b111b012e8 Bug 1554913 - Remove eslint-disable-next-line complexity from _setupHarTimings r=Honza
Differential Revision: https://phabricator.services.mozilla.com/D57877

--HG--
extra : moz-landing-system : lando
2020-01-03 09:58:08 +00:00
moz-wptsync-bot bd02e0f831 Bug 1606606 - [wpt-sync] Update web-platform-tests to fda9fa30b9c18f3689f09384c0d4f104c6e6fd4d, a=testonly
MANUAL PUSH: wpt sync bot

wpt-head: fda9fa30b9c18f3689f09384c0d4f104c6e6fd4d
wpt-type: landing
2020-01-03 11:36:18 +00:00
marmeladema fa91f8750e Bug 1605947 [wpt PR 20920] - Replace call to dict.iteritems by six.iteritems, a=testonly
Automatic update from web-platform-tests
Replace call to dict.iteritems by six.iteritems

--

wpt-commits: 878422d33b13cf46ec0d4f4201536426137ecc62
wpt-pr: 20920
2020-01-03 11:36:18 +00:00
cathiechen 759106dbec Bug 1606326 [wpt PR 20943] - Add content-aspect-ratio and update the description in canvas-aspect-ratio, a=testonly
Automatic update from web-platform-tests
Add content-aspect-ratio and update the description in canvas-aspect-ratio (#20943)

* Update the description in canvas-aspect-ratio. And add a test for content style image, make sure the width and height attributes won't infer its aspect-ratio.

--

wpt-commits: 453b3f32d5ee5a855780f9c43adc4c77996ab128
wpt-pr: 20943
2020-01-03 11:36:17 +00:00
Leon Han 66fb165a42 Bug 1605325 [wpt PR 20885] - [webnfc] Implement the algo for validating external types, a=testonly
Automatic update from web-platform-tests
[webnfc] Implement the algo for validating external types

The spec change:
https://github.com/w3c/web-nfc/pull/474/

BUG=520391

Change-Id: If1e4a6513410f3705bec4da7b2cc514c209a3cd9
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1978622
Commit-Queue: Leon Han <leon.han@intel.com>
Reviewed-by: Rijubrata Bhaumik <rijubrata.bhaumik@intel.com>
Reviewed-by: Daniel Cheng <dcheng@chromium.org>
Reviewed-by: François Beaufort <beaufort.francois@gmail.com>
Cr-Commit-Position: refs/heads/master@{#727853}

--

wpt-commits: 74efe51f1faaa2bf3ff91c10f05a4ad9615a1553
wpt-pr: 20885
2020-01-03 11:36:17 +00:00
moz-wptsync-bot 83d27ff8c7 Bug 1606411 [wpt PR 20961] - Update wpt metadata, a=testonly
wpt-pr: 20961
wpt-type: metadata
2020-01-03 11:36:16 +00:00
Timothy Gu b2996e1297 Bug 1606411 [wpt PR 20961] - Fix <input type=time> stepUp()-stops-at-border test, a=testonly
Automatic update from web-platform-tests
html: Fix <input type=time> stepUp()-stops-at-border test (#20961)

Currently, this test is the only one failed by all three major browsers
in the file. Discovered by Kevin Raynel <kevinr@theodo.fr>.
--

wpt-commits: 53266c3b093c765918b37c7bd76b166d3b86d1f4
wpt-pr: 20961
2020-01-03 11:36:16 +00:00
Kent Tamura 05504717ef Bug 1605683 [wpt PR 20906] - XPath: Do not accept whitespace characters other than #x20, #x9, #xD, and #xA, a=testonly
Automatic update from web-platform-tests
XPath: Do not accept whitespace characters other than #x20, #x9, #xD, and #xA

Specification: https://www.w3.org/TR/1999/REC-xpath-19991116/#NT-ExprWhitespace

Bug: 1036767
Change-Id: I337ec70fefe8259d50bcf89a67b6e73c68fa585f
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1980251
Reviewed-by: Daniel Cheng <dcheng@chromium.org>
Commit-Queue: Kent Tamura <tkent@chromium.org>
Cr-Commit-Position: refs/heads/master@{#727844}

--

wpt-commits: e08790c4a97eb7d4ad8a13b1f917bfae3b08d334
wpt-pr: 20906
2020-01-03 11:36:15 +00:00
moz-wptsync-bot 2586e3b490 Bug 1599630 [wpt PR 20465] - Update wpt metadata, a=testonly
wpt-pr: 20465
wpt-type: metadata
2020-01-03 11:36:15 +00:00
Mason Freed 100fe4df0b Bug 1599630 [wpt PR 20465] - Disallow recursive custom element constructions, a=testonly
Automatic update from web-platform-tests
Disallow recursive custom element constructions

With this CL, recursive custom element constructions are no
longer allowed. I.e. this will now only run the constructor once:
  class extends HTMLElement {
    constructor() {
      super();
      customElements.upgrade(this);
    }
  }

Previously, the code and spec had a bug which caused the above
code snippet to infinitely recurse. In [1] the spec has changed,
to set the custom element state to "failed" before the constructor
is called. With this change in place, recursive calls will
early-out at step #2 (of [2]), and avoid the recursion.

[1] https://github.com/whatwg/html/pull/5126
[2] https://html.spec.whatwg.org/multipage/custom-elements.html#upgrades

Bug: 966472
Change-Id: I76e88c0b70132eee2482c304ef9e727ae1fe8fc7
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1931644
Reviewed-by: Kent Tamura <tkent@chromium.org>
Commit-Queue: Mason Freed <masonfreed@chromium.org>
Auto-Submit: Mason Freed <masonfreed@chromium.org>
Cr-Commit-Position: refs/heads/master@{#727841}

--

wpt-commits: 4f24cabbe1f503f3daf8cf0834f4fb1a032f31bc
wpt-pr: 20465
2020-01-03 11:36:14 +00:00
haozhe 3f1f90850c Bug 1604815 [wpt PR 20841] - Port css-background related composition tests to external, a=testonly
Automatic update from web-platform-tests
Port css-background related composition tests to external

Chrome passed all tests
Firefox passed all tests other than background-size-composition

Bug: 1034538
Change-Id: I0588c7e06c4ef1d545a88098e6dd4af74eb906d4
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1972812
Reviewed-by: Xida Chen <xidachen@chromium.org>
Commit-Queue: Hao Sheng <haozhes@chromium.org>
Cr-Commit-Position: refs/heads/master@{#727770}

--

wpt-commits: 6e3355fddd773b0b3f76cabac9cb3f2a101b27d7
wpt-pr: 20841
2020-01-03 11:36:14 +00:00
moz-wptsync-bot 903f80abf0 Bug 1605198 [wpt PR 20870] - Update wpt metadata, a=testonly
wpt-pr: 20870
wpt-type: metadata
2020-01-03 11:36:13 +00:00
haozhe c02a70bd8c Bug 1605198 [wpt PR 20870] - Port css-text related composition tests to external, a=testonly
Automatic update from web-platform-tests
Port css-text related composition tests to external

Chrome pass all tests
Firefox does not support hanging: https://bugzilla.mozilla.org/show_bug.cgi?id=784648

Bug: 1034538
Change-Id: Ic60846b2e439eb325c682b01376ac0805f0b6a0e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1976494
Reviewed-by: Xida Chen <xidachen@chromium.org>
Commit-Queue: Hao Sheng <haozhes@chromium.org>
Cr-Commit-Position: refs/heads/master@{#727769}

--

wpt-commits: e2d7dd2bbc5cd8741876afa2b571c0854145a99f
wpt-pr: 20870
2020-01-03 11:36:13 +00:00
moz-wptsync-bot c3499ba0b1 Bug 1604893 [wpt PR 20849] - Update wpt metadata, a=testonly
wpt-pr: 20849
wpt-type: metadata
2020-01-03 11:36:13 +00:00
haozhe db9aa2d45d Bug 1604893 [wpt PR 20849] - Port motion related composition tests to external, a=testonly
Automatic update from web-platform-tests
Port motion related composition tests to external

Chrome passes all the tests
Firefox failed the offset-position composition(https://bugzilla.mozilla.org/show_bug.cgi?id=1559232)

Bug: 1034538
Change-Id: I245a6d8e9da8252aed7f5d76ddfbadd052813fcd
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1974690
Reviewed-by: Xida Chen <xidachen@chromium.org>
Commit-Queue: Hao Sheng <haozhes@chromium.org>
Cr-Commit-Position: refs/heads/master@{#727767}

--

wpt-commits: 5305a8efb95b41c7836715a18458f18ffbf41e8d
wpt-pr: 20849
2020-01-03 11:36:12 +00:00
moz-wptsync-bot f66a57661f Bug 1605667 [wpt PR 20905] - Update wpt metadata, a=testonly
wpt-pr: 20905
wpt-type: metadata
2020-01-03 11:36:12 +00:00
Brian Birtles 1c8b8b07b0 Bug 1605667 [wpt PR 20905] - [web-animations] Fix test in setting-the-playbackrate-of-an-animation.html, a=testonly
Automatic update from web-platform-tests
[web-animations] Fix test in setting-the-playbackrate-of-an-animation.html (#20905)

This test assumes that currentTime will not change after waiting for
ready but the spec does not require that so this patch inverts these two
lines.
--

wpt-commits: c328e2ae1924a40d07dc552c4587ecc649eef0fd
wpt-pr: 20905
2020-01-03 11:36:11 +00:00
autofoolip 0a7dcc31b9 Bug 1605192 [wpt PR 20869] - Update interfaces/webaudio.idl, a=testonly
Automatic update from web-platform-tests
Update interfaces/webaudio.idl (#20869)

Source: https://github.com/tidoust/reffy-reports/blob/3bf6381/ed/idl/webaudio.idl
Build: https://travis-ci.org/tidoust/reffy-reports/builds/627366789
--

wpt-commits: 32cb2cec67da8c146ea0129610d9cd2f1a47be79
wpt-pr: 20869
2020-01-03 11:36:11 +00:00
autofoolip a772d467e5 Bug 1605439 [wpt PR 20893] - Update interfaces/webrtc.idl, a=testonly
Automatic update from web-platform-tests
Update interfaces/webrtc.idl (#20893)

Source: https://github.com/tidoust/reffy-reports/blob/6bd3f51/ed/idl/webrtc.idl
Build: https://travis-ci.org/tidoust/reffy-reports/builds/627842004
--

wpt-commits: 91c750392d5c6304e91f6d4248cfa5fbbcbc022d
wpt-pr: 20893
2020-01-03 11:36:10 +00:00
haozhe 87c7e4bd7b Bug 1604907 [wpt PR 20851] - Port css-ui related composition tests to external, a=testonly
Automatic update from web-platform-tests
Port css-ui related composition tests to external

Both Chrome and Firefox pass all tests

Bug: 1034538
Change-Id: I9f92d6b91fafacfc12e81a7bc5941a6e8e0e4868
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1974755
Commit-Queue: Hao Sheng <haozhes@chromium.org>
Reviewed-by: Xida Chen <xidachen@chromium.org>
Cr-Commit-Position: refs/heads/master@{#727641}

--

wpt-commits: 070df683f5a7999245622eec274974903c3560c2
wpt-pr: 20851
2020-01-03 11:36:10 +00:00
moz-wptsync-bot 08597279ea Bug 1606095 [wpt PR 20924] - Update wpt metadata, a=testonly
wpt-pr: 20924
wpt-type: metadata
2020-01-03 11:36:09 +00:00
Nicolás Peña Moreno 7fa391fe49 Bug 1606095 [wpt PR 20924] - [LayoutInstability] Fix flaky tests, a=testonly
Automatic update from web-platform-tests
[LayoutInstability] Fix flaky tests

In this CL, some 'await waitForAnimationFrames(2)' are added to wait for
the initial render of the test page before introducing the observer.
This removes flakiness of these tests in WPT.fyi. Other cleanups are
done in the test files.

Bug: 1036013
Change-Id: Ic2631faf03ad00c8e32013c100c3b4ab867be2b0
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1982708
Reviewed-by: Annie Sullivan <sullivan@chromium.org>
Commit-Queue: Nicolás Peña Moreno <npm@chromium.org>
Cr-Commit-Position: refs/heads/master@{#727639}

--

wpt-commits: 11f1a592c17fb4a7bb5c3081493ebb6a04a0aa39
wpt-pr: 20924
2020-01-03 11:36:09 +00:00
moz-wptsync-bot 2096c75119 Bug 1606105 [wpt PR 20926] - Update wpt metadata, a=testonly
wpt-pr: 20926
wpt-type: metadata
2020-01-03 11:36:08 +00:00
Nicolás Peña Moreno ebc364aa81 Bug 1606105 [wpt PR 20926] - [LayoutInstability] Cleanup test observe-layout-shift.html, a=testonly
Automatic update from web-platform-tests
[LayoutInstability] Cleanup test observe-layout-shift.html

Currently, the test contains two async_tests, which is not good because
they run in parallel so the tests can affect each other. The first test
is redundant with buffer-layout-shift.html. The second test uses a
helper function from EventTiming, so we import the script instead of
copy-paste and we rename the test.

Change-Id: Ibe6d200441a07c603bccf0858406cf2c4f1d37a4
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1982710
Reviewed-by: Annie Sullivan <sullivan@chromium.org>
Commit-Queue: Nicolás Peña Moreno <npm@chromium.org>
Cr-Commit-Position: refs/heads/master@{#727640}

--

wpt-commits: a3f46a8e90c9bf8e0c860525cce7ae5f10654234
wpt-pr: 20926
2020-01-03 11:36:08 +00:00
haozhe a28ba76a22 Bug 1605187 [wpt PR 20868] - Port css-box related composition tests to external, a=testonly
Automatic update from web-platform-tests
Port css-box related composition tests to external

Both Chrome and Firefox pass all tests

Bug: 1034538
Change-Id: I796c3ef77c7a4e384b4c82a18876d6630707fbcf
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1976555
Reviewed-by: Xida Chen <xidachen@chromium.org>
Commit-Queue: Hao Sheng <haozhes@chromium.org>
Cr-Commit-Position: refs/heads/master@{#727581}

--

wpt-commits: fcbfea4e5dfbc252635770745280fad0d382fc15
wpt-pr: 20868
2020-01-03 11:36:08 +00:00
haozhe 6462b85d57 Bug 1604874 [wpt PR 20846] - Port css-sizing related composition tests to external, a=testonly
Automatic update from web-platform-tests
Port css-sizing related composition tests to external

Both chrome and firefox passed all tests

Bug: 1034538
Change-Id: I4d315ea6283496a98bf928ee5f965df6cd685462
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1974390
Reviewed-by: Xida Chen <xidachen@chromium.org>
Commit-Queue: Hao Sheng <haozhes@chromium.org>
Cr-Commit-Position: refs/heads/master@{#727578}

--

wpt-commits: 680212d1a5ac4ce5af800ef04eaa0ef49c5d5dff
wpt-pr: 20846
2020-01-03 11:36:07 +00:00
haozhe fff2a08f44 Bug 1604933 [wpt PR 20853] - Port css-align related composition tests to external, a=testonly
Automatic update from web-platform-tests
Port css-align related composition tests to external

Both Chrome and Firefox pass all tests

Bug: 1034538
Change-Id: Id6fca2ac5eb08123bd8817a46fc48985df5979de
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1974841
Reviewed-by: Xida Chen <xidachen@chromium.org>
Commit-Queue: Hao Sheng <haozhes@chromium.org>
Cr-Commit-Position: refs/heads/master@{#727577}

--

wpt-commits: fb78e5e9f9ccdf1d9854d832c277bbb053ee158d
wpt-pr: 20853
2020-01-03 11:36:07 +00:00
haozhe b83e017596 Bug 1604940 [wpt PR 20854] - Port css-shapes related composition tests to external, a=testonly
Automatic update from web-platform-tests
Port css-shapes related composition tests to external

Both Chrome and Firefox pass all tests

Bug: 1034538
Change-Id: I7e5c37769b268628e72ad04bf2ac1b882eedc5de
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1974952
Reviewed-by: Xida Chen <xidachen@chromium.org>
Commit-Queue: Hao Sheng <haozhes@chromium.org>
Cr-Commit-Position: refs/heads/master@{#727576}

--

wpt-commits: 7fa327e7a05120ce6ece73311e2e049d419e720c
wpt-pr: 20854
2020-01-03 11:36:06 +00:00
L. David Baron 423c1cfb1e Bug 1606104 [wpt PR 20925] - Sync Mozilla CSS tests as of 2019-12-27, a=testonly
Automatic update from web-platform-tests
Sync Mozilla CSS tests as of https://hg.mozilla.org/mozilla-central/rev/264003682fbf25a121deeeb305d206a7cd437b94 . (#20925)

This contains changes from [bug 1559975](https://bugzilla.mozilla.org/show_bug.cgi?id=1559975) by @Callek, reviewed by @catlee.
--

wpt-commits: c67fc4f77389c519e2767aa2b1b0a907057a9b7d
wpt-pr: 20925
2020-01-03 11:36:06 +00:00
moz-wptsync-bot 8a9566b1cd Bug 1602432 [wpt PR 20680] - Update wpt metadata, a=testonly
wpt-pr: 20680
wpt-type: metadata
2020-01-03 11:36:05 +00:00
Rob Buis 19375b11ee Bug 1602432 [wpt PR 20680] - LazyLoad: add tests for dynamically setting loading, a=testonly
Automatic update from web-platform-tests
LazyLoad: add tests for dynamically setting loading

Add tests for dynamically setting loading attribute.

Bug: 1033501
Change-Id: I47de4abff60f93e537a44db29d9f9b14a3ed2a4b
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1954513
Commit-Queue: Rob Buis <rbuis@igalia.com>
Reviewed-by: Dominic Farolino <dom@chromium.org>
Cr-Commit-Position: refs/heads/master@{#727430}

--

wpt-commits: d1e20d6e525ebf9b99876c7f08b14cb268364f79
wpt-pr: 20680
2020-01-03 11:36:05 +00:00
Wanming Lin 7bac2d4b10 Bug 1605826 [wpt PR 20915] - [webnfc] Correct error type, a=testonly
Automatic update from web-platform-tests
[webnfc] Correct error type

Per spec:
  If languageLength cannot be stored in 6 bit (languageLength > 63),
  throw a SyntaxError.

But current implementation throws a TypeError, this CL fixs the error type.

Bug: 520391
Change-Id: I6ff64d87b387a07fff926ada80e5ee5d73b716b7
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1981199
Commit-Queue: Rijubrata Bhaumik <rijubrata.bhaumik@intel.com>
Reviewed-by: Leon Han <leon.han@intel.com>
Reviewed-by: Rijubrata Bhaumik <rijubrata.bhaumik@intel.com>
Cr-Commit-Position: refs/heads/master@{#727414}

--

wpt-commits: 36507c8b6fe2d51971da07c913589ef1621f1651
wpt-pr: 20915
2020-01-03 11:36:04 +00:00
moz-wptsync-bot 7551b6265d Bug 1603855 [wpt PR 20774] - Update wpt metadata, a=testonly
wpt-pr: 20774
wpt-type: metadata
2020-01-03 11:36:04 +00:00
Rob Buis 9711b35d2d Bug 1603855 [wpt PR 20774] - LazyLoad: Timeout when moving image elements between documents, a=testonly
Automatic update from web-platform-tests
LazyLoad: Timeout when moving image elements between documents

This CL adds WPT test for moving image elements between documents
as well as removing image elements.

Bug: 1001968
Change-Id: I725b60bfaf2406d7fdeabe8d4422d0618dc29478
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1967084
Reviewed-by: Dominic Farolino <dom@chromium.org>
Commit-Queue: Rob Buis <rbuis@igalia.com>
Cr-Commit-Position: refs/heads/master@{#727350}

--

wpt-commits: 7ed322c3132993bcb5734702b40621448670fc76
wpt-pr: 20774
2020-01-03 11:36:04 +00:00
Carlos Alberto Lopez Perez 8ff38573fe Bug 1605772 [wpt PR 20914] - Add support for running crashtest tests with webkitgtk, a=testonly
Automatic update from web-platform-tests
Add support for running crashtest tests with webkitgtk (#20914)

* This adds support in the webkitgtk_minibrowser, webkit and epiphany
product runners for running crashtest tests.
--

wpt-commits: e936890351047304cdc98d31d555f6d6a068097e
wpt-pr: 20914
2020-01-03 11:36:03 +00:00