summaryrefslogtreecommitdiff
path: root/lib/epub.js/test/old/rendering.js
blob: 5cf13573a13cff54ab3e7a32ae8118cb906c9659 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module('Rendering');
/*
asyncTest("Render To", 1, function() {

	var book = ePub("../books/moby-dick/OPS/package.opf");
	var rendition = book.renderTo("qunit-fixture", {width:400, height:600});
	var displayed = rendition.display(0);

	displayed.then(function(){
		equal( $( "iframe", "#qunit-fixture" ).length, 1, "iframe added successfully" );
		start();
	});


});
*/