| OLD | NEW | 
| (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 <style> | 
 |  11 #pluginX { | 
 |  12   -webkit-transform: rotate(15deg); | 
 |  13 } | 
 |  14 </style> | 
 |  15 </head> | 
 |  16 <body style="background-color:#eef"> | 
 |  17 <p>Full / CaretMoveOnly</p> | 
 |  18 <br> | 
 |  19 <object id="plugin1" type="application/x-ppapi-example" width="400" height="250"
     border="2px"> | 
 |  20   border="2px"><param name="ime" value="full" /></object> | 
 |  21 <object id="plugin2" type="application/x-ppapi-example" width="400" height="250" | 
 |  22   border="2px"><param name="ime" value="caretmove" /></object> | 
 |  23 <br> | 
 |  24 <br> | 
 |  25 <br> | 
 |  26 <br> | 
 |  27 <p>ImeUnaware / NoIme</p> | 
 |  28 <br> | 
 |  29 <object id="plugin3" type="application/x-ppapi-example" width="400" height="250" | 
 |  30   border="2px"><param name="ime" value="unaware" /></object> | 
 |  31 <object id="plugin4" type="application/x-ppapi-example" width="400" height="250" | 
 |  32   border="2px"><param name="ime" value="no" /></object> | 
 |  33  | 
 |  34 <p>Textarea A:</p> | 
 |  35 <textarea width="200" height="3"></textarea> | 
 |  36 <br> | 
 |  37 <br> | 
 |  38 </body> | 
 |  39 </html> | 
| OLD | NEW |