From fc6c1bfc9d08c34714372a1a15cb4628ace34fcb Mon Sep 17 00:00:00 2001 From: Alan Jeffrey Date: Mon, 3 Jul 2017 16:43:47 -0500 Subject: [PATCH] Copied w3c css-paint-api wpt test suite into tests/wpt/mozilla. --- tests/wpt/mozilla/meta/MANIFEST.json | 493 ++++++++++++++++++ .../background-image-tiled.html.ini | 4 + .../invalid-image-constructor-error.html.ini | 4 + .../invalid-image-paint-error.html.ini | 4 + .../invalid-image-pending-script.html.ini | 4 + .../css-paint-api/paint-arguments.html.ini | 4 + .../paint-function-arguments.html.ini | 4 + .../css-paint-api/paint2d-composite.html.ini | 4 + .../css-paint-api/paint2d-image.html.ini | 4 + .../css-paint-api/paint2d-paths.html.ini | 4 + .../css-paint-api/paint2d-shadows.html.ini | 4 + .../tests/mozilla/css-paint-api/OWNERS | 3 + .../background-image-alpha-ref.html | 41 ++ .../css-paint-api/background-image-alpha.html | 55 ++ .../background-image-multiple-ref.html | 16 + .../background-image-multiple.html | 33 ++ .../background-image-tiled-ref.html | 35 ++ .../css-paint-api/background-image-tiled.html | 47 ++ .../mozilla/css-paint-api/css-paint-tests.js | 18 + .../invalid-image-constructor-error-ref.html | 6 + .../invalid-image-constructor-error.html | 32 ++ .../invalid-image-paint-error-ref.html | 6 + .../invalid-image-paint-error.html | 31 ++ .../invalid-image-pending-script-ref.html | 6 + .../invalid-image-pending-script.html | 20 + .../mozilla/css-paint-api/overdraw-ref.html | 6 + .../tests/mozilla/css-paint-api/overdraw.html | 30 ++ .../css-paint-api/paint-arguments-ref.html | 41 ++ .../css-paint-api/paint-arguments.html | 50 ++ .../paint-function-arguments-ref.html | 41 ++ .../paint-function-arguments.html | 49 ++ .../css-paint-api/paint2d-composite-ref.html | 50 ++ .../css-paint-api/paint2d-composite.html | 73 +++ .../css-paint-api/paint2d-filter-ref.html | 60 +++ .../mozilla/css-paint-api/paint2d-filter.html | 106 ++++ .../css-paint-api/paint2d-gradient-ref.html | 24 + .../css-paint-api/paint2d-gradient.html | 40 ++ .../css-paint-api/paint2d-image-ref.html | 12 + .../mozilla/css-paint-api/paint2d-image.html | 28 + .../css-paint-api/paint2d-paths-ref.html | 32 ++ .../mozilla/css-paint-api/paint2d-paths.html | 48 ++ .../css-paint-api/paint2d-rects-ref.html | 19 + .../mozilla/css-paint-api/paint2d-rects.html | 36 ++ .../css-paint-api/paint2d-shadows-ref.html | 23 + .../css-paint-api/paint2d-shadows.html | 39 ++ .../css-paint-api/paint2d-transform-ref.html | 22 + .../css-paint-api/paint2d-transform.html | 38 ++ .../valid-image-after-load-ref.html | 6 + .../css-paint-api/valid-image-after-load.html | 42 ++ .../valid-image-before-load-ref.html | 6 + .../valid-image-before-load.html | 43 ++ 51 files changed, 1846 insertions(+) create mode 100644 tests/wpt/mozilla/meta/mozilla/css-paint-api/background-image-tiled.html.ini create mode 100644 tests/wpt/mozilla/meta/mozilla/css-paint-api/invalid-image-constructor-error.html.ini create mode 100644 tests/wpt/mozilla/meta/mozilla/css-paint-api/invalid-image-paint-error.html.ini create mode 100644 tests/wpt/mozilla/meta/mozilla/css-paint-api/invalid-image-pending-script.html.ini create mode 100644 tests/wpt/mozilla/meta/mozilla/css-paint-api/paint-arguments.html.ini create mode 100644 tests/wpt/mozilla/meta/mozilla/css-paint-api/paint-function-arguments.html.ini create mode 100644 tests/wpt/mozilla/meta/mozilla/css-paint-api/paint2d-composite.html.ini create mode 100644 tests/wpt/mozilla/meta/mozilla/css-paint-api/paint2d-image.html.ini create mode 100644 tests/wpt/mozilla/meta/mozilla/css-paint-api/paint2d-paths.html.ini create mode 100644 tests/wpt/mozilla/meta/mozilla/css-paint-api/paint2d-shadows.html.ini create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/OWNERS create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/background-image-alpha-ref.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/background-image-alpha.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/background-image-multiple-ref.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/background-image-multiple.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/background-image-tiled-ref.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/background-image-tiled.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/css-paint-tests.js create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/invalid-image-constructor-error-ref.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/invalid-image-constructor-error.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/invalid-image-paint-error-ref.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/invalid-image-paint-error.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/invalid-image-pending-script-ref.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/invalid-image-pending-script.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/overdraw-ref.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/overdraw.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/paint-arguments-ref.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/paint-arguments.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/paint-function-arguments-ref.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/paint-function-arguments.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-composite-ref.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-composite.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-filter-ref.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-filter.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-gradient-ref.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-gradient.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-image-ref.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-image.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-paths-ref.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-paths.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-rects-ref.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-rects.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-shadows-ref.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-shadows.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-transform-ref.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-transform.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/valid-image-after-load-ref.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/valid-image-after-load.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/valid-image-before-load-ref.html create mode 100644 tests/wpt/mozilla/tests/mozilla/css-paint-api/valid-image-before-load.html diff --git a/tests/wpt/mozilla/meta/MANIFEST.json b/tests/wpt/mozilla/meta/MANIFEST.json index 1983cb90056..3db948b5310 100644 --- a/tests/wpt/mozilla/meta/MANIFEST.json +++ b/tests/wpt/mozilla/meta/MANIFEST.json @@ -6473,6 +6473,234 @@ {} ] ], + "mozilla/css-paint-api/background-image-alpha.html": [ + [ + "/_mozilla/mozilla/css-paint-api/background-image-alpha.html", + [ + [ + "/_mozilla/mozilla/css-paint-api/background-image-alpha-ref.html", + "==" + ] + ], + {} + ] + ], + "mozilla/css-paint-api/background-image-multiple.html": [ + [ + "/_mozilla/mozilla/css-paint-api/background-image-multiple.html", + [ + [ + "/_mozilla/mozilla/css-paint-api/background-image-multiple-ref.html", + "==" + ] + ], + {} + ] + ], + "mozilla/css-paint-api/background-image-tiled.html": [ + [ + "/_mozilla/mozilla/css-paint-api/background-image-tiled.html", + [ + [ + "/_mozilla/mozilla/css-paint-api/background-image-tiled-ref.html", + "==" + ] + ], + {} + ] + ], + "mozilla/css-paint-api/invalid-image-constructor-error.html": [ + [ + "/_mozilla/mozilla/css-paint-api/invalid-image-constructor-error.html", + [ + [ + "/_mozilla/mozilla/css-paint-api/invalid-image-constructor-error-ref.html", + "==" + ] + ], + {} + ] + ], + "mozilla/css-paint-api/invalid-image-paint-error.html": [ + [ + "/_mozilla/mozilla/css-paint-api/invalid-image-paint-error.html", + [ + [ + "/_mozilla/mozilla/css-paint-api/invalid-image-paint-error-ref.html", + "==" + ] + ], + {} + ] + ], + "mozilla/css-paint-api/invalid-image-pending-script.html": [ + [ + "/_mozilla/mozilla/css-paint-api/invalid-image-pending-script.html", + [ + [ + "/_mozilla/mozilla/css-paint-api/invalid-image-pending-script-ref.html", + "==" + ] + ], + {} + ] + ], + "mozilla/css-paint-api/overdraw.html": [ + [ + "/_mozilla/mozilla/css-paint-api/overdraw.html", + [ + [ + "/_mozilla/mozilla/css-paint-api/overdraw-ref.html", + "==" + ] + ], + {} + ] + ], + "mozilla/css-paint-api/paint-arguments.html": [ + [ + "/_mozilla/mozilla/css-paint-api/paint-arguments.html", + [ + [ + "/_mozilla/mozilla/css-paint-api/paint-arguments-ref.html", + "==" + ] + ], + {} + ] + ], + "mozilla/css-paint-api/paint-function-arguments.html": [ + [ + "/_mozilla/mozilla/css-paint-api/paint-function-arguments.html", + [ + [ + "/_mozilla/mozilla/css-paint-api/paint-function-arguments-ref.html", + "==" + ] + ], + {} + ] + ], + "mozilla/css-paint-api/paint2d-composite.html": [ + [ + "/_mozilla/mozilla/css-paint-api/paint2d-composite.html", + [ + [ + "/_mozilla/mozilla/css-paint-api/paint2d-composite-ref.html", + "==" + ] + ], + {} + ] + ], + "mozilla/css-paint-api/paint2d-filter.html": [ + [ + "/_mozilla/mozilla/css-paint-api/paint2d-filter.html", + [ + [ + "/_mozilla/mozilla/css-paint-api/paint2d-filter-ref.html", + "==" + ] + ], + {} + ] + ], + "mozilla/css-paint-api/paint2d-gradient.html": [ + [ + "/_mozilla/mozilla/css-paint-api/paint2d-gradient.html", + [ + [ + "/_mozilla/mozilla/css-paint-api/paint2d-gradient-ref.html", + "==" + ] + ], + {} + ] + ], + "mozilla/css-paint-api/paint2d-image.html": [ + [ + "/_mozilla/mozilla/css-paint-api/paint2d-image.html", + [ + [ + "/_mozilla/mozilla/css-paint-api/paint2d-image-ref.html", + "==" + ] + ], + {} + ] + ], + "mozilla/css-paint-api/paint2d-paths.html": [ + [ + "/_mozilla/mozilla/css-paint-api/paint2d-paths.html", + [ + [ + "/_mozilla/mozilla/css-paint-api/paint2d-paths-ref.html", + "==" + ] + ], + {} + ] + ], + "mozilla/css-paint-api/paint2d-rects.html": [ + [ + "/_mozilla/mozilla/css-paint-api/paint2d-rects.html", + [ + [ + "/_mozilla/mozilla/css-paint-api/paint2d-rects-ref.html", + "==" + ] + ], + {} + ] + ], + "mozilla/css-paint-api/paint2d-shadows.html": [ + [ + "/_mozilla/mozilla/css-paint-api/paint2d-shadows.html", + [ + [ + "/_mozilla/mozilla/css-paint-api/paint2d-shadows-ref.html", + "==" + ] + ], + {} + ] + ], + "mozilla/css-paint-api/paint2d-transform.html": [ + [ + "/_mozilla/mozilla/css-paint-api/paint2d-transform.html", + [ + [ + "/_mozilla/mozilla/css-paint-api/paint2d-transform-ref.html", + "==" + ] + ], + {} + ] + ], + "mozilla/css-paint-api/valid-image-after-load.html": [ + [ + "/_mozilla/mozilla/css-paint-api/valid-image-after-load.html", + [ + [ + "/_mozilla/mozilla/css-paint-api/valid-image-after-load-ref.html", + "==" + ] + ], + {} + ] + ], + "mozilla/css-paint-api/valid-image-before-load.html": [ + [ + "/_mozilla/mozilla/css-paint-api/valid-image-before-load.html", + [ + [ + "/_mozilla/mozilla/css-paint-api/valid-image-before-load-ref.html", + "==" + ] + ], + {} + ] + ], "mozilla/details_ui_closed.html": [ [ "/_mozilla/mozilla/details_ui_closed.html", @@ -9643,6 +9871,111 @@ {} ] ], + "mozilla/css-paint-api/OWNERS": [ + [ + {} + ] + ], + "mozilla/css-paint-api/background-image-alpha-ref.html": [ + [ + {} + ] + ], + "mozilla/css-paint-api/background-image-multiple-ref.html": [ + [ + {} + ] + ], + "mozilla/css-paint-api/background-image-tiled-ref.html": [ + [ + {} + ] + ], + "mozilla/css-paint-api/css-paint-tests.js": [ + [ + {} + ] + ], + "mozilla/css-paint-api/invalid-image-constructor-error-ref.html": [ + [ + {} + ] + ], + "mozilla/css-paint-api/invalid-image-paint-error-ref.html": [ + [ + {} + ] + ], + "mozilla/css-paint-api/invalid-image-pending-script-ref.html": [ + [ + {} + ] + ], + "mozilla/css-paint-api/overdraw-ref.html": [ + [ + {} + ] + ], + "mozilla/css-paint-api/paint-arguments-ref.html": [ + [ + {} + ] + ], + "mozilla/css-paint-api/paint-function-arguments-ref.html": [ + [ + {} + ] + ], + "mozilla/css-paint-api/paint2d-composite-ref.html": [ + [ + {} + ] + ], + "mozilla/css-paint-api/paint2d-filter-ref.html": [ + [ + {} + ] + ], + "mozilla/css-paint-api/paint2d-gradient-ref.html": [ + [ + {} + ] + ], + "mozilla/css-paint-api/paint2d-image-ref.html": [ + [ + {} + ] + ], + "mozilla/css-paint-api/paint2d-paths-ref.html": [ + [ + {} + ] + ], + "mozilla/css-paint-api/paint2d-rects-ref.html": [ + [ + {} + ] + ], + "mozilla/css-paint-api/paint2d-shadows-ref.html": [ + [ + {} + ] + ], + "mozilla/css-paint-api/paint2d-transform-ref.html": [ + [ + {} + ] + ], + "mozilla/css-paint-api/valid-image-after-load-ref.html": [ + [ + {} + ] + ], + "mozilla/css-paint-api/valid-image-before-load-ref.html": [ + [ + {} + ] + ], "mozilla/details_ui_closed_ref.html": [ [ {} @@ -25681,6 +26014,166 @@ "0163758c92997c6723c9d21be49ef7f51d8b3daf", "testharness" ], + "mozilla/css-paint-api/OWNERS": [ + "0c1517f7ba747014c7c091b61d48f11421ed91c2", + "support" + ], + "mozilla/css-paint-api/background-image-alpha-ref.html": [ + "45ef6e998e5f266741f5403df650cd9557dbe005", + "support" + ], + "mozilla/css-paint-api/background-image-alpha.html": [ + "ec35a42013e36c05a26266f0f78a16283acc843d", + "reftest" + ], + "mozilla/css-paint-api/background-image-multiple-ref.html": [ + "9ff536499d72240f67eb6911b768c624371ea678", + "support" + ], + "mozilla/css-paint-api/background-image-multiple.html": [ + "f8c286926ccf981713eb34259e3f5389bf3c37f6", + "reftest" + ], + "mozilla/css-paint-api/background-image-tiled-ref.html": [ + "a879be73470aae683bd7596132225770bc8be27b", + "support" + ], + "mozilla/css-paint-api/background-image-tiled.html": [ + "4c7b8e525a909cbc38a2ad0b6a44a803595b6772", + "reftest" + ], + "mozilla/css-paint-api/css-paint-tests.js": [ + "0e88a610e5ad9ff1deb04adec35b73caadbff201", + "support" + ], + "mozilla/css-paint-api/invalid-image-constructor-error-ref.html": [ + "b0c34ee1480fe1108fe8dc53f2bbb2f3ffa1c408", + "support" + ], + "mozilla/css-paint-api/invalid-image-constructor-error.html": [ + "694efcb525fed448cc757cff38ec034dad9cdb3c", + "reftest" + ], + "mozilla/css-paint-api/invalid-image-paint-error-ref.html": [ + "b0c34ee1480fe1108fe8dc53f2bbb2f3ffa1c408", + "support" + ], + "mozilla/css-paint-api/invalid-image-paint-error.html": [ + "3b0e6a034f3edbde6d30ad9483a50fbea0ab48bd", + "reftest" + ], + "mozilla/css-paint-api/invalid-image-pending-script-ref.html": [ + "b0c34ee1480fe1108fe8dc53f2bbb2f3ffa1c408", + "support" + ], + "mozilla/css-paint-api/invalid-image-pending-script.html": [ + "54a69d6d408e77bf2e91ee09564d62c8d16d1eb3", + "reftest" + ], + "mozilla/css-paint-api/overdraw-ref.html": [ + "b0c34ee1480fe1108fe8dc53f2bbb2f3ffa1c408", + "support" + ], + "mozilla/css-paint-api/overdraw.html": [ + "a2d730dbd6faefbd8bbd07d33f6942f6573b842e", + "reftest" + ], + "mozilla/css-paint-api/paint-arguments-ref.html": [ + "cbe0372259011ca94f0fd8d233413439ba9cf117", + "support" + ], + "mozilla/css-paint-api/paint-arguments.html": [ + "2807e0bc8b2e8aa9e5edf69f9de3e8d4ee853ef9", + "reftest" + ], + "mozilla/css-paint-api/paint-function-arguments-ref.html": [ + "a3aebfce59d0f62ab229248b7903b0dc731835d5", + "support" + ], + "mozilla/css-paint-api/paint-function-arguments.html": [ + "f3c461e7e5797d3b65058109ffc58b6c95e1a340", + "reftest" + ], + "mozilla/css-paint-api/paint2d-composite-ref.html": [ + "60c069de8135b934df166560db5c592d5becbc92", + "support" + ], + "mozilla/css-paint-api/paint2d-composite.html": [ + "f9d0cceb6360cbdf3478673740ecfbe67a4a11d2", + "reftest" + ], + "mozilla/css-paint-api/paint2d-filter-ref.html": [ + "6f1be576ae7ead2a724357b16ea88c92b3b19a0d", + "support" + ], + "mozilla/css-paint-api/paint2d-filter.html": [ + "c266200a6a990b5b23e6f9d5859f8f5c4c271be8", + "reftest" + ], + "mozilla/css-paint-api/paint2d-gradient-ref.html": [ + "3b2abb3632893c0f5a2714fc325467f0076001a8", + "support" + ], + "mozilla/css-paint-api/paint2d-gradient.html": [ + "6cf101de7a3aa627cb372f00eeb36e969ff25734", + "reftest" + ], + "mozilla/css-paint-api/paint2d-image-ref.html": [ + "c71e0b960177b13614d2c11392c94ea155927ebe", + "support" + ], + "mozilla/css-paint-api/paint2d-image.html": [ + "769d066054b6cabb77ed3f958d52bfdb17e99b8d", + "reftest" + ], + "mozilla/css-paint-api/paint2d-paths-ref.html": [ + "cf154ab8a37bdbce2175193dfc456f4771bfeca8", + "support" + ], + "mozilla/css-paint-api/paint2d-paths.html": [ + "8f98b1d34bb3719b5e337f279adbe63fc6c122fd", + "reftest" + ], + "mozilla/css-paint-api/paint2d-rects-ref.html": [ + "2a469427fbdbee6b096a63b95846cdeda92c0255", + "support" + ], + "mozilla/css-paint-api/paint2d-rects.html": [ + "e2e82b82b28af9e509a9eabf48f728dbe06b0d18", + "reftest" + ], + "mozilla/css-paint-api/paint2d-shadows-ref.html": [ + "f882c26b0dfb58fe1ab3177060f421dad0148456", + "support" + ], + "mozilla/css-paint-api/paint2d-shadows.html": [ + "7ca525ddfa56a8571857a8656e6bed38c440705a", + "reftest" + ], + "mozilla/css-paint-api/paint2d-transform-ref.html": [ + "5eff507eeee563399205645668c7ed3df79213c9", + "support" + ], + "mozilla/css-paint-api/paint2d-transform.html": [ + "e4b544068821f6f8882f05836a07a19891fc85b8", + "reftest" + ], + "mozilla/css-paint-api/valid-image-after-load-ref.html": [ + "b0c34ee1480fe1108fe8dc53f2bbb2f3ffa1c408", + "support" + ], + "mozilla/css-paint-api/valid-image-after-load.html": [ + "abe12a4f25b5b8a52b8e9f623ac5efa80c23dc36", + "reftest" + ], + "mozilla/css-paint-api/valid-image-before-load-ref.html": [ + "b0c34ee1480fe1108fe8dc53f2bbb2f3ffa1c408", + "support" + ], + "mozilla/css-paint-api/valid-image-before-load.html": [ + "fb574b4658f7c2000ec58f058ebb0fff1d88351e", + "reftest" + ], "mozilla/details_ui_closed.html": [ "2acbe3afbec267bad4dd986803e636740a707507", "reftest" diff --git a/tests/wpt/mozilla/meta/mozilla/css-paint-api/background-image-tiled.html.ini b/tests/wpt/mozilla/meta/mozilla/css-paint-api/background-image-tiled.html.ini new file mode 100644 index 00000000000..70236851502 --- /dev/null +++ b/tests/wpt/mozilla/meta/mozilla/css-paint-api/background-image-tiled.html.ini @@ -0,0 +1,4 @@ +[background-image-tiled.html] + type: reftest + expected: FAIL + bug: https://github.com/servo/servo/issues/17598 diff --git a/tests/wpt/mozilla/meta/mozilla/css-paint-api/invalid-image-constructor-error.html.ini b/tests/wpt/mozilla/meta/mozilla/css-paint-api/invalid-image-constructor-error.html.ini new file mode 100644 index 00000000000..b8b8b6a43fa --- /dev/null +++ b/tests/wpt/mozilla/meta/mozilla/css-paint-api/invalid-image-constructor-error.html.ini @@ -0,0 +1,4 @@ +[invalid-image-constructor-error.html] + type: reftest + expected: FAIL + bug: https://github.com/servo/servo/issues/17595 diff --git a/tests/wpt/mozilla/meta/mozilla/css-paint-api/invalid-image-paint-error.html.ini b/tests/wpt/mozilla/meta/mozilla/css-paint-api/invalid-image-paint-error.html.ini new file mode 100644 index 00000000000..12ed50a9383 --- /dev/null +++ b/tests/wpt/mozilla/meta/mozilla/css-paint-api/invalid-image-paint-error.html.ini @@ -0,0 +1,4 @@ +[invalid-image-paint-error.html] + type: reftest + expected: FAIL + bug: https://github.com/servo/servo/issues/17595 diff --git a/tests/wpt/mozilla/meta/mozilla/css-paint-api/invalid-image-pending-script.html.ini b/tests/wpt/mozilla/meta/mozilla/css-paint-api/invalid-image-pending-script.html.ini new file mode 100644 index 00000000000..41e6a2089d7 --- /dev/null +++ b/tests/wpt/mozilla/meta/mozilla/css-paint-api/invalid-image-pending-script.html.ini @@ -0,0 +1,4 @@ +[invalid-image-pending-script.html] + type: reftest + expected: FAIL + bug: https://github.com/servo/servo/issues/17595 diff --git a/tests/wpt/mozilla/meta/mozilla/css-paint-api/paint-arguments.html.ini b/tests/wpt/mozilla/meta/mozilla/css-paint-api/paint-arguments.html.ini new file mode 100644 index 00000000000..64a88871ab3 --- /dev/null +++ b/tests/wpt/mozilla/meta/mozilla/css-paint-api/paint-arguments.html.ini @@ -0,0 +1,4 @@ +[paint-arguments.html] + type: reftest + expected: FAIL + bug: https://github.com/servo/servo/issues/17435 diff --git a/tests/wpt/mozilla/meta/mozilla/css-paint-api/paint-function-arguments.html.ini b/tests/wpt/mozilla/meta/mozilla/css-paint-api/paint-function-arguments.html.ini new file mode 100644 index 00000000000..80fbfd4780c --- /dev/null +++ b/tests/wpt/mozilla/meta/mozilla/css-paint-api/paint-function-arguments.html.ini @@ -0,0 +1,4 @@ +[paint-function-arguments.html] + type: reftest + expected: FAIL + bug: https://github.com/servo/servo/issues/17435 diff --git a/tests/wpt/mozilla/meta/mozilla/css-paint-api/paint2d-composite.html.ini b/tests/wpt/mozilla/meta/mozilla/css-paint-api/paint2d-composite.html.ini new file mode 100644 index 00000000000..53c2cefbe3d --- /dev/null +++ b/tests/wpt/mozilla/meta/mozilla/css-paint-api/paint2d-composite.html.ini @@ -0,0 +1,4 @@ +[paint2d-composite.html] + type: reftest + expected: FAIL + bug: https://github.com/servo/servo/issues/17533 diff --git a/tests/wpt/mozilla/meta/mozilla/css-paint-api/paint2d-image.html.ini b/tests/wpt/mozilla/meta/mozilla/css-paint-api/paint2d-image.html.ini new file mode 100644 index 00000000000..eb920e369bf --- /dev/null +++ b/tests/wpt/mozilla/meta/mozilla/css-paint-api/paint2d-image.html.ini @@ -0,0 +1,4 @@ +[paint2d-image.html] + type: reftest + expected: FAIL + bug: https://github.com/servo/servo/issues/17432 diff --git a/tests/wpt/mozilla/meta/mozilla/css-paint-api/paint2d-paths.html.ini b/tests/wpt/mozilla/meta/mozilla/css-paint-api/paint2d-paths.html.ini new file mode 100644 index 00000000000..c1185a0f63f --- /dev/null +++ b/tests/wpt/mozilla/meta/mozilla/css-paint-api/paint2d-paths.html.ini @@ -0,0 +1,4 @@ +[paint2d-paths.html] + type: reftest + expected: FAIL + bug: https://github.com/servo/servo/issues/17597 diff --git a/tests/wpt/mozilla/meta/mozilla/css-paint-api/paint2d-shadows.html.ini b/tests/wpt/mozilla/meta/mozilla/css-paint-api/paint2d-shadows.html.ini new file mode 100644 index 00000000000..081185efd6f --- /dev/null +++ b/tests/wpt/mozilla/meta/mozilla/css-paint-api/paint2d-shadows.html.ini @@ -0,0 +1,4 @@ +[paint2d-shadows.html] + type: reftest + expected: FAIL + bug: https://github.com/servo/servo/issues/17533 diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/OWNERS b/tests/wpt/mozilla/tests/mozilla/css-paint-api/OWNERS new file mode 100644 index 00000000000..bd72a2a78f7 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/OWNERS @@ -0,0 +1,3 @@ +@bfgeek +@grorg +@shans diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/background-image-alpha-ref.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/background-image-alpha-ref.html new file mode 100644 index 00000000000..519b3599e95 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/background-image-alpha-ref.html @@ -0,0 +1,41 @@ + + + + + + + +
+
+ +
+
+ +
+
+ + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/background-image-alpha.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/background-image-alpha.html new file mode 100644 index 00000000000..929483e515b --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/background-image-alpha.html @@ -0,0 +1,55 @@ + + + + + + + +
+
+
+
+ + + + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/background-image-multiple-ref.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/background-image-multiple-ref.html new file mode 100644 index 00000000000..536258be74c --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/background-image-multiple-ref.html @@ -0,0 +1,16 @@ + + + + + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/background-image-multiple.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/background-image-multiple.html new file mode 100644 index 00000000000..ea887018f80 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/background-image-multiple.html @@ -0,0 +1,33 @@ + + + + + + + +
+ + + + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/background-image-tiled-ref.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/background-image-tiled-ref.html new file mode 100644 index 00000000000..a0151d84cba --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/background-image-tiled-ref.html @@ -0,0 +1,35 @@ + + + + + + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/background-image-tiled.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/background-image-tiled.html new file mode 100644 index 00000000000..2ac3a11c6a6 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/background-image-tiled.html @@ -0,0 +1,47 @@ + + + + + + + +
+
+ + + + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/css-paint-tests.js b/tests/wpt/mozilla/tests/mozilla/css-paint-api/css-paint-tests.js new file mode 100644 index 00000000000..58a8e649ee1 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/css-paint-tests.js @@ -0,0 +1,18 @@ +// To make sure that we take the snapshot at the right time, we do double +// requestAnimationFrame. In the second frame, we take a screenshot, that makes +// sure that we already have a full frame. +function importPaintWorkletAndTerminateTestAfterAsyncPaint(code) { + if (typeof paintWorklet == "undefined") { + takeScreenshot(); + } else { + var blob = new Blob([code], {type: 'text/javascript'}); + paintWorklet.addModule(URL.createObjectURL(blob)).then(function() { + requestAnimationFrame(function() { + requestAnimationFrame(function() { + takeScreenshot(); + }); + }); + }); + } +} + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/invalid-image-constructor-error-ref.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/invalid-image-constructor-error-ref.html new file mode 100644 index 00000000000..b6a6dec6c60 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/invalid-image-constructor-error-ref.html @@ -0,0 +1,6 @@ + + + +
+ + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/invalid-image-constructor-error.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/invalid-image-constructor-error.html new file mode 100644 index 00000000000..4800df463b7 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/invalid-image-constructor-error.html @@ -0,0 +1,32 @@ + + + + + + + +
+ + + + + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/invalid-image-paint-error-ref.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/invalid-image-paint-error-ref.html new file mode 100644 index 00000000000..b6a6dec6c60 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/invalid-image-paint-error-ref.html @@ -0,0 +1,6 @@ + + + +
+ + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/invalid-image-paint-error.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/invalid-image-paint-error.html new file mode 100644 index 00000000000..7e19c296a68 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/invalid-image-paint-error.html @@ -0,0 +1,31 @@ + + + + + + + +
+ + + + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/invalid-image-pending-script-ref.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/invalid-image-pending-script-ref.html new file mode 100644 index 00000000000..b6a6dec6c60 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/invalid-image-pending-script-ref.html @@ -0,0 +1,6 @@ + + + +
+ + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/invalid-image-pending-script.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/invalid-image-pending-script.html new file mode 100644 index 00000000000..42df38a82a3 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/invalid-image-pending-script.html @@ -0,0 +1,20 @@ + + + + + + + +
+ + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/overdraw-ref.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/overdraw-ref.html new file mode 100644 index 00000000000..b6a6dec6c60 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/overdraw-ref.html @@ -0,0 +1,6 @@ + + + +
+ + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/overdraw.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/overdraw.html new file mode 100644 index 00000000000..6258b83fb5b --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/overdraw.html @@ -0,0 +1,30 @@ + + + + + + + +
+ + + + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint-arguments-ref.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint-arguments-ref.html new file mode 100644 index 00000000000..3352acf6518 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint-arguments-ref.html @@ -0,0 +1,41 @@ + + + + + + + +
+
+ +
+
+ +
+
+ + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint-arguments.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint-arguments.html new file mode 100644 index 00000000000..f80d7cefcc0 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint-arguments.html @@ -0,0 +1,50 @@ + + + + + + + + +
+
+
+
+ + + + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint-function-arguments-ref.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint-function-arguments-ref.html new file mode 100644 index 00000000000..99adfd27121 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint-function-arguments-ref.html @@ -0,0 +1,41 @@ + + + + + + + +
+
+ +
+
+ +
+
+ + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint-function-arguments.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint-function-arguments.html new file mode 100644 index 00000000000..1cec58bc190 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint-function-arguments.html @@ -0,0 +1,49 @@ + + + + + + + + +
+
+
+
+ + + + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-composite-ref.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-composite-ref.html new file mode 100644 index 00000000000..3b75d526980 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-composite-ref.html @@ -0,0 +1,50 @@ + + + + + + + + + + +
+ + + + +
+ + + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-composite.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-composite.html new file mode 100644 index 00000000000..362b84947fd --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-composite.html @@ -0,0 +1,73 @@ + + + + + + + +
+
+
+
+
+
+
+
+
+
+
+
+ + + + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-filter-ref.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-filter-ref.html new file mode 100644 index 00000000000..4ca6383b141 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-filter-ref.html @@ -0,0 +1,60 @@ + + + + + + + + + + + +
+ + + + + +
+ + + + + + + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-filter.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-filter.html new file mode 100644 index 00000000000..9347af51f78 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-filter.html @@ -0,0 +1,106 @@ + + + + + + + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + + + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-gradient-ref.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-gradient-ref.html new file mode 100644 index 00000000000..a8064f595ef --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-gradient-ref.html @@ -0,0 +1,24 @@ + + + + + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-gradient.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-gradient.html new file mode 100644 index 00000000000..24fc38a1f5a --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-gradient.html @@ -0,0 +1,40 @@ + + + + + + + +
+ + + + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-image-ref.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-image-ref.html new file mode 100644 index 00000000000..31c9f3f5f03 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-image-ref.html @@ -0,0 +1,12 @@ + + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-image.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-image.html new file mode 100644 index 00000000000..b8c38dad131 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-image.html @@ -0,0 +1,28 @@ + + + + + + +
+ + + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-paths-ref.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-paths-ref.html new file mode 100644 index 00000000000..7557411b4a1 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-paths-ref.html @@ -0,0 +1,32 @@ + + + + + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-paths.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-paths.html new file mode 100644 index 00000000000..d61ef827b22 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-paths.html @@ -0,0 +1,48 @@ + + + + + + + +
+ + + + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-rects-ref.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-rects-ref.html new file mode 100644 index 00000000000..fae2de7b7a2 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-rects-ref.html @@ -0,0 +1,19 @@ + + + + + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-rects.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-rects.html new file mode 100644 index 00000000000..4a4e4708bf0 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-rects.html @@ -0,0 +1,36 @@ + + + + + + + +
+ + + + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-shadows-ref.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-shadows-ref.html new file mode 100644 index 00000000000..268db495ee5 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-shadows-ref.html @@ -0,0 +1,23 @@ + + + + + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-shadows.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-shadows.html new file mode 100644 index 00000000000..c0200df04d3 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-shadows.html @@ -0,0 +1,39 @@ + + + + + + + +
+ + + + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-transform-ref.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-transform-ref.html new file mode 100644 index 00000000000..e863f363f79 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-transform-ref.html @@ -0,0 +1,22 @@ + + + + + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-transform.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-transform.html new file mode 100644 index 00000000000..1d1177e30f7 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/paint2d-transform.html @@ -0,0 +1,38 @@ + + + + + + + +
+ + + + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/valid-image-after-load-ref.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/valid-image-after-load-ref.html new file mode 100644 index 00000000000..b6a6dec6c60 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/valid-image-after-load-ref.html @@ -0,0 +1,6 @@ + + + +
+ + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/valid-image-after-load.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/valid-image-after-load.html new file mode 100644 index 00000000000..f4af4975cbf --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/valid-image-after-load.html @@ -0,0 +1,42 @@ + + + + + + + +
+ + + + + + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/valid-image-before-load-ref.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/valid-image-before-load-ref.html new file mode 100644 index 00000000000..b6a6dec6c60 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/valid-image-before-load-ref.html @@ -0,0 +1,6 @@ + + + +
+ + diff --git a/tests/wpt/mozilla/tests/mozilla/css-paint-api/valid-image-before-load.html b/tests/wpt/mozilla/tests/mozilla/css-paint-api/valid-image-before-load.html new file mode 100644 index 00000000000..98218d34946 --- /dev/null +++ b/tests/wpt/mozilla/tests/mozilla/css-paint-api/valid-image-before-load.html @@ -0,0 +1,43 @@ + + + + + + + +
+ + + + + +