mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
97 lines
2.4 KiB
HTML
97 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>HTML form controls tests</title>
|
|
<link rel="stylesheet" type="text/css"
|
|
href="chrome://mochikit/content/tests/SimpleTest/test.css" />
|
|
|
|
<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()
|
|
{
|
|
// input@type="checkbox"
|
|
var accTree = {
|
|
role: ROLE_CHECKBUTTON,
|
|
children: [ ]
|
|
};
|
|
|
|
testAccessibleTree("checkbox", accTree);
|
|
|
|
// input@type="radio"
|
|
accTree = {
|
|
role: ROLE_RADIOBUTTON,
|
|
children: [ ]
|
|
};
|
|
|
|
testAccessibleTree("radio", accTree);
|
|
|
|
// input@type="button" and input@type="submit"
|
|
// button
|
|
accTree = {
|
|
role: ROLE_PUSHBUTTON,
|
|
children: [
|
|
{
|
|
role: ROLE_TEXT_LEAF // XXX Bug 567203
|
|
}
|
|
]
|
|
};
|
|
|
|
testAccessibleTree("btn1", accTree);
|
|
testAccessibleTree("submit", accTree);
|
|
testAccessibleTree("btn2", accTree);
|
|
|
|
// input@type="image"
|
|
accTree = {
|
|
role: ROLE_PUSHBUTTON,
|
|
children: [
|
|
{
|
|
role: ROLE_STATICTEXT
|
|
}
|
|
]
|
|
};
|
|
testAccessibleTree("image_submit", accTree);
|
|
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
addA11yLoadEvent(doTest);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<a target="_blank"
|
|
title="Fix O(n^2) access to all the children of a container"
|
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=342045">
|
|
Mozilla Bug 342045
|
|
</a>
|
|
<a target="_blank"
|
|
title="add test for role of input type='image'"
|
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=524521">
|
|
Mozilla Bug 524521
|
|
</a>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none"></div>
|
|
<pre id="test">
|
|
</pre>
|
|
|
|
<input type="checkbox" id="checkbox">
|
|
<input type="radio" id="radio">
|
|
<input type="button" value="button" id="btn1">
|
|
<button id="btn2">button</button>
|
|
|
|
<input type="submit" id="submit">
|
|
<input type="image" id="image_submit">
|
|
</body>
|
|
</html>
|