summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/reftest/capturestream.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/canvas/test/reftest/capturestream.html')
-rw-r--r--dom/canvas/test/reftest/capturestream.html35
1 files changed, 35 insertions, 0 deletions
diff --git a/dom/canvas/test/reftest/capturestream.html b/dom/canvas/test/reftest/capturestream.html
new file mode 100644
index 0000000000..b07ab394bc
--- /dev/null
+++ b/dom/canvas/test/reftest/capturestream.html
@@ -0,0 +1,35 @@
+<!DOCTYPE html>
+<meta charset='UTF-8'>
+<!--
+Clear the canvas to green and capture it to a stream to test that we can get
+the stream to screen in a local video element.
+-->
+<html class="reftest-wait">
+
+<head>
+ <script type='text/javascript'>
+function finished() {
+ document.documentElement.removeAttribute("class");
+}
+
+function runTest() {
+ var canvas = document.getElementById('canvas');
+ var context = canvas.getContext('2d');
+ context.fillStyle = "rgba(0, 255, 0, 1)";
+ context.fillRect(0, 0, canvas.width, canvas.height);
+
+ var video = document.getElementById('video');
+ video.srcObject = canvas.captureStream(0);
+ video.play();
+ video.onloadeddata = finished;
+ video.onerror = finished;
+}
+ </script>
+</head>
+
+<body onload='runTest();'>
+ <video id='video' width='256' height='256'></video>
+ <canvas id='canvas' width='256' height='256' style="display:none"></canvas>
+</body>
+
+</html>