-
Notifications
You must be signed in to change notification settings - Fork 369
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#587 Move nowrap test into auto test runner with proof.
- Loading branch information
Showing
4 changed files
with
44 additions
and
21 deletions.
There are no files selected for viewing
Binary file added
BIN
+2.89 KB
openhtmltopdf-examples/src/main/resources/visualtest/expected/text/nowrap.pdf
Binary file not shown.
36 changes: 36 additions & 0 deletions
36
openhtmltopdf-examples/src/main/resources/visualtest/html/text/nowrap.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,36 @@ | ||
<html> | ||
<head> | ||
<style> | ||
@page { | ||
size: 21cm 9cm; | ||
} | ||
/* Unrelated workaround for bug where top/bottom margin | ||
* on page does not collapse correctly. */ | ||
p:first-child { | ||
margin-top: 0; | ||
} | ||
p:last-child { | ||
margin-bottom: 0; | ||
} | ||
</style> | ||
</head> | ||
<body style="border: 1px solid black;"> | ||
<div style="width:90%; line-height: 1.3;"> | ||
<p> | ||
Some text.Some text.Some text.Some text.Some text.Some text.Some text.Some text. | ||
<span style="white-space: nowrap; border-bottom: 1px solid red;">This text should be at next line.</span> | ||
Other text. Other text. Other text. Other text. Other text. Other text. Other text. | ||
</p> | ||
<p> | ||
Some text.Some text. | ||
<span style="white-space: nowrap; border-bottom: 1px solid red;">This text should not be at next line.</span> | ||
Other text. Other text. Other text. Other text. Other text. Other text. Other text. | ||
</p> | ||
<p> | ||
Some text.Some text.Some text.Some text.Some text.Some text.Some text.Some text. | ||
<span style="white-space: nowrap; border-bottom: 1px solid red;">This is a very very very very very very very very very very very very very very very very very very very very very very long nowrap text.</span> | ||
Other text. Other text. Other text. Other text. Other text. Other text. Other text. | ||
</p> | ||
</div> | ||
</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
This file was deleted.
Oops, something went wrong.