| Index: ppapi/examples/ime/ime.html
|
| diff --git a/ppapi/examples/ime/ime.html b/ppapi/examples/ime/ime.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..5cc85b4223461d1e5989bff0723e932c1db983ad
|
| --- /dev/null
|
| +++ b/ppapi/examples/ime/ime.html
|
| @@ -0,0 +1,39 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| + <!--
|
| + Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| + Use of this source code is governed by a BSD-style license that can be
|
| + found in the LICENSE file.
|
| + -->
|
| +<head>
|
| +<title>IME Example</title>
|
| +<style>
|
| +#pluginX {
|
| + -webkit-transform: rotate(15deg);
|
| +}
|
| +</style>
|
| +</head>
|
| +<body style="background-color:#eef">
|
| +<p>Full / CaretMoveOnly</p>
|
| +<br>
|
| +<object id="plugin1" type="application/x-ppapi-example" width="400" height="250" border="2px">
|
| + border="2px"><param name="ime" value="full" /></object>
|
| +<object id="plugin2" type="application/x-ppapi-example" width="400" height="250"
|
| + border="2px"><param name="ime" value="caretmove" /></object>
|
| +<br>
|
| +<br>
|
| +<br>
|
| +<br>
|
| +<p>ImeUnaware / NoIme</p>
|
| +<br>
|
| +<object id="plugin3" type="application/x-ppapi-example" width="400" height="250"
|
| + border="2px"><param name="ime" value="unaware" /></object>
|
| +<object id="plugin4" type="application/x-ppapi-example" width="400" height="250"
|
| + border="2px"><param name="ime" value="no" /></object>
|
| +
|
| +<p>Textarea A:</p>
|
| +<textarea width="200" height="3"></textarea>
|
| +<br>
|
| +<br>
|
| +</body>
|
| +</html>
|
|
|