-
Notifications
You must be signed in to change notification settings - Fork 791
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(html-namespace-matches): work with serial virtual nodes (#2398)
- Loading branch information
Showing
2 changed files
with
37 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
function htmlNamespaceMatches(node) { | ||
return node.namespaceURI === 'http://www.w3.org/1999/xhtml'; | ||
import svgNamespaceMatches from './svg-namespace-matches'; | ||
|
||
function htmlNamespaceMatches(node, virtualNode) { | ||
return !svgNamespaceMatches(node, virtualNode); | ||
} | ||
|
||
export default htmlNamespaceMatches; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters