From ad7005f1249fa327c768c747aa0dc0de57cd0e67 Mon Sep 17 00:00:00 2001 From: Joseph Scheuhammer Date: Fri, 25 Sep 2015 16:31:20 -0400 Subject: [PATCH] Testing: Trying aria-busy on of rawgit url. 1. Set aria-busy="true" on 2. At end of ReSpec processing, set it aria-busy="false'. --- aria/aria.html | 2 +- common/script/resolveReferences.js | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/aria/aria.html b/aria/aria.html index 2401aee5f..b798a2ac0 100644 --- a/aria/aria.html +++ b/aria/aria.html @@ -131,7 +131,7 @@ }; - +

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]].

This document is part of the WAI-ARIA suite described in the WAI-ARIA Overview.

diff --git a/common/script/resolveReferences.js b/common/script/resolveReferences.js index db6eaf377..a00a84bf8 100644 --- a/common/script/resolveReferences.js +++ b/common/script/resolveReferences.js @@ -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); }