-
Notifications
You must be signed in to change notification settings - Fork 380
Closed
Labels
Description
In RC-17 there is a problem with rendering span with overflow: hidden and border. For following HTML:
<!DOCTYPE HTML>
<html>
<head>
<style>
@page {size: 500px 500px;}body {margin: 0;}
.letterField {
border: 2px solid #008e7e;
border-right: 0;
border-left-width: 1px;
float: left;
padding: 2px 3px;
font-size: 10px;
display: inline-block;
color: #000;
font-weight: bold;
width: 6px;
overflow: hidden;
}
.letterField:first-child {
border-left: 2px solid #008e7e;
}
.letterField:last-child {
border-right: 2px solid #008e7e;
}
</style>
</head>
<title></title>
<body>
<span class="letterField">AASLKDJ</span>
</body>
</html>
I get this on RC-17:
And this on RC-16:
See attached PDF files.
border-overflow-RC16.pdf
border-overflow-RC17.pdf