mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Update web-platform-tests to revision b'468d01bbd84da2babf265c6af46947be68713440'
This commit is contained in:
parent
35e95f55a1
commit
58e8ee674b
9438 changed files with 266112 additions and 106976 deletions
|
@ -0,0 +1,65 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>Canvas's ImageBitmapRenderingContext test</title>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/scripting.html#the-imagebitmap-rendering-context">
|
||||
<script>
|
||||
var width = 10;
|
||||
var height = 10;
|
||||
|
||||
function testCanvas(bitmapCanvas, r, g, b, a)
|
||||
{
|
||||
var myCanvas = document.createElement('canvas');
|
||||
myCanvas.width = width;
|
||||
myCanvas.height = height;
|
||||
var myCtx = myCanvas.getContext('2d');
|
||||
myCtx.drawImage(bitmapCanvas, 0, 0);
|
||||
var color = myCtx.getImageData(5, 5, 1, 1).data;
|
||||
assert_array_equals(color, [r, g, b, a]);
|
||||
}
|
||||
|
||||
promise_test(function() {
|
||||
function testTransferFromImageBitmapNullability(greenImage, redImage) {
|
||||
var bitmapCanvas = document.createElement('canvas');
|
||||
bitmapCanvas.width = width;
|
||||
bitmapCanvas.height = height;
|
||||
var bitmapCtx = bitmapCanvas.getContext('bitmaprenderer');
|
||||
|
||||
// Make sure the bitmap renderer canvas is filled correctly.
|
||||
bitmapCtx.transferFromImageBitmap(greenImage);
|
||||
testCanvas(bitmapCanvas, 0, 255, 0, 255);
|
||||
|
||||
// Test if passing null resets the bitmap renderer canvas.
|
||||
// Drawing the resetted canvas cannot change the destination canvas.
|
||||
bitmapCtx.transferFromImageBitmap(null);
|
||||
testCanvas(bitmapCanvas, 0, 0, 0, 0);
|
||||
|
||||
// Test if we can redraw the bitmap canvas correctly after reset.
|
||||
bitmapCtx.transferFromImageBitmap(redImage);
|
||||
testCanvas(bitmapCanvas, 255, 0, 0, 255);
|
||||
}
|
||||
|
||||
var greenCanvas = document.createElement('canvas');
|
||||
greenCanvas.width = width;
|
||||
greenCanvas.height = height;
|
||||
var greenCtx = greenCanvas.getContext('2d');
|
||||
greenCtx.fillStyle = '#0f0';
|
||||
greenCtx.fillRect(0, 0, width, height);
|
||||
|
||||
var redCanvas = document.createElement('canvas');
|
||||
redCanvas.width = width;
|
||||
redCanvas.height = height;
|
||||
var redCtx = redCanvas.getContext('2d');
|
||||
redCtx.fillStyle = '#f00';
|
||||
redCtx.fillRect(0, 0, width, height);
|
||||
|
||||
return Promise.all([
|
||||
createImageBitmap(greenCanvas),
|
||||
createImageBitmap(redCanvas),
|
||||
]).then(([greenImage, redImage]) => {
|
||||
testTransferFromImageBitmapNullability(greenImage, redImage);
|
||||
});
|
||||
},'Test that transferFromImageBitmap(null) discards the previously transferred image');
|
||||
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue