mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 02:47:31 +09:00
38 lines
1.3 KiB
HTML
38 lines
1.3 KiB
HTML
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
|
|
<!DOCTYPE html>
|
|
<html id="html">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>Marionette tests for AccessibleCaret in selection mode</title>
|
|
<style>
|
|
.block {
|
|
width: 10em;
|
|
height: 4em;
|
|
word-wrap: break-word;
|
|
overflow: auto;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<input id="input" value="ABC DEF GHI">
|
|
<input id="input-padding" style="padding: 1em;" value="ABC DEF GHI">
|
|
</div>
|
|
<br>
|
|
<div>
|
|
<textarea id="textarea" rows="4" cols="8">ABC DEF GHI JKL MNO PQR</textarea>
|
|
<textarea id="textarea-one-line" rows="4" cols="12">ABC DEF GHI</textarea>
|
|
</div>
|
|
<br>
|
|
<div><textarea dir="rtl" id="textarea-rtl" rows="8" cols="8">موزيلا فيرفكس موزيلا فيرفكس</textarea></div>
|
|
<br>
|
|
<div class="block" contenteditable="true" id="contenteditable">ABC DEF GHI</div>
|
|
<br>
|
|
<div class="block" id="content">ABC DEF GHI</div>
|
|
<br>
|
|
<div style="-moz-user-select: none;" id="non-selectable">Non-selectable</div>
|
|
</body>
|
|
</html>
|