summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDaniel Carl <danielcarl@gmx.de>2015-08-23 09:24:38 +0200
committerDaniel Carl <danielcarl@gmx.de>2015-08-23 09:34:27 +0200
commit2b5825841e5a688a665bddc21b452e5e1257ac6d (patch)
tree553ca13ee04b91cd7b4622198fe6577efed7df85 /tests
parent44c203ce291ddf62482adda39ac3bf5701e8a218 (diff)
Added manual test for contenteditable element (#237).
Diffstat (limited to 'tests')
-rw-r--r--tests/manual/112-editable-focus.html10
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/manual/112-editable-focus.html b/tests/manual/112-editable-focus.html
index 509f9f4..3accc37 100644
--- a/tests/manual/112-editable-focus.html
+++ b/tests/manual/112-editable-focus.html
@@ -1,6 +1,6 @@
<html>
<head>
-<title>iFrame URI change by HSTS (#146)</title>
+<title>Input mode Switching (#112 #237)</title>
<script type="text/javascript">
//<![CDATA[
function setFocus() {
@@ -26,6 +26,14 @@ function setFocus() {
<input type="button" value="Focus Textarea" onclick="document.getElementById('text').focus();"/>
</div>
</form>
+ <p>
+ Also the following element using <code>contenteditable="true"</code>
+ should switch vimb into input mode on click.
+ </p>
+ <div contenteditable="true" style="width:50%;height:3em;border:1px solid #000">
+ Clicking this element using contenteditable="true" should
+ switch vimb into input mode too.
+ </div>
</body>
</html>