forked from mozilla/pdf.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/andreasgal/pdf.js.git int…
…o liveprog
- Loading branch information
Showing
7 changed files
with
98 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
http://www1.cpdl.org/wiki/images/sheet/pal-o47.pdf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,27 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>pdf.js test slave</title> | ||
<style type="text/css"></style> | ||
<script type="text/javascript" src="/pdf.js"></script> | ||
<script type="text/javascript" src="/fonts.js"></script> | ||
<script type="text/javascript" src="/crypto.js"></script> | ||
<script type="text/javascript" src="/glyphlist.js"></script> | ||
<script type="text/javascript" src="/metrics.js"></script> | ||
<script type="text/javascript" src="/charsets.js"></script> | ||
<script type="text/javascript" src="/cidmaps.js"></script> | ||
<script type="text/javascript" src="driver.js"></script> | ||
</head> | ||
<head> | ||
<title>pdf.js test slave</title> | ||
<style type="text/css"></style> | ||
<script type="text/javascript" src="/pdf.js"></script> | ||
<script type="text/javascript" src="/fonts.js"></script> | ||
<script type="text/javascript" src="/crypto.js"></script> | ||
<script type="text/javascript" src="/glyphlist.js"></script> | ||
<script type="text/javascript" src="/metrics.js"></script> | ||
<script type="text/javascript" src="/charsets.js"></script> | ||
<script type="text/javascript" src="/cidmaps.js"></script> | ||
<script type="text/javascript" src="driver.js"></script> | ||
</head> | ||
|
||
<body onload="load();"> | ||
<pre style="width:800; height:800; overflow: scroll;"id="stdout"></pre> | ||
<p>Inflight requests: <span id="inFlightCount"></span></p> | ||
<div id="content-end"><!-- cleanup() guard --></div> | ||
</body> | ||
<body> | ||
<pre style="width:800px; height:800px; overflow:scroll;" id="stdout"></pre> | ||
<p>Inflight requests: <span id="inFlightCount"></span></p> | ||
<div id="content-end"></div> | ||
|
||
<script type="text/javascript"> | ||
'use strict'; | ||
load(); | ||
</script> | ||
</body> | ||
</html> | ||
|