Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions lib/core/public/load.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,13 @@ function runCommand(data, keepalive, callback) {

switch (data.command) {
case 'rules':
// [a11y-core]: rules are registered per-frame
if (
typeof a11yEngine !== 'undefined' &&
typeof a11yEngine.ensureConfigured === 'function'
) {
a11yEngine.ensureConfigured(options);
}
return runRules(
context,
options,
Expand Down
Loading