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

exports.description = "Title of page should not be empty";

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