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

Unified Diff: testing/resources/javascript/consts.in

Issue 908023003: Add JavaScript test for constants in Consts.cpp. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: try-catch block Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | testing/resources/javascript/consts.pdf » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/resources/javascript/consts.in
diff --git a/testing/resources/javascript/consts.in b/testing/resources/javascript/consts.in
new file mode 100644
index 0000000000000000000000000000000000000000..2ed239a63dd15091aa6d4474499d44819cfa4762
--- /dev/null
+++ b/testing/resources/javascript/consts.in
@@ -0,0 +1,71 @@
+{{header}}
+{{object 1 0}} <<
+ /Type /Catalog
+ /Pages 2 0 R
+ /OpenAction 10 0 R
+>>
+endobj
+{{object 2 0}} <<
+ /Type /Pages
+ /Count 1
+ /Kids [
+ 3 0 R
+ ]
+>>
+endobj
+% Page number 0.
+{{object 3 0}} <<
+ /Type /Page
+ /Parent 2 0 R
+ /Resources <<
+ /Font <</F1 15 0 R>>
+ >>
+ /Contents [21 0 R]
+ /MediaBox [0 0 612 792]
+>>
+% OpenAction action
+{{object 10 0}} <<
+ /Type /Action
+ /S /JavaScript
+ /JS 11 0 R
+>>
+endobj
+% JS program to exexute
+{{object 11 0}} <<
+>>
+stream
+
+function doTest(name, props) {
+ for (var i = 0; i < props.length; ++i) {
+ var expr = name + "." + props[i];
+ app.alert(expr + " is " + eval(expr));
+ }
+}
+
+try {
+ doTest("border", ["s", "b", "d", "i", "u", "nonesuch"]);
+ doTest("display", ["visible", "hidden", "noPrint", "noView", "nonesuch"]);
+ doTest("font", ["Times", "TimesB", "TimesI", "TimesBI", "Helv", "HelvB",
+ "HelvI", "HelvBI", "Cour", "CourB", "CourI", "CourBI",
+ "Symbol", "ZapfD", "Nonesuch"]);
+
+ doTest("highlight", ["n", "i", "p", "o", "nonesuch"]);
+ doTest("position", ["textOnly", "iconOnly", "iconTextV", "textIconV",
+ "iconTextH", "textIconH", "overlay", "nonesuch"]);
+
+ doTest("scaleHow", ["proportional", "anamorphic", "nonesuch"]);
+ doTest("scaleWhen", ["always", "never", "tooBig", "tooSmall", "nonesuch"]);
+ doTest("style", ["ch", "cr", "di", "ci", "st", "sq", "nonesuch"]);
+ doTest("zoomtype", ["none", "fitP", "fitW", "fitH", "fitV", "pref", "refW",
+ "nonesuch"]);
+} catch (e) {
+ app.alert("ERROR: " + e.toString());
+}
+endstream
+endobj
+{{xref}}
+trailer <<
+ /Root 1 0 R
+>>
+{{startxref}}
+%%EOF
« no previous file with comments | « no previous file | testing/resources/javascript/consts.pdf » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698