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
Ryan Hunt
0992c716bf
Bug 1476724 - Follow up. Mark the css-ui-invalid/**/button.html as fuzzy, not css-invalid/**/button.html. r=me
...
--HG--
extra : rebase_source : 2087cf1f9676d96b8b841eb914098f3dca6d5e71
extra : source : 9eeb3d73d697574708978995a26549dc73df4050
2018-07-30 10:43:57 -05:00
Ryan Hunt
5853094326
Bug 1476724 - Mark default-style/button.html as fuzzy on debug linux. r=jrmuizel
...
MozReview-Commit-ID: CEhtvTB0VXa
--HG--
extra : rebase_source : 30eb9731c96e609ea529eebcf7d376e4e380723b
2018-07-24 16:19:04 -05:00
Brad Werth
07a30fbde5
Bug 1461046 Part 8: Update reftest fuzzy expectations for a seemingly-unrelated Android test. r=dholbert
...
MozReview-Commit-ID: EUTaODevcTm
--HG--
extra : rebase_source : 0ed0fef5b5307124ab8a14a9d1c63b79c35e9961
2018-06-04 08:52:13 -07:00
Kartikaya Gupta
83395962a2
Bug 1443807 - Update reftest annotations for changes in WR PR 2487. r=jrmuizel
...
MozReview-Commit-ID: 2GmItjRPNBz
--HG--
extra : rebase_source : b37f1e1894eaf325ff1cb488fc08a15feddaf487
2018-03-09 08:39:46 -05:00
Kartikaya Gupta
c0ece807c4
Bug 1441380 - Add fuzziness annotation for reftests that are intermittently fuzzy on webrender. r=jrmuizel
...
MozReview-Commit-ID: 7WTcwhNtcs7
--HG--
extra : rebase_source : c2ebb6491ba0ff51193bb0bce2f11ab21db8a2ea
2018-03-05 10:31:57 -05:00
Kartikaya Gupta
22df9f1405
Bug 1438892 - Update reftest fuzziness for WR PR 2405. r=jrmuizel
...
MozReview-Commit-ID: HcOke96a4Z2
--HG--
extra : rebase_source : fbd375d3607764500465fbfd694bf525037130e6
2018-02-20 09:05:54 -05:00
Geoff Brown
0a5a609fdd
Bug 1418406 - Switch skip-if to fuzzy-if for Android select-disabled-fieldset-1.html and select-disabled-fieldset-2.html; r=me, a=test-only
2017-11-23 13:02:53 -07:00
Geoff Brown
1d3d624b71
Bug 1418406 - Disable css-invalid/select/select-disabled-fieldset-2.html on android for perma failures. r=me, a=testonly
...
It appears that both select-disabled-fieldset-1 and select-disabled-fieldset-2 rely
on some other test being run first: Neither test passes if run alone, and both
tests fail with the current Android chunk divisions.
2017-11-22 11:58:40 -07:00
Joel Maher
dd460b6416
Bug 1418406 - Disable css-invalid/select/select-disabled-fieldset-1.html on android for perma failures. r=me, a=testonly
2017-11-20 04:59:53 -05:00
Bobby Holley
01fb3786f9
Bug 1401992 - Mark some tests as passing on android. r=me
...
MozReview-Commit-ID: HJuIX5VXBm5
2017-09-22 17:23:38 -07:00
Ting-Yu Lin
2923be5074
Bug 1290276 Part 8 - Update test expectations after implementing XBL <stylesheet> for stylo. r=heycam
...
Disable 461917-1.xhtml under dom/xul/crashtests/ because I cannot reproduce
it locally.
Annotate assert-if on some crashtests (bug 1370830). Other modifications are
all removal of fails-if.
MozReview-Commit-ID: 6Q2A5M5rOry
--HG--
extra : rebase_source : b282a919fcda6287fe2eaa6b139a11f2663ad578
2017-05-31 16:44:38 -07:00
Shing Lyu
5d8a5a598c
Bug 1361645 - Change reftest condition stylo to styloVsGecko r=dbaron
...
MozReview-Commit-ID: 3ekoU1zg8xA
--HG--
extra : rebase_source : f62c84516f5ac0d4b4d0c876514b72fa786ec542
2017-05-25 11:26:12 +08:00
Mats Palmgren
297b9d70e1
Bug 1365614
part 3 - Backout bug 1333482 part 1-9. Removes support for [-webkit-]appearance for now b/c web compat issues. r=bz
...
MozReview-Commit-ID: IbwWM0FL6HF
--HG--
extra : source : bbb688fe1ba3f5201a190c6e25b693ef7272ea2d
2017-05-21 17:15:00 +08:00
Carsten "Tomcat" Book
00d4ea331d
Backed out changeset bbb688fe1ba3 (bug 1365614
)
2017-05-22 15:45:31 +02:00
Mats Palmgren
e706869580
Bug 1365614
part 3 - Backout bug 1333482 part 1-9. Removes support for [-webkit-]appearance for now b/c web compat issues. r=bz
2017-05-21 17:15:00 +08:00
Matt Brubeck
0c70ae6c1d
Bug 1349651 - stylo: Implement HasAuthorSpecifiedRules. r=bholley
...
MozReview-Commit-ID: 8ta5KqKzncZ
--HG--
extra : rebase_source : 3ec29f283dc6bfec4d2a1676ab3f78296893d94b
2017-05-10 13:11:36 -07:00
Hiroyuki Ikezoe
751ec1a2f7
Bug 1361632 - Adjust reftest expectation for -moz-appearance. r=bholley
...
MozReview-Commit-ID: 6sqyA5TCHjk
--HG--
extra : rebase_source : 4957d93a55717850594dabc2650cecf060022f75
2017-05-04 06:39:30 +09:00
Ting-Yu Lin
918033ba12
Bug 1321754 Part 2 - Update reftest and crashtest expectations for stylo. r=heycam
...
MozReview-Commit-ID: AunZ2DE209M
--HG--
extra : rebase_source : 4a091cd55581039c8d81f4db9bfbe2af8c0d0863
2017-04-28 14:53:16 +08:00
Shing Lyu
c46f5d5baf
Bug 1351548 - Remove reftest-stylo.lists. r=bholley
...
MozReview-Commit-ID: 8LoQ9xNnDnj
2017-04-28 11:15:58 +08:00
Shing Lyu
435db45b79
Bug 1351548 - Add stylo-vs-gecko expectations to reftest.lists. r=bholley
...
MozReview-Commit-ID: GOUGBsd05cn
2017-04-28 11:15:50 +08:00
Sebastian Hengst
ceff3b0678
Backed out changeset 1f9d0f8e65b9 (bug 1351548)
2017-04-26 13:13:05 +02:00
Sebastian Hengst
88c73138b1
Backed out changeset 4d8dfee7ebf3 (bug 1351548)
2017-04-26 13:12:59 +02:00
Sebastian Hengst
f46ebb0d94
Backed out changeset aebb0ceeb20a (bug 1351548)
2017-04-26 13:12:53 +02:00
Shing Lyu
96b400c04a
Bug 1351548 - Remove reftest-stylo.lists. r=bholley
...
MozReview-Commit-ID: Gn0fbS4PZ7i
2017-04-26 18:21:52 +08:00
Shing Lyu
0673a3e783
Bug 1351548 - Switch from reftest-stylo.list to reftest.list on linux64-stylo. r=bholley
...
MozReview-Commit-ID: 3GHNhi3gdg9
2017-04-26 18:21:48 +08:00
Shing Lyu
dae014d9d5
Bug 1351548 - Add stylo-vs-gecko expectations to reftest.lists. r=bholley
...
MozReview-Commit-ID: GOUGBsd05cn
2017-04-26 18:21:43 +08:00
Manish Goregaokar
ff68276c10
Bug 1349417 - Part 9: stylo: Update test expectations; r=xidorn
...
MozReview-Commit-ID: 5SGrYUIhHOQ
2017-04-21 15:40:49 -07:00
Carsten "Tomcat" Book
d32c8f24cc
Backed out changeset 49c8dc08ff64 (bug 1349417)
2017-04-19 08:31:48 +02:00
Manish Goregaokar
f1cf1ffa2a
Bug 1349417 - Part 9: stylo: Update test expectations; r=xidorn
...
MozReview-Commit-ID: 5SGrYUIhHOQ
2017-04-18 21:36:48 -07:00
Iris Hsiao
2f57ea5bb4
Backed out 3 changesets (bug 1349417) for build bustage
...
Backed out changeset e6a9aaf8c102 (bug 1349417)
Backed out changeset fbdddabe4c8d (bug 1349417)
Backed out changeset c1ead1f0ab71 (bug 1349417)
2017-04-19 11:03:13 +08:00
Manish Goregaokar
cb05d3003e
Bug 1349417 - Part 9: stylo: Update test expectations; r=xidorn
...
MozReview-Commit-ID: 5SGrYUIhHOQ
2017-04-18 19:31:07 -07:00
Manish Goregaokar
88b43cc612
Bug 1341102 - Update stylo reftest expectations; r=orange
...
MozReview-Commit-ID: 9PbpzNqSQ7W
2017-03-24 21:54:18 -07:00
Mats Palmgren
00b74113a3
Bug 1333482 part 4 - [css-ui] Amend all uses of '-moz-appearance:none' in tests to also specify 'appearance:none' (automated change). r=dholbert
...
MozReview-Commit-ID: BNOR5VRpV2E
2017-03-23 22:11:22 -07:00
Bobby Holley
ef2116411d
Bug 1341739 - Update test expectations. r=me
...
MozReview-Commit-ID: H88jZnB0NbX
2017-03-16 12:43:09 -07:00
Manish Goregaokar
029d0ddc55
Bug 1341102 - Fix failures from -moz-system-metric changes (bug 1341086); r=manishearth
...
MozReview-Commit-ID: KBnVFQuzoz5
2017-03-16 00:42:40 -07:00
Manish Goregaokar
12b518aef0
Bug 1340696 - stylo: Support system colors; r=heycam
...
MozReview-Commit-ID: HUfTdcMRoEx
--HG--
extra : rebase_source : 85af717eb521a2c790d3ec7a20c46dd318e4761f
2017-03-15 14:49:35 -07:00
Boris Zbarsky
a11bfd53bd
Bug 1341988. Reenable a bunch of stylo reftests that were disabled for reasons that are not relevant anymore. r=bz
...
MozReview-Commit-ID: CLqLHexhBX3
--HG--
extra : rebase_source : 07dfb89d0651240362395494fdd7ee94363430b6
2017-02-23 02:09:57 -05:00
Cameron McCormack
9c4ea5685f
Bug 1334768 - stylo: Back out 800030115d2e and 404506488cfb for being completely wrong due to bug 1334938.
...
MozReview-Commit-ID: 8CGTqmtlguT
2017-01-30 16:49:54 +08:00
Florian Quèze
bdc1ffa608
Bug 1334831 - script-generated patch to use .remove() instead of .parentNode.removeChild, r=jaws.
2017-01-30 08:10:22 +01:00
Cameron McCormack
35486c881a
Bug 1334768 - stylo: More reftest expectation adjustments for 2017-01-29 merge.
...
MozReview-Commit-ID: 8TT4JzUIBZl
2017-01-30 10:53:58 +08:00
Cameron McCormack
7805d4716e
Bug 1334768 - stylo: Test expectation adjustments for 2017-01-29 merge.
...
MozReview-Commit-ID: FFmvs6SHIwW
2017-01-29 15:31:56 +08:00
Shing Lyu
39ec052547
Bug 1331860 - Update reftest-stylo expectations. r=heycam
...
--HG--
extra : rebase_source : 2c39a745949d3dfeb369f0e1efbf4befde8535c9
2017-01-12 10:37:36 +08:00
Florian Quèze
85611a7b6d
Bug 1331081
- script generated patch to omit addEventListener/removeEventListener's third parameter when it's false, r=jaws.
...
--HG--
extra : rebase_source : a22344ee1569f58f1f0a01017bfe0d46a6a14602
2017-01-17 11:50:25 +01:00
Shing Lyu
11a1d3e940
Bug 1328825 - Update reftest-stylo.list and expectations. r=heycam
...
MozReview-Commit-ID: AMwdk5wvM0F
2017-01-10 15:50:59 +08:00
Tom Puttemans
6ddea38ea7
Bug 1052045 - Fix <select> validity status for listboxes and for non-placeholder empty valued options. r=bzbarsky
...
--HG--
rename : layout/reftests/css-invalid/select/select-required-multiple-invalid.html => layout/reftests/css-invalid/select/select-required-multiple-still-valid.html
rename : layout/reftests/css-valid/select/select-required-multiple-invalid.html => layout/reftests/css-valid/select/select-required-multiple-still-valid.html
2016-11-24 22:15:33 +01:00
Sebastian Hengst
e59a3abdde
Bug 1307332 - Remove B2G and Mulet annotations from reftest.list: layout/reftests/css-invalid. r=dholbert
...
MozReview-Commit-ID: FH18euCj4Cg
2016-10-09 09:51:27 +02:00
Manish Goregaokar
63e75ca24b
Bug 1302993 - Mark more expectations for stylo tests, make reftest-stylo green; r=heycam
...
MozReview-Commit-ID: 9rKqASXgKZH
--HG--
extra : rebase_source : ea4d2cdc5623673827676e52d255c8b6fa34f7dd
2016-09-12 19:18:10 +05:30
Shing Lyu
db11558e50
Bug 1288350 - Temporary reftest list for Stylo vs Gecko test r=heycam,manishearth
...
--HG--
extra : rebase_source : 4772418bd2813d4e79643a833eb09e47fe893d84
2016-09-05 11:45:39 +08:00
Lee Salzman
642347dba7
Bug 725119 - fuzz for reftests with Skia content on Android. r=mchang
...
MozReview-Commit-ID: 9p8ntO7YLQ4
2016-08-31 15:53:33 -04:00