summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/2dcontext/pixel-manipulation/2d.imageData.object.readonly.html
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2021-02-25 01:03:57 +0000
committerMoonchild <moonchild@palemoon.org>2021-02-25 01:03:57 +0000
commitceadffab6b357723981a429e11222daf6cd6dcfb (patch)
tree5603053048d6a460f79b22bdf165fb74d32d39b0 /testing/web-platform/tests/2dcontext/pixel-manipulation/2d.imageData.object.readonly.html
parent14fb2f966e9b54598c451e3cb35b4aa0480dafed (diff)
parentad5a13bd501e379517da1a944c104a11d951a3f5 (diff)
downloadUXP-ceadffab6b357723981a429e11222daf6cd6dcfb.tar
UXP-ceadffab6b357723981a429e11222daf6cd6dcfb.tar.gz
UXP-ceadffab6b357723981a429e11222daf6cd6dcfb.tar.lz
UXP-ceadffab6b357723981a429e11222daf6cd6dcfb.tar.xz
UXP-ceadffab6b357723981a429e11222daf6cd6dcfb.zip
Merge branch 'master' into releaseRC_20210225
Diffstat (limited to 'testing/web-platform/tests/2dcontext/pixel-manipulation/2d.imageData.object.readonly.html')
-rw-r--r--testing/web-platform/tests/2dcontext/pixel-manipulation/2d.imageData.object.readonly.html40
1 files changed, 0 insertions, 40 deletions
diff --git a/testing/web-platform/tests/2dcontext/pixel-manipulation/2d.imageData.object.readonly.html b/testing/web-platform/tests/2dcontext/pixel-manipulation/2d.imageData.object.readonly.html
deleted file mode 100644
index 6f1833733..000000000
--- a/testing/web-platform/tests/2dcontext/pixel-manipulation/2d.imageData.object.readonly.html
+++ /dev/null
@@ -1,40 +0,0 @@
-<!DOCTYPE html>
-<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. -->
-<title>Canvas test: 2d.imageData.object.readonly</title>
-<script src="/resources/testharness.js"></script>
-<script src="/resources/testharnessreport.js"></script>
-<script src="/common/canvas-tests.js"></script>
-<link rel="stylesheet" href="/common/canvas-tests.css">
-<body class="show_output">
-
-<h1>2d.imageData.object.readonly</h1>
-<p class="desc">ImageData objects properties are read-only</p>
-
-
-<p class="output">Actual output:</p>
-<canvas id="c" class="output" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas>
-
-<ul id="d"></ul>
-<script>
-var t = async_test("ImageData objects properties are read-only");
-_addTest(function(canvas, ctx) {
-
-var imgdata = ctx.getImageData(0, 0, 10, 10);
-var w = imgdata.width;
-var h = imgdata.height;
-var d = imgdata.data;
-imgdata.width = 123;
-imgdata.height = 123;
-imgdata.data = [100,100,100,100];
-_assertSame(imgdata.width, w, "imgdata.width", "w");
-_assertSame(imgdata.height, h, "imgdata.height", "h");
-_assertSame(imgdata.data, d, "imgdata.data", "d");
-_assertSame(imgdata.data[0], 0, "imgdata.data[\""+(0)+"\"]", "0");
-_assertSame(imgdata.data[1], 0, "imgdata.data[\""+(1)+"\"]", "0");
-_assertSame(imgdata.data[2], 0, "imgdata.data[\""+(2)+"\"]", "0");
-_assertSame(imgdata.data[3], 0, "imgdata.data[\""+(3)+"\"]", "0");
-
-
-});
-</script>
-