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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/security/cross-origin-OffscreenCanvasWebGL-texImage2D.html

Issue 2806803003: Make OffscreenCanvas WebGL(2) context consider taintedness of image source (Closed)
Patch Set: rebase Created 3 years, 8 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/http/tests/security/cross-origin-OffscreenCanvasWebGL-texImage2D.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/security/cross-origin-OffscreenCanvasWebGL-texImage2D.html b/third_party/WebKit/LayoutTests/http/tests/security/cross-origin-OffscreenCanvasWebGL-texImage2D.html
new file mode 100644
index 0000000000000000000000000000000000000000..89bcd1605f0043cb784a07617e67c44414cae8f2
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/http/tests/security/cross-origin-OffscreenCanvasWebGL-texImage2D.html
@@ -0,0 +1,54 @@
+<!DOCTYPE html>
+<html>
+<body>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script>
+
+function startTest(imageSourceElement, imageSourceType) {
+ var offscreenCanvas = new OffscreenCanvas(10, 10);
+ var gl = offscreenCanvas.getContext("webgl");
+ var texture = gl.createTexture();
+ gl.bindTexture(gl.TEXTURE_2D, texture);
+
+ assert_throws("SecurityError", function() {
+ gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, gl.RGBA, gl.UNSIGNED_BYTE, imageSourceElement);
+ }, "cross-origin " + imageSourceType + " should be tainted");
+}
+
+var t = async_test("cross-origin image/canvas passed to Offscreen webgl texImage2D should be thrown");
+var image = document.createElement('img');
+image.addEventListener("load", function() {
+ t.step(function() {
+ startTest(image, "image");
+ });
+
+ var canvas = document.createElement("canvas");
+ canvas.width = 10;
+ canvas.height = 10;
+ var context = canvas.getContext("2d");
+ // taint the canvas
+ context.drawImage(image, 0, 0, 10, 10);
+ t.step(function() {
+ startTest(canvas, "canvas");
+ t.done();
+ });
+
+});
+image.src = 'http://localhost:8080/security/resources/abe.png';
+
+var t2 = async_test("cross-origin video passed to Offscreen webgl texImage2D should be thrown");
+var video = document.createElement('video');
+video.src = 'http://localhost:8080/media/resources/load-video.php?name=test.ogv&amp;type=video/ogv';
+document.body.appendChild(video);
+video.addEventListener("playing", function() {
+ t2.step(function() {
+ startTest(video, "video");
+ t2.done();
+ });
+});
+video.play();
+
+</script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698