Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
requestLongerTimeout(2);
// Test that an element referring to another element via multiple attributes doesn't result in a crash.
addAccessibleTask(
`
<label id="label" for="output" aria-labelledby="output"></label>
<output id="output"></output>
`,
async function test(browser, accDoc) {
const label = findAccessibleChildByID(accDoc, "label");
const output = findAccessibleChildByID(accDoc, "output");
await testCachedRelation(output, RELATION_LABEL_FOR, label);
await testCachedRelation(output, RELATION_LABELLED_BY, label);
}
);