Changes between Version 1 and Version 3 of Ticket #17062
- Timestamp:
- Jul 7, 2021, 9:48:27 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #17062
- Property Component Applications/WebPositive → Kits/Web Kit
- Property Summary WebPositive rendering issues → WebPositive rendering issues - borders rendering incorrectly
-
Ticket #17062 – Description
v1 v3 1 Here's a good test candidate of the rendering issues in WebKit after haikuwebkit 1.8.1. This represents the most common "glitches" seen.1 Here's a good test candidate of the rendering issues in WebKit after haikuwebkit 1.8.1. 2 2 3 3 Compare: … … 9 9 10 10 Notable issues: 11 * Text turns invisible, appears and disappears inconsistently during load + scroll.12 * Navigation bar on left side empty + white. No images loaded.13 11 * Table borders black line instead of white 14 12 15 These issues are seen pretty universally across all sites, and are a good representation of the biggest regression seen. 13 Reproduction: 14 {{{ 15 <html> 16 <body style="background-color: #DDD"> 17 <table style="color: #111; width: 100%; border-collapse: collapse;"> 18 <tr><td style="border: 1px #ff0000 solid;">Name</td><td>Place</td></tr> 19 <tr><td>Tickle</td><td>Pickle</td></tr> 20 </table> 21 </body> 22 </html> 23 }}}