Bug 108187

Summary: Assertion failure in RenderObject::drawLineForBoxSide
Product: WebKit Reporter: Renata Hodovan <rhodovan.u-szeged>
Component: CSSAssignee: Rob Buis <rwlbuis>
Status: RESOLVED FIXED    
Severity: Normal CC: commit-queue, darin, esprehn+autocc, glenn, hyatt, koivisto, kondapallykalyan, rwlbuis, sam
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Bug Depends on:    
Bug Blocks: 116980    
Attachments:
Description Flags
Patch hyatt: review+

Renata Hodovan
Reported 2013-01-29 06:06:14 PST
During HTML fuzzing I've found the following assert: ASSERTION FAILED: y2 >= y1 /home/reni/repos/webkit2/Source/WebCore/rendering/RenderObject.cpp(1033) : void WebCore::RenderObject::drawLineForBoxSide(WebCore::GraphicsContext*, int, int, int, int, WebCore::BoxSide, WebCore::Color, WebCore::EBorderStyle, int, int, bool) Test case: <html> <body> Test for <a style="outline: solid; outline-offset: -70px;"</a>assertion. </body> </html>
Attachments
Patch (3.23 KB, patch)
2013-08-09 12:00 PDT, Rob Buis
hyatt: review+
Rob Buis
Comment 1 2013-08-09 12:00:17 PDT
Darin Adler
Comment 2 2013-08-09 13:48:13 PDT
Comment on attachment 208445 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=208445&action=review > Source/WebCore/rendering/RenderInline.cpp:1479 > + if (pixelSnappedBox.isEmpty()) Is a zero-sized rect the only problematic case? What about a 1x1 rect?
Rob Buis
Comment 3 2013-08-09 15:21:39 PDT
(In reply to comment #2) > (From update of attachment 208445 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=208445&action=review > > > Source/WebCore/rendering/RenderInline.cpp:1479 > > + if (pixelSnappedBox.isEmpty()) > > Is a zero-sized rect the only problematic case? What about a 1x1 rect? I tried 1x1 size, then there is no problem since y() < maxY() (so y1 < y2) and the ASSERT will not be triggered. zero-sized rects but especially negative width/height rects are the problem here (due to the negative outline-offset).
Rob Buis
Comment 4 2013-08-14 10:01:25 PDT
Add hyatt for CC.
Dave Hyatt
Comment 5 2013-08-14 11:31:58 PDT
Comment on attachment 208445 [details] Patch r=me
Rob Buis
Comment 6 2013-08-14 12:20:00 PDT
Note You need to log in before you can comment on or make changes to this bug.