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

Side by Side Diff: ppapi/examples/ime/ime.html

Issue 7977017: Never submit: tentative Pepper IME. (Closed) Base URL: svn://svn.chromium.org/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
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <!--
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
6 found in the LICENSE file.
7 -->
8 <head>
9 <title>IME Example</title>
10 </head>
11 <body style="background-color:#eef">
12 <p>Full / CaretMoveOnly</p>
13 <br>
14 <object id="plugin1" type="application/x-ppapi-example" width="400" height="150"
15 border="2px"><param name="ime" value="full" /></object>
16 <object id="plugin2" type="application/x-ppapi-example" width="400" height="150"
17 border="2px"><param name="ime" value="caretmove" /></object>
18 <br>
19 <p>ImeUnaware / NoIme</p>
20 <br>
21 <object id="plugin3" type="application/x-ppapi-example" width="400" height="150"
22 border="2px"><param name="ime" value="unaware" /></object>
23 <object id="plugin4" type="application/x-ppapi-example" width="400" height="150"
24 border="2px"><param name="ime" value="no" /></object>
25
26 <p>Textarea</p>
27 <textarea width="200" height="3"></textarea>
28
29 </body>
30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698