Backed out changeset f59777bbd950 (bug 924896)

This commit is contained in:
Ed Morley 2013-10-24 18:14:09 +01:00
Родитель 0ee526caa4
Коммит 823546ce73
3 изменённых файлов: 1 добавлений и 49 удалений

Просмотреть файл

@ -204,19 +204,6 @@ this.OutputGenerator = {
landmark);
},
/**
* Adds an entry type attribute to the description if available.
* @param {Array} aDesc Description array.
* @param {nsIAccessible} aAccessible current accessible object.
*/
_addType: function _addType(aDesc, aAccessible) {
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');
@ -319,10 +306,8 @@ this.OutputGenerator = {
if (aFlags & INCLUDE_DESC) {
let desc = this._getLocalizedStates(aStates);
let roleStr = this._getLocalizedRole(aRoleStr);
if (roleStr) {
this._addType(desc, aAccessible);
if (roleStr)
desc.push(roleStr);
}
output.push(desc.join(' '));
}

Просмотреть файл

@ -83,29 +83,6 @@ 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",
@ -299,10 +276,6 @@ 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,12 +72,6 @@ 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