зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1460378: Verify role, role description mapping for meter element on mac r=eeejay
Differential Revision: https://phabricator.services.mozilla.com/D104760
This commit is contained in:
Родитель
588e12696e
Коммит
9343b6370d
|
@ -93,6 +93,7 @@ addAccessibleTask(
|
|||
<dl id="dl"><dt id="dt">term</dt><dd id="dd">definition</dd></dl>
|
||||
<hr id="hr" />
|
||||
<ins id="insertion">Inserted text</ins>
|
||||
<meter id="meter" min="0" max="100" value="24">meter text here</meter>
|
||||
|
||||
<!-- Some SVG stuff -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" id="svg"
|
||||
|
@ -203,6 +204,13 @@ addAccessibleTask(
|
|||
testRoleAndSubRole(accDoc, "dd", "AXGroup", "AXDescription");
|
||||
testRoleAndSubRole(accDoc, "hr", "AXSplitter", "AXContentSeparator");
|
||||
testRoleAndSubRole(accDoc, "insertion", "AXGroup", "AXInsertStyleGroup");
|
||||
testRoleAndSubRole(
|
||||
accDoc,
|
||||
"meter",
|
||||
"AXLevelIndicator",
|
||||
null,
|
||||
"level indicator"
|
||||
);
|
||||
|
||||
// Some SVG stuff
|
||||
testRoleAndSubRole(accDoc, "svg", "AXImage");
|
||||
|
|
Загрузка…
Ссылка в новой задаче