Commit Graph

27809 Commits

Author SHA1 Message Date
Andrea Marchesini
f48b6e8ca4 Bug 1495303 - FeaturePolicy: payment, r=marcosc 2018-10-01 11:59:57 +02:00
Rob Lemley
77d113c0ad Bug 1491907 - Set correct branch URL for Thunderbird based on product-details r=bhearsum
Thunderbird releases come from the comm-esr.* repositories rather than the
comm-release repository. This adds a special case for Thunderbird and sets
the branch URL correctly.

This initial patch is based on the branch_prefix (comm or mozilla).

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

--HG--
extra : moz-landing-system : lando
2018-09-24 08:21:17 +00:00
Olli Pettay
774f1c7600 Bug 1494918 - FlattenAssignedNodes should check that slots are in shadow root , r=edgar
--HG--
extra : rebase_source : eeb5049f916b7a417c102a32c86637c7ac5bcf36
2018-10-01 22:23:27 +03:00
Marcos Cáceres
70744c3261 Bug 1495335 - Rename PayerErrorFields to PayerErrors. r=baku 2018-10-01 03:44:00 -04:00
Andrea Marchesini
319c43d823 Bug 1495303 - FeaturePolicy: payment, r=marcosc 2018-10-01 11:59:57 +02:00
Andrea Marchesini
999343a4f0 Bug 1390801 - FeaturePolicy - part 3 - Enabling WPTs, r=ckerschb 2018-10-01 08:09:44 +02:00
arthur.iakab
f0410f8d4b Merge mozilla-central to mozilla-inbound 2018-09-29 01:00:35 +03:00
moz-wptsync-bot
1d660df510 Bug 1494767 - [wpt-sync] Update web-platform-tests to 1e7408fcd394b66234c38c24ba044ec6f00e4b70, a=testonly
wpt-head: 1e7408fcd394b66234c38c24ba044ec6f00e4b70
wpt-type: landing
2018-09-28 15:47:44 +00:00
Geoffrey Sneddon
229c6d5b1b Bug 1494049 [wpt PR 13201] - Add headless mode for chrome_webdriver, a=testonly
Automatic update from web-platform-testsAdd headless mode for chrome_webdriver (#13201)

0200c63a74a540dfb870881d5f476280c367d1c1 failed to add this to
chrome_webdriver, so add this now.
--

wpt-commits: 1e7408fcd394b66234c38c24ba044ec6f00e4b70
wpt-pr: 13201
2018-09-28 15:47:44 +00:00
Anders Hartvoll Ruud
9a0fcd3db4 Bug 1493748 [wpt PR 13193] - [css-properties-values-api] Substitution behavior., a=testonly
Automatic update from web-platform-tests[css-properties-values-api] Substitution behavior.

Currently, registered properties substitute into other values exactly
like specified (like unregistered properties). This means that, for
a <length>-registered property with a specified value "10em" (for
instance), when that property is substituted via var()-reference,
the tokens "10em" are inserted. This is not correct, and produces the
wrong result with e.g. inherited values.

This CL changes that, by implementing "absolutization" of registered
custom properties: a process which calculates the computed value of
the property, and then produces a token stream usable for substitution
which is equivalent to the computed value.

 * Currently we resolve var()-references on all custom properties
   before applying high-priority properties. This is no longer
   possible, because the true value of a custom property (also
   unregistered) can not be known until the font has been updated.
   Consider: --reg-len: 1em; --unreg:var(--reg-len). Here, the
   computed value of --unreg should be "16px" (assuming a font-size
   of 16px), and not "1em". If we destructively resolve --unreg
   before the font size is known, we end up with the wrong tokens.

   Hence the resolution process has been moved to after the font
   has been updated.

 * Custom properties must also be usable from high-priority properties.
   Since they are no longer resolved beforehand, they are resolved
   "on the fly", non-destructively. "Non-destructively" means that
   resolved token streams are not stored on ComputedStyle, such that
   any var()-references are kept for the _real_ resolution pass after
   the font has been updated.

   This works, because the high-priority properties do not require
   proper "absolute substitution" to produce the correct value.

   Note that font-size is special, in that font-relative units may
   not be used if they arrive via a registered custom property.

 * There is a special resolving pass for registered custom properties
   (ComputeRegisteredVariables). This pass produces non-absolute CSSValues
   for calculation of animation.

 * Parsing of registered properties now happens entirely in
   CSSVariableResolver, and no longer in variable.cc. Having this in
   multiple places is just confusing.

R=futhark@chromium.org

Bug: 641877
Change-Id: Ic705d0808ffcea0ae5db02fb20870767175bb706
Reviewed-on: https://chromium-review.googlesource.com/1240274
Reviewed-by: Rune Lillesveen <futhark@chromium.org>
Commit-Queue: Anders Ruud <andruud@chromium.org>
Cr-Commit-Position: refs/heads/master@{#593902}

--

wpt-commits: c801e269e3e22d11e1bb4530ff15e87db877b1d2
wpt-pr: 13193
2018-09-28 15:47:43 +00:00
Ahilya Sinha
bf9b236e30 Bug 1493651 [wpt PR 13185] - Fix firefox find_binary_path to accomodate channels, a=testonly
Automatic update from web-platform-testsFix firefox find_binary_path to accomodate channels

Firefox find_binary_path returned None since browser-channels were introduced
due to path differences. This fixes the same, along with a minor change to the
Nightly path on Mac as it contains a space.

The default for |wpt run firefox| without a channel specified is set to nightly,
along with a log message when this happens.

--

wpt-commits: f3a1f9324097311cafcd7893066e3e40fe172fd0
wpt-pr: 13185
2018-09-28 15:47:43 +00:00
Stephen McGruer
922a4ce201 Bug 1493432 [wpt PR 13168] - Add interface tests for TransitionEvent, a=testonly
Automatic update from web-platform-testsAdd interface tests for TransitionEvent

These are modelled after the similar tests that exist for AnimationEvent
in css/css-animations, except written using more modern WPT style.

Bug: 695504
Change-Id: I63573cf48aba6821f5e22486ef18217d0f2828ee
Reviewed-on: https://chromium-review.googlesource.com/1239457
Reviewed-by: Stephen McGruer <smcgruer@chromium.org>
Reviewed-by: Xida Chen <xidachen@chromium.org>
Commit-Queue: Stephen McGruer <smcgruer@chromium.org>
Cr-Commit-Position: refs/heads/master@{#593620}

--

wpt-commits: b040cb2a07264d35b9f47cd9deb2fb2889fca6d4
wpt-pr: 13168
2018-09-28 15:47:43 +00:00
Xianzhu Wang
31feea1bed Bug 1493382 [wpt PR 13157] - [PE] Fix fragment clip and paint offset under multicol vertical-rl scrolled, a=testonly
Automatic update from web-platform-tests[PE] Fix fragment clip and paint offset under multicol vertical-rl scrolled

The previous code in VisualOffsetFromPaintOffsetRoot() converting the result
into scrolling contents space used ScrolledContentOffset which mismatched
the new ScrollTranslation which also includes scroll origin. Now use
ScrollTranslation instead.

Also removed the wrong remedy about scroll origin in one of the callers.

Bug: 887423
Cq-Include-Trybots: luci.chromium.try​:linux_layout_tests_slimming_paint_v2;master.tryserver.blink:linux_trusty_blink_rel
Change-Id: I9a72ed6ddc066c5b4c9970037ed4c4287c5a2f0f
Reviewed-on: https://chromium-review.googlesource.com/1239170
Commit-Queue: Xianzhu Wang <wangxianzhu@chromium.org>
Reviewed-by: Morten Stenshorne <mstensho@chromium.org>
Reviewed-by: Philip Rogers <pdr@chromium.org>
Cr-Commit-Position: refs/heads/master@{#593572}

--

wpt-commits: 68d63d516e6bc4b83934d71616b2aa82d8efe2af
wpt-pr: 13157
2018-09-28 15:47:42 +00:00
Javier Fernandez
e13b31769f Bug 1488291 [wpt PR 12816] - [css-grid] Performance optimizations in the Baseline alignment code, a=testonly
Automatic update from web-platform-tests[css-grid] Performance optimizations in the Baseline alignment code

Since we integrated the baseline alignment logic in the grid tracks
sizing algorithm, its impact on performance has grown considerably.

The analysis of the new logic added and its overhead, due to different
operations, shows that evaluating the item's participation in the
baseline alignment context is the most expensive one. It's specially
demanding the evaluation of the grid item's alignment properties.

Considering that currently we are doing this for every grid item, this
CL propose to reuse the loop we already have to clear the grid item's
override size to cache the items with a baseline value in their
alignment CSS properties.

Thanks to this cache we can determine the item's participation in a
baseline alignment context in the different phases of the track sizing
algorithm, with almost no cost (compared to the current logic). It may
be possible to share the cache with the algorithm run for computing the
grid's intrinsic size; however, if the intrinsic size logic is run
before the grid's layout, we'll end up duplicating the cache.

Additionally, this cache is also used in the alignment phase of the
grid layout logic; this change helps to avoid the various issues we
have been suffering related to the different evaluations of the item's
participation in baseline during the different phases of the grid
layout algorithm.

BUG = 873452

Change-Id: Ida27be11ae0f5c455e6077367a277981ab35cec1
Reviewed-on: https://chromium-review.googlesource.com/1179897
Commit-Queue: Javier Fernandez <jfernandez@igalia.com>
Reviewed-by: Manuel Rego <rego@igalia.com>
Cr-Commit-Position: refs/heads/master@{#593552}

--

wpt-commits: f6de5f7d5d50b1ad30a1e17922e183868fd3e935
wpt-pr: 12816
2018-09-28 15:47:42 +00:00
jgraham
937cd1e982 Bug 1492493 [wpt PR 13076] - Add a headless mode command line option, a=testonly
Automatic update from web-platform-testsAdd a headless mode command line option (#13076)

For browsers which support headless mode starting wptrunner with
--headless will run the tests in headless mode; otherwise it will be
ignored.

--no-headless is avaiable to explicitly disable the mode when
frontends change the defaults.

For firefox switch the default for wpt run to be headless; for Chrome
changing the default broke some smoketests, so don't switch until that
is resolved. In all cases continue to run in a normal windowed mode in CI.
--

wpt-commits: 0200c63a74a540dfb870881d5f476280c367d1c1
wpt-pr: 13076
2018-09-28 15:47:41 +00:00
Rune Lillesveen
aeb06002df Bug 1493657 [wpt PR 13187] - Visual change on background-clip changes., a=testonly
Automatic update from web-platform-testsVisual change on background-clip changes.

The background-clip property affects background-color visually, so we
need to say a layer is visually different even without an image.

We had a wpt test for this which had a stray line which made the test
always pass.

Bug: 887350
Change-Id: Icc585f9e631485970b6509e015eff1e2007e4f0b
Reviewed-on: https://chromium-review.googlesource.com/1238448
Reviewed-by: Anders Ruud <andruud@chromium.org>
Reviewed-by: Fredrik Söderquist <fs@opera.com>
Commit-Queue: Rune Lillesveen <futhark@chromium.org>
Cr-Commit-Position: refs/heads/master@{#593523}

--

wpt-commits: 00c1fd9ea4bc1e03f966919f1e209ab8cd81f57e
wpt-pr: 13187
2018-09-28 15:47:41 +00:00
Ms2ger
20472a7abb Bug 1472773 [wpt PR 11757] - Fix some tests in test_request.py for python 3., a=testonly
Automatic update from web-platform-testsFix some tests in test_request.py for python 3. (#11757)

--

wpt-commits: 61e09bec3d21b4e9137dadafc20c04cb9be7ce3e
wpt-pr: 11757
2018-09-28 15:47:40 +00:00
pyup.io bot
5af01802d3 Bug 1493424 [wpt PR 13167] - Update mozrunner to 7.0.2, a=testonly
Automatic update from web-platform-testsUpdate mozrunner from 7.0.0 to 7.0.2 (#13167)

--

wpt-commits: 91491deb7dcfe4a0d0ece61f086345abad4d46a4
wpt-pr: 13167
2018-09-28 15:47:40 +00:00
Philip Jägenstedt
144791e835 Bug 1493663 [wpt PR 13188] - Typo: seperated → separated, a=testonly
Automatic update from web-platform-testsTypo: seperated → separated (#13188)

Found by https://chromium-review.googlesource.com/c/chromium/src/+/1240181#message-2a9347bd8ccd79130eb02de97600c0faf4d429ce

But the same typo also made elsewhere.
--

wpt-commits: 75a06f907589cab45d901e88b54babb182e2446f
wpt-pr: 13188
2018-09-28 15:47:39 +00:00
Geoff Brown
3d5dcec7d6 Bug 1449374 - Fix typo in wpt ini file for prefetch-allowed.html; r=me,a=test-only 2018-09-28 08:47:55 -06:00
James Graham
1cae9c5b1c Bug 1494639 - Ensure that css test doesn't try to contact an external host, r=emilio 2018-09-28 13:26:59 +01:00
Ciure Andrei
87ecdbcfb8 Merge mozilla-central to mozilla-inbound. a=merge CLOSED TREE 2018-09-28 14:53:57 +03:00
Ciure Andrei
4cd1cc463e Backed out 1 changesets (bug 1492519) for tps perma failures a=backout
Backed out changeset f2b2b043c046 (bug 1492519)
2018-09-28 14:50:45 +03:00
James Graham
f108ff304e Bug 1494187 - Run the manifest download steps before trying to update the manifest, r=ato
This ensures that we always start from a partial manifest where possible and also ensures that the
configuration files are correctly created (a refactor to create these irrespective of whether we
do a download would make sense, but this fixes the immediate problem)

Depends on D7088

Differential Revision: https://phabricator.services.mozilla.com/D7089
2018-09-28 11:36:46 +01:00
James Graham
34111d7c46 Bug 1494187 - Ensure wpt metadata directory exists in objdir before trying to write there, r=ato
Usually this directory is created by the build system. However if we
run ./mach wpt-manifest-update before trying to do a build it can
error out. Just creating the directory should be enough to fix this.

Differential Revision: https://phabricator.services.mozilla.com/D7088
2018-09-28 11:36:46 +01:00
James Graham
04f21f657a Bug 1494963 - Expose mozdebug's DebuggerInfo type r=ahal
Otherwise it doesn't work with multiprocessing, which breaks debugging wpt on Windows.

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

--HG--
extra : moz-landing-system : lando
2018-09-28 15:55:18 +00:00
Tiberius Oros
7c6081880d Merge mozilla-central to autoland. a=merge CLOSED TREE 2018-09-28 18:40:59 +03:00
Andrew Halberstadt
9e9fc55acc Bug 1470266 - [moztest.resolve] Make task regexes more resilient to change, r=jmaher
These regexes are used for things like determining which tasks to run given a
"path" int |mach try|. Previously, we used patterns like:

mochitest-chrome-(?:e10s)?(?:-1)?$

This would match both e10s and non-e10s versions of a task with either no
chunks, or only selecting chunk 1. But we keep adding other configurations, e.g
-gpu, -no-accel, -sw, etc.  Each time we create a new possibility we need to
remember to update these task regexes (or else lose test coverage when using
paths with |mach try|).

Instead of individually listing every possibility, let's use a pattern like
this:

mochitest-chrome($|.*(-1|[^0-9])$)

This also selects tasks that are either chunk 1 or don't have any chunks.  But
it allows for arbitrary strings in-between. This regex doesn't need to be
updated when we add configurations like -sw.

Depends on D7119

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

--HG--
extra : moz-landing-system : lando
2018-09-28 07:15:36 +00:00
Andrew Halberstadt
aebcf45519 Bug 1470266 - [moztest.resolve] Create a unittest for the task regexes, r=jmaher
I almost forgot to update the regexes in moztest.resolve when creating the -sw
variant of task. This adds a test to make sure we don't forget more things in
the future.

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

--HG--
extra : moz-landing-system : lando
2018-09-28 06:59:39 +00:00
Dão Gottwald
1a784b026b Bug 1492519 - lightweightThemes.selectedThemeID default should be "default-theme@mozilla.org" rather than "". r=aswan 2018-09-21 16:22:30 +02:00
Gurzau Raul
a8d8876e9e Merge mozilla-central to autoland. a=merge CLOSED TREE 2018-09-27 19:45:35 +03:00
Gurzau Raul
00b3974ac0 Backed out 5 changesets (bug 1494613) for failing at testing/geckodriver/src/marionette.rs
Backed out changeset 09e9cefc19ca (bug 1494613)
Backed out changeset f9f4e7c55d61 (bug 1494613)
Backed out changeset 457da8a172be (bug 1494613)
Backed out changeset 8d26a58f754e (bug 1494613)
Backed out changeset 729d8f3e1341 (bug 1494613)
2018-09-27 18:49:58 +03:00
Eliza Balazs
4367a5a4ab Bug 1464541 - Disable fetch-canvas-tainting-video.https.html for frequent failures on all platform. r=jmaher 2018-09-27 01:48:00 +03:00
Jared Wein
7da631f438 Bug 1469935 - Ctrl+M should mute/unmute all selected tabs in a multiselect context. r=Felipe
Differential Revision: https://phabricator.services.mozilla.com/D6948

--HG--
extra : moz-landing-system : lando
2018-09-26 20:46:09 +00:00
Andreas Tolfsen
a64e86917a bug 1494613: geckodriver: convert logging::Level to Pref r=whimboo
The patch c1df1c2e46f6 contained a faulty rebase where the coercion
of logging::max_level() changed from the Pref type to a string.

The string representation of geckodriver::logging::Level is given
in upper-case, e.g. "INFO", and the Pref representation is given as
"Info" to be compatible with managing the log level from Log.jsm in Gecko.

This inadvertently caused
https://github.com/web-platform-tests/wpt/issues/12166 to reappear
in almost the same way: before the problem was that Marionette’s
frame script always included all log level entries.  This was fixed
with https://bugzilla.mozilla.org/show_bug.cgi?1482829, but then
https://bugzilla.mozilla.org/show_bug.cgi?id=1396821 broke it so
that log entries also from chrome space appeared.

Depends on D7077

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

--HG--
extra : moz-landing-system : lando
2018-09-27 13:35:12 +00:00
Andreas Tolfsen
ed28f66567 bug 1494613: mozprofile: add docs for Pref::new and ::new_sticky r=whimboo
Depends on D7076

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

--HG--
extra : moz-landing-system : lando
2018-09-27 13:17:56 +00:00
Andreas Tolfsen
c3fce9b592 bug 1494613: geckodriver: log reason for not being able to write profile r=whimboo
mozprofile gives us an error and we can forward it to the user so
we know what the underlying reason is for not being able to write
the Firefox profile.

Depends on D7075

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

--HG--
extra : moz-landing-system : lando
2018-09-27 13:17:16 +00:00
Andreas Tolfsen
d1886a0a8b bug 1494613: geckodriver: drop try!() macro from MarionetteHandler r=whimboo
Done automatically by running MarionetteHandler through rustfmt(1).

Depends on D7074

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

--HG--
extra : moz-landing-system : lando
2018-09-27 13:15:41 +00:00
Andreas Tolfsen
36c735b76e bug 1494613: geckodriver: remove unnecessary owned string conversion r=whimboo
PrefValue implements From<&'static str>, and this makes the calling
code slightly nicer to look at.

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

--HG--
extra : moz-landing-system : lando
2018-09-27 13:14:51 +00:00
Henrik Skupin
421c63d12b Bug 1494617 - [geckodriver] Fix evaluation of "desiredCapabilities" and "requiredCapabilities". r=ato
The refactoring of the webdriver crate to use Serde (bug 1396821)
caused this regression. By instructing Serde to correctly rename
both properties fixes it.

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

--HG--
extra : moz-landing-system : lando
2018-09-27 12:06:00 +00:00
yulia
a5898d79c0 Bug 1473513 - fix faulty path for actor-registry;
Summary: Depends on D6479

Bug #: 1473513

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

--HG--
extra : rebase_source : 2455fe48b2be756e1b5bae0b2846051ed8283a68
2018-09-26 10:11:23 +02:00
yulia
72f9e83eb1 Bug 1473513 - move ActorRegistry module to server/actors/utils; r=ochameau
Summary: Depends on D6477

Reviewers: ochameau

Reviewed By: ochameau

Bug #: 1473513

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

--HG--
rename : devtools/server/actor-registry.js => devtools/server/actors/utils/actor-registry.js
extra : rebase_source : ae52db7b028b4d866d8a363eae9ae7c124714458
2018-09-26 10:09:15 +02:00
yulia
9c120b705d Bug 1473513 - separate registerModule behavior from DebuggerServer; r=ochameau
Summary:
MozReview-Commit-ID: 3GsXRxcIKfx

Depends on D6473

Reviewers: ochameau

Reviewed By: ochameau

Subscribers: reviewbot

Bug #: 1473513

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

--HG--
rename : devtools/server/main.js => devtools/server/actor-registry.js
extra : rebase_source : 3ea4edd91ca8b09ad5e25ae01df885c587bee7b1
2018-09-26 10:06:43 +02:00
moz-wptsync-bot
31c0eac6f2 Bug 1494252 - [wpt-sync] Update web-platform-tests to 23c54943daee3cd8520a6d86acc055f1120f96ad, a=testonly
wpt-head: 23c54943daee3cd8520a6d86acc055f1120f96ad
wpt-type: landing
2018-09-27 09:56:10 +00:00
pyup.io bot
ae00edde43 Bug 1458740 [wpt PR 10805] - Update marionette_driver to 2.7.0, a=testonly
Automatic update from web-platform-testsUpdate marionette_driver from 2.6.0 to 2.7.0 (#10805)

--

wpt-commits: 23c54943daee3cd8520a6d86acc055f1120f96ad
wpt-pr: 10805
2018-09-27 09:56:10 +00:00
Ms2ger
0ad26e7e37 Bug 1492992 [wpt PR 11769] - Various test fixes for python3 support., a=testonly
Automatic update from web-platform-testsVarious test fixes for python3 support. (#11769)

--

wpt-commits: 5bd512cdc76f762662915a2d3d9e49b021f14ff6
wpt-pr: 11769
2018-09-27 09:56:10 +00:00
youennf
d99e43414c Bug 1493565 [wpt PR 13181] - Make use of navigator.mediaDevices.getUserMedia instead of navigator.getUserMedia, a=testonly
Automatic update from web-platform-testsMake use navigator.mediaDevices.getUserMedia (#13181)

--

wpt-commits: 7bbbe6e9b15be0f972438a7cad7879184711d7ec
wpt-pr: 13181
2018-09-27 09:56:09 +00:00
Stephen McGruer
1e8f39e477 Bug 1493354 [wpt PR 13149] - Remove WebKitAnimationEvent, a=testonly
Automatic update from web-platform-testsRemove WebKitAnimationEvent

This is an obsolete prefixed alias of AnimationEvent. An
intent-to-remove has been sent, and has got LGTM*3.

Blink intent thread: https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/EgMUDqySZwE

Bug: 695504
Change-Id: Ia86e830fe3f653aa6a7b2f983afb75fd4d088831
Reviewed-on: https://chromium-review.googlesource.com/1238497
Commit-Queue: Stephen McGruer <smcgruer@chromium.org>
Reviewed-by: Dave Tapuska <dtapuska@chromium.org>
Reviewed-by: Tim Volodine <timvolodine@chromium.org>
Reviewed-by: Rick Byers <rbyers@chromium.org>
Cr-Commit-Position: refs/heads/master@{#593405}

--

wpt-commits: 1c99c70996f35332b8a65040bf745f19678a6686
wpt-pr: 13149
2018-09-27 09:56:09 +00:00
jugglinmike
9f27d208c1 Bug 1490783 [wpt PR 12976] - [testharness.js] Remove deprecated API, a=testonly
Automatic update from web-platform-tests[testharness.js] Remove deprecated API (#12976)

[testharness.js] Remove deprecated API

The testharness.js functions `assert_exists` and `assert_not_exists`
have been labeled "deprecated" since 2012-01-31 [1]. Remove the
functions and replace all existing references with equivalent
assertions.

[1] 1780607fc4582b65b7fcdded3e39e79e95c8d915

--

wpt-commits: efa1c1e224cf7910008d37477beb954d41448ace
wpt-pr: 12976
2018-09-27 09:56:08 +00:00
Ms2ger
9ae519eb8b Bug 1492970 [wpt PR 13121] - Make is_html actually work in Output#resolve_log()., a=testonly
Automatic update from web-platform-testsMake is_html actually work in Output#resolve_log().

In particular, is_html would never become true if SVGSVGElement was supported
at all.

Even if SVGSVGElement was not supported, it would never become true because
we were checking the namespace and localName of the Document object, rather
than the root element.

--

wpt-commits: 7f3e17fe6d5d48b0090b7b176fa5175037580654
wpt-pr: 13121
2018-09-27 09:56:08 +00:00
pyup-bot
4e46d1e3b4 Bug 1491025 [wpt PR 12988] - Update mozprofile to 2.0.0, a=testonly
Automatic update from web-platform-testsUpdate mozprofile from 1.1.0 to 2.0.0
--

wpt-commits: 664b50b7be3adecbcaf8bea23e1aeba4edf7f465
wpt-pr: 12988
2018-09-27 09:56:08 +00:00
pyup-bot
e94fdfa8c4 Bug 1493066 [wpt PR 13133] - Update selenium to 3.14.1, a=testonly
Automatic update from web-platform-testsUpdate selenium from 3.14.0 to 3.14.1
--
Update selenium from 3.14.0 to 3.14.1
--
Update selenium from 3.14.0 to 3.14.1
--
Update selenium from 3.13.0 to 3.14.1
--
Update selenium from 3.14.0 to 3.14.1
--
Update selenium from 3.14.0 to 3.14.1
--
Update selenium from 3.14.0 to 3.14.1
--

wpt-commits: fab6e8e35344dc06267d1ba5a75780d0e0f3a6fc, ee8755b0f6cdaf901cf04c35a862070036e2df69, bc3d67c0658a7dd890c72c6bb896476014b65889, 3328d27dd5c1218c541baf9fd52cc981761867c8, 90d366cb68e06d42022f32065a568190b014a5fd, f5de401ce433e130cd2d1d015697bed544cf8654, 24c572a0727f8b2fe193b84024288b4b51bb3cef
wpt-pr: 13133
2018-09-27 09:56:07 +00:00
Ahilya Sinha
7da39973f5 Bug 1493510 [wpt PR 13177] - Check if platform is Windows before catching WindowsError, a=testonly
Automatic update from web-platform-testsCheck if platform is Windows before catching WindowsError

Check if the platform is Windows and the error is a WindowsError before
trying to run git.bat, as WindowsError is not defined in non-Windows.

Closes https://github.com/web-platform-tests/wpt/issues/12693

--

wpt-commits: 82d852bda1e08948858389c17402fa0571bc2584
wpt-pr: 13177
2018-09-27 09:56:07 +00:00
Robert Ma
51766e943f Bug 1493384 [wpt PR 13158] - Also ignore ERROR in slow test check, a=testonly
Automatic update from web-platform-testsAlso ignore ERROR in slow test check

Tweak the docstring accordingly to explain why.

--

wpt-commits: 130669061c6f4b475e1189ef107010966d686324
wpt-pr: 13158
2018-09-27 09:56:06 +00:00
jugglinmike
accc0b1c22 Bug 1493368 [wpt PR 13154] - [wptrunner] Fix support for --binary-arg in Fx, a=testonly
Automatic update from web-platform-tests[wptrunner] Fix support for `--binary-arg` in Fx (#13154)

In order to automate Firefox, wptrunner requires the browser's internal
module "Marionette" to be enabled. This is a requirement regardless of
any custom configuration specified by the user, including additional
command-line flags via the `--binary-arg` argument.

Previously, this project would omit the `-marionette` argument in the
presence of any user-specified arguments. Because this interferes with
normal operation (and because the source code is formatted in a way that
conflicts with the order of operations), this is likely an unintentional
behavior.

Modify the code which derives the command-line arguments to always
include the `-marionette` argument.

--

wpt-commits: 3a749a13168916563b9611528b18d0376f04aab1
wpt-pr: 13154
2018-09-27 09:56:06 +00:00
Yoav Weiss
e29cb99620 Bug 1493545 [wpt PR 13179] - [resource-timing] Add TAO test for multiple wildcards, a=testonly
Automatic update from web-platform-testsMerge pull request #13179 from yoavweiss/multiple_wildcard_test

[resource-timing] Add TAO test for multiple wildcards
--

wpt-commits: 3d117ae1266e6bd039a3a1ab92b27e82c3ccc92d
wpt-pr: 13179
2018-09-27 09:56:06 +00:00
autofoolip
7146c61e9c Bug 1493487 [wpt PR 13175] - Update interfaces/SVG.idl, a=testonly
Automatic update from web-platform-testsUpdate interfaces/SVG.idl (#13175)

Source: https://github.com/tidoust/reffy-reports/blob/7faca77/whatwg/idl/SVG.idl
Build: https://travis-ci.org/tidoust/reffy-reports/builds/432054136
--

wpt-commits: 61efc6b6063091fba52e182bc332a5815de0765c
wpt-pr: 13175
2018-09-27 09:56:05 +00:00
Michael[tm] Smith
c71e65eef0 Bug 1493460 [wpt PR 13172] - Unbreak html/dom/interfaces.https.html, a=testonly
Automatic update from web-platform-testsUnbreak html/dom/interfaces.https.html

This change makes /interfaces/touch-events.idl get fetched, rather
than /interfaces/touchevents.idl (which doesn't exist).

--

wpt-commits: 5d58e091e71aa3162fe9d0e40858351c8063ca08
wpt-pr: 13172
2018-09-27 09:56:05 +00:00
Darshan Kadu
172bf28320 Bug 1493454 [wpt PR 13171] - Grammar mistake in statement, a=testonly
Automatic update from web-platform-testsFix grammar mistake docs

--

wpt-commits: 6373d37ba456576bf14dd355455711f6438d5180
wpt-pr: 13171
2018-09-27 09:56:04 +00:00
Darshan Kadu
22130002cd Bug 1493130 [wpt PR 13135] - It must be "y coordinate" instead of x coordinate, a=testonly
Automatic update from web-platform-testsFix some typos in docs

--

wpt-commits: d519fc8376c846b631b0e40c40a8abd10e0bb1b8
wpt-pr: 13135
2018-09-27 09:56:04 +00:00
autofoolip
ffaec90556 Bug 1493442 [wpt PR 13169] - Update interfaces/picture-in-picture.idl, a=testonly
Automatic update from web-platform-testsUpdate interfaces/picture-in-picture.idl (#13169)

Source: https://github.com/tidoust/reffy-reports/blob/c1b283c/whatwg/idl/picture-in-picture.idl
Build: https://travis-ci.org/tidoust/reffy-reports/builds/431787852
--

wpt-commits: c9354ab5c1eb49408d44abeecd13fde133519ba9
wpt-pr: 13169
2018-09-27 09:56:04 +00:00
autofoolip
73ab34187f Bug 1493443 [wpt PR 13170] - Update interfaces/webaudio.idl, a=testonly
Automatic update from web-platform-testsUpdate interfaces/webaudio.idl (#13170)

Source: https://github.com/tidoust/reffy-reports/blob/c1b283c/whatwg/idl/webaudio.idl
Build: https://travis-ci.org/tidoust/reffy-reports/builds/431787852
--

wpt-commits: b17c53f398ac20d4ab4f023a31d465c9f4756a05
wpt-pr: 13170
2018-09-27 09:56:03 +00:00
jugglinmike
9e157c27ca Bug 1493409 [wpt PR 13163] - [service-workers] Return value in cleanup, a=testonly
Automatic update from web-platform-tests[service-workers] Return value in cleanup (#13163)

Previously, many tests un-registered service workers using the
testharness.js API `add_cleanup` without returning the promise which
tracked the operation. While this ensured the operation was started at
the completion of the test, it did not guarantee that the operation
would be completed before the test was considered "complete."

In automation scenarios where many tests are executed in rapid
succession, this enabled a race condition: the navigation could
interrupt the un-registration process. In order to account for the
possibility of registrations that persisted from previous test failures,
the tests included "setup" code to defensively un-register such workers.

The `Test#add_cleanup` method was recently extended to support
asynchronous "clean up" operations [1]. Use that API to ensure tests are
not considered "complete" until after service worker un-registration is
done.

[1] https://github.com/web-platform-tests/wpt/pull/8748
--

wpt-commits: 7897f9d5beff624590d2fc254d2a7eca6e2b1e8f
wpt-pr: 13163
2018-09-27 09:56:03 +00:00
Manuel Rego Casasnovas
c6cc61d0c2 Bug 1493387 [wpt PR 13159] - Fix the path of mplus-1p-regular.woff in all tests, a=testonly
Automatic update from web-platform-testsMerge pull request #13159 from web-platform-tests/fix-mplus-1p-regular

Fix the path of mplus-1p-regular.woff in all tests
--

wpt-commits: eb68211270c6deb66eb928799a75e6af3b8db1b0
wpt-pr: 13159
2018-09-27 09:56:02 +00:00
Fredrik Söderquist
39a1b6faab Bug 1493319 [wpt PR 13145] - Fix scrollIntoView(...) for SVG elements, a=testonly
Automatic update from web-platform-testsFix scrollIntoView(...) for SVG elements

AbsoluteBoundingBoxRectForScrollIntoView and associated helpers did not
compute the correct bounding box for SVG shapes (or anything but the SVG
root.)
Compute the bounding rect using the stroke bounding box.

Bug: 803440
Change-Id: If25ca98b686f17a0db699e569460cb4c276f06a0
Reviewed-on: https://chromium-review.googlesource.com/1238458
Reviewed-by: David Bokan <bokan@chromium.org>
Commit-Queue: Fredrik Söderquist <fs@opera.com>
Cr-Commit-Position: refs/heads/master@{#593306}

--

wpt-commits: b3ca0cee4b0772e615334e4155556ec254dab7b1
wpt-pr: 13145
2018-09-27 09:56:02 +00:00
Frank Liberato
18f3004d9a Bug 1493375 [wpt PR 13156] - Revert "bindings: Implement timers with V8Function", a=testonly
Automatic update from web-platform-testsRevert "bindings: Implement timers with V8Function"

This reverts commit 254369a5f6df06c2c6be067d14c2cb2a036ba173.

Reason for revert: <INSERT REASONING HERE>

Original change's description:
> bindings: Implement timers with V8Function
>
> This fixes bug 866610 by using the IDL infrastructure to properly enter
> the v8::Context before calling the registered callback.
>
> Also ensure eager finalization of ScheduledAction in DOMTimer to
> prevent a memory leak. Added two more effective DCHECKs to confirm.
>
> Bug: 866610
> Change-Id: I37d7bd05f035fe31856cfe68bae51aa0632cd3b1
> Reviewed-on: https://chromium-review.googlesource.com/1220486
> Reviewed-by: Nate Chapin <japhet@chromium.org>
> Reviewed-by: Yuki Shiino <yukishiino@chromium.org>
> Reviewed-by: Hitoshi Yoshida <peria@chromium.org>
> Commit-Queue: Timothy Gu <timothygu@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#593108}

TBR=peria@chromium.org,yukishiino@chromium.org,haraken@chromium.org,japhet@chromium.org,timothygu@chromium.org

Change-Id: Ifaccc3374466b851fc28b10c63ed1397bdae635e
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: 866610
Reviewed-on: https://chromium-review.googlesource.com/1239216
Reviewed-by: Frank Liberato <liberato@chromium.org>
Commit-Queue: Frank Liberato <liberato@chromium.org>
Cr-Commit-Position: refs/heads/master@{#593260}

--

wpt-commits: 45f38e4c17379c83be5533ff60697ac888d8eea7
wpt-pr: 13156
2018-09-27 09:56:01 +00:00
Robert Ma
1b83f3410e Bug 1493348 [wpt PR 13147] - [taskcluster] Run stable daily and beta weekly, a=testonly
Automatic update from web-platform-testsRun stable daily and beta weekly (#13147)

--

wpt-commits: 2719d8f09afffe1902b3c14e0fb6ae4ad96c0ba6
wpt-pr: 13147
2018-09-27 09:56:01 +00:00
Ian Kilpatrick
4fe2bd72dd Bug 1493039 [wpt PR 13130] - [css-layout-api] Move perform-child-layout tests to child-constraints, a=testonly
Automatic update from web-platform-tests[css-layout-api] Move perform-child-layout tests to child-constraints

As above, move similar tests into subdirectory, and apply minor
documentation cleanups.

Adds two new tests checking that setting an invalid (negative) available
size, clamps it to zero.

Bug: 726125
Change-Id: Id5bdfa25970a4e4bfe359377b88176043ab1f6c3
Reviewed-on: https://chromium-review.googlesource.com/1236266
Commit-Queue: Ian Kilpatrick <ikilpatrick@chromium.org>
Reviewed-by: Aleks Totic <atotic@chromium.org>
Reviewed-by: Morten Stenshorne <mstensho@chromium.org>
Cr-Commit-Position: refs/heads/master@{#593236}

--

wpt-commits: 80fa83f6ca3dc7039088afae9a908222b31f6aa4
wpt-pr: 13130
2018-09-27 09:56:01 +00:00
Ian Kilpatrick
1c857866d3 Bug 1493019 [wpt PR 13124] - [css-layout-api] Adds ability to specify percentage{Inline,Block}Size., a=testonly
Automatic update from web-platform-tests[css-layout-api] Adds ability to specify percentage{Inline,Block}Size.

This allows developers to specify the size which percentages in the
block (wrt child writing mode) direction should be resolved against.
Currently inline percentages still resolve against the available
inline-size.

This adds a "OverrideContainingBlockPercentageResolutionLogicalHeight"
field on layout box, which both the logic for
LayoutBox::ComputePercenatgeLogicalHeight and
LayoutBox::ComputeReplacedLogicalHeight use.

They follow similar logic to LayoutGrid, in that in quirks mode,
percentages are treated as indefinite (doesn't "walk-up" the tree).

Change-Id: I256381687d2eed7693a908074f7f5032d5963e2b
Reviewed-on: https://chromium-review.googlesource.com/1232206
Commit-Queue: Ian Kilpatrick <ikilpatrick@chromium.org>
Reviewed-by: Aleks Totic <atotic@chromium.org>
Cr-Commit-Position: refs/heads/master@{#593208}

--

wpt-commits: 159da2f8ef7c8259c7fc013cbfea2314e2dfdeeb
wpt-pr: 13124
2018-09-27 09:56:00 +00:00
Anders Hartvoll Ruud
15a086dfef Bug 1492964 [wpt PR 13120] - [css-properties-values-api] Use inherited value for substitution., a=testonly
Automatic update from web-platform-tests[css-properties-values-api] Use inherited value for substitution.

When a var()-reference produces tokens that are incompatible with the
current syntax, or the var()-reference refers to a variable that does not
exist, we currently always substitute the initial value, even for
inherited properties. This is incorrect, as the value should behave as
'unset', which means 'inherit' for inherited properties.

Note that if syntax-incompatible tokens are specified directly (not via a
var()-reference), we correctly behave as 'unset'. This is because the
var()-less case is handled by a different code path (variable.cc).

R=futhark@chromium.org

Bug: 641877
Change-Id: Ifdd5435ee77f4b8cd3998967713cb6fcb7e8d5f4
Reviewed-on: https://chromium-review.googlesource.com/1235579
Commit-Queue: Anders Ruud <andruud@chromium.org>
Reviewed-by: Rune Lillesveen <futhark@chromium.org>
Cr-Commit-Position: refs/heads/master@{#593145}

--

wpt-commits: 689968f390a8c5c897ab5c9fa0f6fe27a40b5cc3
wpt-pr: 13120
2018-09-27 09:56:00 +00:00
autofoolip
61af94fc93 Bug 1492727 [wpt PR 13097] - Update interfaces/payment-method-basic-card.idl, a=testonly
Automatic update from web-platform-testsUpdate interfaces/payment-method-basic-card.idl (#13097)

Source: https://github.com/tidoust/reffy-reports/blob/fb94b83/whatwg/idl/payment-method-basic-card.idl
Build: https://travis-ci.org/tidoust/reffy-reports/builds/431349655
--

wpt-commits: a515ab78d1dcb02899e5605421dd39f74218c474
wpt-pr: 13097
2018-09-27 09:55:59 +00:00
autofoolip
7558a1a212 Bug 1492728 [wpt PR 13098] - Update interfaces/payment-request.idl, a=testonly
Automatic update from web-platform-testsUpdate interfaces/payment-request.idl (#13098)

Source: https://github.com/tidoust/reffy-reports/blob/d22394f/whatwg/idl/payment-request.idl
Build: https://travis-ci.org/tidoust/reffy-reports/builds/430876511
--

wpt-commits: 637c9f7de5a21e8b7a4773c3f3ac16427de8226d
wpt-pr: 13098
2018-09-27 09:55:59 +00:00
autofoolip
1c459811b7 Bug 1492729 [wpt PR 13099] - Update interfaces/webrtc-stats.idl, a=testonly
Automatic update from web-platform-testsUpdate interfaces/webrtc-stats.idl (#13099)

Source: https://github.com/tidoust/reffy-reports/blob/d22394f/whatwg/idl/webrtc-stats.idl
Build: https://travis-ci.org/tidoust/reffy-reports/builds/430876511
--

wpt-commits: 9da31eb3b1053318f2c09541663bdf7d0069d794
wpt-pr: 13099
2018-09-27 09:55:59 +00:00
Ms2ger
42c4aea55c Bug 1489056 [wpt PR 12870] - Don't try to parse the contents of server errors in idl_test()., a=testonly
Automatic update from web-platform-testsDon't try to parse the contents of server errors in idl_test().

--

wpt-commits: af65cfb6db68e2b3255290ce8ec362376eb44efa
wpt-pr: 12870
2018-09-27 09:55:58 +00:00
autofoolip
08a608979c Bug 1493166 [wpt PR 13137] - Update interfaces/CSP.idl, a=testonly
Automatic update from web-platform-testsUpdate interfaces/CSP.idl (#13137)

Source: https://github.com/tidoust/reffy-reports/blob/fb94b83/whatwg/idl/CSP.idl
Build: https://travis-ci.org/tidoust/reffy-reports/builds/431349655
--

wpt-commits: c591e86be98acc033344fbf055abff3022139134
wpt-pr: 13137
2018-09-27 09:55:58 +00:00
François Beaufort
e5bfdc0783 Bug 1492150 [wpt PR 13048] - Add pictureInPictureWindow to enterpictureinpicture event., a=testonly
Automatic update from web-platform-testsAdd pictureInPictureWindow to enterpictureinpicture event.

This makes sure web developers can access to the PictureInPicture window
object when user agent initiates Picture-in-Picture. It does so by
adding a pictureInPictureWindow attribute to the existing
enterpictureinpicture event

Intent to ship: https://groups.google.com/a/chromium.org/d/msg/blink-dev/ibVPbqBQapU/Fgf307XJBgAJ

Change-Id: I46ce1f4047b670f49dd746e39c7e62efc1b4a135
Bug: 887856
Reviewed-on: https://chromium-review.googlesource.com/1228122
Commit-Queue: François Beaufort <beaufort.francois@gmail.com>
Reviewed-by: Jochen Eisinger <jochen@chromium.org>
Reviewed-by: Mounir Lamouri <mlamouri@chromium.org>
Cr-Commit-Position: refs/heads/master@{#593127}

--

wpt-commits: 33a9abd00e4a5169cb75ad6c32bb744b85027a0a
wpt-pr: 13048
2018-09-27 09:55:57 +00:00
Timothy Gu
812d69b907 Bug 1491459 [wpt PR 13012] - bindings: Implement timers with V8Function, a=testonly
Automatic update from web-platform-testsbindings: Implement timers with V8Function

This fixes bug 866610 by using the IDL infrastructure to properly enter
the v8::Context before calling the registered callback.

Also ensure eager finalization of ScheduledAction in DOMTimer to
prevent a memory leak. Added two more effective DCHECKs to confirm.

Bug: 866610
Change-Id: I37d7bd05f035fe31856cfe68bae51aa0632cd3b1
Reviewed-on: https://chromium-review.googlesource.com/1220486
Reviewed-by: Nate Chapin <japhet@chromium.org>
Reviewed-by: Yuki Shiino <yukishiino@chromium.org>
Reviewed-by: Hitoshi Yoshida <peria@chromium.org>
Commit-Queue: Timothy Gu <timothygu@chromium.org>
Cr-Commit-Position: refs/heads/master@{#593108}

--

wpt-commits: 4eaebdf70cbbbac6b95d757c424a879c1f980dac
wpt-pr: 13012
2018-09-27 09:55:57 +00:00
moz-wptsync-bot
31c396d7ca Bug 1486350 [wpt PR 12684] - Update wpt metadata, a=testonly
wpt-pr: 12684
wpt-type: metadata
2018-09-27 09:55:57 +00:00
Marcos Cáceres
b978b52645 Bug 1486350 [wpt PR 12684] - Remove languageCode tests, a=testonly
Automatic update from web-platform-testsRemove languageCode tests (#12684)

--

wpt-commits: ab1c11787a91e8ad8a6129e24ab6f881d5c0b2e2
wpt-pr: 12684
2018-09-27 09:55:56 +00:00
Marcos Cáceres
f7e0664c73 Bug 1493110 [wpt PR 13134] - fix: incorrectly named test, a=testonly
Automatic update from web-platform-testsfix: incorrectly named test (#13134)

--

wpt-commits: 50ff4f970fd8592a9f436d4e86e7d572de143260
wpt-pr: 13134


--HG--
rename : testing/web-platform/tests/payment-request/payment-response/onpayerdetailchange-attribute.manual.https.html => testing/web-platform/tests/payment-request/payment-response/onpayerdetailchange-attribute-manual.https.html
2018-09-27 09:55:56 +00:00
moz-wptsync-bot
427e28485f Bug 1492718 [wpt PR 13094] - Update wpt metadata, a=testonly
wpt-pr: 13094
wpt-type: metadata
2018-09-27 09:55:55 +00:00
Eric Willigers
606c858c93 Bug 1492718 [wpt PR 13094] - [css-masking] Inheritance and initial values, a=testonly
Automatic update from web-platform-tests[css-masking] Inheritance and initial values (#13094)

Test that CSS Masking properties inherit.
Test their initial values match the spec.

https://drafts.fxtf.org/css-masking-1/#property-index
--

wpt-commits: f0ef29b3f9d01cd3278fdaef67c323370a3a8f72
wpt-pr: 13094
2018-09-27 09:55:55 +00:00
moz-wptsync-bot
78b933afb5 Bug 1492715 [wpt PR 13093] - Update wpt metadata, a=testonly
wpt-pr: 13093
wpt-type: metadata
2018-09-27 09:55:54 +00:00
Eric Willigers
1c0171ef63 Bug 1492715 [wpt PR 13093] - [css-writing-modes] Inheritance and initial values, a=testonly
Automatic update from web-platform-tests[css-writing-modes] Inheritance and initial values (#13093)

Test that CSS Writing Modes properties inherit.
Test that initial values match the spec.
https://drafts.csswg.org/css-writing-modes-3/#property-index
--

wpt-commits: 90e5630bfa70bc56a450c4584f44846ccc123d88
wpt-pr: 13093
2018-09-27 09:55:54 +00:00
moz-wptsync-bot
7e3aef1d12 Bug 1492714 [wpt PR 13092] - Update wpt metadata, a=testonly
wpt-pr: 13092
wpt-type: metadata
2018-09-27 09:55:54 +00:00
Eric Willigers
83409d2738 Bug 1492714 [wpt PR 13092] - [css-break] Inheritance and initial values, a=testonly
Automatic update from web-platform-tests[css-break] Inheritance and initial values (#13092)

Test inheritance and initial values of properties
defined by CSS Fragmentation.
https://drafts.csswg.org/css-break/#property-index
--

wpt-commits: e441850483b6f68a7335ee69920f5d7758e89bef
wpt-pr: 13092
2018-09-27 09:55:53 +00:00
Richard Townsend
4f6eae703f Bug 1492502 [wpt PR 13077] - Revert "Revert "[css-tables] Force layout when colgroups are removed or added"", a=testonly
Automatic update from web-platform-testsRevert "Revert "[css-tables] Force layout when colgroups are removed or added""

Fixes an uninitialised variable caught by MSAN.

This reverts commit 66a74d2f7e1b369ce086c3c41ee089d72f3d0018.

Change-Id: I1e896476fe201fb05072970220bab5c3b20588a2
Reviewed-on: https://chromium-review.googlesource.com/1233746
Commit-Queue: David Grogan <dgrogan@chromium.org>
Reviewed-by: Emil A Eklund <eae@chromium.org>
Reviewed-by: David Grogan <dgrogan@chromium.org>
Cr-Commit-Position: refs/heads/master@{#592938}

--

wpt-commits: a25aa4b1f3ef9011ee30ecffe7203157d72ae5ae
wpt-pr: 13077
2018-09-27 09:55:53 +00:00
moz-wptsync-bot
9b0284e1ef Bug 1492354 [wpt PR 13068] - Update wpt metadata, a=testonly
wpt-pr: 13068
wpt-type: metadata
2018-09-27 09:55:52 +00:00
Eric Willigers
36dcef3adb Bug 1492354 [wpt PR 13068] - [css-shapes] Inheritance and initial values, a=testonly
Automatic update from web-platform-tests[css-shapes] Inheritance and initial values (#13068)

Test that CSS Shapes properties are not inherited.
Ttest the initial values match the spec.
https://drafts.csswg.org/css-shapes/#property-index
--

wpt-commits: 9f97edb27e139e3ceda1b234016151170bd41172
wpt-pr: 13068
2018-09-27 09:55:52 +00:00
moz-wptsync-bot
e70efa9c85 Bug 1492320 [wpt PR 13063] - Update wpt metadata, a=testonly
wpt-pr: 13063
wpt-type: metadata
2018-09-27 09:55:52 +00:00
Tab Atkins Jr
0c3e6a2bf7 Bug 1492320 [wpt PR 13063] - [css-contain] Inheritance and initial value, a=testonly
Automatic update from web-platform-testsMerge pull request #13063 from ewilligers/contain-inheritance

[css-contain] Inheritance and initial value
--

wpt-commits: 7930fceb0110a8309e39fcbc34b6ef6a5d4f583e
wpt-pr: 13063
2018-09-27 09:55:51 +00:00
moz-wptsync-bot
ac57a1be0d Bug 1492314 [wpt PR 13060] - Update wpt metadata, a=testonly
wpt-pr: 13060
wpt-type: metadata
2018-09-27 09:55:51 +00:00
Tab Atkins Jr
b1ca927595 Bug 1492314 [wpt PR 13060] - [css-display] Inheritance and initial value, a=testonly
Automatic update from web-platform-testsMerge pull request #13060 from ewilligers/display-inheritance

[css-display] Inheritance and initial value
--

wpt-commits: 479f20992ddd32505d130c9a140844dc8228c3c7
wpt-pr: 13060
2018-09-27 09:55:50 +00:00
Navid Zolghadr
18b3d120f3 Bug 1492300 [wpt PR 13059] - Use NotFoundError instead of InvalidPointerId, a=testonly
Automatic update from web-platform-testsUse NotFoundError instead of InvalidPointerId

This cl follows the new pointerevent spec which
uses more common WebIDL specified exception
NotFoundError instead of defining new
InvalidPointerId exception.

Bug: 885321
Change-Id: I28e946ffcb96c9fb4f70c76a4b9c09be620f981d
Reviewed-on: https://chromium-review.googlesource.com/1231990
Reviewed-by: Dave Tapuska <dtapuska@chromium.org>
Reviewed-by: Ella Ge <eirage@chromium.org>
Reviewed-by: Yuki Shiino <yukishiino@chromium.org>
Commit-Queue: Navid Zolghadr <nzolghadr@chromium.org>
Cr-Commit-Position: refs/heads/master@{#592903}

--

wpt-commits: c73ea25fec2bcede3bb0f622c4b9fc5076e7ff62
wpt-pr: 13059
2018-09-27 09:55:50 +00:00
Manuel Rego Casasnovas
a1b3555394 Bug 1493048 [wpt PR 13131] - Fix syntax and typos in tests from #12956, a=testonly
Automatic update from web-platform-testsMerge pull request #13131 from Loirooriol/css-computed-insets-fix

Fix syntax and typos in tests from #12956
--

wpt-commits: 6718d7d67d65a2d3073bd29783f4ec6b76d47be8
wpt-pr: 13131
2018-09-27 09:55:50 +00:00
Robert Ma
510bcc9b04 Bug 1493035 [wpt PR 13129] - [doc] Update doc regarding exp. features on Chrome, a=testonly
Automatic update from web-platform-testsUpdate doc regarding exp. features on Chrome

Following https://github.com/web-platform-tests/wpt/pull/13011, `wpt`
automatically turns on experimental web platform features on Chrome if
the channel is "dev". Update the doc to reflect this change.

--

wpt-commits: b0ea10809d150e8492bb20df51583e16a2f4f1ac
wpt-pr: 13129
2018-09-27 09:55:49 +00:00
jugglinmike
4f6ec3785a Bug 1492329 [wpt PR 13064] - [service-workers] Correct typo, a=testonly
Automatic update from web-platform-tests[service-workers] Correct typo (#13064)

* [service-workers] Correct typo

--

wpt-commits: b1e8aea07466c3d644daaf0c80d6157adf62f4be
wpt-pr: 13064
2018-09-27 09:55:49 +00:00
jugglinmike
9f26ac6017 Bug 1492021 [wpt PR 13043] - [service-workers] Refactor tautological tests, a=testonly
Automatic update from web-platform-tests[service-workers] Refactor tautological tests (#13043)

* [service-workers] Refactor tautological tests

Previously, these tests created Promise values which would be fulfilled
even when expectations were violated. This would cause the test harness
to interpret them as "passing" regardless of implementation status.

Remove the use of `Promise.prototype.catch` to ensure that promise
rejections which occur during test execution lead to test failure.

--

wpt-commits: 3411e4bff0a7c875811e65398472cc6403619476
wpt-pr: 13043
2018-09-27 09:55:48 +00:00
Tab Atkins Jr
71d8614fd2 Bug 1492934 [wpt PR 13116] - [css-lists] Inheritance and initial values, a=testonly
Automatic update from web-platform-testsMerge pull request #13116 from ewilligers/list-inheritance

[css-lists] Inheritance and initial values
--

wpt-commits: 1a9f229c3c79f07e7d615f8e41e6021c3e2587f7
wpt-pr: 13116
2018-09-27 09:55:48 +00:00
Mike Pennisi
e49858d0ad Bug 1493025 [wpt PR 13126] - [docs] Remove obviated instructions, a=testonly
Automatic update from web-platform-tests[docs] Remove obviated instructions

As of [1], the WPT CLI automatically inserts the
`--use-fake-ui-for-media-stream` and
`--use-fake-device-for-media-stream` arguments for the Chrome browser.

[1] a4eaa46ffebe5785562b930316a300423f23707e

--

wpt-commits: 70ca025c50fb6dc3b2f828de062e412d7897daf8
wpt-pr: 13126
2018-09-27 09:55:48 +00:00