diff options
author | tonikitoo <tonikitoo@igalia.com> | 2016-08-08 10:52:51 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-08-08 10:52:51 -0700 |
commit | 33c4cdb4efbacb73151c982549151ea4e545eff8 (patch) | |
tree | f8ddbbc8ec7b14a80b01c1d6004cde446e4da056 /testing/resources/javascript/document_props.in | |
parent | e5aff74a43a2c3355a8b7699a47d0fb7f23b243e (diff) | |
download | pdfium-33c4cdb4efbacb73151c982549151ea4e545eff8.tar.xz |
Add support to Document::URL property getter.
As per the PDF specification at [1]
"
This property specifies the document's URL.
".
IE/Acrobat supports it, and getting it implemented
would be one step forward in order to support Acrobat JS
script as the one in [2].
[1] http://partners.adobe.com/public/developer/en/acrobat/sdk/5186AcroJS.pdf
[2] https://bugs.chromium.org/p/pdfium/issues/detail?id=492
BUG=492
Review-Url: https://codereview.chromium.org/2219183002
Diffstat (limited to 'testing/resources/javascript/document_props.in')
-rw-r--r-- | testing/resources/javascript/document_props.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testing/resources/javascript/document_props.in b/testing/resources/javascript/document_props.in index c628fafad2..1882f79c8a 100644 --- a/testing/resources/javascript/document_props.in +++ b/testing/resources/javascript/document_props.in @@ -100,6 +100,7 @@ var document_props = [ 'producer', 'subject', 'title', + 'URL', 'zoom', 'zoomType', ]; |