Logo CEWEB.br Logo NIC.br Logo CGI.br
Home Sobre o projeto

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

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 6 29 79 298 333 616 799
29 <![CDATA[<script type="text/javascript"> function imprimir() { funcao = "imprimir.action?visao=relacional&idAto=" + document.frmPesquisa.idAto.value; window .open( funcao, 'page', 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=658,height=800'); } function abrirURL(urlAbrir) { window.location = urlAbrir; } function abrirVisaoMultivigente(idAtoAbrir) { url = "link.action?idAto=" + idAtoAbrir + "&visao=anotado"; abrirURL(url); } function abrirVisaoRelacional(idAtoAbrir) { url = "link.action?idAto=" + idAtoAbrir + "&visao=relacional"; abrirURL(url); } var DELAY = 700, clicks = 0, timer = null; $(function() { $(".ato").on("click", function(e) { var idAtoAbrir = $(this).find("input:hidden").val(); if(idAtoAbrir != ""){ clicks++; if (clicks === 1) { timer = setTimeout(function() { abrirVisaoRelacional(idAtoAbrir); clicks = 0; }, DELAY); } else { clearTimeout(timer); abrirVisaoMultivigente(idAtoAbrir); clicks = 0; } } }).on("dblclick", function(e) { e.preventDefault(); }); }); </script>]]>
79 <![CDATA[<script language="javascript"> function imprimir_(){ var tamHA = 0; if($("#conteudo_historico").length){ tamHA = document.getElementById("conteudo_historico").offsetLeft; } funcao="imprimir.action?visao=relacional&idAto=" + "112851" + "&tamHA=" + tamHA; window.open(funcao,'page','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=658,height=800'); } </script>]]>
298 <![CDATA[<script type="text/javascript"> function imprimir() { funcao = "imprimir.action?visao=relacional&idAto=" + document.frmPesquisa.idAto.value; window .open( funcao, 'page', 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=658,height=800'); } function abrirURL(urlAbrir) { window.location = urlAbrir; } function abrirVisaoMultivigente(idAtoAbrir) { url = "link.action?idAto=" + idAtoAbrir + "&visao=anotado"; abrirURL(url); } function abrirVisaoRelacional(idAtoAbrir) { url = "link.action?idAto=" + idAtoAbrir + "&visao=relacional"; abrirURL(url); } </script>]]>
333 <![CDATA[<script> function showHideDestino(nome) { var teste = document.getElementById(nome); if(teste.style.display == 'none') teste.style.display=''; else teste.style.display='none'; } function showHideOrigem(nome) { var teste = document.getElementById(nome); if(teste.style.display == 'none') teste.style.display=''; else teste.style.display='none'; } $(document).ready(function(){ $('.historico_ato').click(function() { $(this).find('i').toggleClass('ativo inativo'); $('#conteudo_historico').toggle(); }); }); $(document).ready(function(){ $('.epigrafeSpan').hover(function(e) { e.preventDefault(); $('#historicoEpigrafe').css( 'position', 'absolute' ); $('#historicoEpigrafe').css( 'top', e.pageY-10 ); $('#historicoEpigrafe').css( 'left', e.pageX ); $("#historicoEpigrafe").show(); }); $('.epigrafeSpan') .mouseleave(function() { $("#historicoEpigrafe").hide(); }); }); </script>]]>
616 <![CDATA[<script type="text/javascript"> $(document) .ready( function() { var DELAY = 700, clicks = 0, timer = null; $(".ato") .on( "click", function(e) { var idAtoAbrir = $(this).find( "input:hidden").val(); if (idAtoAbrir != "") { clicks++; if (clicks === 1) { timer = setTimeout( function() { abrirVisaoRelacional(idAtoAbrir); clicks = 0; }, DELAY); } else { clearTimeout(timer); abrirVisaoMultivigente(idAtoAbrir); clicks = 0; } } }).on("dblclick", function(e) { e.preventDefault(); }); var filtroAtual = ""; var filtroEsquerdoAtivo = false; var filtroDireitoAtivo = false; $('.collapse_ano').click( function() { //Esquerda $(this).parent().next('.lista-atos') .slideToggle("slow"); $(this).find('img').toggleClass( 'ativo inativo'); //Direita $(this).parent().parent().find("ul[lado]") .slideToggle("slow"); }); $('.filtro') .click( function() { var filtro = $(this).find('input') .val(); var lado; if (~filtro.indexOf("direita")) { if (filtroDireitoAtivo) return; //Se já estiver selecionado, não faz nada lado = "direita"; filtroDireitoAtivo = true; } else if (~filtro .indexOf("esquerda")) { if (filtroEsquerdoAtivo) return; //Se já estiver selecionado, não faz nada lado = "esquerda"; filtroEsquerdoAtivo = true; } filtroAtual = filtro; $('span[class="filtro"]') .each( function(index) { var filtroTmp = $( this) .find( 'input') .val(); // Verificar qual icone se refere if (filtroTmp != filtro && ~filtroTmp .indexOf(lado)) { $(this) .find( 'img[class]') .toggleClass( 'inativo ativo'); //Se não for o selecionado, altera para inativo } else if (~filtroTmp .indexOf(lado)) { var botaoFechar = $( this) .next(); //Se for, obtem o botao fechar botaoFechar .toggleClass('inativo ativo'); //Seta inativo botaoFechar .click(funcaoFechar); //seta função fechar } }); //Fim Loop icones do filtro $('li[filtro]') .each( function(index) { var valor = $( this) .attr( 'filtro'); if (valor != filtro && ~valor .indexOf(lado)) $(this) .hide(); }); //Fim loop lista de atoss }); var funcaoFechar = function() { //Seta função de fechar var idBotao = $(this).attr("id"); if (~idBotao.indexOf("esquerda")) lado = "esquerda"; else if (~idBotao.indexOf("direita")) lado = "direita"; if ((lado === "direita" && filtroDireitoAtivo) || (lado === "esquerda" && filtroEsquerdoAtivo)) { $(this).toggleClass('inativo ativo'); //Seta ativo var filtroAtualNovo = idBotao; //Verificar qual filtro atual $('li[filtro]').each( function(index) { //Mostra novamente os que estavam escondidos var valor = $(this).attr('filtro'); if (valor != filtroAtualNovo && ~valor.indexOf(lado)) { $(this).show(); } }); $('span[class="filtro"]') .each( function(index) { var filtroTmp = $(this) .find('input') .val(); if (filtroTmp != filtroAtualNovo && ~filtroTmp .indexOf(lado)) { $(this) .find( 'img[class]') .toggleClass( 'inativo ativo'); } }).promise().done(function() { if (lado === "direita") filtroDireitoAtivo = false; else filtroEsquerdoAtivo = false; }); } }; }); </script>]]>
799 <![CDATA[<script language="javascript"> function verticalScrollPresent() { return (document.documentElement.scrollHeight !== document.documentElement.clientHeight); } function footerAlign() { $('html').css('height', bodyHeight+80); $('.div_rodape').css('display', 'block'); $('.div_rodape').css('height', 'auto'); $('.div_rodape').css('width', '100%'); if (verticalScrollPresent()) { $('.div_rodape').css('position', 'relative'); } else { $('.div_rodape').css('position', 'absolute'); } $('.div_rodape').css('bottom', '0'); var footerHeight = 80; $('.div_rodape').css('height', footerHeight); } var bodyHeight = $('html').outerHeight(); $( window ).resize(function() { footerAlign(); }); $(window).on('scroll', function() { footerAlign(); }); bodyHeight = $('html').outerHeight(); footerAlign(); </script>]]>