Browse Source

Fix xhtml namespace typo (#4131)

ZhangJan 9 years ago
parent
commit
b7ab388df3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/platforms/web/util/element.js

+ 1 - 1
src/platforms/web/util/element.js

@@ -6,7 +6,7 @@ import { makeMap } from 'shared/util'
 export const namespaceMap = {
 export const namespaceMap = {
   svg: 'http://www.w3.org/2000/svg',
   svg: 'http://www.w3.org/2000/svg',
   math: 'http://www.w3.org/1998/Math/MathML',
   math: 'http://www.w3.org/1998/Math/MathML',
-  xhtml: 'http://www.w3.org/1999/xhtm'
+  xhtml: 'http://www.w3.org/1999/xhtml'
 }
 }
 
 
 export const isHTMLTag = makeMap(
 export const isHTMLTag = makeMap(