summaryrefslogtreecommitdiff
path: root/devtools/client/canvasdebugger/test/browser_canvas-actor-test-01.js
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/canvasdebugger/test/browser_canvas-actor-test-01.js')
-rw-r--r--devtools/client/canvasdebugger/test/browser_canvas-actor-test-01.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/devtools/client/canvasdebugger/test/browser_canvas-actor-test-01.js b/devtools/client/canvasdebugger/test/browser_canvas-actor-test-01.js
new file mode 100644
index 0000000000..9b6ee4e4fc
--- /dev/null
+++ b/devtools/client/canvasdebugger/test/browser_canvas-actor-test-01.js
@@ -0,0 +1,17 @@
+/* Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/ */
+
+/**
+ * Tests if the canvas debugger leaks on initialization and sudden destruction.
+ * You can also use this initialization format as a template for other tests.
+ */
+
+function* ifTestingSupported() {
+ let { target, front } = yield initCallWatcherBackend(SIMPLE_CANVAS_URL);
+
+ ok(target, "Should have a target available.");
+ ok(front, "Should have a protocol front available.");
+
+ yield removeTab(target.tab);
+ finish();
+}