diff --git a/examples/example-multipleServers-full.html b/examples/example-multipleServers-full.html index 832465e..fde216a 100755 --- a/examples/example-multipleServers-full.html +++ b/examples/example-multipleServers-full.html @@ -126,11 +126,13 @@ function startStop(){ s.abort(); data=null; I("startStopBtn").className=""; + I("startStopBtn").setAttribute("aria-label","Start"); I("server").disabled=false; initUI(); }else{ //test is not running, begin I("startStopBtn").className="running"; + I("startStopBtn").setAttribute("aria-label","Abort"); I("shareArea").style.display="none"; I("server").disabled=true; s.onupdate=function(data){ @@ -138,6 +140,7 @@ function startStop(){ }; s.onend=function(aborted){ I("startStopBtn").className=""; + I("startStopBtn").setAttribute("aria-label","Start"); I("server").disabled=false; updateUI(true); if(!aborted){ @@ -404,7 +407,7 @@ function initUI(){

Selecting a server...