OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 /** | 5 /** |
6 * These tests require that the PDF plugin be available to run correctly. | 6 * These tests require that the PDF plugin be available to run correctly. |
7 */ | 7 */ |
8 var tests = [ | 8 var tests = [ |
9 /** | 9 /** |
10 * Test that the page is sized to the size of the document. | 10 * Test that the page is sized to the size of the document. |
11 */ | 11 */ |
12 function testPageSize() { | 12 function testPageSize() { |
13 // Verify that the initial zoom is less than or equal to 100%. | 13 // Verify that the initial zoom is 100%. |
14 chrome.test.assertTrue(viewer.viewport.zoom <= 1); | 14 chrome.test.assertEq(1, viewer.viewport.zoom); |
15 | 15 |
16 viewer.viewport.zoom = 1; | |
17 var sizer = document.getElementById('sizer'); | 16 var sizer = document.getElementById('sizer'); |
18 chrome.test.assertEq(826, sizer.offsetWidth); | 17 chrome.test.assertEq(826, sizer.offsetWidth); |
19 chrome.test.assertEq(1066, sizer.offsetHeight); | 18 chrome.test.assertEq(1066, sizer.offsetHeight); |
20 chrome.test.succeed(); | 19 chrome.test.succeed(); |
21 }, | 20 }, |
22 | 21 |
23 function testAccessibility() { | 22 function testAccessibility() { |
24 var client = new PDFScriptingAPI(window, window.location.origin); | 23 var client = new PDFScriptingAPI(window, window.location.origin); |
25 client.setDestinationWindow(window); | 24 client.setDestinationWindow(window); |
26 client.getAccessibilityJSON(chrome.test.callbackPass(function(json) { | 25 client.getAccessibilityJSON(chrome.test.callbackPass(function(json) { |
(...skipping 17 matching lines...) Expand all Loading... |
44 chrome.test.assertEq('text', dict.textBox[1].textNodes[0].type); | 43 chrome.test.assertEq('text', dict.textBox[1].textNodes[0].type); |
45 chrome.test.assertEq('some more text', | 44 chrome.test.assertEq('some more text', |
46 dict.textBox[1].textNodes[0].text); | 45 dict.textBox[1].textNodes[0].text); |
47 }), 0); | 46 }), 0); |
48 } | 47 } |
49 ]; | 48 ]; |
50 | 49 |
51 window.addEventListener('pdfload', function() { | 50 window.addEventListener('pdfload', function() { |
52 chrome.test.runTests(tests); | 51 chrome.test.runTests(tests); |
53 }); | 52 }); |
OLD | NEW |