aboutsummaryrefslogtreecommitdiff
path: root/guidelines/wikipedia/src/imageAlt.js
diff options
context:
space:
mode:
authorGravatar Jesse Hallett <jesse@galois.com>2014-01-06 10:50:22 -0800
committerGravatar Jesse Hallett <jesse@galois.com>2014-01-06 11:15:49 -0800
commit55cd32bfaf9ed5bc5418751369e46fa1d7f098e8 (patch)
treec5759cf75241a4e6bc0fb31596b69c59a9bdc6b5 /guidelines/wikipedia/src/imageAlt.js
parent0a47eab285bf1c04f48a2d6d84838a98807c8c69 (diff)
Moves rule files to src/
Diffstat (limited to 'guidelines/wikipedia/src/imageAlt.js')
-rw-r--r--guidelines/wikipedia/src/imageAlt.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/guidelines/wikipedia/src/imageAlt.js b/guidelines/wikipedia/src/imageAlt.js
new file mode 100644
index 0000000..c54244d
--- /dev/null
+++ b/guidelines/wikipedia/src/imageAlt.js
@@ -0,0 +1,8 @@
+exports.name = "Images should include an alt attribute";
+exports.description = "Images should include an alt attribute, even an empty one, that acts as a substitute for the image (for non-visual users).";
+
+exports.rule = function(report) {
+ $5('#mw-content-text img:not([alt])').each(function(i, img) {
+ report.warning("Image has no alt attribute.", img);
+ });
+};