mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-19 06:38:07 +02:00
This commit makes sure that the font tests are no longer reported as being unit tests and that the PDF.js logo is shown in the browser tab to make PDF.js-specific resources/tabs more easily identifyable during e.g. development.
25 lines
659 B
HTML
25 lines
659 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>PDF.js font tests</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="../../node_modules/jasmine-core/lib/jasmine-core/jasmine.css">
|
|
|
|
<script src="../../node_modules/jasmine-core/lib/jasmine-core/jasmine.js"></script>
|
|
<script src="../../node_modules/jasmine-core/lib/jasmine-core/jasmine-html.js"></script>
|
|
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"pdfjs/": "../../src/",
|
|
"pdfjs-lib": "../../src/pdf.js",
|
|
"pdfjs-web/": "../../web/",
|
|
"pdfjs-test/": "../"
|
|
}
|
|
}
|
|
</script>
|
|
<script src="jasmine-boot.js" type="module"></script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|