forked from mozilla/readability
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed Lists of Images Not Showing (mozilla#738)
Allow lists of images to appear in ReaderMode Co-authored-by: niklasbaumgardner <63427453+niklasbaumgardner@users.noreply.github.com> Co-authored-by: Tuxy222 <cdburnham18@gmai.com> Co-authored-by: niklasbaumgardner <63427453+niklasbaumgardner@users.noreply.github.com>
- Loading branch information
1 parent
1d2cb03
commit 7c7f694
Showing
4 changed files
with
180 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"title": "Readability Test", | ||
"byline": null, | ||
"dir": null, | ||
"excerpt": "Lorem ipsum dolor sit amet, consectetur adipiscing 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.", | ||
"siteName": null, | ||
"readerable": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<div id="readability-page-1" class="page"> | ||
<p> Lorem ipsum dolor sit amet, consectetur adipiscing 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. </p> | ||
<hr /> | ||
<h2> Single <img> </h2> | ||
<p> | ||
<img src="http://fakehost/test/florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image" /> | ||
</p> | ||
<p> Lorem ipsum dolor sit amet, consectetur adipiscing 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. </p> | ||
<hr /> | ||
<h2> Single <figure> </h2> | ||
<figure> | ||
<img src="http://fakehost/test/florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image" /> | ||
<figcaption> Caption of the figure </figcaption> | ||
</figure> | ||
<p> Lorem ipsum dolor sit amet, consectetur adipiscing 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. </p> | ||
<hr /> | ||
<h2> <ul> List of <img> </h2> | ||
<ul> | ||
<li> | ||
<img src="http://fakehost/test/florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image" /> | ||
</li> | ||
<li> | ||
<img src="http://fakehost/test/florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image" /> | ||
</li> | ||
<li> | ||
<img src="http://fakehost/test/florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image" /> | ||
</li> | ||
</ul> | ||
<p> Lorem ipsum dolor sit amet, consectetur adipiscing 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. </p> | ||
<hr /> | ||
<h2> <ul> List of <figure> </h2> | ||
<ul> | ||
<li> | ||
<figure> | ||
<img src="http://fakehost/test/florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image" /> | ||
<figcaption> Caption of the figure </figcaption> | ||
</figure> | ||
</li> | ||
<li> | ||
<figure> | ||
<img src="http://fakehost/test/florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image" /> | ||
<figcaption> Caption of the figure </figcaption> | ||
</figure> | ||
</li> | ||
<li> | ||
<figure> | ||
<img src="http://fakehost/test/florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image" /> | ||
<figcaption> Caption of the figure </figcaption> | ||
</figure> | ||
</li> | ||
</ul> | ||
<p> Lorem ipsum dolor sit amet, consectetur adipiscing 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. </p> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
<!DOCTYPE html> | ||
<html xmlns="http://www.w3.org/1999/xhtml"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title> | ||
Readability Test | ||
</title> | ||
<style> | ||
<![CDATA[ | ||
body { | ||
font-family: sans-serif; | ||
margin: 0 auto; | ||
max-width: 900px; | ||
padding: 1em 2em; | ||
} | ||
img { | ||
max-width: 100%; | ||
} | ||
]]> | ||
</style> | ||
</head> | ||
<body> | ||
<h1> | ||
Readability Test | ||
</h1> | ||
<p> | ||
Lorem ipsum dolor sit amet, consectetur adipiscing 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. | ||
</p> | ||
<hr /> | ||
<h2> | ||
Single <img> | ||
</h2> | ||
<p> | ||
<img src="florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image" /> | ||
</p> | ||
<p> | ||
Lorem ipsum dolor sit amet, consectetur adipiscing 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. | ||
</p> | ||
<hr /> | ||
<h2> | ||
Single <figure> | ||
</h2> | ||
<figure> | ||
<img src="florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image" /> | ||
<figcaption> | ||
Caption of the figure | ||
</figcaption> | ||
</figure> | ||
<p> | ||
Lorem ipsum dolor sit amet, consectetur adipiscing 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. | ||
</p> | ||
<hr /> | ||
<h2> | ||
<ul> List of <img> | ||
</h2> | ||
<ul> | ||
<li> | ||
<img src="florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image" /> | ||
</li> | ||
<li> | ||
<img src="florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image" /> | ||
</li> | ||
<li> | ||
<img src="florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image" /> | ||
</li> | ||
</ul> | ||
<p> | ||
Lorem ipsum dolor sit amet, consectetur adipiscing 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. | ||
</p> | ||
<hr /> | ||
<h2> | ||
<ul> List of <figure> | ||
</h2> | ||
<ul> | ||
<li> | ||
<figure> | ||
<img src="florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image" /> | ||
<figcaption> | ||
Caption of the figure | ||
</figcaption> | ||
</figure> | ||
</li> | ||
<li> | ||
<figure> | ||
<img src="florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image" /> | ||
<figcaption> | ||
Caption of the figure | ||
</figcaption> | ||
</figure> | ||
</li> | ||
<li> | ||
<figure> | ||
<img src="florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image" /> | ||
<figcaption> | ||
Caption of the figure | ||
</figcaption> | ||
</figure> | ||
</li> | ||
</ul> | ||
<p> | ||
Lorem ipsum dolor sit amet, consectetur adipiscing 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. | ||
</p> | ||
</body> | ||
</html> |