Skip to content

Commit

Permalink
Testing: Trying aria-busy on <body> of rawgit url.
Browse files Browse the repository at this point in the history
1. Set aria-busy="true" on <body>
2. At end of ReSpec processing, set it aria-busy="false'.
  • Loading branch information
klown committed Sep 25, 2015
1 parent 2f94d30 commit ad7005f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion aria/aria.html
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
};
</script>
</head>
<body>
<body aria-busy="true">
<section id="abstract">
<p>Accessibility of web content requires semantic information about widgets, structures, and behaviors, in order to allow assistive technologies to convey appropriate information to persons with disabilities. This specification provides an ontology of roles, states, and properties that define accessible user interface elements and can be used to improve the accessibility and interoperability of web content and applications. These semantics are designed to allow an author to properly convey user interface behaviors and structural information to assistive technologies in document-level markup. This version adds features new since WAI-ARIA 1.0 [[!WAI-ARIA-10]] to complete the HTML + ARIA accessibility model. It is expected this will complement [[HTML5]].</p>
<p>This document is part of the <abbr title="Accessible Rich Internet Applications">WAI-ARIA</abbr> suite described in the <a href="http://www.w3.org/WAI/intro/aria.php"><abbr title="Accessible Rich Internet Applications">WAI-ARIA</abbr> Overview</a>.</p>
Expand Down
5 changes: 5 additions & 0 deletions common/script/resolveReferences.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,11 @@ function restrictReferences(utils, content) {
});
}
});

respecEvents.sub ('end-all', function () {
$('body').attr('aria-busy', 'false'); // or, remove it entirely?
});

return (base.innerHTML);
}

Expand Down

0 comments on commit ad7005f

Please sign in to comment.