Commit Graph

35722 Commits

Author SHA1 Message Date
Florin Strugariu
da775a1209 Bug 1559929 Re-record slides desktop tp6 pages using mitmproxy 4 r=perftest-reviewers,AlexandruIonescu
Differential Revision: https://phabricator.services.mozilla.com/D35519

--HG--
extra : moz-landing-system : lando
2019-06-25 10:25:24 +00:00
Florin Strugariu
1b0ff14373 Bug 1559928 Re-record docs desktop tp6 pages using mitmproxy 4 r=perftest-reviewers,AlexandruIonescu
Differential Revision: https://phabricator.services.mozilla.com/D35518

--HG--
extra : moz-landing-system : lando
2019-06-25 10:26:39 +00:00
Ciure Andrei
7e158713cf Merge inbound to mozilla-central. a=merge 2019-06-25 12:39:48 +03:00
Daniel Holbert
395362fcd6 Bug 1544432 part 2: Add WPT for text being scaled up via SVG viewBox. r=longsonr
--HG--
extra : rebase_source : f1bf953add83bbe6781112eee0973bdc59239f15
2019-06-21 10:16:08 -07:00
Charlie Marlow
c0b881c1d5 Bug 1440014: Part 2: Added reftests for text-decoration-width r=dholbert
Differential Revision: https://phabricator.services.mozilla.com/D34943

--HG--
extra : moz-landing-system : lando
2019-06-25 20:09:03 +00:00
Mihai Alexandru Michis
c97c5547e7 Backed out changeset 7423f5bc275c (bug 1552578) for causing failures in test_marker_restrictions.html. CLOSED TREE 2019-06-27 05:52:48 +03:00
Mihai Alexandru Michis
cc9e91253e Backed out 2 changesets (bug 1528031) for causing crashtests to time out. CLOSED TREE
Backed out changeset 27ce9b212d26 (bug 1528031)
Backed out changeset 0a18aa212ee6 (bug 1528031)
2019-06-27 05:45:20 +03:00
Emilio Cobos Álvarez
5fa55a81bc Bug 1552578 - Restrict properties that apply to ::marker for now. r=dbaron
Differential Revision: https://phabricator.services.mozilla.com/D31680

--HG--
extra : moz-landing-system : lando
2019-06-27 00:53:45 +00:00
Cameron McCormack
744961c65a Bug 1554571 - Part 4: Add perf-reftest singleton for anonymous content style caching. r=emilio
On my machine this test takes ~5200 ms with the anonymous content style
caching pref disabled, and ~1000 ms with it enabled.

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

--HG--
extra : moz-landing-system : lando
2019-06-27 00:25:05 +00:00
Kagami Sascha Rosylight
fb9f61bd7d Bug 1397949: Mark all arguments as optional on DOMMatrix translate*()/skew*() r=bzbarsky
The spec allows zero argument calls, so this change implements it. Try: https://treeherder.mozilla.org/#/jobs?repo=try&revision=94b2eb5869ae41e431c9e277abb62b5a19a69579

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

--HG--
extra : moz-landing-system : lando
2019-06-26 23:27:55 +00:00
Connor Brewster
cd692640d2 Bug 1555165 - Part 2: Update backdrop-filter WPT tests and expectations r=boris
Differential Revision: https://phabricator.services.mozilla.com/D36062

--HG--
extra : moz-landing-system : lando
2019-06-26 19:53:24 +00:00
Geoff Brown
95706218a2 Bug 1557152 - [mozdevice] Retry mkdir check for directory existence; r=bc
This effectively avoids the mkdir failures I see with the 29.0.11 emulator
on packet.net with Android 7.0 x86_64. I hate to add this sort of complication
but it really helps clear the way for an otherwise useful upgrade.

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

--HG--
extra : moz-landing-system : lando
2019-06-26 22:45:11 +00:00
Mihai Alexandru Michis
9852c55d11 Backed out 5 changesets (bug 1559982, bug 1559975) for cpp unit test failures due to unsupported operand type. CLOSED TREE
Backed out changeset 2309aac6cea3 (bug 1559975)
Backed out changeset bf5a6d853abd (bug 1559975)
Backed out changeset 0c36f78c971a (bug 1559975)
Backed out changeset 0560cf7df7dc (bug 1559975)
Backed out changeset 4cb64ca524e7 (bug 1559982)
2019-06-27 02:03:31 +03:00
Emilio Cobos Álvarez
fc7fce15f7 Bug 1547231 - Make mapped aspect-ratio get reflected in images. r=dholbert
Differential Revision: https://phabricator.services.mozilla.com/D29039

--HG--
extra : moz-landing-system : lando
2019-06-26 22:10:08 +00:00
Hiroyuki Ikezoe
099b3c3985 Bug 1515898 - Unmark a failure test in scroll-to-the-fragment-in-shadow-tree.html on Android. r=emilio
Emilio has already fixed this failure cause in bug 1511625.

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

--HG--
extra : moz-landing-system : lando
2019-06-26 21:54:42 +00:00
Hiroyuki Ikezoe
b14c7c928c Bug 1560237 - Don't propagate scroll-behavior from <body>. r=botond
From the CSSOM View spec[1];

 The scroll-behavior property of the HTML body element is not propagated to
 the viewport.

The reason why this change fixes the test case in this commit is that we don't
have two different scrollable frames for <html> and <body> respectively if we
don't propagate scroll-behavior property from <body> to <html> so that we can
properly find the `flow root` of sticky position elements.

In other words, in the case where both of <html> and <body> have properties
that are propagated from <body> but they are different we have two scrollable
frames as a candidate of the 'flow root' for the sticky position element in
the test case, one is the scrollable frame for <html> and the other is the
scrollable frame for <body>.  That means that
nsLayoutUtils::GetNearestScrollableFrame doesn't return what we want in some
places, for example we have a pretty similar issue in case of
overscroll-behavior which is bug 1561107.

Note that the test position-sticky-root-scroller-with-scroll-behavior.html is
almost copy-and-pasted from
/css/css-position/position-sticky-root-scroller.html [2] in wpt, the reason why
we put the test in /css/cssom-view is that there is a handy function to wait
for async scroll completion.

[1] https://drafts.csswg.org/cssom-view/#propdef-scroll-behavior
[2] https://searchfox.org/mozilla-central/rev/928742d3ea30e0eb4a8622d260041564d81a8468/testing/web-platform/tests/css/css-position/position-sticky-root-scroller.html

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

--HG--
extra : moz-landing-system : lando
2019-06-26 20:57:05 +00:00
Jan-Ivar Bruaroey
4abced2ba4 Bug 1528031 - Require [SecureContext] for navigator.mediaDevices & navigator.mozGetUserMedia(). r=pehrsons,smaug
Differential Revision: https://phabricator.services.mozilla.com/D33836

--HG--
extra : moz-landing-system : lando
2019-06-26 18:15:23 +00:00
Gabriele Svelto
c72fd9d25d Bug 1540784 - Re-enable marionette tests that depend on the crash reporter on Windows/AArch64 r=jmaher
Differential Revision: https://phabricator.services.mozilla.com/D35994

--HG--
extra : moz-landing-system : lando
2019-06-26 12:50:45 +00:00
Marco Castelluccio
ed545ba83e Bug 1559975 - Add future imports to testing/remotecppunittests.py and testing/runcppunittests.py and remove them from py2 exclusion list r=ahal
Differential Revision: https://phabricator.services.mozilla.com/D35246

--HG--
extra : moz-landing-system : lando
2019-06-26 15:31:24 +00:00
Marco Castelluccio
cad5dfda57 Bug 1559975 - Fix py3 lint issues in testing/firefox-ui and enable py3 linter r=ahal
Differential Revision: https://phabricator.services.mozilla.com/D35244

--HG--
extra : moz-landing-system : lando
2019-06-26 18:25:18 +00:00
Chris Manchester
89a6a2647d Bug 1559982 - Make testing/gtest importable with python 3. r=ahal
Differential Revision: https://phabricator.services.mozilla.com/D35245

--HG--
extra : moz-landing-system : lando
2019-06-24 21:20:43 +00:00
Nicholas Hurley
281d858112 Bug 1502555 - Match oppsec .wk format to rfc. r=dragana
Differential Revision: https://phabricator.services.mozilla.com/D35136

--HG--
extra : moz-landing-system : lando
2019-06-26 11:44:36 +00:00
Cameron McCormack
bfd623a7dd Bug 1554571 - Part 4: Add perf-reftest singleton for anonymous content style caching. r=emilio
On my machine this test takes ~5200 ms with the anonymous content style
caching pref disabled, and ~1000 ms with it enabled.

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

--HG--
extra : moz-landing-system : lando
2019-06-27 07:22:23 +00:00
Boris Zbarsky
8c4e35413a Bug 1559008. Load catalog DTDs even if we don't have a useful DTD URI, since we ignore that URI anyway when we find a catalog DTD. r=peterv
Differential Revision: https://phabricator.services.mozilla.com/D34815

--HG--
extra : moz-landing-system : lando
2019-06-24 12:45:22 +00:00
Emilio Cobos Álvarez
e17f48773e Bug 1559627 - More reliably detect position changes during reframe. r=rhunt
Differential Revision: https://phabricator.services.mozilla.com/D35157

--HG--
extra : moz-landing-system : lando
2019-06-24 15:44:21 +00:00
Ionut Goldan
a86a9729c8 Bug 1559942 - Re-record twitter.com desktop tp6 pages using mitmproxy 4 r=perftest-reviewers,Bebe,AlexandruIonescu
Differential Revision: https://phabricator.services.mozilla.com/D35406

--HG--
extra : moz-landing-system : lando
2019-06-24 08:51:34 +00:00
Ionut Goldan
9dee7ab691 Bug 1559933 - Re-record imdb.com desktop tp6 pages using mitmproxy 4 r=perftest-reviewers,Bebe,AlexandruIonescu,alexandru.irimovici
Differential Revision: https://phabricator.services.mozilla.com/D35409

--HG--
extra : moz-landing-system : lando
2019-06-24 10:45:45 +00:00
Henrik Skupin
9dc70ca9a6 Bug 1560588 - [marionette] Fix focus handling in open_chrome_window() for WindowManagerMixin. r=webdriver-reviewers,ato
Differential Revision: https://phabricator.services.mozilla.com/D35579

--HG--
extra : moz-landing-system : lando
2019-06-24 09:28:46 +00:00
Bastien Orivel
761235d949 Bug 1396824 - Part 1: Replace the webdriver router by warp. r=ato
This allows for easy support for HEAD requests without any code on our
side.

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

--HG--
extra : moz-landing-system : lando
2019-06-24 09:26:59 +00:00
James Graham
937ce36ee1 Bug 1545143 - Add --full flag for wpt-update for updating with a full set of results, r=maja_zf
This has different behaviour from the regular update in a couple of
ways:
* It doesn't try to preserve existing conditionals that didn't match
  anything in the results
* It removes subtests that are no longer present in the data set.

As such this is an appropriate mode to use when you have a try push
covering all the possible platforms, or when you are confident there
are no per-platform differences.

As part of this work, the code for updating the conditionals was
refactored to be clearer, and a bunch of tests were added to ensure
that it continues to work correctly.

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

--HG--
extra : moz-landing-system : lando
2019-06-24 08:54:38 +00:00
James Graham
5022fc67bd Bug 1469893 - Make the metadata update generate more compact conditionals, r=maja_zf
Previously the wpt metadata update code generated rather conservative
conditionals, simply inclusing every possible condition unless all the
tests had the same outcome or similar. This isn't very nice to read
and makes the metadata rather fragile to changes in the configuration.

A better approach is to build a decision tree from the metadata,
choosing the properties to split on using a simple greedy algorithm,
as follows:

 * Given a set of test results, associated run_info_properties and
   properties that we want to use, partition the test results by each
   property we are using in turn.

 * For each partition, generate a score for how uniform the results
   are in each subset after partition. The score should be good if the
   partition results in small numbers of groups with mostly uniform
   test results and bad if it results in a large number of groups or
   groups with a mix of test results. For this we adopt a metric based
   on the Shannon entropy.

 * Chose the partition resulting in the best score, and use that as a
   condition in the tree.

 * Recursively reapply the algorithm to each group that's been
   created.

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

--HG--
extra : moz-landing-system : lando
2019-06-24 08:54:11 +00:00
Alexandru Irimovici
6d181cc6b2 Bug 1559936 - Re-record apple.com desktop tp6 pages using mitmproxy 4 r=perftest-reviewers,AlexandruIonescu,Bebe
Differential Revision: https://phabricator.services.mozilla.com/D35530

--HG--
extra : moz-landing-system : lando
2019-06-24 08:41:16 +00:00
Alexandru Irimovici
440c0d0210 Bug 1559935 - Re-record bing.com desktop tp6 pages using mitmproxy 4 r=perftest-reviewers,Bebe,AlexandruIonescu
Differential Revision: https://phabricator.services.mozilla.com/D35524

--HG--
extra : moz-landing-system : lando
2019-06-24 08:33:04 +00:00
Boris Chiou
fe3b7d1fcb Bug 1547533 - Update ResizeObserver tests on <img>. r=dholbert
Looks like onload event is not enough, so we still have intermittents.

Based on the suggestion in html spec:
https://html.spec.whatwg.org/multipage/embedded-content.html#dom-img-decode

We decode the image in parallel, and only inserting it into the DOM (and thus
causing it to be painted) once the decoding process is complete.

Because the decode() method attempts to ensure that the decoded image data is
available for at least one frame, it can be combined with the
requestAnimationFrame() API. This means it can be used with coding styles or
frameworks that ensure that all DOM modifications are batched together as
animation frame callbacks.

Hope this could reduce the occurrence rate of this intermittent.

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

--HG--
extra : moz-landing-system : lando
2019-06-25 18:10:04 +00:00
Arnold Iakab
f82e56ab72 Bug 1541385 Undefined behavior for None as timeout value r=perftest-reviewers,igoldan
Differential Revision: https://phabricator.services.mozilla.com/D32317

--HG--
extra : moz-landing-system : lando
2019-06-18 09:21:30 +00:00
Arnold Iakab
e4eef887bc Bug 1559937 Re-record reddit.com desktop tp6 pages using mitmproxy 4 r=perftest-reviewers,Bebe
Differential Revision: https://phabricator.services.mozilla.com/D35407

--HG--
extra : moz-landing-system : lando
2019-06-20 12:52:03 +00:00
Arnold Iakab
bcfe5b8569 Bug 1559939 Re-record yahoo.com desktop tp6 pages using mitmproxy 4 r=perftest-reviewers,Bebe,alexandru.irimovici
Differential Revision: https://phabricator.services.mozilla.com/D35405

--HG--
extra : moz-landing-system : lando
2019-06-24 08:31:48 +00:00
Florin Strugariu
45daa4fe3f Bug 1560266 Cleanup raptor tp6-1 manifest file after rerecordings r=AlexandruIonescu
Differential Revision: https://phabricator.services.mozilla.com/D35408

--HG--
extra : moz-landing-system : lando
2019-06-21 11:45:02 +00:00
Florin Strugariu
3b8549864f Bug 1559925 Re-record amazon.com desktop tp6 pages using mitmproxy 4 r=AlexandruIonescu
Differential Revision: https://phabricator.services.mozilla.com/D35323

--HG--
extra : moz-landing-system : lando
2019-06-21 12:05:38 +00:00
Florin Strugariu
9ffadd41b5 Bug 1559922 Re-record facebook.com desktop tp6 pages using mitmproxy 4 r=AlexandruIonescu
Differential Revision: https://phabricator.services.mozilla.com/D35322

--HG--
extra : moz-landing-system : lando
2019-06-21 10:54:12 +00:00
Florin Strugariu
f4a7cf6309 Bug 1559924 Re-record youtube.com desktop tp6 pages using mitmproxy 4 r=perftest-reviewers,AlexandruIonescu,alexandru.irimovici
Differential Revision: https://phabricator.services.mozilla.com/D35319

--HG--
extra : moz-landing-system : lando
2019-06-24 08:23:28 +00:00
Florin Strugariu
8c28c081f2 Bug 1559918 Re-record google.com desktop tp6 pages using mitmproxy 4 r=perftest-reviewers,AlexandruIonescu
Differential Revision: https://phabricator.services.mozilla.com/D35318

--HG--
extra : moz-landing-system : lando
2019-06-24 08:25:02 +00:00
alexandru.ionescu
2d66061d8f Bug 1559949 Re-record wikipedia.org desktop tp6 pages using mitmproxy 4 r=perftest-reviewers,alexandru.irimovici
Differential Revision: https://phabricator.services.mozilla.com/D35511

--HG--
extra : moz-landing-system : lando
2019-06-24 07:42:25 +00:00
violet
75f6c6ddaa Bug 1560828 - paint-order parsing has off-by-one error r=emilio
A couple of firefox only WPT failure caused by this off-by-one bug.

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

--HG--
extra : moz-landing-system : lando
2019-06-24 04:07:42 +00:00
violet
59ab77300a Bug 1529572 - Should resolve absolute units r=longsonr
Firefox only failure.

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

--HG--
extra : moz-landing-system : lando
2019-06-23 12:51:05 +00:00
violet
8a8f7223a9 Bug 1557563 - Add computed value ZeroToOneNumber r=emilio,birtles
Correctly handle clamping to 1 behavior of grayscale(),
invert(), opacity() and sepia().

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

--HG--
extra : moz-landing-system : lando
2019-06-23 23:01:47 +00:00
Brindusan Cristian
215c57d27d Merge inbound to mozilla-central. a=merge 2019-06-24 00:47:59 +03:00
Emilio Cobos Álvarez
ede1bad1f0 Bug 1536871 - Enable layout.css.line-height.normal-as-resolved-value.enabled on getComputedStyle-line-height.html. r=me 2019-06-23 18:55:03 +02:00
Cosmin Sabou
6c9fa41187 Bug 1560324 - Disable test on Android !debug for frequent failures. a=testonly 2019-06-23 15:45:35 +03:00
Emilio Cobos Álvarez
ef914bd2f8 Bug 1559094 - Restore old behavior for background-size: cover + zero-sized background positioning area. r=dholbert
This restores our previous and per-spec behavior. Comparing only ratios was not
correct in the case one of the dimensions was zero and thus not scaled.

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

--HG--
extra : moz-landing-system : lando
2019-06-23 10:08:16 +00:00
Razvan Maries
5df6d6e3ce Merge mozilla-central to autoland. a=merge on a CLOSED TREE 2019-06-23 00:49:16 +03:00
Razvan Maries
2a9b886a7c Merge mozilla-inbound to mozilla-central a=merge 2019-06-23 00:44:35 +03:00
Daniel Holbert
3d83ddc5c5 Bug 1558849: Temporarily disable web-platform-test ruby-inlinize-blocks-002.html on more categories of Windows testers. (no review, test-annotation-only)
This test is known intermittent on windows. It's already annotated to be
disabled for some categories of Windows testers, but that annotation was overly
specific.

I've already fixed the "upstream" version of this test (the version in
layout/reftests), so the intermittent failure will stop once that fix has been
synchronized around.  But in the meantime, let's adjust the annotation so that
it includes Win10 64-bit testers, so we don't get intermittent failures for
those testers.

--HG--
extra : amend_source : c815ae1200e6a615f932ddf36fba6f8a7a039500
2019-06-22 09:48:24 -07:00
Dorel Luca
543e1fbd04 Merge mozilla-inbound to mozilla-central. a=merge 2019-06-22 12:38:29 +03:00
Boris Chiou
88447089e6 Bug 1560198 - Fix the serialization of the computed value of background-size. r=emilio
This patch produces the following serialization:
```
    input      |  computed value
  ------------------------------
1. "auto"            "auto"
2. "auto auto"       "auto"
3. "15px auto"       "15px"
4. "15px"            "15px"
```
i.e. If the second value is 'auto', then it's omitted from our serialization,
because it's implied.

Besides, we update the wpt to address this spec issue:
https://github.com/w3c/csswg-drafts/issues/2574

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

--HG--
extra : moz-landing-system : lando
2019-06-21 21:48:54 +00:00
Geoff Brown
46ae70c525 Bug 1560162 - Handle psutil exception in 'mach android-emulator'; r=denschub
I haven't reproduced this failure myself, but this change *should* help.

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

--HG--
extra : moz-landing-system : lando
2019-06-21 20:07:20 +00:00
Mihai Alexandru Michis
68de945c39 Bug 1557518 - Expect attachment-scroll-positioning-1.html to pass on Windows 10 AArch64 opt. r=jgraham
Differential Revision: https://phabricator.services.mozilla.com/D35329

--HG--
extra : moz-landing-system : lando
2019-06-21 17:18:58 +00:00
Andreea Pavel
bc764309ea Bug 1559494 - disabled new_window_null.tentative.html on android r=jmaher
Differential Revision: https://phabricator.services.mozilla.com/D35410

--HG--
extra : moz-landing-system : lando
2019-06-20 17:02:27 +00:00
Emilio Cobos Álvarez
b301149caa Bug 1536871 - Make 'line-height: normal' return the 'normal' keyword from getComputedStyle() on Nightly and Early Beta, for now. r=dholbert
Differential Revision: https://phabricator.services.mozilla.com/D25119

--HG--
extra : moz-landing-system : lando
2019-06-14 09:01:44 +00:00
Emilio Cobos Álvarez
35c4440f0b Back out changeset 7ae44e68ef10 (Bug 1559094) for landing too soon, since I understand what the spec is trying to say now. r=me 2019-06-22 12:23:26 +02:00
Emilio Cobos Álvarez
65347f45e1 Bug 1559094 - Restore old behavior for background-size: cover + zero-height background positioning area. r=dholbert
This restores our previous behavior and adds a .tentative test because I
couldn't see how the spec makes any sense.

Filed https://github.com/w3c/csswg-drafts/issues/4049 about that.

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

--HG--
extra : moz-landing-system : lando
2019-06-22 00:47:45 +00:00
Dorel Luca
03174fc965 Merge mozilla-central to autoland 2019-06-22 12:47:00 +03:00
violet
ea5e6c4b2b Bug 1529571 - Use in rather than hasOwnProperty to check property support r=heycam
This test is supposed to check CSS property support, but using
hasOwnProperty() is causing a lot of false positive because
hasOwnProperty() doesn't go up the proto chain even if the property
is actually supported.

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

--HG--
extra : moz-landing-system : lando
2019-06-21 20:16:34 +00:00
Maja Frydrychowicz
b9cf78e459 Bug 1553046 - Update wpt metadata for webvtt tests that crash. r=alwu
Differential Revision: https://phabricator.services.mozilla.com/D35475

--HG--
extra : moz-landing-system : lando
2019-06-22 06:36:53 +00:00
Maja Frydrychowicz
ae1c620602 Bug 1553046 - Disable more tests under webvtt/rendering/cues-with-video/processing-model; a=testonly
--HG--
extra : rebase_source : e6d590cfbc5fd09022f912f9f2179899c28229fe
2019-06-26 16:29:04 -04:00
longsonr
020fd563bd Bug 1295404 - Remove requiredFeatures from SVGTests r=dholbert r=bzbarsky 2019-06-26 19:51:12 +01:00
Joel Maher
aaf230b4c9 Bug 1561119 - adjust test expectations for osx 10.14.5. r=egao
adjust test expectations for osx 10.14.5

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

--HG--
extra : moz-landing-system : lando
2019-06-24 23:42:35 +00:00
Boris Chiou
75dcf29f96 Bug 1552352 - Add extended attributes to CSSKeyframeRule.style. r=smaug
Add `SameObject` and `PutForwards=cssText` to style attribute.
It's ok to add SameObject directly because we always return the same
data member after creating.

Besides, there is no need to manually update cpp function to support
PutForwards, so this update should be fine.

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

--HG--
extra : moz-landing-system : lando
2019-06-24 20:22:46 +00:00
James Graham
2b43c4a757 Bug 1560960 - Fix waiting for wpt servers to start, r=whimboo
Differential Revision: https://phabricator.services.mozilla.com/D35658

--HG--
extra : moz-landing-system : lando
2019-06-24 20:13:13 +00:00
Mats Palmgren
af1b0f2a42 Bug 1560460 - Build display items for an outside ::marker before child content to get the correct paint order. r=emilio
Differential Revision: https://phabricator.services.mozilla.com/D35553

--HG--
extra : rebase_source : d58d4bbede2252f010e7528cab0bacfff4932efb
2019-06-21 05:20:51 +02:00
Nikki Sharpley
26fdbae6fa Bug 1555014 - Update wptreport formatter to support new mozlog test field; known_intermittent r=jgraham
Added support for the new known_intermittent test field in mozlog.structured to the WptreportFormatter
class. A test was added to check this field is recognised. The mozlog version was updated in the
requirements.txt for wpt. Capture was added to the mozlog init file, so that the module can be used
by mozlog consumers, such as wpt.

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

--HG--
extra : moz-landing-system : lando
2019-06-05 20:27:34 +00:00
Maja Frydrychowicz
2f1b964b3b Bug 1560268 - Update metadata for /css/css-contain/contain-size-flexbox-002.html; r=whimboo
Differential Revision: https://phabricator.services.mozilla.com/D35450

--HG--
extra : moz-landing-system : lando
2019-06-25 13:27:51 +00:00
Maja Frydrychowicz
20a702d1e1 Bug 1550895 - Disable a few more tests to green up wpt on GeckoView; r=jgraham
Differential Revision: https://phabricator.services.mozilla.com/D35480

--HG--
extra : moz-landing-system : lando
2019-06-21 16:26:53 +00:00
Arnold Iakab
46bc26a8bb Bug 1559927 Re-record tumblr.com desktop tp6 pages using mitmproxy 4 r=perftest-reviewers,Bebe
Differential Revision: https://phabricator.services.mozilla.com/D35401

--HG--
extra : moz-landing-system : lando
2019-06-20 12:49:30 +00:00
Alexandre Poirot
9e581c4dbe Bug 1560127 - Fix test-verify against mochitest-remote. r=gbrown
Differential Revision: https://phabricator.services.mozilla.com/D35415

--HG--
extra : moz-landing-system : lando
2019-06-21 10:34:15 +00:00
shindli
af1bd4594f Merge mozilla-central to autoland. a=merge CLOSED TREE 2019-06-21 12:53:51 +03:00
shindli
c0ca77697c Merge inbound to mozilla-central. a=merge 2019-06-21 12:34:14 +03:00
Arnold Iakab
3f4a701e65 Bug 1558621 Reduce Raptor cold page-load tests on android to have one site per suite r=perftest-reviewers,rwood,AlexandruIonescu
Differential Revision: https://phabricator.services.mozilla.com/D34687

--HG--
extra : moz-landing-system : lando
2019-06-21 07:43:49 +00:00
Cosmin Sabou
d96d24e199 Bug 1560360 - Update syntax for disabling more flaky css-appearance tests on win7 debug and win10 aarch64. a=testonly
--HG--
extra : amend_source : b7bd3c079c342674dba1116dadbc514a706886c3
2019-06-21 06:24:48 +03:00
Cosmin Sabou
8c2b7f4504 Bug 1560360 - Disable more flaky css-appearance tests on win7 debug and win10 aarch64. a=testonly
--HG--
extra : amend_source : 2d903cd2fe6a35f7654092a40b75b36a2f51300f
2019-06-21 04:15:32 +03:00
Byron Campen [:bwc]
5f86ad9057 Bug 1556795: Re-enable some web-platform-tests related to DataChannel ids. r=jib
Differential Revision: https://phabricator.services.mozilla.com/D35046

--HG--
extra : moz-landing-system : lando
2019-06-20 20:23:55 +00:00
Cosmin Sabou
55afe30077 Merge mozilla-central to autoland. CLOSED TREE 2019-06-21 01:44:45 +03:00
Cosmin Sabou
49014f945b Merge mozilla-inbound to mozilla-central. a=merge 2019-06-21 01:03:07 +03:00
James Graham
52ccd7af68 Bug 1560360 - Disable flaky css-appearance tests on win7 debug, a=testonly 2019-06-20 11:38:30 -07:00
Andreea Pavel
0bf8290504 Bug 1559989 - disabled shape-outside-circle-004.html on android r=jmaher
Differential Revision: https://phabricator.services.mozilla.com/D35430

--HG--
extra : moz-landing-system : lando
2019-06-20 17:06:56 +00:00
Ciure Andrei
4ffd609e9c Backed out 4 changesets (bug 1556795)for causing RTCPeerConnection-createDataChannel.html to perma fail CLOSED TREE
Backed out changeset 05898e5d5434 (bug 1556795)
Backed out changeset a87072937e2c (bug 1556795)
Backed out changeset f8ce8930bcab (bug 1556795)
Backed out changeset 112937d690e0 (bug 1556795)
2019-06-20 18:33:22 +03:00
Razvan Maries
8ea522bf4e Merge mozilla-central to mozilla-inbound. a=merge on a CLOSED TREE 2019-06-20 14:19:57 +03:00
James Graham
9573702c11 Bug 1558851 - Fix shape-outside-computed.html metadata, a=testonly 2019-06-19 14:29:28 -07:00
James Graham
4d8cf2fed2 Bug 1559913 - Add long timeout to flaky WebRTC test, a=testonly 2019-06-19 11:07:04 -07:00
James Graham
2c7935fab9 Bug 1559911 - Disable unstable WebRTC test, a=testonly 2019-06-19 11:07:03 -07:00
James Graham
3dbbd8c724 Bug 1559902 - Make wpt more forgiving of crashes on treeherder, r=ahal
This is required so that crashes on import don't block updating tests.
It makes that change from 1539449 only apply to non-wpt suites, which is
not ideal but no worse than the previous setup.

Differential Revision: https://phabricator.services.mozilla.com/D35218
2019-06-19 11:07:03 -07:00
James Graham
041988c427 Bug 1559483 - Remove example.com from test, r=me 2019-06-19 11:07:03 -07:00
moz-wptsync-bot
77101fa9a6 Bug 1558851 - [wpt-sync] Update web-platform-tests to dcac708930b6e73bf3e7629908b6467e7644cff9, a=testonly
wpt-head: dcac708930b6e73bf3e7629908b6467e7644cff9
wpt-type: landing
2019-06-19 11:07:02 -07:00
Hugo Holgersson
a891f01fea Bug 1558492 [wpt PR 17267] - Don't show |cursor: pointer| on unclickable <area>s, a=testonly
Automatic update from web-platform-tests
Don't show |cursor: pointer| on unclickable <area>s

The HTML spec says:
  "The href attribute on a and area elements is not
   required; when those elements do not have href
   attributes they do not create hyperlinks."

Background:
Chrome already excludes unclickable <area>s, <area>s
without a href attribute, from the tab order.

Problem:
Unclickable <area>s still show a "click me" hint.

Solution:
Mimick Firefox. Only show the pointer for actual
<area> links.

Note:
Found during crrev.com/c/1632231. We don't want
unclickable <area>s to act navigable.

Bug: 972556
Change-Id: I9214171290659b8b800db3e462478e2a1327c832
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1653009
Commit-Queue: Hugo Holgersson <hholgersson@fb.com>
Reviewed-by: Fredrik Söderquist <fs@opera.com>
Cr-Commit-Position: refs/heads/master@{#668409}

--

wp5At-commits: dcac708930b6e73bf3e7629908b6467e7644cff9
wpt-pr: 17267
2019-06-19 11:07:02 -07:00
Vladimir Levin
5fd5a8f62f Bug 1552214 [wpt PR 16858] - NG/DL: Implement size containment (and display lock) for NG fieldset algo, a=testonly
Automatic update from web-platform-tests
NG/DL: Implement size containment (and display lock) for NG fieldset algo

This patch adds size containment implementation for fieldsets in
LayoutNG.

Tested with LayoutNGFieldset feature flag.

Along with the new tests,
external/wpt/css/css-contain/contain-size-fieldset-001.html and
external/wpt/css/vendor-imports/mozilla/mozilla-central-reftests/contain/contain-size-fieldset-001.html
are also passing.

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

Bug: 958975
Change-Id: I5e735adc65ed9450f84e4c1ab68cba69e3fd85ed
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1613844
Reviewed-by: Morten Stenshorne <mstensho@chromium.org>
Commit-Queue: vmpstr <vmpstr@chromium.org>
Cr-Commit-Position: refs/heads/master@{#660866}

--
Add colliding ref names to lint.whitelist

See also https://github.com/web-platform-tests/wpt/pull/17289 which
was discovered when preparing this change.

--

wp5At-commits: 2d4a450b602564b5c7461c76e281552b60363602, 677d31b5fbbcfe9d3f7628a9b73c4a6066bbe76d
wpt-pr: 16858
2019-06-19 11:07:02 -07:00
Findit
bf8053f15a Bug 1558779 [wpt PR 17288] - Revert "Active Processing for ConvolverNode", a=testonly
Automatic update from web-platform-tests
Revert "Active Processing for ConvolverNode"

This reverts commit 499976c54a2b086bbde54ae137d0ac4adb3cd427.

Reason for revert:

Findit (https://goo.gl/kROfz5) identified CL at revision 668149 as the
culprit for flakes in the build cycles as shown on:
https://analysis.chromium.org/p/chromium/flake-portal/analysis/culprit?key=ag9zfmZpbmRpdC1mb3ItbWVyQwsSDEZsYWtlQ3VscHJpdCIxY2hyb21pdW0vNDk5OTc2YzU0YTJiMDg2YmJkZTU0YWUxMzdkMGFjNGFkYjNjZDQyNww

Sample Failed Build: https://ci.chromium.org/buildbot/chromium.mac/WebKit%20Mac10.13%20%28retina%29/15474

Sample Failed Step: webkit_layout_tests on ATI GPU on Mac Retina on Mac-10.13.6

Sample Flaky Test: external/wpt/webaudio/the-audio-api/the-convolvernode-interface/active-processing.https.html

Original change's description:
> Active Processing for ConvolverNode
>
> The ConvolverNode should output a single channel of silence when it is not
> actively processing.  Active processing is already supported and just needed
> to have the convolver output a single channel of silence when it is
> constructed, before anything is connected to it.
>
> Bug: 971389
> Change-Id: Icc894cd7ea6dec60a1eccb0fa4a3aea68ac5b51f
> Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1644899
> Commit-Queue: Raymond Toy <rtoy@chromium.org>
> Reviewed-by: Hongchan Choi <hongchan@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#668149}

Change-Id: Ie7fedee332ca167c3dfd4fd99142de89234ff03a
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: 971389
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1653924
Cr-Commit-Position: refs/heads/master@{#668243}

--

wp5At-commits: 2477f79f3c0757225d06762aeb1d3b1eea6eb52a
wpt-pr: 17288
2019-06-19 11:07:01 -07:00
Hiroki Nakagawa
f0eb0c1809 Bug 1558742 [wpt PR 17284] - Worker: Modernize worker-interception.https.html, a=testonly
Automatic update from web-platform-tests
Worker: Modernize worker-interception.https.html

This CL modernizes worker-interception.https.html using new ES features like
async/await and arrow functions.

This is a preparation to add more test, for example, for shared workers.

Bug: n/a
Change-Id: I65ebe309358b8b680b9b173916d6aa1d477b1d95
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1654673
Commit-Queue: Hiroki Nakagawa <nhiroki@chromium.org>
Reviewed-by: Matt Falkenhagen <falken@chromium.org>
Cr-Commit-Position: refs/heads/master@{#668316}

--

wp5At-commits: 16f941927fe2ce5abb5bc54ab02af5f15c501c1a
wpt-pr: 17284
2019-06-19 11:07:01 -07:00
Raymond Toy
d42da5f450 Bug 1558624 [wpt PR 17273] - ChannelMergerNode supports active processing, a=testonly
Automatic update from web-platform-tests
ChannelMergerNode supports active processing

When a ChannelMergerNode is not actively processing its inputs, the
number of channels in its output is one, instead of the number of
inputs.

Just need to disable outputs when the node is created.  Connections to
the node will adjust the number of channels appripriately, and when
inputs are no longer actively processing, the number of output
channels becomes one, as required.

Bug: 925046
Test: the-channelmergernode-interface/active-processing.https.html
Change-Id: I08e5fd2fe9c99b75af177eb85212162ecf39efd4
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1645478
Reviewed-by: Hongchan Choi <hongchan@chromium.org>
Commit-Queue: Raymond Toy <rtoy@chromium.org>
Cr-Commit-Position: refs/heads/master@{#668159}

--

wp5At-commits: bfb037131941940b9f7efa16cb1ec0829a2461cb
wpt-pr: 17273
2019-06-19 11:07:01 -07:00
Christian Biesinger
72df509024 Bug 1558564 [wpt PR 17270] - [css-flexbox] Make sure to layout overflow:auto elements, a=testonly
Automatic update from web-platform-tests
[css-flexbox] Make sure to layout overflow:auto elements

For overflow: auto, we need to layout before running the flex algorithm
if layout is dirty, so we can up-to-date scrollbar information, because
scrollbar size is included in the intrinsic size.

Bug: 972227
Change-Id: I58b5c0590575c5babc505b2927d8464f3f540775
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1652198
Commit-Queue: Christian Biesinger <cbiesinger@chromium.org>
Reviewed-by: David Grogan <dgrogan@chromium.org>
Reviewed-by: Emil A Eklund <eae@chromium.org>
Auto-Submit: Christian Biesinger <cbiesinger@chromium.org>
Cr-Commit-Position: refs/heads/master@{#668199}

--

wp5At-commits: 562e24f280cc12acbbe0f2b0b136dd319c2604b3
wpt-pr: 17270
2019-06-19 11:07:00 -07:00
Raymond Toy
76f7378892 Bug 1558611 [wpt PR 17233] - Active Processing for ConvolverNode, a=testonly
Automatic update from web-platform-tests
Active Processing for ConvolverNode

The ConvolverNode should output a single channel of silence when it is not
actively processing.  Active processing is already supported and just needed
to have the convolver output a single channel of silence when it is
constructed, before anything is connected to it.

Bug: 971389
Change-Id: Icc894cd7ea6dec60a1eccb0fa4a3aea68ac5b51f
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1644899
Commit-Queue: Raymond Toy <rtoy@chromium.org>
Reviewed-by: Hongchan Choi <hongchan@chromium.org>
Cr-Commit-Position: refs/heads/master@{#668149}

--

wp5At-commits: 6531eab802391a24dabca973cc4329abbeadd896
wpt-pr: 17233
2019-06-19 11:07:00 -07:00