Update web-platform-tests to revision 2be2d7e3abcde5baded3448b85d0bb88e58d3cf7

This commit is contained in:
WPT Sync Bot 2020-02-25 08:19:47 +00:00
parent c9c5f8b9e5
commit 5a55ae1b13
377 changed files with 9772 additions and 15950 deletions

View file

@ -12,7 +12,7 @@ test(function() {
var ctx = canvas.getContext('bitmaprenderer');
assert_true(ctx instanceof ImageBitmapRenderingContext);
assert_true("canvas" in ctx);
assert_object_equals(canvas, ctx.canvas);
assert_equals(canvas, ctx.canvas);
}, "Test that canvas.getContext('bitmaprenderer') returns an instance of ImageBitmapRenderingContext and ctx.canvas on a ImageBitmapRenderingContext returns the original OffscreenCanvas");
</script>