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

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

Issue 8728023: (Cleanup) Use its own MIME type in the PPAPI IME example. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Wrapped >80 letter lines. Created 9 years 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <!-- 3 <!--
4 Copyright (c) 2011 The Chromium 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>IME Example</title> 9 <title>IME Example</title>
10 </head> 10 </head>
11 <body style="background-color:#eef"> 11 <body style="background-color:#eef">
12 <p>Full IME Support</p> 12 <p>Full IME Support</p>
13 <object id="plugin1" type="application/x-ppapi-example" width="400" height="15 0" 13 <object id="plugin1" type="application/x-ppapi-example-ime" width="400"
14 border="2px"><param name="ime" value="full" /></object> 14 height="150" border="2px"><param name="ime" value="full" /></object>
15 15
16 <p>CaretMoveOnly</p> 16 <p>CaretMoveOnly</p>
17 <object id="plugin2" type="application/x-ppapi-example" width="400" height="15 0" 17 <object id="plugin2" type="application/x-ppapi-example-ime" width="400"
18 border="2px"><param name="ime" value="caretmove" /></object> 18 height="150" border="2px"><param name="ime" value="caretmove" /></object>
19 19
20 <p>IME-Unaware</p> 20 <p>IME-Unaware</p>
21 <object id="plugin3" type="application/x-ppapi-example" width="400" height="15 0" 21 <object id="plugin3" type="application/x-ppapi-example-ime" width="400"
22 border="2px"><param name="ime" value="unaware" /></object> 22 height="150" border="2px"><param name="ime" value="unaware" /></object>
23 23
24 <p>No IME (explicitly turn IME off)</p> 24 <p>No IME (explicitly turn IME off)</p>
25 <object id="plugin4" type="application/x-ppapi-example" width="400" height="15 0" 25 <object id="plugin4" type="application/x-ppapi-example-ime" width="400"
26 border="2px"><param name="ime" value="no" /></object> 26 height="150" border="2px"><param name="ime" value="no" /></object>
27 27
28 <p>HTML Textarea</p> 28 <p>HTML Textarea</p>
29 <textarea width="200" height="3"></textarea> 29 <textarea width="200" height="3"></textarea>
30 </body> 30 </body>
31 </html> 31 </html>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698