From 214d3e458271d04b8ff45c3ddb8be990029748f6 Mon Sep 17 00:00:00 2001 From: michael-n-cooper Date: Wed, 9 Dec 2020 18:14:14 +0000 Subject: [PATCH] TRAVIS-CI update from aria-common --- common/script/ariaChild.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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; }