Chromium Code Reviews| OLD | NEW |
|---|---|
| (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> | |
| OLD | NEW |