chromium/third_party/blink/web_tests/fast/canvas/imagebitmap/transferFromImageBitmap-expected.html

<!DOCTYPE html>
<canvas id = 'c' width='100' height='100'></canvas>
<script>
var ctx = document.getElementById('c').getContext('2d');
ctx.fillStyle = 'green';
ctx.fillRect(0, 0, 100, 100);
</script>