2009-04-22 04:22:36 -07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
2009-12-10 11:12:19 -08:00
|
|
|
<title>HTML text controls tests</title>
|
|
|
|
<link rel="stylesheet" type="text/css"
|
|
|
|
href="chrome://mochikit/content/tests/SimpleTest/test.css" />
|
2009-04-22 04:22:36 -07:00
|
|
|
|
|
|
|
<script type="application/javascript"
|
|
|
|
src="chrome://mochikit/content/MochiKit/packed.js"></script>
|
|
|
|
<script type="application/javascript"
|
|
|
|
src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
|
|
|
|
|
|
|
|
<script type="application/javascript"
|
|
|
|
src="chrome://mochikit/content/a11y/accessible/common.js"></script>
|
|
|
|
<script type="application/javascript"
|
|
|
|
src="chrome://mochikit/content/a11y/accessible/role.js"></script>
|
|
|
|
|
|
|
|
<script type="application/javascript">
|
|
|
|
function doTest()
|
|
|
|
{
|
2009-12-10 11:12:19 -08:00
|
|
|
// editable div
|
2009-04-22 04:22:36 -07:00
|
|
|
var accTree = {
|
|
|
|
role: ROLE_SECTION,
|
|
|
|
children: [
|
|
|
|
{ // text child
|
2009-12-10 11:12:19 -08:00
|
|
|
role: ROLE_TEXT_LEAF,
|
|
|
|
children: []
|
2009-04-22 04:22:36 -07:00
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
|
2009-12-10 11:12:19 -08:00
|
|
|
testAccessibleTree("txc1", accTree);
|
|
|
|
|
|
|
|
// input@type="text"
|
|
|
|
accTree = {
|
|
|
|
role: ROLE_ENTRY,
|
|
|
|
children: [
|
|
|
|
{ // text child
|
|
|
|
role: ROLE_TEXT_LEAF,
|
|
|
|
children: []
|
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
|
|
|
|
testAccessibleTree("txc2", accTree);
|
|
|
|
|
|
|
|
// textarea
|
|
|
|
accTree = {
|
|
|
|
role: ROLE_ENTRY,
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
role: ROLE_TEXT_LEAF // hello1 text
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: ROLE_WHITESPACE
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: ROLE_TEXT_LEAF, // hello2 text
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: ROLE_WHITESPACE
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: ROLE_TEXT_LEAF, // whitepsace text
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: ROLE_WHITESPACE
|
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
|
|
|
|
testAccessibleTree("txc3", accTree);
|
2009-04-22 04:22:36 -07:00
|
|
|
|
2010-02-01 07:22:35 -08:00
|
|
|
// input@type="password"
|
|
|
|
accTree = {
|
|
|
|
role: ROLE_PASSWORD_TEXT,
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
role: ROLE_TEXT_LEAF,
|
|
|
|
children: []
|
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
|
|
|
|
testAccessibleTree("txc4", accTree);
|
|
|
|
|
2009-04-22 04:22:36 -07:00
|
|
|
SimpleTest.finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
2009-09-23 07:21:47 -07:00
|
|
|
addA11yLoadEvent(doTest);
|
2009-04-22 04:22:36 -07:00
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<a target="_blank"
|
|
|
|
title="overflowed content doesn't expose child text accessibles"
|
2010-02-01 07:22:35 -08:00
|
|
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=489306">
|
|
|
|
Mozilla Bug 489306
|
|
|
|
</a><br>
|
|
|
|
<a target="_blank"
|
|
|
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=542824"
|
|
|
|
title="Create child accessibles for text controls from native anonymous content">
|
|
|
|
Mozilla Bug 542824
|
|
|
|
</a>
|
|
|
|
|
2009-04-22 04:22:36 -07:00
|
|
|
<p id="display"></p>
|
|
|
|
<div id="content" style="display: none"></div>
|
|
|
|
<pre id="test">
|
|
|
|
</pre>
|
|
|
|
|
2009-12-10 11:12:19 -08:00
|
|
|
<div id="txc1" contentEditable="true">
|
|
|
|
1hellohello
|
2009-04-22 04:22:36 -07:00
|
|
|
</div>
|
2009-12-10 11:12:19 -08:00
|
|
|
<input id="txc2" value="hello">
|
|
|
|
<textarea id="txc3">
|
|
|
|
hello1
|
|
|
|
hello2
|
|
|
|
</textarea>
|
2010-02-01 07:22:35 -08:00
|
|
|
<input id="txc4" type="password" value="hello">
|
2009-12-10 11:12:19 -08:00
|
|
|
|
2009-04-22 04:22:36 -07:00
|
|
|
</body>
|
|
|
|
</html>
|