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

Unified Diff: tools/perf/page_sets/webrtc_cases/canvas-capture.html

Issue 2761163003: Use local pages for webrtc telemetry tests. (Closed)
Patch Set: Add script to download pages. (Benchmarks not tested yet) Created 3 years, 9 months 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: 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>

Powered by Google App Engine
This is Rietveld 408576698