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

Side by Side Diff: chrome/test/data/android/webvr_instrumentation/html/webvr_instrumentation_base.html

Issue 2588703003: Add WebVR WebVR E2E test capabilities via Android instrumentation (Closed)
Patch Set: Simplify Javascript code slightly Created 3 years, 10 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!doctype html>
2 <!--
3 A page that contains the basic tools for automated WebVR testing via
4 instrumentation tests - a canvas and a page-covering button that presents.
5 -->
Lei Lei 2017/02/16 22:04:50 This file is unused.
bsheedy 2017/02/16 23:30:14 Done. It was meant to be a template that people co
6 <html>
7 <head>
8 <style>
9 html, body {
10 margin: 0;
11 padding: 0;
12 width: 100%;
13 height: 100%;
14 }
15 #webgl-canvas {
16 box-sizing: border-box;
17 height: 100%;
18 left: 0;
19 margin: 0;
20 position: absolute;
21 top: 0;
22 width: 100%;
23 }
24 #log {
25 display: none;
26 }
27 </style>
28 </head>
29 <body>
30 <canvas id="webgl-canvas"></canvas>
31 <script src="../../../../../../third_party/WebKit/LayoutTests/resources/test harness.js"></script>
32 <script src="../resources/webvr_e2e.js"></script>
33 <script src="../resources/webvr_boilerplate.js"></script>
34 <script>
35 // Your Javascript code goes here
36 </script>
37 </body>
38 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698