| Index: LayoutTests/svg/as-image/svg-canvas-link-not-colored.html
|
| diff --git a/LayoutTests/svg/as-image/svg-canvas-link-not-colored.html b/LayoutTests/svg/as-image/svg-canvas-link-not-colored.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..53c22d938b125d2dcca2621e35ff0052ed7eda71
|
| --- /dev/null
|
| +++ b/LayoutTests/svg/as-image/svg-canvas-link-not-colored.html
|
| @@ -0,0 +1,39 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<head>
|
| + <script src="../../fast/js/resources/js-test-pre.js"></script>
|
| +</head>
|
| +<body>
|
| + <script>
|
| + if (window.testRunner) {
|
| + testRunner.dumpAsText();
|
| + testRunner.waitUntilDone();
|
| + }
|
| +
|
| + var svg = new Image();
|
| + svg.src = "resources/link.svg";
|
| +
|
| + svg.onload = function() {
|
| + var canvas = document.createElement("canvas");
|
| + var ctx = canvas.getContext("2d");
|
| +
|
| + window.colorChannels = ctx.getImageData(0, 0, 1, 1).data;
|
| +
|
| + shouldBe("window.colorChannels[0]", "0");
|
| + shouldBe("window.colorChannels[1]", "0");
|
| + shouldBe("window.colorChannels[2]", "0");
|
| +
|
| + ctx.drawImage(svg, 0, 0);
|
| +
|
| + window.colorChannels = ctx.getImageData(0, 0, 1, 1).data;
|
| +
|
| + shouldBe("window.colorChannels[0]", "0");
|
| + shouldBe("window.colorChannels[1]", "128");
|
| + shouldBe("window.colorChannels[2]", "0");
|
| +
|
| + if (window.testRunner)
|
| + testRunner.notifyDone();
|
| + };
|
| + </script>
|
| +</body>
|
| +</html>
|
|
|