fixes #251. inline text in top element

This commit is contained in:
arrix 2013-08-02 14:36:42 +08:00
parent 7d2e12c3dd
commit fd888bde8d

View File

@ -1135,8 +1135,12 @@ _html2canvas.Parse = function (images, options) {
svgDOMRender(document.documentElement, stack);
}
Array.prototype.slice.call(element.children, 0).forEach(function(childElement) {
parseElement(childElement, stack);
_html2canvas.Util.Children(element).forEach(function(node) {
if (node.nodeType === 1) {
parseElement(node, stack);
} else if (node.nodeType === 3) {
renderText(element, node, stack);
}
});
stack.backgroundColor = getCSS(document.documentElement, "backgroundColor");