Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Unified Diff: third_party/WebKit/LayoutTests/fast/canvas/OffScreenCanvas-constructor.html

Issue 1488763002: Start an empty interface OffScreenCanvas (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: shrink everything to empty interface/implementation Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/canvas/OffScreenCanvas-constructor.html
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/OffScreenCanvas-constructor.html b/third_party/WebKit/LayoutTests/fast/canvas/OffScreenCanvas-constructor.html
new file mode 100644
index 0000000000000000000000000000000000000000..1c2964d4b92a4bcd803b78212a77202429a678e1
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/canvas/OffScreenCanvas-constructor.html
@@ -0,0 +1,10 @@
+<!DOCTYPE html>
+<script src="../../resources/js-test.js"></script>
+<script>
+jsTestIsAsync = true;
Justin Novosad 2015/12/03 04:42:58 No need for this test to be async
xidachen 2015/12/03 04:54:46 Done.
+
+description("Tests that the constructor of the OffScreenCanvas can be called on the main thread");
+
+var aCanvas = new OffScreenCanvas(50, 50);
+finishJSTest();
+</script>

Powered by Google App Engine
This is Rietveld 408576698