mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
Fix list-style-type: none (Fix #1340)
This commit is contained in:
parent
22f58d5d1c
commit
eec84fa39e
@ -7,6 +7,7 @@ import NodeContainer from './NodeContainer';
|
|||||||
import TextContainer from './TextContainer';
|
import TextContainer from './TextContainer';
|
||||||
import {inlineInputElement, inlineTextAreaElement, inlineSelectElement} from './Input';
|
import {inlineInputElement, inlineTextAreaElement, inlineSelectElement} from './Input';
|
||||||
import {inlineListItemElement} from './ListItem';
|
import {inlineListItemElement} from './ListItem';
|
||||||
|
import {LIST_STYLE_TYPE} from './parsing/listStyle';
|
||||||
|
|
||||||
export const NodeParser = (
|
export const NodeParser = (
|
||||||
node: HTMLElement,
|
node: HTMLElement,
|
||||||
@ -74,7 +75,7 @@ const parseNodeTree = (
|
|||||||
inlineSelectElement(childNode, container);
|
inlineSelectElement(childNode, container);
|
||||||
} else if (
|
} else if (
|
||||||
container.style.listStyle &&
|
container.style.listStyle &&
|
||||||
container.style.listStyle.listStyleType !== 'none'
|
container.style.listStyle.listStyleType !== LIST_STYLE_TYPE.NONE
|
||||||
) {
|
) {
|
||||||
inlineListItemElement(childNode, container, resourceLoader);
|
inlineListItemElement(childNode, container, resourceLoader);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user