summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast
diff options
context:
space:
mode:
authorjcgregorio@google.com <jcgregorio@google.com@bbb929c8-8fbe-4397-9dbb-9b2b20218538>2014-02-24 22:12:36 +0000
committerjcgregorio@google.com <jcgregorio@google.com@bbb929c8-8fbe-4397-9dbb-9b2b20218538>2014-02-24 22:12:36 +0000
commitae658d99dda0ea37f60d1fa33814b08aedd0716b (patch)
tree57a4d066be5e81d06fbcbe28dc089fb778957707 /third_party/WebKit/LayoutTests/fast
parentc6f6a302ede5467a8c5e1f02d8763309c152223a (diff)
downloadchromium_src-ae658d99dda0ea37f60d1fa33814b08aedd0716b.zip
chromium_src-ae658d99dda0ea37f60d1fa33814b08aedd0716b.tar.gz
chromium_src-ae658d99dda0ea37f60d1fa33814b08aedd0716b.tar.bz2
Add versions of stroke, fill, and clip to CanvasRenderingContext2D that take a Path parameter.
The spec reference is: http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html#dom-context-2d-fill This partially addresses bug 330506. The rest of these functions need to be added to completely close that bug, which I plan to do in a following CL: - drawSystemFocusRing(path, element); - drawCustomFocusRing(path, element); - isPointInPath(path, x, y); - isPointInStroke(path, x, y); - scrollPathIntoView(path); BUG=330506 Review URL: https://codereview.chromium.org/137353004 git-svn-id: svn://svn.chromium.org/blink/trunk@167705 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast')
-rw-r--r--third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-clip-expected.txt47
-rw-r--r--third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-clip.html9
-rw-r--r--third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-fill-expected.txt47
-rw-r--r--third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-fill.html9
-rw-r--r--third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-stroke-expected.txt22
-rw-r--r--third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-stroke.html9
-rw-r--r--third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-path-context-clip.js72
-rw-r--r--third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-path-context-fill.js70
-rw-r--r--third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-path-context-stroke.js53
9 files changed, 338 insertions, 0 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-clip-expected.txt b/third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-clip-expected.txt
new file mode 100644
index 0000000..48864a4
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-clip-expected.txt
@@ -0,0 +1,47 @@
+Series of tests to ensure clip() works with path and winding rule parameters.
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+Testing clip()
+PASS pixelDataAtPoint()[0] is within 5 of 0
+PASS pixelDataAtPoint()[1] is within 5 of 255
+PASS pixelDataAtPoint()[2] is within 5 of 0
+PASS pixelDataAtPoint()[3] is within 5 of 255
+
+Testing clip(path)
+PASS pixelDataAtPoint()[0] is within 5 of 0
+PASS pixelDataAtPoint()[1] is within 5 of 255
+PASS pixelDataAtPoint()[2] is within 5 of 0
+PASS pixelDataAtPoint()[3] is within 5 of 255
+
+Testing clip("nonzero")
+PASS pixelDataAtPoint()[0] is within 5 of 0
+PASS pixelDataAtPoint()[1] is within 5 of 255
+PASS pixelDataAtPoint()[2] is within 5 of 0
+PASS pixelDataAtPoint()[3] is within 5 of 255
+
+Testing clip(path, "nonzero")
+PASS pixelDataAtPoint()[0] is within 5 of 0
+PASS pixelDataAtPoint()[1] is within 5 of 255
+PASS pixelDataAtPoint()[2] is within 5 of 0
+PASS pixelDataAtPoint()[3] is within 5 of 255
+
+Testing clip("evenodd")
+PASS pixelDataAtPoint()[0] is within 5 of 255
+PASS pixelDataAtPoint()[1] is within 5 of 0
+PASS pixelDataAtPoint()[2] is within 5 of 0
+PASS pixelDataAtPoint()[3] is within 5 of 255
+
+Testing clip(path, "evenodd")
+PASS pixelDataAtPoint()[0] is within 5 of 255
+PASS pixelDataAtPoint()[1] is within 5 of 0
+PASS pixelDataAtPoint()[2] is within 5 of 0
+PASS pixelDataAtPoint()[3] is within 5 of 255
+
+PASS ctx.clip(null) threw exception TypeError: Failed to execute 'clip' on 'CanvasRenderingContext2D': parameter 1 ('null') is not a valid enum value..
+PASS ctx.clip(null, null) threw exception TypeError: Failed to execute 'clip' on 'CanvasRenderingContext2D': No function was found that matched the signature provided..
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-clip.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-clip.html
new file mode 100644
index 0000000..9ff47f9
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-clip.html
@@ -0,0 +1,9 @@
+<!doctype html>
+<html>
+<head>
+<script src="../../resources/js-test.js"></script>
+</head>
+<body>
+<canvas id="canvas" width="200" height="200"></canvas>
+<script src="script-tests/canvas-path-context-clip.js"></script>
+</body>
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-fill-expected.txt b/third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-fill-expected.txt
new file mode 100644
index 0000000..f89551e
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-fill-expected.txt
@@ -0,0 +1,47 @@
+Series of tests to ensure fill() works with path and winding rule parameters.
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+Testing fill()
+PASS pixelDataAtPoint()[0] is within 5 of 0
+PASS pixelDataAtPoint()[1] is within 5 of 255
+PASS pixelDataAtPoint()[2] is within 5 of 0
+PASS pixelDataAtPoint()[3] is within 5 of 255
+
+Testing fill(path)
+PASS pixelDataAtPoint()[0] is within 5 of 0
+PASS pixelDataAtPoint()[1] is within 5 of 255
+PASS pixelDataAtPoint()[2] is within 5 of 0
+PASS pixelDataAtPoint()[3] is within 5 of 255
+
+Testing fill("nonzero")
+PASS pixelDataAtPoint()[0] is within 5 of 0
+PASS pixelDataAtPoint()[1] is within 5 of 255
+PASS pixelDataAtPoint()[2] is within 5 of 0
+PASS pixelDataAtPoint()[3] is within 5 of 255
+
+Testing fill(path, "nonzero")
+PASS pixelDataAtPoint()[0] is within 5 of 0
+PASS pixelDataAtPoint()[1] is within 5 of 255
+PASS pixelDataAtPoint()[2] is within 5 of 0
+PASS pixelDataAtPoint()[3] is within 5 of 255
+
+Testing fill("evenodd")
+PASS pixelDataAtPoint()[0] is within 5 of 255
+PASS pixelDataAtPoint()[1] is within 5 of 0
+PASS pixelDataAtPoint()[2] is within 5 of 0
+PASS pixelDataAtPoint()[3] is within 5 of 255
+
+Testing fill(path, "evenodd")
+PASS pixelDataAtPoint()[0] is within 5 of 255
+PASS pixelDataAtPoint()[1] is within 5 of 0
+PASS pixelDataAtPoint()[2] is within 5 of 0
+PASS pixelDataAtPoint()[3] is within 5 of 255
+
+PASS ctx.fill(null) threw exception TypeError: Failed to execute 'fill' on 'CanvasRenderingContext2D': parameter 1 ('null') is not a valid enum value..
+PASS ctx.fill(null, null) threw exception TypeError: Failed to execute 'fill' on 'CanvasRenderingContext2D': No function was found that matched the signature provided..
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-fill.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-fill.html
new file mode 100644
index 0000000..073f1ac
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-fill.html
@@ -0,0 +1,9 @@
+<!doctype html>
+<html>
+<head>
+<script src="../../resources/js-test.js"></script>
+</head>
+<body>
+<canvas id="canvas" width="200" height="200"></canvas>
+<script src="script-tests/canvas-path-context-fill.js"></script>
+</body>
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-stroke-expected.txt b/third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-stroke-expected.txt
new file mode 100644
index 0000000..cd71511
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-stroke-expected.txt
@@ -0,0 +1,22 @@
+Series of tests to ensure stroke() works with optional path parameter.
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+Testing stroke()
+
+PASS pixelDataAtPoint()[0] is within 5 of 0
+PASS pixelDataAtPoint()[1] is within 5 of 255
+PASS pixelDataAtPoint()[2] is within 5 of 0
+PASS pixelDataAtPoint()[3] is within 5 of 255
+Testing stroke(path)
+
+PASS pixelDataAtPoint()[0] is within 5 of 0
+PASS pixelDataAtPoint()[1] is within 5 of 255
+PASS pixelDataAtPoint()[2] is within 5 of 0
+PASS pixelDataAtPoint()[3] is within 5 of 255
+PASS ctx.stroke(null) threw exception TypeError: Failed to execute 'stroke' on 'CanvasRenderingContext2D': No function was found that matched the signature provided..
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-stroke.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-stroke.html
new file mode 100644
index 0000000..5f84cb2
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-stroke.html
@@ -0,0 +1,9 @@
+<!doctype html>
+<html>
+<head>
+<script src="../../resources/js-test.js"></script>
+</head>
+<body>
+<canvas id="canvas" width="200" height="200"></canvas>
+<script src="script-tests/canvas-path-context-stroke.js"></script>
+</body>
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-path-context-clip.js b/third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-path-context-clip.js
new file mode 100644
index 0000000..78e0257
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-path-context-clip.js
@@ -0,0 +1,72 @@
+description("Series of tests to ensure clip() works with path and winding rule parameters.");
+
+var ctx = document.getElementById('canvas').getContext('2d');
+
+function pixelDataAtPoint() {
+ return ctx.getImageData(50, 50, 1, 1).data;
+}
+
+function checkResult(expectedColors, sigma) {
+ for (var i = 0; i < 4; i++)
+ shouldBeCloseTo("pixelDataAtPoint()[" + i + "]", expectedColors[i], sigma);
+}
+
+function drawRectanglesOn(contextOrPath) {
+ contextOrPath.rect(0, 0, 100, 100);
+ contextOrPath.rect(25, 25, 50, 50);
+}
+
+function formatName(fillRule, path) {
+ return 'clip(' + (path ? 'path' : '') + (fillRule && path ? ', ' : '') +
+ (fillRule ? '"' + fillRule + '"' : '') + ')';
+}
+
+function testClipWith(fillRule, path) {
+ debug('Testing ' + formatName(fillRule, path));
+ ctx.fillStyle = 'rgb(255,0,0)';
+ ctx.beginPath();
+ ctx.fillRect(0, 0, 100, 100);
+ ctx.fillStyle = 'rgb(0,255,0)';
+ if (path) {
+ if (fillRule) {
+ ctx.clip(path, fillRule);
+ } else {
+ ctx.clip(path);
+ }
+ } else {
+ ctx.beginPath();
+ drawRectanglesOn(ctx);
+ if (fillRule) {
+ ctx.clip(fillRule);
+ } else {
+ ctx.clip();
+ }
+ }
+ ctx.beginPath();
+ ctx.fillRect(0, 0, 100, 100);
+ if (fillRule == 'evenodd') {
+ checkResult([255, 0, 0, 255], 5);
+ } else {
+ checkResult([0, 255, 0, 255], 5);
+ }
+ debug('');
+}
+
+// Execute test.
+function prepareTestScenario() {
+ fillRules = [undefined, 'nonzero', 'evenodd'];
+ var path = new Path();
+ drawRectanglesOn(path);
+
+ for (var i = 0; i < fillRules.length; i++) {
+ testClipWith(fillRules[i]);
+ testClipWith(fillRules[i], path);
+ }
+
+ // Test exception cases.
+ shouldThrow("ctx.clip(null)");
+ shouldThrow("ctx.clip(null, null)");
+}
+
+// Run test and allow variation of results.
+prepareTestScenario();
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-path-context-fill.js b/third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-path-context-fill.js
new file mode 100644
index 0000000..c394d6b
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-path-context-fill.js
@@ -0,0 +1,70 @@
+description("Series of tests to ensure fill() works with path and winding rule parameters.");
+
+var ctx = document.getElementById('canvas').getContext('2d');
+
+function pixelDataAtPoint() {
+ return ctx.getImageData(50, 50, 1, 1).data;
+}
+
+function checkResult(expectedColors, sigma) {
+ for (var i = 0; i < 4; i++)
+ shouldBeCloseTo("pixelDataAtPoint()[" + i + "]", expectedColors[i], sigma);
+}
+
+function drawRectanglesOn(contextOrPath) {
+ contextOrPath.rect(0, 0, 100, 100);
+ contextOrPath.rect(25, 25, 50, 50);
+}
+
+function formatName(fillRule, path) {
+ return 'fill(' + (path ? 'path' : '') + (fillRule && path ? ', ' : '') +
+ (fillRule ? '"' + fillRule + '"' : '') + ')';
+}
+
+function testFillWith(fillRule, path) {
+ debug('Testing ' + formatName(fillRule, path));
+ ctx.fillStyle = 'rgb(255,0,0)';
+ ctx.beginPath();
+ ctx.fillRect(0, 0, 100, 100);
+ ctx.fillStyle = 'rgb(0,255,0)';
+ if (path) {
+ if (fillRule) {
+ ctx.fill(path, fillRule);
+ } else {
+ ctx.fill(path);
+ }
+ } else {
+ ctx.beginPath();
+ drawRectanglesOn(ctx);
+ if (fillRule) {
+ ctx.fill(fillRule);
+ } else {
+ ctx.fill();
+ }
+ }
+ if (fillRule == 'evenodd') {
+ checkResult([255, 0, 0, 255], 5);
+ } else {
+ checkResult([0, 255, 0, 255], 5);
+ }
+ debug('');
+}
+
+// Execute test.
+function prepareTestScenario() {
+ fillRules = [undefined, 'nonzero', 'evenodd'];
+ var path = new Path();
+ drawRectanglesOn(path);
+
+ for (var i = 0; i < fillRules.length; i++) {
+ testFillWith(fillRules[i]);
+ testFillWith(fillRules[i], path);
+ }
+
+ // Test exception cases.
+ shouldThrow("ctx.fill(null)");
+ shouldThrow("ctx.fill(null, null)");
+}
+
+// Run test and allow variation of results.
+prepareTestScenario();
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-path-context-stroke.js b/third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-path-context-stroke.js
new file mode 100644
index 0000000..d3f711f
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-path-context-stroke.js
@@ -0,0 +1,53 @@
+description("Series of tests to ensure stroke() works with optional path parameter.");
+
+var ctx = document.getElementById('canvas').getContext('2d');
+
+function pixelDataAtPoint() {
+ return ctx.getImageData(75, 75, 1, 1).data;
+}
+
+function checkResult(expectedColors, sigma) {
+ for (var i = 0; i < 4; i++)
+ shouldBeCloseTo("pixelDataAtPoint()[" + i + "]", expectedColors[i], sigma);
+}
+
+function drawRectangleOn(contextOrPath) {
+ contextOrPath.rect(25, 25, 50, 50);
+}
+
+function formatName(path) {
+ return 'stroke(' + (path ? 'path' : '') + ')';
+}
+
+function testStrokeWith(path) {
+ debug('Testing ' + formatName(path));
+ ctx.fillStyle = 'rgb(255,0,0)';
+ ctx.beginPath();
+ ctx.fillRect(0, 0, 100, 100);
+ ctx.strokeStyle = 'rgb(0,255,0)';
+ ctx.lineWidth = 5;
+ if (path) {
+ ctx.stroke(path);
+ } else {
+ ctx.beginPath();
+ drawRectangleOn(ctx);
+ ctx.stroke();
+ }
+ debug('');
+ checkResult([0, 255, 0, 255], 5);
+}
+
+// Execute test.
+function prepareTestScenario() {
+ var path = new Path();
+ drawRectangleOn(path);
+
+ testStrokeWith();
+ testStrokeWith(path);
+
+ // Test exception cases.
+ shouldThrow("ctx.stroke(null)");
+}
+
+// Run test and allow variation of results.
+prepareTestScenario();