Commit d544ce8900b0a94429625108715c94f777055c54
1 parent
c9ed7446
Exists in
master
and in
1 other branch
marcação
git-svn-id: https://svn.bento.ifrs.edu.br/default/ASES/ASES%20-%20Web/ASES%20-%20Web/Fontes/avaliador-api@10369 c2178572-b5ca-4887-91d2-9e3a90c7d55b
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
src/main/java/br/com/checker/emag/core/MarkEvaluation.java
... | ... | @@ -782,13 +782,13 @@ public class MarkEvaluation extends Evaluation { |
782 | 782 | } |
783 | 783 | |
784 | 784 | if(!hasBanner) |
785 | - occurrences.add(this.buildOccurrence("1.8", false, "Observação - Sem fonte (Não existe LANDMARKS na página - <BANNER>)", getDocument().getFirstElement(),"2")); | |
785 | + occurrences.add(this.buildOccurrence("1.8", false, "Observação - Sem fonte (Não existe tag com atributo ROLE e conteúdo BANNER)", getDocument().getFirstElement(),"2")); | |
786 | 786 | |
787 | 787 | if(!hasNavigation) |
788 | - occurrences.add(this.buildOccurrence("1.8", false, "Observação - Sem fonte (Não existe LANDMARKS na página - <NAVIGATION>)", getDocument().getFirstElement(),"2")); | |
788 | + occurrences.add(this.buildOccurrence("1.8", false, "Observação - Sem fonte (Não existe tag com atributo ROLE e conteúdo NAVIGATION)", getDocument().getFirstElement(),"2")); | |
789 | 789 | |
790 | 790 | if(!hasMain) |
791 | - occurrences.add(this.buildOccurrence("1.8", false, "Observação - Sem fonte (Não existe LANDMARKS na página - <MAIN>)", getDocument().getFirstElement(),"2")); | |
791 | + occurrences.add(this.buildOccurrence("1.8", false, "Observação - Sem fonte (Não existe tag com atributo ROLE e conteúdo MAIN)", getDocument().getFirstElement(),"2")); | |
792 | 792 | |
793 | 793 | } |
794 | 794 | ... | ... |