Sites Verificados
Lista com todos os sítios que foram verificados pela TIC Web Acessibilidade. Dentro de cada domínio, há informações detalhadas sobre as páginas coletadas, bem como os erros e avisos de cada uma *.
Endereço | Nota | Erros | Avisos |
---|---|---|---|
www.diariooficial.sp.gov.br/suplementos/fazenda/notif
|
60.88 | 51 | 117 |
Recomendações Avaliadas | |||||
---|---|---|---|---|---|
2.2 Garantir que os objetos programáveis sejam acessíveis. |
Recomendações
Número | Descrição | Quantidade | Linhas Código Fonte |
---|---|---|---|
2.2.6 | Presença do elemento SCRIPT sem o elemento NOSCRIPT | 1 | 17 |
17 | <![CDATA[<script type="text/javascript" language="JavaScript"> /* tarefa: Remove caracteres do campo CPF/CNPJ */ function vRemoveCaracteres1(e) { var tecla = (window.event) ? event.keyCode : e.which; if (tecla == 13) { vValidaCamposObrigatorios(); } else if ((tecla > 47 && tecla < 58)) return true; else { if (tecla != 8 && tecla != 0) return false; else return true; } } function vRemoveCaracteres2(e) { var tecla = (window.event) ? event.keyCode : e.which; if (tecla == 13) { vValidaCamposObrigatorios(); } else if ((tecla > 47 && tecla < 58)) return true; else if ((tecla > 64 && tecla < 91)) return true; else if ((tecla > 96 && tecla < 123)) return true; else { if (tecla != 8 && tecla != 0) return false; else return true; } } /* tarefa: verifica se campos obrigatórios foram preenchidos pré-requisito: nenhum */ function vValidaCamposObrigatorios() { var cCPF; var cPlaca; //var cExercicio; cCPF = document.frmConsulta.tbCPF.value; cPlaca = document.frmConsulta.tbPlaca.value; if (cCPF.length < 5 && cPlaca.length < 5) { alert('Para realizar a busca deve-se informar pelo menos 5 caracteres do CPF/CNPJ ou a placa do veículo.'); } else { document.frmConsulta.submit(); } } </script>]]> |