Does the style "border-bottom" is supported?
html2canvas version tested with: v1.0.0-alpha.5
Browser & version: Chrome
Operating system: macOS
replace the code
var renderableBorders = container.style.border.filter(function (border) {
return border.borderStyle !== _border.BORDER_STYLE.NONE && !border.borderColor.isTransparent();
});
to
var renderableBorders = container.style.border;
Most helpful comment
solution:
replace the code
to
var renderableBorders = container.style.border;