From 9e90399eca365562fc10894c39f7ad4bb0a57ad4 Mon Sep 17 00:00:00 2001 From: tomByrer Date: Mon, 28 Jul 2014 07:18:39 -0600 Subject: [PATCH] has been reinstated http://www.w3.org/html/wg/drafts/html/master/single-page.html#the-s-element ref #166 --- src/htmllint.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/htmllint.js b/src/htmllint.js index b5df1f7..9c1c9d2 100644 --- a/src/htmllint.js +++ b/src/htmllint.js @@ -13,7 +13,7 @@ return (/^(?:big|small|hr|blink|marquee)$/).test(tag); } function isDeprecatedElement(tag) { - return (/^(?:applet|basefont|center|dir|font|isindex|s|strike)$/).test(tag); + return (/^(?:applet|basefont|center|dir|font|isindex|strike)$/).test(tag); } function isEventAttribute(attrName) { return (/^on[a-z]+/).test(attrName); -- 2.34.1