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

221 Коммитов

Автор SHA1 Сообщение Дата
Miko Mynttinen 58f9cc4fc8 Bug 1483659 - Ensure that child overflow areas are included in perspective frame overflow areas r=dbaron
Differential Revision: https://phabricator.services.mozilla.com/D3515

--HG--
extra : moz-landing-system : lando
2018-09-04 16:25:54 +00:00
Jeff Muizelaar bddd392700 Bug 1487588. Increase fuzz on 3d transform test a bit to avoid orange. 2018-08-30 23:48:32 -04:00
Jeff Muizelaar 4976ed72ee Bug 1487429. Update tests for WebRender changes.
--HG--
extra : rebase_source : 1e64ec6054c073621876f6acffc6f40ed4cbca67
2018-08-30 21:31:07 -04:00
L. David Baron 1e88f0f003 Bug 1369941: Replace single integers N in fuzzy() and fuzzy-if() with 0-N ranges. r=dholbert
This patch was written entirely by the following script:

  #!/bin/bash

  if [ ! -d "./.hg" ]
  then
    echo "Not in a source tree." 1>&2
    exit 1
  fi

  find . -regex '.*\(ref\|crash\)test.*\.list' | while read FILENAME
  do
    echo "Processing ${FILENAME}."
    # The following has four substitutions:
    # * The first one replaces the *first* argument to fuzzy() when it doesn't
    #   have a - in it, by replacing it with an explicit 0-N range.
    # * The second one does the same for the *second* argument to fuzzy().
    # * The third does the same for the *second* argument to fuzzy-if().
    # * The fourth does the same for the *third* argument to fuzzy-if().
    #
    # Note that this is using perl rather than sed because perl doesn't
    # support non-greedy matching, which is needed for the first argument to
    # fuzzy-if.
    perl -pi -e 's/(fuzzy\()([^ ,()-]*)(,[^ ,()]*\))/${1}0-${2}${3}/g;s/(fuzzy\([^ ,()]*,)([^ ,()-]*)(\))/${1}0-${2}${3}/g;s/(fuzzy-if\([^ ]*?,)([^ ,()-]*)(,[^ ,()]*\))/${1}0-${2}${3}/g;s/(fuzzy-if\([^ ]*?,[^ ,()]*,)([^ ,()-]*)(\))/${1}0-${2}${3}/g' "${FILENAME}"
  done

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

--HG--
extra : moz-landing-system : lando
2018-08-09 20:10:21 +00:00
Kartikaya Gupta 9d5983979c Bug 1480433 - Update for changes in WR PR 2947. r=jrmuizel
MozReview-Commit-ID: 2GqCI7QXnr7
2018-08-07 14:47:02 -04:00
Boris Chiou ffa1da7545 Bug 1467277 - Avoid getting zero normalized vector of rotate3d when setting a rotate matrix. r=nical
For example, if we set a transform to rotate3d(0, 0, 1e50, 45deg), the
expected normalized rotate axis is (0, 0, 1).
However, the length is larger than the maximum of float, so the actual value is
(0/inf, 0/inf, 1e50/inf) == (0, 0, 0). Therefore, we scale the vector before
doing normalization to avoid getting a zero vector.

MozReview-Commit-ID: 5LUDWD4RuNj

--HG--
extra : rebase_source : eb82f0b3979bf6ea3cd11b643ebb30a49edc24f8
2018-07-05 15:40:39 -07:00
Kartikaya Gupta 1fb51dfb2b Bug 1461311 - Undo reftest/harness changes from bug 1437036 as they are not needed any more. r=hiro
MozReview-Commit-ID: 3YvyZPNOCzF

--HG--
extra : rebase_source : f49e09dda2924b99dbf6b63a958086b934e23523
2018-06-07 08:23:17 -04:00
Joel Maher 29d83f200e Bug 1392106 - random-if many more tests on win7. r=RyanVM 2018-05-25 13:03:59 -04:00
Kartikaya Gupta 849bc9d409 Bug 1437036 - Stop the reftest harness from waiting for MozAfterPaint during infinite/superlong animations. r=hiro
These tests rely on an optimization within Gecko where it stops firing
MozAfterPaint events if there was no visible change to the generated
layers. This allows the reftest harness to exit the
waiting-for-MozAfterPaint loop and proceed with the test. However, with
webrender, this optimization does not exist and so the loop never exits.
In order to solve this problem, this patch adds an explicit mechanism to
exit the loop by means of a class attribute on the root element of the
test page.

MozReview-Commit-ID: 17ta5kLPDr9

--HG--
extra : rebase_source : 96ea462274724c6c65f1186f473bc1767253fd6b
2018-05-14 08:53:52 -04:00
Kartikaya Gupta 32a1261d0d Bug 1322845 - Update reftest annotations for WebRender on macOS. r=Gankro
MozReview-Commit-ID: 6NufRyb41ia
2018-05-08 22:42:51 -04:00
Andreea Pavel 8daddd690f Backed out 2 changesets (bug 1322845) for failing reftest background-repeat-large-area.html == background-repeat-large-area-ref.html on a CLOSED TREE
Backed out changeset 4fd46cd822bf (bug 1322845)
Backed out changeset abd41b3e63e7 (bug 1322845)
2018-05-09 05:13:08 +03:00
Kartikaya Gupta 93650c1b04 Bug 1322845 - Update reftest annotations for WebRender on macOS. r=Gankro
MozReview-Commit-ID: 6NufRyb41ia
2018-05-08 20:39:51 -04:00
Kartikaya Gupta 77476d5a6b Bug 1453688 - Update reftest annotations for WR PR 2662. r=jrmuizel
MozReview-Commit-ID: B1ts2B1dTA4

--HG--
extra : rebase_source : 8e71036ce898f3ccdf384c225c8a06fb803fad6e
2018-04-17 08:23:39 -04:00
Kartikaya Gupta 0f89486f32 Bug 1452658 - Mark many reftests as fuzzy instead of failing for windows-qr. r=jrmuizel
MozReview-Commit-ID: BDvtV6trKkK

--HG--
extra : rebase_source : 0591564f6cea5c782de6baecc24c3defcef0c4fb
2018-04-10 17:48:16 -04:00
Kartikaya Gupta 9a9c13a09f Bug 1344350 - Mark reftests failing with webrender on windows. r=jrmuizel
Many of these could probably be fuzzed but in the interests of getting
the reftest suite turned on sooner I'm doing a blanket fails-if. This
covers all the reftests where there is more fuzz with webrender on
windows than any of existing annotations account for. In some cases the
fuzz is only a few pixels more than the equivalent Linux fuzz already
annotated, but I'll clean that up in a future bug.

MozReview-Commit-ID: IaKarbnL46d

--HG--
extra : rebase_source : 71889340305b0b12fa8eace722e42bb3faf14419
2018-04-06 11:58:43 -04:00
Jeff Muizelaar 2fd17450bb Bug 1449640. Don't compute a scale for 3d transformed content. r=kats
This matches the behaviour of ChooseScaleAndSetTransform()

MozReview-Commit-ID: LxtkQn2XdYT

--HG--
extra : rebase_source : 9d2a9b1af9bf039def408f86982da835b7120e36
2018-03-27 17:46:34 -04:00
Kartikaya Gupta a884a297d8 Bug 1434723 - Mark reftest failures exposed by WR PR 2369. r=jrmuizel
MozReview-Commit-ID: 8iNiThVViNY

--HG--
extra : rebase_source : 20b11de78b53563bf7493a358c13f41799d745a2
2018-02-06 10:32:40 -05:00
Kartikaya Gupta 2554bc3dd5 Bug 1429469 - Remove a bunch of fails-if(webrender) annotations. r=jrmuizel
All of these tests have existing fuzzy annotations which cover the
differences in the WR renderings. Therefore we can remove the
fails-if(webrender) annotations and use the existing fuzzy annotations
to treat the tests as passing.

MozReview-Commit-ID: LFWha6gAP2r

--HG--
extra : rebase_source : b26a0d0cd66b6bab273251e6a2de9210417ba798
2018-01-10 13:34:14 -05:00
Kartikaya Gupta 1b35bf9d30 Bug 1426116 - Update reftest results for changes from WR PR 2200. r=jrmuizel
MozReview-Commit-ID: KOaA2G2ng9B

--HG--
extra : rebase_source : 374db125b797359aec9c40d3c852661574693a73
2018-01-08 09:19:28 -05:00
Kartikaya Gupta 90e8088bb6 Bug 1417062 - Update reftest annotations for changes in WR PR 2031. r=nical
MozReview-Commit-ID: 9yCEOjrnPSQ

--HG--
extra : rebase_source : 13cf0cd891a2d6a5eac800616422274c4a465c19
2017-11-17 08:43:30 -05:00
Miko Mynttinen 845735af56 Bug 1395476 - Do not call mStoredList.RecomputeVisibility for 3d transforms r=mattwoodrow
MozReview-Commit-ID: 1pnYL2RtFi6

--HG--
extra : rebase_source : 85699125c4b547b99ce2bf8580e0cd40720a285b
2017-11-08 02:54:10 +01:00
Kartikaya Gupta d448b27cd9 Bug 1410893 - Update reftest results for changes in WR PR 1910. r=jrmuizel
The reftest box-decoration-break-with-inset-box-shadow-1.html was affected
by both PR 1910 and PR 1918.
The reftest backface-visibility-2.html was affected by PR 1914.

MozReview-Commit-ID: JFwhmttGJjQ

--HG--
extra : rebase_source : 7e716a64aa0de2f862b9bea7c0d30131e92ba319
2017-10-27 08:56:28 -04:00
Kartikaya Gupta 0eb026046c Bug 1408461 - Update reftest results for changes in WR PR 1869. r=jrmuizel
MozReview-Commit-ID: AP6dBvlyCX5
2017-10-18 12:37:53 -04:00
Nicolas Silva 0caad8382f Bug 1408461 - Update reftest results for changes in WR PR 1822. r=kats
MozReview-Commit-ID: 4FLazNlSZdm
2017-10-18 12:37:52 -04:00
Sebastian Hengst b470b5f4a4 Backed out changeset cd0e3778a5ba (bug 1408461)
--HG--
extra : rebase_source : 0febba200a990a4478c88ba5364ba15ad8e15669
2017-10-18 18:27:56 +02:00
Sebastian Hengst 1a90f8bc7f Backed out changeset d1a2ea63196c (bug 1408461)
--HG--
extra : rebase_source : 6287de8dd0696ce41fb430298b653b14e51f9dc2
2017-10-18 18:27:45 +02:00
Kartikaya Gupta a68bfab37c Bug 1408461 - Update reftest results for changes in WR PR 1869. r=jrmuizel
MozReview-Commit-ID: AP6dBvlyCX5

--HG--
extra : rebase_source : cfc8441f6dff0bbdd4bdeb52cf439209ae6d4542
2017-10-18 09:41:28 -04:00
Nicolas Silva 24e3b3ea07 Bug 1408461 - Update reftest results for changes in WR PR 1822. r=kats
MozReview-Commit-ID: 4FLazNlSZdm

--HG--
extra : rebase_source : 7b9f0c063a2abf32e2639591f7c22e376e9285b7
2017-10-18 09:39:36 -04:00
Kartikaya Gupta cba218bfef Bug 1407635 - Slightly increase fuzz again for test when webrender is enabled. r=mtseng
MozReview-Commit-ID: 6TB7Pb5UQDB

--HG--
extra : rebase_source : 4d5ac3ecd2ba05da991e9761d270ea01c3809880
2017-10-16 08:44:09 -04:00
Morris Tseng 0ccd47dc22 Bug 1403459 - Passing transform-style from display item directly. r=kats
MozReview-Commit-ID: JVhjSFmvnAq

--HG--
extra : rebase_source : a1c4bb15d1679d650ece0af6ddbe052c5a61034b
2017-09-25 11:19:12 +08:00
Kartikaya Gupta 69376483d5 Bug 1407213 - Update reftest listings for various webrender changes. r=jrmuizel
async-scrolling/position-sticky-transformed.html - from WR cset e33f363d
backgrounds/background-clip-text-2.html - possibly from WR PR 1853 but unconfirmed
svg/filter-on-continuation-box-01.html - from WR PR 1853
text-shadow/basic-opacity.html - from WR PR 1853
text-shadow/decorations-multiple-zorder.html - from WR PR 1853
text-shadow/quirks-decor-noblur.html - from WR PR 1853
text-shadow/standards-decor-noblur.html - from WR PR 1853
transform-3d/sorting-1a.html - from WR PR 1787
transform-3d/snap-perspective-1.html - from WR PR 1787

MozReview-Commit-ID: DNlYKwRR1Z8

--HG--
extra : rebase_source : 7e282ffdea411792ab951303c9c2b807a6f471b1
2017-10-13 12:58:47 -04:00
Alexis Beingessner fe5bc62b71 Bug 1392723 - Mark tests as passing with webrender text-layers. r=kats
MozReview-Commit-ID: 5qyGjvM6Lkv

--HG--
extra : rebase_source : efc5166359a838252d6d6af7bc6acdaf953a2993
2017-10-10 23:52:33 -04:00
Kartikaya Gupta c25073bde9 Bug 1405790 - Mark some tests as passing from WR cset 90aa4c28. r=Gankro
MozReview-Commit-ID: FMcBLsne2mk

--HG--
extra : rebase_source : 9b13420056902de15acd6de914e6dfa150292f13
2017-10-10 08:07:04 -04:00
Kartikaya Gupta fcfad90043 Bug 1401349 - Increase allowed fuzz on test that is fuzzy with webrender. r=jmaher
MozReview-Commit-ID: KviPTh2T3g2

--HG--
extra : rebase_source : b10c24556c4514426d7ce6618234476d7fe7c2ad
2017-10-04 11:20:50 -04:00
Ethan Lin 6c6b68f2e7 Bug 1404091 - Re-enable some skip-if and random-if tests after the fix. r=kats
MozReview-Commit-ID: 6gFLZWi0p4b

--HG--
extra : rebase_source : df2013e00b5eacea450d161a000b9e6bfe5c1e07
2017-10-02 22:51:03 +08:00
Ethan Lin 7ca48488d9 Bug 1395501 - Part4. Update reftest annotations for new failures. r=kats
MozReview-Commit-ID: Eqajfc8MnRK
2017-09-29 12:09:52 +08:00
Kartikaya Gupta f79a3c53f1 Bug 1389000 - Remove duplicated layers-free tests. r=jrmuizel
We had previously started running some tests in layers-free mode
already, either by setting the default-preferences on the folder to
turn on layers-free, or by duplicating an individual reftest annotation
so that it ran in both layers-full and layers-free mode. This patch
removes these changes since layers-free is now the default and we don't
need to run layers-full at all.

MozReview-Commit-ID: JJwB9iO5clU

--HG--
extra : rebase_source : ea20545945b825d7ff829526d4d263850e6b5b7f
2017-09-26 14:49:20 -04:00
Kartikaya Gupta 818cfd7499 Bug 1389000 - Update reftest annotations for layers-free results. r=jrmuizel
This patch:
- adds fails-if annotations for all the reftests that were consistently failing
  with layers-free turned on.
- removes fails-if or reduces the range on fuzzy-if annotations for all
  the reftests that were producing UNEXPECTED-PASS results with
  layers-free turned on.
- adds skip-if, random-if, or fuzzy-if annotations to the reftests that
  were intermittently failing due to timeout, obvious incorrectness, or
  slight pixel differences, respectively.

MozReview-Commit-ID: A0Aknn6rnjj

--HG--
extra : rebase_source : 420d9cf43f23a5d654fa36eec69138937d13c173
2017-09-26 14:49:19 -04:00
Matt Woodrow 9304acdbbb Bug 1397671 - Don't treat SVG transformed frames as being transformed for the purposes of computing Combines3DTransformWithAncestors. r=dbaron 2017-09-26 15:57:56 +13:00
Morris Tseng b233faee80 Bug 1392200 - Turn on some backface-visibility reftests. r=kats
MozReview-Commit-ID: GFPfkfDZYSm
2017-09-21 14:41:38 +08:00
Kartikaya Gupta 72868e65d4 Bug 1400888 - Mark some transform-3d reftests intermittently fuzzy in layers-free webrender. r=ethlin
MozReview-Commit-ID: FCE7OIPN3Vy

--HG--
extra : rebase_source : bfd240f88f5c04c53e28478f0c1149abd39dacc6
2017-09-18 13:20:35 -04:00
Kartikaya Gupta 73f7353fae Bug 1400888 - Turn on layers-free for transform/ and transform-3d/ reftests. r=ethlin
MozReview-Commit-ID: 9xAeMDcfHNK

--HG--
extra : rebase_source : 7a279a5309e00c74708e8b7c5b87d9db08278126
2017-09-18 13:20:34 -04:00
Ryan VanderMeulen 7c11e5baea Backed out changeset 1e2233c98ff1 (bug 1400034) for QuantumRender reftest failures. 2017-09-18 11:08:19 -04:00
Kartikaya Gupta 202a32a38d Bug 1400034 - Turn on layers-free for transform/ and transform-3d/ reftests. r=ethlin,pchang
MozReview-Commit-ID: Ae80DrMwg1X

--HG--
extra : rebase_source : e90ffd1b443de46fa3d1bde9acaa4e97eabdf135
2017-09-17 10:37:43 -04:00
Chris Peterson ce7edc4de1 Bug 1394603 - Replace fails-if(!styloVsGecko) to fails. r=jryans
Skip tests that are expected to fail in both Stylo and Gecko modes. They would unexpectedly "pass" in styloVsGecko mode when comparing the two failures, which is not a useful result.

MozReview-Commit-ID: 3mOpjU225Q1

--HG--
extra : rebase_source : 22bb5d4e3c5138ef832995eaf5716824f4707ffe
extra : source : d40fb20c9a49d0797c0eeae613a04912b12a28f7
2017-09-01 20:39:44 -07:00
Phil Ringnalda 75f9cdbd7e Backed out 3 changesets (bug 1394603) for reftest syntax error
CLOSED TREE

Backed out changeset 44117208f321 (bug 1394603)
Backed out changeset 31088c59d895 (bug 1394603)
Backed out changeset 20551d68f602 (bug 1394603)

MozReview-Commit-ID: 4F4jSQ8GyfG
2017-09-06 22:48:55 -07:00
Chris Peterson 2d629378b2 Bug 1394603 - Replace fails-if(!styloVsGecko) to fails. r=jryans
Skip tests that are expected to fail in both Stylo and Gecko modes. They would unexpectedly "pass" in styloVsGecko mode when comparing the two failures, which is not a useful result.

MozReview-Commit-ID: 3mOpjU225Q1

--HG--
extra : rebase_source : 0c307639c3626af3b6b43e05d3ee73d08b3f47ce
2017-09-01 20:39:44 -07:00
J. Ryan Stinnett c79cb3fbb1 Bug 1380053 - Stylo reftest annotations for all OSes. r=manishearth
MozReview-Commit-ID: JNsNUOZfd2e

--HG--
extra : rebase_source : 05a71f9a0fe484c93931fb230cf0752a3b1b8b00
2017-07-20 22:02:00 -05:00
Wes Kocher bb24138b9d Merge m-c to inbound, a=merge
MozReview-Commit-ID: CaSKFN9T7N4
2017-06-21 18:05:27 -07:00
Matt Woodrow eafc8e49e9 Bug 1373335 - Make sure we clip the opaque region in render target coordinate space, since complex transforms mean that we can't always have a rectangular representation of clips in layer space. r=mstange 2017-06-22 12:41:16 +12:00