Bug 554635, followup fix to test as these objects are now focusable

This commit is contained in:
Neil Deakin 2010-04-29 11:15:52 -04:00
parent 3f6b77012d
commit 05e0d343e5

View File

@ -141,6 +141,7 @@ var focusableElements = [
"<input type=\"text\" tabindex=\"1\">",
"<input type=\"text\" contenteditable=\"true\">",
"<object></object>",
"<object tabindex=\"-1\"></object>",
"<object tabindex=\"0\"></object>",
"<object tabindex=\"1\"></object>",
@ -240,7 +241,6 @@ var nonFocusableElements = [
"<input type=\"text\" tabindex=\"0\" disabled>",
"<input type=\"text\" disabled>",
"<object></object>",
"<object tabindex=\"0\" disabled></object>",
"<object disabled></object>",
@ -348,9 +348,12 @@ var focusableInContentEditable = [
"<input type=\"text\" tabindex=\"1\">",
"<input type=\"text\" contenteditable=\"true\">",
"<object></object>",
"<object tabindex=\"-1\"></object>",
"<object tabindex=\"0\"></object>",
"<object tabindex=\"1\"></object>",
"<object contenteditable=\"true\"></object>",
"<select></select>",
"<select tabindex=\"-1\"></select>",
"<select tabindex=\"0\"></select>",