| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <!-- | 3 <!-- |
| 4 Copyright (c) 2011 The Native Client Authors. All rights reserved. | 4 Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 5 Use of this source code is governed by a BSD-style license that can be | 5 Use of this source code is governed by a BSD-style license that can be |
| 6 found in the LICENSE file. | 6 found in the LICENSE file. |
| 7 --> | 7 --> |
| 8 <head> | 8 <head> |
| 9 <title>PPAPI InputEvent test</title> | 9 <title>PPAPI InputEvent test</title> |
| 10 | 10 |
| 11 <script type="text/javascript"> | 11 <script type="text/javascript"> |
| 12 function $(id) { | 12 function $(id) { |
| 13 return document.getElementById(id); | 13 return document.getElementById(id); |
| 14 } | 14 } |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 <form name="event_form" action="" method="get"> | 58 <form name="event_form" action="" method="get"> |
| 59 <input type="button" value="Get Events" onclick="getEvents()"/> | 59 <input type="button" value="Get Events" onclick="getEvents()"/> |
| 60 </form> | 60 </form> |
| 61 | 61 |
| 62 <h2>Recent Events (press button to update):</h2> | 62 <h2>Recent Events (press button to update):</h2> |
| 63 <pre id=event_dump> | 63 <pre id=event_dump> |
| 64 no events | 64 no events |
| 65 </pre> | 65 </pre> |
| 66 </body> | 66 </body> |
| 67 </html> | 67 </html> |
| OLD | NEW |