Don't scroll owner document after cloned document load

This commit is contained in:
MoyuScript
2014-11-30 14:23:52 +02:00
parent 229629a860
commit c163e92840
4 changed files with 12 additions and 10 deletions

View File

@ -12,7 +12,7 @@
<body>
<div id="mocha"></div>
<script>mocha.setup('bdd')</script>
<div style="height: 2100px;"></div>
<div style="height: 2200px;"></div>
<div style="height: 500px;background: green;"><a name="content">content</a></div>
<script>
describe("Scrolling", function() {
@ -32,10 +32,10 @@
window.location.hash = "#content";
setTimeout(function() {
var top = $(window).scrollTop();
html2canvas(document.body, {type: 'view', logging: true}).then(function (canvas) {
html2canvas(document.body, {type: 'view', logging: true, removeContainer: false}).then(function () {
var currentTop = $(window).scrollTop();
window.location.hash = "";
expect(currentTop).to.be.greaterThan(2000);
expect(currentTop).to.be.greaterThan(1500);
expect(currentTop).to.equal(top);
done();
}).catch(function (error) {