diff options
-rw-r--r-- | fpdfsdk/include/javascript/Document.h | 2 | ||||
-rw-r--r-- | fpdfsdk/src/javascript/Document.cpp | 6 | ||||
-rw-r--r-- | testing/resources/javascript/document_props_expected.txt | 8 |
3 files changed, 7 insertions, 9 deletions
diff --git a/fpdfsdk/include/javascript/Document.h b/fpdfsdk/include/javascript/Document.h index 6b40069706..b6447fda2a 100644 --- a/fpdfsdk/include/javascript/Document.h +++ b/fpdfsdk/include/javascript/Document.h @@ -182,7 +182,7 @@ private: IconTree* m_pIconTree; CPDFSDK_Document* m_pDocument; CFX_WideString m_cwBaseURL; - FX_BOOL m_bDelay; + bool m_bDelay; CFX_ArrayTemplate<CJS_DelayData*> m_DelayData; CFX_ArrayTemplate<CJS_AnnotObj*> m_DelayAnnotData; }; diff --git a/fpdfsdk/src/javascript/Document.cpp b/fpdfsdk/src/javascript/Document.cpp index fc453b0fc8..59816f091f 100644 --- a/fpdfsdk/src/javascript/Document.cpp +++ b/fpdfsdk/src/javascript/Document.cpp @@ -940,9 +940,7 @@ FX_BOOL Document::delay(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sE if (!m_pDocument->GetPermissions(FPDFPERM_MODIFY)) return FALSE; - bool b; - vp >> b; - m_bDelay = b; + vp >> m_bDelay; if (m_bDelay) { for (int i=0,sz=m_DelayData.GetSize(); i<sz; i++) @@ -1107,7 +1105,7 @@ FX_BOOL Document::external(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& { //In Chrome case,should always return true. if (vp.IsGetting()) { - vp << TRUE; + vp << true; } return TRUE; } diff --git a/testing/resources/javascript/document_props_expected.txt b/testing/resources/javascript/document_props_expected.txt index 728d2455e1..4b60a624da 100644 --- a/testing/resources/javascript/document_props_expected.txt +++ b/testing/resources/javascript/document_props_expected.txt @@ -7,10 +7,10 @@ Alert: this.calculate is boolean true Alert: this.Collab is undefined undefined Alert: this.creationDate is string Alert: this.creator is string Joe Random Creator -Alert: this.delay is number 0 +Alert: this.delay is boolean false Alert: this.dirty is boolean false Alert: this.documentFileName is string -Alert: this.external is number 1 +Alert: this.external is boolean true Alert: this.filesize is number 0 Alert: this.icons is undefined undefined Alert: this.info is object [object Object] @@ -72,10 +72,10 @@ Alert: this.calculate is boolean true Alert: this.Collab is undefined undefined Alert: this.creationDate is string 3 Alert: this.creator is string 3 -Alert: this.delay is number 1 +Alert: this.delay is boolean true Alert: this.dirty is boolean true Alert: this.documentFileName is string -Alert: this.external is number 1 +Alert: this.external is boolean true Alert: this.filesize is number 0 Alert: this.icons is undefined undefined Alert: this.info is object [object Object] |