mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
bump base/crengine: stylesheet handling improvements (#3934)
Includes: - Fix a few CSS selector issues - CSS: add support for some pseudo-classes - Hyphenation: update fr & de patterns - CSS: Fix non-lowercasing of specific elements names - Revert parts of recent BR handling fixes
This commit is contained in:
2
base
2
base
Submodule base updated: ed2a7bd6a3...a5ee5e14ed
@@ -16,9 +16,9 @@ describe("ReaderLink module", function()
|
||||
local readerui = ReaderUI:new{
|
||||
document = DocumentRegistry:openDocument(sample_epub),
|
||||
}
|
||||
readerui.rolling:onGotoPage(6)
|
||||
readerui.link:onTap(nil, {pos = {x = 336, y = 166}})
|
||||
assert.is.same(40, readerui.rolling.current_page)
|
||||
readerui.rolling:onGotoPage(4)
|
||||
readerui.link:onTap(nil, {pos = {x = 336, y = 668}})
|
||||
assert.is.same(36, 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(6)
|
||||
readerui.link:onTap(nil, {pos = {x = 336, y = 166}})
|
||||
assert.is.same(40, readerui.rolling.current_page)
|
||||
readerui.rolling:onGotoPage(4)
|
||||
readerui.link:onTap(nil, {pos = {x = 336, y = 668}})
|
||||
assert.is.same(36, readerui.rolling.current_page)
|
||||
readerui.link:onGoBackLink()
|
||||
assert.is.same(6, readerui.rolling.current_page)
|
||||
assert.is.same(4, readerui.rolling.current_page)
|
||||
end)
|
||||
|
||||
it("should be able to go back after link jump in pdf page mode", function()
|
||||
|
||||
Reference in New Issue
Block a user