mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
Update web-platform-tests to revision e8bfc205e36ad699601212cd50083870bad9a75d
This commit is contained in:
parent
65dd6d4340
commit
ccdb0a3458
1428 changed files with 118036 additions and 9786 deletions
|
@ -0,0 +1,19 @@
|
|||
<!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;
|
||||
|
||||
test(function() {
|
||||
var canvas = document.createElement("canvas");
|
||||
canvas.width = width;
|
||||
canvas.height = height;
|
||||
var ctx = canvas.getContext('bitmaprenderer');
|
||||
assert_true(ctx instanceof ImageBitmapRenderingContext);
|
||||
}, "Test that canvas.getContext('bitmaprenderer') returns an instance of ImageBitmapRenderingContext");
|
||||
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue