diff --git a/packages/html/parse.js b/packages/html/parse.js
index f457ee6f2f..c3d1486778 100644
--- a/packages/html/parse.js
+++ b/packages/html/parse.js
@@ -282,7 +282,8 @@ var parseAttrs = function (attrs) {
var outValue = (outParts.length === 0 ? '' :
(outParts.length === 1 ? outParts[0] :
outParts));
- result[k] = outValue;
+ var properKey = HTML.properCaseAttributeName(k);
+ result[properKey] = outValue;
}
}