-
Notifications
You must be signed in to change notification settings - Fork 360
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#340 Failing test for caption position with non-full-width table.
- Loading branch information
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
openhtmltopdf-examples/src/main/resources/visualtest/html/text/table-caption-position.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,20 @@ | ||
<html> | ||
<head> | ||
<style> | ||
@page { | ||
size: 300px 300px; | ||
} | ||
td { | ||
border: 1px solid green; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div style="border: 1px solid blue;"> | ||
<table style="border: 1px solid red;"> | ||
<caption style="border: 1px solid orange;">Caption</caption> | ||
<tr><td>1</td><td>2</td></tr> | ||
</table> | ||
</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