Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions crates/mdbook-html/front-end/templates/toc.js.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,22 @@ class MDBookSidebarScrollbox extends HTMLElement {
// Track and set sidebar scroll position
this.addEventListener('click', e => {
if (e.target.tagName === 'A') {
sessionStorage.setItem('sidebar-scroll', this.scrollTop);
const clientRect = e.target.getBoundingClientRect();
const sidebarRect = this.getBoundingClientRect();
sessionStorage.setItem('sidebar-scroll-offset', clientRect.top - sidebarRect.top);
}
}, { passive: true });
const sidebarScrollTop = sessionStorage.getItem('sidebar-scroll');
sessionStorage.removeItem('sidebar-scroll');
if (sidebarScrollTop) {
const sidebarScrollOffset = sessionStorage.getItem('sidebar-scroll-offset');
sessionStorage.removeItem('sidebar-scroll-offset');
if (sidebarScrollOffset !== null) {
// preserve sidebar scroll position when navigating via links within sidebar
this.scrollTop = sidebarScrollTop;
const activeSection = this.querySelector('.active');
if (activeSection) {
const clientRect = activeSection.getBoundingClientRect();
const sidebarRect = this.getBoundingClientRect();
const currentOffset = clientRect.top - sidebarRect.top;
this.scrollTop += currentOffset - parseFloat(sidebarScrollOffset);
}
} else {
// scroll sidebar to current active section when navigating via
// 'next/previous chapter' buttons
Expand Down
3 changes: 3 additions & 0 deletions tests/gui/books/sidebar-scroll/book.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[book]
title = "sidebar-scroll"
language = "en"
102 changes: 102 additions & 0 deletions tests/gui/books/sidebar-scroll/src/SUMMARY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
# Summary

- [Chapter 1](./chapter_1.md)
- [Chapter 2](./chapter_2.md)
- [Chapter 3](./chapter_3.md)
- [Chapter 4](./chapter_4.md)
- [Chapter 5](./chapter_5.md)
- [Chapter 6](./chapter_6.md)
- [Chapter 7](./chapter_7.md)
- [Chapter 8](./chapter_8.md)
- [Chapter 9](./chapter_9.md)
- [Chapter 10](./chapter_10.md)
- [Chapter 11](./chapter_11.md)
- [Chapter 12](./chapter_12.md)
- [Chapter 13](./chapter_13.md)
- [Chapter 14](./chapter_14.md)
- [Chapter 15](./chapter_15.md)
- [Chapter 16](./chapter_16.md)
- [Chapter 17](./chapter_17.md)
- [Chapter 18](./chapter_18.md)
- [Chapter 19](./chapter_19.md)
- [Chapter 20](./chapter_20.md)
- [Chapter 21](./chapter_21.md)
- [Chapter 22](./chapter_22.md)
- [Chapter 23](./chapter_23.md)
- [Chapter 24](./chapter_24.md)
- [Chapter 25](./chapter_25.md)
- [Chapter 26](./chapter_26.md)
- [Chapter 27](./chapter_27.md)
- [Chapter 28](./chapter_28.md)
- [Chapter 29](./chapter_29.md)
- [Chapter 30](./chapter_30.md)
- [Chapter 31](./chapter_31.md)
- [Chapter 32](./chapter_32.md)
- [Chapter 33](./chapter_33.md)
- [Chapter 34](./chapter_34.md)
- [Chapter 35](./chapter_35.md)
- [Chapter 36](./chapter_36.md)
- [Chapter 37](./chapter_37.md)
- [Chapter 38](./chapter_38.md)
- [Chapter 39](./chapter_39.md)
- [Chapter 40](./chapter_40.md)
- [Chapter 41](./chapter_41.md)
- [Chapter 42](./chapter_42.md)
- [Chapter 43](./chapter_43.md)
- [Chapter 44](./chapter_44.md)
- [Chapter 45](./chapter_45.md)
- [Chapter 46](./chapter_46.md)
- [Chapter 47](./chapter_47.md)
- [Chapter 48](./chapter_48.md)
- [Chapter 49](./chapter_49.md)
- [Chapter 50](./chapter_50.md)
- [Chapter 51](./chapter_51.md)
- [Chapter 52](./chapter_52.md)
- [Chapter 53](./chapter_53.md)
- [Chapter 54](./chapter_54.md)
- [Chapter 55](./chapter_55.md)
- [Chapter 56](./chapter_56.md)
- [Chapter 57](./chapter_57.md)
- [Chapter 58](./chapter_58.md)
- [Chapter 59](./chapter_59.md)
- [Chapter 60](./chapter_60.md)
- [Chapter 61](./chapter_61.md)
- [Chapter 62](./chapter_62.md)
- [Chapter 63](./chapter_63.md)
- [Chapter 64](./chapter_64.md)
- [Chapter 65](./chapter_65.md)
- [Chapter 66](./chapter_66.md)
- [Chapter 67](./chapter_67.md)
- [Chapter 68](./chapter_68.md)
- [Chapter 69](./chapter_69.md)
- [Chapter 70](./chapter_70.md)
- [Chapter 71](./chapter_71.md)
- [Chapter 72](./chapter_72.md)
- [Chapter 73](./chapter_73.md)
- [Chapter 74](./chapter_74.md)
- [Chapter 75](./chapter_75.md)
- [Chapter 76](./chapter_76.md)
- [Chapter 77](./chapter_77.md)
- [Chapter 78](./chapter_78.md)
- [Chapter 79](./chapter_79.md)
- [Chapter 80](./chapter_80.md)
- [Chapter 81](./chapter_81.md)
- [Chapter 82](./chapter_82.md)
- [Chapter 83](./chapter_83.md)
- [Chapter 84](./chapter_84.md)
- [Chapter 85](./chapter_85.md)
- [Chapter 86](./chapter_86.md)
- [Chapter 87](./chapter_87.md)
- [Chapter 88](./chapter_88.md)
- [Chapter 89](./chapter_89.md)
- [Chapter 90](./chapter_90.md)
- [Chapter 91](./chapter_91.md)
- [Chapter 92](./chapter_92.md)
- [Chapter 93](./chapter_93.md)
- [Chapter 94](./chapter_94.md)
- [Chapter 95](./chapter_95.md)
- [Chapter 96](./chapter_96.md)
- [Chapter 97](./chapter_97.md)
- [Chapter 98](./chapter_98.md)
- [Chapter 99](./chapter_99.md)
- [Chapter 100](./chapter_100.md)
3 changes: 3 additions & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Chapter 1

## This has a single heading
28 changes: 28 additions & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_10.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Chapter 10

## Heading A
## Heading B
## Heading C
## Heading D
## Heading E
## Heading F
## Heading G
## Heading H
## Heading I
## Heading J
## Heading K
## Heading L
## Heading M
## Heading N
## Heading O
## Heading P
## Heading Q
## Heading R
## Heading S
## Heading T
## Heading U
## Heading V
## Heading W
## Heading X
## Heading Y
## Heading Z
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_100.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 100
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_11.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 11
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_12.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 12
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_13.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 13
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_14.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 14
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_15.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 15
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_16.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 16
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_17.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 17
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_18.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 18
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_19.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 19
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 2
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_20.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 20
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_21.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 21
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_22.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 22
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_23.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 23
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_24.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 24
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_25.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 25
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_26.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 26
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_27.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 27
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_28.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 28
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_29.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 29
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 3
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_30.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 30
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_31.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 31
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_32.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 32
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_33.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 33
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_34.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 34
28 changes: 28 additions & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_35.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Chapter 35

## Heading A
## Heading B
## Heading C
## Heading D
## Heading E
## Heading F
## Heading G
## Heading H
## Heading I
## Heading J
## Heading K
## Heading L
## Heading M
## Heading N
## Heading O
## Heading P
## Heading Q
## Heading R
## Heading S
## Heading T
## Heading U
## Heading V
## Heading W
## Heading X
## Heading Y
## Heading Z
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_36.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 36
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_37.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 37
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_38.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 38
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_39.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 39
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 4
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_40.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 40
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_41.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 41
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_42.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 42
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_43.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 43
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_44.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 44
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_45.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 45
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_46.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 46
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_47.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 47
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_48.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 48
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_49.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 49
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_5.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 5
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_50.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 50
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_51.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 51
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_52.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 52
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_53.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 53
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_54.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 54
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_55.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 55
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_56.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 56
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_57.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 57
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_58.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 58
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_59.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 59
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_6.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 6
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_60.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 60
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_61.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 61
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_62.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 62
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_63.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 63
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_64.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 64
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_65.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 65
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_66.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 66
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_67.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 67
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_68.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 68
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_69.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 69
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_7.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 7
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_70.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 70
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_71.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 71
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_72.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 72
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_73.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 73
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_74.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 74
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_75.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 75
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_76.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 76
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_77.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 77
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_78.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 78
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_79.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 79
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_8.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 8
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_80.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 80
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_81.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 81
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_82.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 82
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_83.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 83
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_84.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 84
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_85.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 85
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_86.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 86
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_87.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 87
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_88.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 88
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_89.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 89
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_9.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 9
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_90.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 90
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_91.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 91
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_92.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 92
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_93.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 93
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_94.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 94
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_95.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 95
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_96.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 96
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_97.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 97
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_98.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 98
1 change: 1 addition & 0 deletions tests/gui/books/sidebar-scroll/src/chapter_99.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chapter 99
Loading