forked from sheetjs/sheetjs
		
	- updated SSF to 0.9.2 - XLSB style records and number format writing - CSV avoid parseFloat (fixes #646 h/t @jabbermarky) - CSV recognize mac line ending (fixes #648 h/t @charlesread) - BIFF2 format table refactored to align with SSF - BIFF5 image data exposure - SSF custom format auto table update (fixes #267 h/t @Fangmingdu) - eslint more checks - browser test timeout extended to 10 seconds
		
			
				
	
	
		
			59 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
  <head>
 | 
						|
    <title>JS-XLSX Core Test Runner</title>
 | 
						|
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
						|
    <link rel="stylesheet" href="mocha.css" />
 | 
						|
    <link rel="icon" type="image/png" href="//oss.sheetjs.com/assets/img/logo.png" />
 | 
						|
    <style>
 | 
						|
      #t { font: 20px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif; margin: 0px 60px; font-weight: bold; }
 | 
						|
      #tt{ font: 16px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif; margin: 0px 60px; }
 | 
						|
      th { font: 16px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif; margin: 0px 60px; font-weight: bold; text-align: left; }
 | 
						|
    </style>
 | 
						|
  </head>
 | 
						|
  <body>
 | 
						|
    <h1 id="t"><a href="http://sheetjs.com">JS-XLSX Browser-based Parsing Tests</a></h1>
 | 
						|
    <table id="tt">
 | 
						|
      <tr>
 | 
						|
        <th>File Formats</th>
 | 
						|
        <td><a href="http://github.com/SheetJS/js-xlsx">Library Source</a></td>
 | 
						|
        <td><a href="http://SheetJS.github.io/js-xls">Interactive Demo</a></td>
 | 
						|
        <td><a href="http://npm.im/xlsx">"xlsx" on npm</a></td>
 | 
						|
        <td><a href="https://travis-ci.org/SheetJS/js-xlsx">node CI status</a></td>
 | 
						|
      </tr>
 | 
						|
      <tr><td colspan="5">Tests compiled from <a href="http://github.com/SheetJS/test_files">test_files repo</a> and are located at /test_files<br /></td></tr>
 | 
						|
    </table>
 | 
						|
<script type="text/javascript">
 | 
						|
	var _gaq = _gaq || [];
 | 
						|
	_gaq.push(['_setAccount', 'UA-36810333-1']);
 | 
						|
	_gaq.push(['_trackPageview']);
 | 
						|
 | 
						|
	(function() {
 | 
						|
		var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
 | 
						|
		ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
 | 
						|
		var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
 | 
						|
	})();
 | 
						|
</script>
 | 
						|
    <script src="shim.js"></script>
 | 
						|
    <script src="fs_.js"></script>
 | 
						|
    <script src="fixtures.js"></script>
 | 
						|
    <script src="xlsx.full.min.js"></script>
 | 
						|
    <!--[if IE]>
 | 
						|
      <script type="text/javascript" src="xhr-hack.js"></script>
 | 
						|
    <![endif]-->
 | 
						|
    <div id="mocha"></div>
 | 
						|
    <script src="mocha.js"></script>
 | 
						|
    <script>
 | 
						|
      window.initMochaPhantomJS && window.initMochaPhantomJS();
 | 
						|
      mocha.setup({ui:'bdd', timeout:10000});
 | 
						|
    </script>
 | 
						|
    <script src="core.js"></script>
 | 
						|
    <script>
 | 
						|
      if(typeof mochaSaucePlease !== "undefined") mochaSaucePlease();
 | 
						|
      else if(window.mochaPhantomJS) mochaPhantomJS.run();
 | 
						|
      else mocha.run();
 | 
						|
    </script>
 | 
						|
  </body>
 | 
						|
</html>
 |