mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
test: element with scrolled window (#2624)
This commit is contained in:
parent
f284752295
commit
1338c7b203
43
tests/reftests/options/scroll-2.html
Normal file
43
tests/reftests/options/scroll-2.html
Normal file
@ -0,0 +1,43 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>scroll 2 test</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<script>
|
||||
h2cOptions = {
|
||||
scrollX: 0,
|
||||
scrollY: -50
|
||||
};
|
||||
</script>
|
||||
<script type="text/javascript" src="../../test.js"></script>
|
||||
<style>
|
||||
#div1 {
|
||||
position: absolute;
|
||||
left: 350px;
|
||||
top: 250px;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
background: green;
|
||||
}
|
||||
|
||||
body, html {
|
||||
background: red;
|
||||
height: 200vh;
|
||||
width: 100vh;
|
||||
}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="div1">
|
||||
great success
|
||||
</div>
|
||||
|
||||
<script>
|
||||
var forceElement = document.querySelector('#div1');
|
||||
h2cSelector = forceElement;
|
||||
window.scrollTo(0, 50);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user