diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2008-10-21 07:00:00 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2008-10-21 07:00:00 -0700 |
commit | 9364f22aed35e1a1e9d07c121510f80be3ab0502 (patch) | |
tree | d49911209b132da58d838efa852daf28d516df21 /WebCore/manual-tests/inline-input-marking.html | |
parent | 87eb0cb35bad8784770ebc807e6c982432e47107 (diff) | |
download | external_webkit-9364f22aed35e1a1e9d07c121510f80be3ab0502.zip external_webkit-9364f22aed35e1a1e9d07c121510f80be3ab0502.tar.gz external_webkit-9364f22aed35e1a1e9d07c121510f80be3ab0502.tar.bz2 |
Initial Contribution
Diffstat (limited to 'WebCore/manual-tests/inline-input-marking.html')
-rw-r--r-- | WebCore/manual-tests/inline-input-marking.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/WebCore/manual-tests/inline-input-marking.html b/WebCore/manual-tests/inline-input-marking.html new file mode 100644 index 0000000..4c62cd4 --- /dev/null +++ b/WebCore/manual-tests/inline-input-marking.html @@ -0,0 +1,38 @@ +<html> +<head> + +<style> +.editing { + border: 2px solid red; + padding: 12px; + font-size: 24px; +} +.inputtest { + font-family:'Hiragino Kaku Gothic Std'; + border: 2px solid green; +} +</style> + +<title>Inline Input Method Marking</title> +</head> +<body> +<p>This tests that the underlining of the inline input hole does not obscure the glyphs.</p> + +<ol> +<li>Switch to Hirigana input method</li> +<li>Type characters into each of the green blocks below</li> +<li>As you do so, check that glyphs in the inline hole are clearly readable</li> +</ol> +<div contenteditable id="root" class="editing" style="width:400px;"> +9px Hiragino Kaku Gothic Std<div class="inputtest" style="font-size: 9px;"><br></div> +<br>12px Hiragino Kaku Gothic Std<div class="inputtest" style="font-size: 12px;"><br></div> +<br>24px Hiragino Kaku Gothic Std<div class="inputtest" style="font-size: 24px;"><br></div> +</div> + +<script> +runEditingTest(); +</script> + +</body> +</html> + |