mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-13 23:17:57 +00:00
64 lines
2.0 KiB
HTML
64 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>nsIAccessibleEditableText chrome tests</title>
|
|
<link rel="stylesheet" type="text/css"
|
|
href="chrome://mochikit/content/tests/SimpleTest/test.css" />
|
|
|
|
<script type="application/javascript"
|
|
src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
|
|
|
|
<script type="application/javascript"
|
|
src="../common.js"></script>
|
|
<script type="application/javascript"
|
|
src="../events.js"></script>
|
|
<script type="application/javascript"
|
|
src="editabletext.js"></script>
|
|
|
|
<script type="application/javascript">
|
|
function doTest()
|
|
{
|
|
var et = new editableTextTest("input");
|
|
|
|
// 'ee' insertion/removal at 1 or 2 offset of 'hello'/'heeello' string
|
|
// reports 'ee' text was inserted/removed at 2 offset.
|
|
et.scheduleTest(et.insertText, "ee", 1, "heeello", 2);
|
|
et.scheduleTest(et.copyText, 1, 3, "ee");
|
|
et.scheduleTest(et.cutText, 1, 3, "hello", 2, 4);
|
|
et.scheduleTest(et.insertText, "ee", 2, "heeello", 2);
|
|
et.scheduleTest(et.cutText, 2, 4, "hello", 2, 4);
|
|
|
|
et.scheduleTest(et.deleteText, 1, 3, "hlo");
|
|
et.scheduleTest(et.pasteText, 1, "heelo");
|
|
|
|
var testRun = new editableTextTestRun();
|
|
testRun.add(et);
|
|
testRun.run(); // Will call SimpleTest.finish();
|
|
}
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
addA11yLoadEvent(doTest);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<a target="_blank"
|
|
title="HyperText accessible should get focus when the caret is positioned inside of it, text is changed or copied into clipboard by ATs"
|
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=524115">
|
|
Mozilla Bug 524115
|
|
</a>
|
|
<a target="_blank"
|
|
title="Cache rendered text on a11y side"
|
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=626660">
|
|
Mozilla Bug 626660
|
|
</a>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none"></div>
|
|
<pre id="test">
|
|
</pre>
|
|
|
|
<input id="input" value="hello"/>
|
|
|
|
</body>
|
|
</html>
|