Skip to content
Snippets Groups Projects
Commit 57102eb3 authored by Eitan Isaacson's avatar Eitan Isaacson
Browse files

Bug 1400628 - Add test for non existing ID in select[aria-owns]. r=surkov

parent 3f6254c6
No related branches found
No related tags found
No related merge requests found
......@@ -158,6 +158,14 @@ addAccessibleTask(`
}
);
// Don't crash if ID in aria-owns does not exist
addAccessibleTask(`
<select id="container" aria-owns="boom" multiple></select>`,
async function(browser, accDoc) {
ok(true, "Did not crash");
}
);
addAccessibleTask(`
<ul id="one">
<li id="a">Test</li>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment