Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(386)

Side by Side Diff: trunk/src/chrome/test/data/pdf/basic_plugin_test.js

Issue 346693002: Revert 278043 "Re-enable PDFExtensionTest.BasicPlugin" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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) {
27 var dict = JSON.parse(json); 26 chrome.test.assertEq('{"copyable":true,"loaded":true,"numberOfPages":1}',
28 chrome.test.assertEq(true, dict.copyable); 27 json);
29 chrome.test.assertEq(true, dict.loaded);
30 chrome.test.assertEq(1, dict.numberOfPages);
31 })); 28 }));
32 }, 29 },
33 30
34 function testAccessibilityWithPage() { 31 function testAccessibilityWithPage() {
35 var client = new PDFScriptingAPI(window, window.location.origin); 32 var client = new PDFScriptingAPI(window, window.location.origin);
36 client.setDestinationWindow(window); 33 client.setDestinationWindow(window);
37 client.getAccessibilityJSON(chrome.test.callbackPass(function(json) { 34 client.getAccessibilityJSON(chrome.test.callbackPass(function(json) {
38 var dict = JSON.parse(json); 35 var dict = JSON.parse(json);
39 chrome.test.assertEq(612, dict.width); 36 chrome.test.assertEq(612, dict.width);
40 chrome.test.assertEq(792, dict.height); 37 chrome.test.assertEq(792, dict.height);
41 chrome.test.assertEq(1.0, dict.textBox[0].fontSize); 38 chrome.test.assertEq(1.0, dict.textBox[0].fontSize);
42 chrome.test.assertEq('text', dict.textBox[0].textNodes[0].type); 39 chrome.test.assertEq('text', dict.textBox[0].textNodes[0].type);
43 chrome.test.assertEq('this is some text', 40 chrome.test.assertEq('this is some text',
44 dict.textBox[0].textNodes[0].text); 41 dict.textBox[0].textNodes[0].text);
45 chrome.test.assertEq(1.0, dict.textBox[1].fontSize); 42 chrome.test.assertEq(1.0, dict.textBox[1].fontSize);
46 chrome.test.assertEq('text', dict.textBox[1].textNodes[0].type); 43 chrome.test.assertEq('text', dict.textBox[1].textNodes[0].type);
47 chrome.test.assertEq('some more text', 44 chrome.test.assertEq('some more text',
48 dict.textBox[1].textNodes[0].text); 45 dict.textBox[1].textNodes[0].text);
49 }), 0); 46 }), 0);
50 } 47 }
51 ]; 48 ];
52 49
53 if (viewer.loaded) { 50 window.addEventListener('pdfload', function() {
54 chrome.test.runTests(tests); 51 chrome.test.runTests(tests);
55 } else { 52 });
56 window.addEventListener('pdfload', function() {
57 chrome.test.runTests(tests);
58 });
59 }
OLDNEW
« no previous file with comments | « trunk/src/chrome/chrome_tests.gypi ('k') | trunk/src/chrome/test/data/pdf/pdf_extension_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698