From 989cf2ab19dc90967616cc46e4e2182594dd87f5 Mon Sep 17 00:00:00 2001 From: David Greenspan Date: Wed, 11 Dec 2013 14:59:10 -0800 Subject: [PATCH] fix SVG attributes for real --- packages/html/parse.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; } }