| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <style> | 3 <style> |
| 4 body { | 4 body { |
| 5 background: white; | 5 background: white; |
| 6 display: -webkit-flex; | 6 display: -webkit-flex; |
| 7 -webkit-justify-content: center; | 7 -webkit-justify-content: center; |
| 8 -webkit-align-items: center; | 8 -webkit-align-items: center; |
| 9 -webkit-flex-direction: column; | 9 -webkit-flex-direction: column; |
| 10 } | 10 } |
| 11 video { | 11 video { |
| 12 width: 640px; | 12 width: 640px; |
| 13 height: 480px; | 13 height: 480px; |
| 14 border: 1px solid #e2e2e2; | 14 border: 1px solid #e2e2e2; |
| 15 box-shadow: 0 1px 1px rgba(0,0,0,0.2); | 15 box-shadow: 0 1px 1px rgba(0,0,0,0.2); |
| 16 } | 16 } |
| 17 </style> | 17 </style> |
| 18 </head> | 18 </head> |
| 19 <body> | 19 <body> |
| 20 <video id="video" autoplay></video> | 20 <video id="video" autoplay></video> |
| 21 <p><button id="start">Start</button><button id="cancel">Cancel</button></p> | 21 <p> |
| 22 <button id="start">Start</button> |
| 23 <button id="cancel">Cancel</button> |
| 24 <button id="startFromBackgroundPage">Start from background page</button> |
| 25 </p> |
| 22 <script src="app.js"></script> | 26 <script src="app.js"></script> |
| 23 </body> | 27 </body> |
| 24 </html> | 28 </html> |
| OLD | NEW |