mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
149 lines
3.8 KiB
HTML
149 lines
3.8 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>HTML ul/li element 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="../common.js"></script>
|
|
<script type="application/javascript"
|
|
src="../role.js"></script>
|
|
|
|
<script type="application/javascript">
|
|
function listItemTree(aBulletText, aName, aSubtree)
|
|
{
|
|
var obj = {
|
|
role: ROLE_LISTITEM,
|
|
children: [
|
|
{
|
|
role: ROLE_STATICTEXT,
|
|
name: aBulletText
|
|
},
|
|
{
|
|
role: ROLE_TEXT_LEAF,
|
|
name: aName
|
|
}
|
|
]
|
|
};
|
|
|
|
if (aSubtree)
|
|
obj.children.push(aSubtree);
|
|
|
|
return obj;
|
|
}
|
|
|
|
function doTest()
|
|
{
|
|
const discBulletText = String.fromCharCode(0x2022) + " ";
|
|
const circleBulletText = String.fromCharCode(0x25e6) + " ";
|
|
const squareBulletText = String.fromCharCode(0x25aa) + " ";
|
|
|
|
// list1
|
|
var discAccTree = {
|
|
role: ROLE_LIST,
|
|
children: [
|
|
new listItemTree(discBulletText, "Oranges"),
|
|
new listItemTree(discBulletText, "Apples"),
|
|
new listItemTree(discBulletText, "Bananas")
|
|
]
|
|
};
|
|
|
|
testAccessibleTree("list1", discAccTree);
|
|
|
|
// list2
|
|
var circleAccTree = {
|
|
role: ROLE_LIST,
|
|
children: [
|
|
new listItemTree(circleBulletText, "Oranges"),
|
|
new listItemTree(circleBulletText, "Apples"),
|
|
new listItemTree(circleBulletText, "Bananas")
|
|
]
|
|
};
|
|
|
|
testAccessibleTree("list2", circleAccTree);
|
|
|
|
// list3
|
|
var squareAccTree = {
|
|
role: ROLE_LIST,
|
|
children: [
|
|
new listItemTree(squareBulletText, "Oranges"),
|
|
new listItemTree(squareBulletText, "Apples"),
|
|
new listItemTree(squareBulletText, "Bananas")
|
|
]
|
|
};
|
|
|
|
testAccessibleTree("list3", squareAccTree);
|
|
|
|
// list4
|
|
var nestedAccTree = {
|
|
role: ROLE_LIST,
|
|
children: [
|
|
new listItemTree("1. ", "Oranges"),
|
|
new listItemTree("2. ", "Apples"),
|
|
new listItemTree("3. ", "Bananas", circleAccTree)
|
|
]
|
|
};
|
|
|
|
testAccessibleTree("list4", nestedAccTree);
|
|
|
|
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="Bullets of nested not ordered lists have one and the same character."
|
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=604587">
|
|
Mozilla Bug 604587
|
|
</a>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none"></div>
|
|
<pre id="test">
|
|
</pre>
|
|
|
|
<ul id="list1">
|
|
<li id="l1_li1">Oranges</li>
|
|
<li id="l1_li2">Apples</li>
|
|
<li id="l1_li3">Bananas</li>
|
|
</ul>
|
|
|
|
<ul id="list2" style="list-style-type: circle">
|
|
<li id="l2_li1">Oranges</li>
|
|
<li id="l2_li2">Apples</li>
|
|
<li id="l2_li3">Bananas</li>
|
|
</ul>
|
|
|
|
<ul id="list3" style="list-style-type: square">
|
|
<li id="l3_li1">Oranges</li>
|
|
<li id="l3_li2">Apples</li>
|
|
<li id="l3_li3">Bananas</li>
|
|
</ul>
|
|
|
|
<ol id="list4">
|
|
<li id="li4">Oranges</li>
|
|
<li id="li5">Apples</li>
|
|
<li id="li6">Bananas<ul>
|
|
<li id="n_li4">Oranges</li>
|
|
<li id="n_li5">Apples</li>
|
|
<li id="n_li6">Bananas</li>
|
|
</ul>
|
|
</li>
|
|
</ol>
|
|
</body>
|
|
</html>
|