Edit

kc3-lang/libxml2/test/HTML/names.html

Branch :

  • Show log

    Commit

  • Author : Nick Wellnhofer
    Date : 2023-03-31 16:47:48
    Hash : d7d0bc65
    Message : SAX2: Ignore namespaces in HTML documents In commit 21ca8829, we started to ignore namespaces in HTML element names but we still called xmlSplitQName, effectively stripping the namespace prefix. This would cause elements like <o:p> being parsed as <p>. Now we leave the name untouched. Fixes #508.

  • test/HTML/names.html
  • <html>
    <body>
      <o:p></o:p>
    </body>
    </html>