├── .github
├── CODEOWNERS
└── ISSUE_TEMPLATE.md
├── .gitignore
├── .npmignore
├── .travis.yml
├── CONTRIBUTING.md
├── README.md
├── bower.json
├── demo
└── index.html
├── formatconfig.json
├── hero.svg
├── manifest.json
├── package-lock.json
├── package.json
├── paper-dialog-scrollable.js
├── test
├── index.html
├── paper-dialog-scrollable.html
└── test-dialog.js
└── wct.conf.json
/.github/CODEOWNERS:
--------------------------------------------------------------------------------
1 | * @bicknellr
2 | /.travis.yml @azakus
3 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE.md:
--------------------------------------------------------------------------------
1 |
2 | ### Description
3 |
4 |
5 | ### Expected outcome
6 |
7 |
8 |
9 | ### Actual outcome
10 |
11 |
12 |
13 | ### Live Demo
14 |
15 |
16 | ### Steps to reproduce
17 |
18 |
23 |
24 | ### Browsers Affected
25 |
26 | - [ ] Chrome
27 | - [ ] Firefox
28 | - [ ] Safari 9
29 | - [ ] Safari 8
30 | - [ ] Safari 7
31 | - [ ] Edge
32 | - [ ] IE 11
33 | - [ ] IE 10
34 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | bower_components*
2 | bower-*.json
3 | node_modules
4 | *.d.ts
5 | *.tgz
6 |
--------------------------------------------------------------------------------
/.npmignore:
--------------------------------------------------------------------------------
1 | *.tgz
2 | .github
3 | .travis.yml
4 | formatconfig.json
5 | gen-tsd.json
6 | test/
7 | wct.conf.json
8 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | sudo: 'false'
3 | before_script:
4 | - npm install -g polymer-cli
5 | - git checkout package-lock.json
6 | - >-
7 | npm run format && git diff --exit-code || (echo -e '\n\033[31mERROR:\033[0m
8 | Project is not formatted. Please run "npm run format".' && false)
9 | env:
10 | global:
11 | - secure: >-
12 | gakosA9nvntsvnYxhc5gMl17esMBYgTcvbFqiF3lqIB5/k1ajcq2ExKxuJtzCrVI24gPHN9kbz4cwX4gmEmYTPi9qEf716E8ecz9QuGg2ffjmFhplthGcYK8+EZPFqtSHIlS+9taVi6o6f3/945yQmNIVWnzl5hKaikpcrK6Szk=
13 | - secure: >-
14 | Uk1rGfD854f1+DtQxhEkyh1BGBWkKXIaZeQrlcsN/qpGiTzIhlQMh+qZdWSmYAzzSKW7VuZoCeX7zIZNMtL9BE8uAcJv2gOI/pOV6ffxgyHbeXC1+n3KmYduA/WVcpin41x+ZYOEVD3C2WQhdZTdNW3X5lv73VAKzf0FotainyU=
15 | node_js: node
16 | addons:
17 | firefox: latest
18 | chrome: stable
19 | script:
20 | - xvfb-run polymer test --module-resolution=node --npm
21 | - >-
22 | if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then polymer test
23 | --module-resolution=node --npm -s 'default'; fi
24 | dist: trusty
25 | cache:
26 | directories:
27 | - node_modules
28 |
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 |
13 |
14 | # Polymer Elements
15 | ## Guide for Contributors
16 |
17 | Polymer Elements are built in the open, and the Polymer authors eagerly encourage any and all forms of community contribution. When contributing, please follow these guidelines:
18 |
19 | ### Filing Issues
20 |
21 | **If you are filing an issue to request a feature**, please provide a clear description of the feature. It can be helpful to describe answers to the following questions:
22 |
23 | 1. **Who will use the feature?** _“As someone filling out a form…”_
24 | 2. **When will they use the feature?** _“When I enter an invalid value…”_
25 | 3. **What is the user’s goal?** _“I want to be visually notified that the value needs to be corrected…”_
26 |
27 | **If you are filing an issue to report a bug**, please provide:
28 |
29 | 1. **A clear description of the bug and related expectations.** Consider using the following example template for reporting a bug:
30 |
31 | ```markdown
32 | The `paper-foo` element causes the page to turn pink when clicked.
33 |
34 | ## Expected outcome
35 |
36 | The page stays the same color.
37 |
38 | ## Actual outcome
39 |
40 | The page turns pink.
41 |
42 | ## Steps to reproduce
43 |
44 | 1. Put a `paper-foo` element in the page.
45 | 2. Open the page in a web browser.
46 | 3. Click the `paper-foo` element.
47 | ```
48 |
49 | 2. **A reduced test case that demonstrates the problem.** If possible, please include the test case as a JSBin. Start with this template to easily import and use relevant Polymer Elements: [https://jsbin.com/cagaye/edit?html,output](https://jsbin.com/cagaye/edit?html,output).
50 |
51 | 3. **A list of browsers where the problem occurs.** This can be skipped if the problem is the same across all browsers.
52 |
53 | ### Submitting Pull Requests
54 |
55 | **Before creating a pull request**, please ensure that an issue exists for the corresponding change in the pull request that you intend to make. **If an issue does not exist, please create one per the guidelines above**. The goal is to discuss the design and necessity of the proposed change with Polymer authors and community before diving into a pull request.
56 |
57 | When submitting pull requests, please provide:
58 |
59 | 1. **A reference to the corresponding issue** or issues that will be closed by the pull request. Please refer to these issues in the pull request description using the following syntax:
60 |
61 | ```markdown
62 | (For a single issue)
63 | Fixes #20
64 |
65 | (For multiple issues)
66 | Fixes #32, fixes #40
67 | ```
68 |
69 | 2. **A succinct description of the design** used to fix any related issues. For example:
70 |
71 | ```markdown
72 | This fixes #20 by removing styles that leaked which would cause the page to turn pink whenever `paper-foo` is clicked.
73 | ```
74 |
75 | 3. **At least one test for each bug fixed or feature added** as part of the pull request. Pull requests that fix bugs or add features without accompanying tests will not be considered.
76 |
77 | If a proposed change contains multiple commits, please [squash commits](https://www.google.com/url?q=http://blog.steveklabnik.com/posts/2012-11-08-how-to-squash-commits-in-a-github-pull-request) to as few as is necessary to succinctly express the change. A Polymer author can help you squash commits, so don’t be afraid to ask us if you need help with that!
78 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | [](https://www.npmjs.com/package/@polymer/paper-dialog-scrollable)
2 | [](https://travis-ci.org/PolymerElements/paper-dialog-scrollable)
3 | [](https://webcomponents.org/element/@polymer/paper-dialog-scrollable)
4 |
5 | ## <paper-dialog-scrollable>
6 | `paper-dialog-scrollable` implements a scrolling area used in a Material Design dialog. It shows
7 | a divider at the top and/or bottom indicating more content, depending on scroll position. Use this
8 | together with elements implementing `PaperDialogBehavior`.
9 |
10 | ```html
11 | Header
13 | Header
33 | Sub-header
35 |
Scrolalble content...
83 |Scrolalble content...
102 |paper-dialog-scrollable
shows a divider at the top and/or bottom
47 | indicating more content, depending on scroll position
48 | Alice was beginning to get very tired of sitting by her sister 72 | on the bank, and of having nothing to do: once or twice she had 73 | peeped into the book her sister was reading, but it had no 74 | pictures or conversations in it, 'and what is the use of a book,' 75 | thought Alice 'without pictures or conversation?'
76 |So she was considering in her own mind (as well as she could, 77 | for the hot day made her feel very sleepy and stupid), whether 78 | the pleasure of making a daisy-chain would be worth the trouble 79 | of getting up and picking the daisies, when suddenly a White 80 | Rabbit with pink eyes ran close by her.
81 |There was nothing so very remarkable in that; nor did 82 | Alice think it so very much out of the way to hear the 83 | Rabbit say to itself, 'Oh dear! Oh dear! I shall be late!' (when 84 | she thought it over afterwards, it occurred to her that she ought 85 | to have wondered at this, but at the time it all seemed quite 86 | natural); but when the Rabbit actually took a watch out of its 87 | waistcoat-pocket, and looked at it, and then hurried on, 88 | Alice started to her feet, for it flashed across her mind that 89 | she had never before seen a rabbit with either a 90 | waistcoat-pocket, or a watch to take out of it, and burning with 91 | curiosity, she ran across the field after it, and fortunately was 92 | just in time to see it pop down a large rabbit-hole under the 93 | hedge.
94 |In another moment down went Alice after it, never once 95 | considering how in the world she was to get out again.
96 |The rabbit-hole went straight on like a tunnel for some way, 97 | and then dipped suddenly down, so suddenly that Alice had not a 98 | moment to think about stopping herself before she found herself 99 | falling down a very deep well.
100 |Either the well was very deep, or she fell very slowly, for 101 | she had plenty of time as she went down to look about her and to 102 | wonder what was going to happen next. First, she tried to look 103 | down and make out what she was coming to, but it was too dark to 104 | see anything; then she looked at the sides of the well, and 105 | noticed that they were filled with cupboards and book-shelves; 106 | here and there she saw maps and pictures hung upon pegs. She took 107 | down a jar from one of the shelves as she passed; it was labelled 108 | 'ORANGE MARMALADE', but to her great disappointment it was empty: 109 | she did not like to drop the jar for fear of killing somebody, so 110 | managed to put it into one of the cupboards as she fell past 111 | it.
112 |'Well!' thought Alice to herself, 'after such a fall as this, 113 | I shall think nothing of tumbling down stairs! How brave they'll 114 | all think me at home! Why, I wouldn't say anything about it, even 115 | if I fell off the top of the house!' (Which was very likely 116 | true.)
117 |Down, down, down. Would the fall never come to an end! 118 | 'I wonder how many miles I've fallen by this time?' she said 119 | aloud. 'I must be getting somewhere near the centre of the earth. 120 | Let me see: that would be four thousand miles down, I think--' 121 | (for, you see, Alice had learnt several things of this sort in 122 | her lessons in the schoolroom, and though this was not a very 123 | good opportunity for showing off her knowledge, as there was no 124 | one to listen to her, still it was good practice to say it over) 125 | '--yes, that's about the right distance--but then I wonder what 126 | Latitude or Longitude I've got to?' (Alice had no idea what 127 | Latitude was, or Longitude either, but thought they were nice 128 | grand words to say.)
129 |Presently she began again. 'I wonder if I shall fall right 130 | through the earth! How funny it'll seem to come out among 131 | the people that walk with their heads downward! The Antipathies, 132 | I think--' (she was rather glad there was no one listening, this 133 | time, as it didn't sound at all the right word) '--but I shall 134 | have to ask them what the name of the country is, you know. 135 | Please, Ma'am, is this New Zealand or Australia?' (and she tried 136 | to curtsey as she spoke--fancy curtseying as you're 137 | falling through the air! Do you think you could manage it?) 'And 138 | what an ignorant little girl she'll think me for asking! No, 139 | it'll never do to ask: perhaps I shall see it written up 140 | somewhere.'
141 |Down, down, down. There was nothing else to do, so Alice soon 142 | began talking again. 'Dinah'll miss me very much to-night, I 143 | should think!' (Dinah was the cat.) 'I hope they'll remember her 144 | saucer of milk at tea-time. Dinah my dear! I wish you were down 145 | here with me! There are no mice in the air, I'm afraid, but you 146 | might catch a bat, and that's very like a mouse, you know. But do 147 | cats eat bats, I wonder?' And here Alice began to get rather 148 | sleepy, and went on saying to herself, in a dreamy sort of way, 149 | 'Do cats eat bats? Do cats eat bats?' and sometimes, 'Do bats eat 150 | cats?' for, you see, as she couldn't answer either question, it 151 | didn't much matter which way she put it. She felt that she was 152 | dozing off, and had just begun to dream that she was walking hand 153 | in hand with Dinah, and saying to her very earnestly, 'Now, 154 | Dinah, tell me the truth: did you ever eat a bat?' when suddenly, 155 | thump! thump! down she came upon a heap of sticks and dry leaves, 156 | and the fall was over.
157 |Alice was not a bit hurt, and she jumped up on to her feet in 158 | a moment: she looked up, but it was all dark overhead; before her 159 | was another long passage, and the White Rabbit was still in 160 | sight, hurrying down it. There was not a moment to be lost: away 161 | went Alice like the wind, and was just in time to hear it say, as 162 | it turned a corner, 'Oh my ears and whiskers, how late it's 163 | getting!' She was close behind it when she turned the corner, but 164 | the Rabbit was no longer to be seen: she found herself in a long, 165 | low hall, which was lit up by a row of lamps hanging from the 166 | roof.
167 |There were doors all round the hall, but they were all locked; 168 | and when Alice had been all the way down one side and up the 169 | other, trying every door, she walked sadly down the middle, 170 | wondering how she was ever to get out again.
171 |Suddenly she came upon a little three-legged table, all made 172 | of solid glass; there was nothing on it except a tiny golden key, 173 | and Alice's first thought was that it might belong to one of the 174 | doors of the hall; but, alas! either the locks were too large, or 175 | the key was too small, but at any rate it would not open any of 176 | them. However, on the second time round, she came upon a low 177 | curtain she had not noticed before, and behind it was a little 178 | door about fifteen inches high: she tried the little golden key 179 | in the lock, and to her great delight it fitted!
180 |Alice opened the door and found that it led into a small 181 | passage, not much larger than a rat-hole: she knelt down and 182 | looked along the passage into the loveliest garden you ever saw. 183 | How she longed to get out of that dark hall, and wander about 184 | among those beds of bright flowers and those cool fountains, but 185 | she could not even get her head though the doorway; 'and even if 186 | my head would go through,' thought poor Alice, 'it would 187 | be of very little use without my shoulders. Oh, how I wish I 188 | could shut up like a telescope! I think I could, if I only know 189 | how to begin.' For, you see, so many out-of-the-way things had 190 | happened lately, that Alice had begun to think that very few 191 | things indeed were really impossible.
192 |There seemed to be no use in waiting by the little door, so 193 | she went back to the table, half hoping she might find another 194 | key on it, or at any rate a book of rules for shutting people up 195 | like telescopes: this time she found a little bottle on it, 196 | ('which certainly was not here before,' said Alice,) and round 197 | the neck of the bottle was a paper label, with the words 'DRINK 198 | ME' beautifully printed on it in large letters.
199 |It was all very well to say 'Drink me,' but the wise little 200 | Alice was not going to do that in a hurry. 'No, I'll look 201 | first,' she said, 'and see whether it's marked "poison" or 202 | not'; for she had read several nice little histories about 203 | children who had got burnt, and eaten up by wild beasts and other 204 | unpleasant things, all because they would not remember the 205 | simple rules their friends had taught them: such as, that a 206 | red-hot poker will burn you if you hold it too long; and that if 207 | you cut your finger very deeply with a knife, it usually 208 | bleeds; and she had never forgotten that, if you drink much from 209 | a bottle marked 'poison,' it is almost certain to disagree 210 | with you, sooner or later.
211 |However, this bottle was not marked 'poison,' so Alice 212 | ventured to taste it, and finding it very nice, (it had, in fact, 213 | a sort of mixed flavour of cherry-tart, custard, pine-apple, 214 | roast turkey, toffee, and hot buttered toast,) she very soon 215 | finished it off.
216 |paper-dialog-scrollable
can be contained in a paper-dialog
224 | Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
232 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
233 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
234 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
235 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
236 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
237 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
238 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
44 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
45 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
46 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
47 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
48 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
49 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
50 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
51 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
62 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
63 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
64 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
65 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
66 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
67 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
68 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
69 |Hello world!
80 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
92 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
105 |