mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 21:00:42 +02:00
Automatic update from web-platform-tests
Replace some assert_throws("Something", stuff) calls with assert_throws_dom. (#21377)
This diff was generated by running:
find . -type f -print0 | xargs -0 perl -pi -e 'BEGIN { $/ = undef; } s/assert_throws\(([ \n]*"[A-Za-z_]*") *(, *.)/assert_throws_dom(\1\2/gs'
followed by a fix to
xhr/resources/send-after-setting-document-domain-window-helper.js to make
xhr/send-after-setting-document-domain.htm pass.
This does affect indentation poorly in cases when the first arg was on the same
line as the assert_throws, there was a newline after the ',' after the first
arg, and the following args were lined up with the first arg. Fixing that,
especially when there are multiple lines after the first arg, is not trivial
with a regexp.
Co-authored-by: Boris Zbarsky <bzbarsky@mit.edu>
--
wpt-commits: 3696f2233a37437896505b7187968aa605be9255
wpt-pr: 21377
34 lines
1.3 KiB
HTML
34 lines
1.3 KiB
HTML
<!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;
|
|
|
|
promise_test(function() {
|
|
function testException(image) {
|
|
var dstCanvas = document.createElement('canvas');
|
|
dstCanvas.width = width;
|
|
dstCanvas.height = height;
|
|
var dstCtx = dstCanvas.getContext('bitmaprenderer');
|
|
dstCtx.transferFromImageBitmap(image);
|
|
|
|
// The image should be detached after transferFromImageBitmap.
|
|
assert_equals(image.width, 0);
|
|
assert_equals(image.height, 0);
|
|
assert_throws_dom("InvalidStateError", function() { dstCtx.transferFromImageBitmap(image); });
|
|
}
|
|
|
|
var srcCanvas = document.createElement('canvas');
|
|
srcCanvas.width = width;
|
|
srcCanvas.height = height;
|
|
var ctx = srcCanvas.getContext('2d');
|
|
ctx.fillStyle = 'rgba(0, 255, 0, 0.5)';
|
|
ctx.fillRect(0, 0, width, height);
|
|
return createImageBitmap(srcCanvas).then(testException);
|
|
}, "Test transferFromImageBitmap(image) with a detached image should throw InvalidStateError");
|
|
|
|
</script>
|