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

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

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