bump crengine: adds support for dpi-based css units (#4040)

Adds a new toggle to the bottom menu: Zoom (dpi), which
allows for scaling CSS absolute units and image sizes.
This commit is contained in:
poire-z
2018-07-03 07:05:57 +02:00
committed by GitHub
parent ecd7b5b413
commit d8e58a08fd
6 changed files with 54 additions and 8 deletions

View File

@@ -16,9 +16,9 @@ describe("ReaderLink module", function()
local readerui = ReaderUI:new{
document = DocumentRegistry:openDocument(sample_epub),
}
readerui.rolling:onGotoPage(4)
readerui.link:onTap(nil, {pos = {x = 306, y = 710}})
assert.is.same(37, readerui.rolling.current_page)
readerui.rolling:onGotoPage(5)
readerui.link:onTap(nil, {pos = {x = 326, y = 220}})
assert.is.same(44, readerui.rolling.current_page)
end)
it("should jump to links in pdf page mode", function()
@@ -53,11 +53,11 @@ describe("ReaderLink module", function()
local readerui = ReaderUI:new{
document = DocumentRegistry:openDocument(sample_epub),
}
readerui.rolling:onGotoPage(4)
readerui.link:onTap(nil, {pos = {x = 306, y = 710}})
assert.is.same(37, readerui.rolling.current_page)
readerui.rolling:onGotoPage(5)
readerui.link:onTap(nil, {pos = {x = 326, y = 220}})
assert.is.same(44, readerui.rolling.current_page)
readerui.link:onGoBackLink()
assert.is.same(4, readerui.rolling.current_page)
assert.is.same(5, readerui.rolling.current_page)
end)
it("should be able to go back after link jump in pdf page mode", function()