diff --git a/common/script/ariaChild.js b/common/script/ariaChild.js
index e6aeb611fe..15f92bdbbe 100644
--- a/common/script/ariaChild.js
+++ b/common/script/ariaChild.js
@@ -209,10 +209,16 @@ require(["core/pubsubhub"], function( respecEvents ) {
if (prev != role.name) {
output += "
";
if (role.is === "state") {
- output += "" + role.name + " (state)" + req;
+ output += "" + role.name + " (state)" + req;
} else {
- output += "" + role.name + "" + req;
+ output += "" + role.name + "" + req;
}
+ if (role.prohibited) {
+ output += " (Except where prohibited)";
+ }
+ if (role.deprecated) {
+ output += " (Global use deprecated in ARIA 1.2)"
+ }
output += "\n";
prev = role.name;
}