Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1582)

Unified Diff: third_party/WebKit/LayoutTests/csspaint/registerPaint.html

Issue 2868003002: CSSPaint: Move layout tests in csspaint/ to http/tests/csspaint/ (Closed)
Patch Set: rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/csspaint/registerPaint.html
diff --git a/third_party/WebKit/LayoutTests/csspaint/registerPaint.html b/third_party/WebKit/LayoutTests/csspaint/registerPaint.html
deleted file mode 100644
index 8f09056d7c105e66da4e7783703f05dfe93339d5..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/csspaint/registerPaint.html
+++ /dev/null
@@ -1,50 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="resources/test-runner-paint-helper.js"></script>
-<script>
-function runTest() {
- runner([{
- expectedError: "A class with name:'foo' is already registered.",
- script: "registerPaint('foo', class { paint() { } }); registerPaint('foo', class { paint() { } });",
- }, {
- expectedError: "The empty string is not a valid name.",
- script: "registerPaint('', class { });",
- }, {
- expectedError: "failed!",
- script: "registerPaint('foo3', class { static get inputProperties() { throw Error('failed!'); } });",
- }, {
- expectedError: "The value provided is neither an array, nor does it have indexed properties.",
- script: "registerPaint('foo4', class { static get inputProperties() { return 42; } });",
- }, {
- expectedError: "The 'prototype' object on the class does not exist.",
- script: "var a = function() { }; a.prototype = undefined; registerPaint('foo5', a);",
- }, {
- expectedError: "The 'prototype' property on the class is not an object.",
- script: "var b = function() { }; b.prototype = 42; registerPaint('foo6', b);",
- }, {
- expectedError: "The 'paint' function on the prototype does not exist.",
- script: "registerPaint('foo7', class { });",
- }, {
- expectedError: "The 'paint' property on the prototype is not a function.",
- script: "registerPaint('foo8', class { get paint() { return 42; } });",
- }, {
- script: "registerPaint('foo9', class { paint() { } }); console.log('Success for \\'foo9\\'.');",
- }, {
- script: "var c = function() { }; c.prototype.paint = function() { }; registerPaint('foo10', c); console.log('Success for \\'foo10\\'.');",
- }, {
- script: "registerPaint('foo11', class { static get inputProperties() { return ['-webkit-border-radius']; } paint() { } }); console.log('Success for \\'foo11\\'.');"
- }, {
- expectedError: "The 'alpha' property on the class is not a boolean.",
- script: "registerPaint('foo12', class { static get alpha() { return 42; } });",
- }, {
- script: "registerPaint('foo13', class { static get alpha() { return true; } paint() { } }); console.log('Success for \\'foo13\\'.');",
- }]);
-}
-</script>
-</head>
-<body onload="runTest()">
-<p>This tests a series of PaintWorkletGlobalScope#registerPaint calls.</p>
-<p>See the devtools console for test output.</p>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698