aboutsummaryrefslogtreecommitdiff
path: root/exampleData/ruleSets/accessibility/titleNonEmpty.js
blob: 27e281f5980098081df927b04f00d3b93abe9506 (plain)
1
2
3
4
5
6
7
8
9
exports.name = "titleNonEmpty";

exports.description = "Title of page is non-empty";

exports.rule = function(report) {
  if (document.title == '') {
    report.error('Page title is empty');
  }
};