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

Unified Diff: LayoutTests/svg/as-image/svg-canvas-svg-with-image-with-link-tainted.html

Issue 22604008: Allow SVG images to not taint the canvas with drawImage/drawPattern (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase after r156375 Created 7 years, 4 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: LayoutTests/svg/as-image/svg-canvas-svg-with-image-with-link-tainted.html
diff --git a/LayoutTests/svg/as-image/svg-canvas-svg-with-image-with-link-tainted.html b/LayoutTests/svg/as-image/svg-canvas-svg-with-image-with-link-tainted.html
new file mode 100644
index 0000000000000000000000000000000000000000..8395ebeac6a47039fc43265a356f1e1c7635b747
--- /dev/null
+++ b/LayoutTests/svg/as-image/svg-canvas-svg-with-image-with-link-tainted.html
@@ -0,0 +1,31 @@
+<!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/svg-with-image-with-link.svg";
+
+ svg.onload = function() {
+ var canvas = document.createElement("canvas");
+ window.ctx = canvas.getContext("2d");
+
+ ctx.getImageData(0, 0, 1, 1);
+
+ ctx.drawImage(svg, 0, 0);
+
+ shouldThrow("window.ctx.getImageData(0, 0, 1, 1)");
+
+ if (window.testRunner)
+ testRunner.notifyDone();
+ };
+ </script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698