| Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/the-offscreen-canvas/size.attributes.default.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/the-offscreen-canvas/size.attributes.default.html b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/the-offscreen-canvas/size.attributes.default.html
|
| deleted file mode 100644
|
| index b5fa3c0f1157e85a32b1f0888f6fc4958522c62a..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/the-offscreen-canvas/size.attributes.default.html
|
| +++ /dev/null
|
| @@ -1,25 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. -->
|
| -<title>OffscreenCanvas test: size.attributes.default</title>
|
| -<script src="/resources/testharness.js"></script>
|
| -<script src="/resources/testharnessreport.js"></script>
|
| -<script src="/common/canvas-tests.js"></script>
|
| -
|
| -<h1>size.attributes.default</h1>
|
| -<p class="desc">Default width/height when attributes are missing</p>
|
| -
|
| -
|
| -<script>
|
| -var t = async_test("Default width/height when attributes are missing");
|
| -t.step(function() {
|
| -
|
| -var offscreenCanvas = new OffscreenCanvas(100, 50);
|
| -var ctx = offscreenCanvas.getContext('2d');
|
| -
|
| -_assertSame(offscreenCanvas.width, 100, "offscreenCanvas.width", "100");
|
| -_assertSame(offscreenCanvas.height, 50, "offscreenCanvas.height", "50");
|
| -
|
| -t.done();
|
| -
|
| -});
|
| -</script>
|
|
|