mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 924896 - [AccessFu] Exposing the type attribute for entries such as search, url, tel, etc. r=eeejay
--- accessible/src/jsat/OutputGenerator.jsm | 22 +++++++++++++++++- .../tests/mochitest/jsat/test_utterance_order.html | 27 ++++++++++++++++++++++ .../en-US/chrome/accessibility/AccessFu.properties | 6 +++++ 3 files changed, 54 insertions(+), 1 deletion(-)
This commit is contained in:
parent
45529b8d0b
commit
6ef1a2b457
@ -204,6 +204,24 @@ this.OutputGenerator = {
|
||||
landmark);
|
||||
},
|
||||
|
||||
/**
|
||||
* Adds an entry type attribute to the description if available.
|
||||
* @param {Array} aDesc Description array.
|
||||
* @param {nsIAccessible} aAccessible current accessible object.
|
||||
* @param {String} aRoleStr aAccessible's role string.
|
||||
*/
|
||||
_addType: function _addType(aDesc, aAccessible, aRoleStr) {
|
||||
if (aRoleStr !== 'entry') {
|
||||
return;
|
||||
}
|
||||
|
||||
let typeName = Utils.getAttributes(aAccessible)['text-input-type'];
|
||||
if (!typeName) {
|
||||
return;
|
||||
}
|
||||
aDesc.push(gStringBundle.GetStringFromName('textInputType_' + typeName));
|
||||
},
|
||||
|
||||
get outputOrder() {
|
||||
if (!this._utteranceOrder) {
|
||||
this._utteranceOrder = new PrefCache('accessibility.accessfu.utterance');
|
||||
@ -306,8 +324,10 @@ this.OutputGenerator = {
|
||||
if (aFlags & INCLUDE_DESC) {
|
||||
let desc = this._getLocalizedStates(aStates);
|
||||
let roleStr = this._getLocalizedRole(aRoleStr);
|
||||
if (roleStr)
|
||||
if (roleStr) {
|
||||
this._addType(desc, aAccessible, aRoleStr);
|
||||
desc.push(roleStr);
|
||||
}
|
||||
output.push(desc.join(' '));
|
||||
}
|
||||
|
||||
|
@ -83,6 +83,29 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=753984
|
||||
"Column 1 Row 1", "Fruits and vegetables",
|
||||
"table with 1 column and 1 row"
|
||||
]]
|
||||
}, {
|
||||
accOrElmOrID: "email",
|
||||
expected: [
|
||||
["e-mail entry", "test@example.com"],
|
||||
["test@example.com", "e-mail entry"]
|
||||
]
|
||||
}, {
|
||||
accOrElmOrID: "search",
|
||||
expected: [
|
||||
["search entry", "This is a search"],
|
||||
["This is a search", "search entry"]
|
||||
]
|
||||
}, {
|
||||
accOrElmOrID: "tel",
|
||||
expected: [
|
||||
["telephone entry", "555-5555"], ["555-5555", "telephone entry"]
|
||||
]
|
||||
}, {
|
||||
accOrElmOrID: "url",
|
||||
expected: [
|
||||
["URL entry", "http://example.com"],
|
||||
["http://example.com", "URL entry"]
|
||||
]
|
||||
}, {
|
||||
// Test pivot to list from li_one.
|
||||
accOrElmOrID: "list",
|
||||
@ -276,6 +299,10 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=753984
|
||||
<label id="label4">Points:
|
||||
<input id="input4" type="range" name="points" min="1" max="10" value="3">
|
||||
</label>
|
||||
<input id="email" type="email" value="test@example.com" />
|
||||
<input id="search" type="search" value="This is a search" />
|
||||
<input id="tel" type="tel" value="555-5555" />
|
||||
<input id="url" type="url" value="http://example.com" />
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -72,6 +72,12 @@ definition = definition
|
||||
# More sophisticated roles which are not actual numeric roles
|
||||
textarea = text area
|
||||
|
||||
# Text input types
|
||||
textInputType_email = e-mail
|
||||
textInputType_search = search
|
||||
textInputType_tel = telephone
|
||||
textInputType_url = URL
|
||||
|
||||
# More sophisticated object descriptions
|
||||
headingLevel = heading level %S
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user