Index: tools/perf/page_sets/webrtc_cases/canvas-capture.html |
diff --git a/tools/perf/page_sets/webrtc_cases/canvas-capture.html b/tools/perf/page_sets/webrtc_cases/canvas-capture.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d079fee53aedb2d2071d3844fd3125d4c2bb9ab7 |
--- /dev/null |
+++ b/tools/perf/page_sets/webrtc_cases/canvas-capture.html |
@@ -0,0 +1,25 @@ |
+<!DOCTYPE html> |
+<!-- |
+ * Copyright 2017 The Chromium Authors. All rights reserved. |
+ * Use of this source code is governed by a BSD-style license that can be |
+ * found in the LICENSE file. |
+--> |
+<html><head> |
+ <title>Canvas capture stream to peerConnection</title> |
+</head> |
+<body> |
+ <div id="container"> |
+ <h1>Canvas capture stream to peerConnection</h1> |
+ |
+ <canvas id="canvas" width=32 height=24></canvas> |
+ <video id="remoteVideo" width=32 height=24 autoplay=""></video> |
+ |
+ <div> |
+ <button id="startButton" class="green">Start test</button> |
+ </div> |
+ </div> |
+ |
+<script src="canvas-capture.js"></script> |
+<script src="adapter.js"></script> |
+<script>function trace(arg) { console.log(arg); }</script> |
+</body></html> |