-
Notifications
You must be signed in to change notification settings - Fork 359
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#433 Failing test for justified text with a line ending with br tag. …
…[ci skip]
- Loading branch information
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
...htmltopdf-examples/src/main/resources/visualtest/html/issue-433-text-justify-with-br.html
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,26 @@ | ||
<html xmlns="http://www.w3.org/1999/xhtml"> | ||
<head> | ||
<style> | ||
@page { | ||
size: 100mm 5cm; | ||
margin: 0; | ||
} | ||
body { | ||
margin: 0; | ||
width: 100mm; | ||
text-align: justify; | ||
} | ||
</style> | ||
<title>test</title> | ||
</head> | ||
<body> | ||
<p> | ||
hello world<br/> | ||
hello | ||
</p> | ||
<p style="text-align: left;"> | ||
hello world<br/> | ||
hello | ||
</p> | ||
</body> | ||
</html> |
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