-
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.
Merge pull request #137 from rototor/fix_miterlimit_for_acrobatreader
Fix #135: Don't write a MiterLimit of 0 into the PDF
- Loading branch information
Showing
4 changed files
with
56 additions
and
13 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
29 changes: 29 additions & 0 deletions
29
openhtmltopdf-examples/src/main/resources/testcases/adobe-borderstyle-bugs.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,29 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"/> | ||
<title>Some Title</title> | ||
<style> | ||
.dotted { | ||
border: 2px dotted #dddddd; | ||
} | ||
.dashed { | ||
border: 2px dashed #dddddd; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
The following does not appear in Adobe Reader DC: | ||
<table> | ||
<tr> | ||
<td class="dashed">Hello World</td> | ||
</tr> | ||
</table> | ||
And this is also missing : | ||
<table> | ||
<tr> | ||
<td class="dotted">Hello World</td> | ||
</tr> | ||
</table> | ||
</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