summaryrefslogtreecommitdiff
path: root/testing/xfa_js_embedder_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'testing/xfa_js_embedder_test.cpp')
-rw-r--r--testing/xfa_js_embedder_test.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/testing/xfa_js_embedder_test.cpp b/testing/xfa_js_embedder_test.cpp
index d72e8762e8..4a29872eab 100644
--- a/testing/xfa_js_embedder_test.cpp
+++ b/testing/xfa_js_embedder_test.cpp
@@ -38,16 +38,17 @@ void XFAJSEmbedderTest::TearDown() {
isolate_ = nullptr;
}
+CXFA_Document* XFAJSEmbedderTest::GetXFADocument() {
+ return UnderlyingFromFPDFDocument(document())->GetXFADoc()->GetXFADoc();
+}
+
bool XFAJSEmbedderTest::OpenDocument(const std::string& filename,
const char* password,
bool must_linearize) {
if (!EmbedderTest::OpenDocument(filename, password, must_linearize))
return false;
- script_context_ = UnderlyingFromFPDFDocument(document())
- ->GetXFADoc()
- ->GetXFADoc()
- ->GetScriptContext();
+ script_context_ = GetXFADocument()->GetScriptContext();
return true;
}
@@ -55,7 +56,7 @@ bool XFAJSEmbedderTest::Execute(const CFX_ByteStringC& input) {
value_ = pdfium::MakeUnique<CFXJSE_Value>(GetIsolate());
if (script_context_->RunScript(XFA_SCRIPTLANGTYPE_Formcalc,
CFX_WideString::FromUTF8(input).AsStringC(),
- value_.get(), nullptr)) {
+ value_.get(), GetXFADocument()->GetRoot())) {
return true;
}