-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Open
Description
- Create
index.html:
<!doctype html>
<html>
<head>
</head>
<body>
<p #text style="writing-mode: sideways-lr;">This text is broken</p>
<button id="btn">Capture</button>
</body>- Append
scripttag toindex.html:
<script>
// contents of html2canvas.js
// ...
document.getElementById('btn').onclick = function() {
html2canvas(document.body).then(function(canvas) {
document.body.appendChild(canvas);
});
};
</script>- Click the button
Expected
Actual

Metadata
Metadata
Assignees
Labels
No labels