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

Side by Side Diff: ppapi/native_client/tests/ppapi_example_events/ppapi_example_events.html

Issue 7778046: Update Native Client Authors to be Chromium Authors for the code moved from the (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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 | Annotate | Revision Log
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698