blob: 27597eb5acf98f0286aa9c0ed4c70dfbf8406d4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
const PAGE = `<?xml version="1.0"?>
<html id="main-window"
xmlns:html="http://www.w3.org/1999/xhtml"
xmlns="http://www.w3.org/1999/xhtml">
<head/>
<body>
<html:select>
<html:option>abc</html:option>
<html:optgroup>
<html:option>defg</html:option>
</html:optgroup>
</html:select>
</body>
</html>
`;
add_task(async function () {
const url = "data:application/xhtml+xml," + encodeURI(PAGE);
await BrowserTestUtils.withNewTab(
{
gBrowser,
url,
},
async function () {
let popup = await openSelectPopup("click");
let menuitems = popup.querySelectorAll("menuitem");
is(menuitems.length, 2, "Should've properly detected two menu items");
is(menuitems[0].textContent, "abc", "Option text should be correct");
is(menuitems[1].textContent, "defg", "Second text should be correct");
ok(
!!popup.querySelector("menucaption"),
"Should've created a caption for the optgroup"
);
}
);
});
|