diff options
Diffstat (limited to 'mobile/android/tests/browser/robocop/testAccessibleCarets.html')
-rw-r--r-- | mobile/android/tests/browser/robocop/testAccessibleCarets.html | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/mobile/android/tests/browser/robocop/testAccessibleCarets.html b/mobile/android/tests/browser/robocop/testAccessibleCarets.html new file mode 100644 index 000000000..99ae949e4 --- /dev/null +++ b/mobile/android/tests/browser/robocop/testAccessibleCarets.html @@ -0,0 +1,45 @@ +<html> + <head> + <title>ActionBar Handler and AccessibleCarets tests</title> + <meta name="viewport" + content="initial-scale=1, allowZoom=no, maximum-scale=1, + user-scalable=no, width=device-width"> + </head> + + <body> + <div id="LTRcontenteditable" + style="direction: ltr; width: 10em; height: 2em; word-wrap: break-word; + overflow: auto; -moz-user-select:text" + contenteditable="true">Find my book</div> + <div id="RTLcontenteditable" + style="direction: rtl; width: 10em; height: 2em; word-wrap: break-word; + overflow: auto; -moz-user-select:text" + contenteditable="true">איפה האוטו שלי</div> + + <div id="LTRtextContent" + style="direction: ltr; width: 10em; height: 2em; word-wrap: break-word; + overflow: auto; -moz-user-select:text">Open the door</div> + <div id="RTLtextContent" + style="direction: rtl; width: 10em; height: 2em; word-wrap: break-word; + overflow: auto; -moz-user-select:text">תן לי מים</div> + + <input id="LTRinput" style="direction: ltr;" value="Type something"> + <input id="RTLinput" style="direction: rtl;" value="לרוץ במעלה הגבעה"> + <br><br><br> + + <textarea id="LTRtextarea" style="direction: ltr;" + rows="3" cols="8">Words in a box</textarea> + <textarea id="RTLtextarea" style="direction: rtl;" + rows="3" cols="8">הספר הוא טוב</textarea> + + <br> + <input id="LTRphone" style="direction: ltr;" size="40" + value="09876543210 .-.)(wp#*1034103410341034X"> + <br> + <input id="RTLphone" style="direction: rtl;" size="40" + value="התקשר +972 3 7347514 במשך זמן טוב"> + <br><br><br> + <div><input value="DDs12">3 45<em id="bug1265750"> 678</em> 90</div> + + </body> +</html> |