Bug 155482

Summary: <attachment> on iOS should paint its progress indicator instead of a green square
Product: WebKit Reporter: Tim Horton <thorton>
Component: New BugsAssignee: Tim Horton <thorton>
Status: RESOLVED FIXED    
Severity: Normal CC: commit-queue, enrica, esprehn+autocc, glenn, kondapallykalyan, sam, simon.fraser
Priority: P2    
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch simon.fraser: review+

Tim Horton
Reported 2016-03-14 18:56:38 PDT
<attachment> on iOS should paint its progress indicator instead of a green square
Attachments
Patch (3.17 KB, patch)
2016-03-14 18:57 PDT, Tim Horton
simon.fraser: review+
Tim Horton
Comment 1 2016-03-14 18:57:12 PDT
Tim Horton
Comment 2 2016-03-14 21:10:42 PDT
Daniel Bates
Comment 3 2016-03-14 21:17:34 PDT
Comment on attachment 274068 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=274068&action=review I know that this was already reviewed and landed. I had a suggestion to improve the readability of this code. > Source/WebCore/rendering/RenderThemeIOS.mm:1619 > + progressPath.addArc(center, info.progressRect.width() / 2, -M_PI_2, info.progress * 2 * M_PI - M_PI_2, 0); The last parameter of Path::addArc() is a boolean as to whether the arc should be drawn clockwise. Although 0 will be implicitly cast to boolean false I suggest that we either define a local boolean variable, say clockwise, that has value false and pass this variable for the last argument of Path::addArc() or pass false and add some kind of inline comment that conveys that the purpose of this argument is to draw the arc counterclockwise.
Tim Horton
Comment 4 2016-03-14 21:22:40 PDT
(In reply to comment #3) > Comment on attachment 274068 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=274068&action=review > > I know that this was already reviewed and landed. I had a suggestion to > improve the readability of this code. > > > Source/WebCore/rendering/RenderThemeIOS.mm:1619 > > + progressPath.addArc(center, info.progressRect.width() / 2, -M_PI_2, info.progress * 2 * M_PI - M_PI_2, 0); > > The last parameter of Path::addArc() is a boolean as to whether the arc > should be drawn clockwise. Although 0 will be implicitly cast to boolean > false I suggest that we either define a local boolean variable, say > clockwise, that has value false and pass this variable for the last argument > of Path::addArc() That seems a bit excessive. > or pass false and add some kind of inline comment that > conveys that the purpose of this argument is to draw the arc > counterclockwise. More reasonable, but the proper fix would be to change addArc to take an enum instead of a boolean.
Darin Adler
Comment 5 2016-03-16 14:47:05 PDT
Comment on attachment 274068 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=274068&action=review > Source/WebCore/rendering/RenderThemeIOS.mm:1481 > + progress = std::max<float>(std::min<float>(progressString.toFloat(&validProgress), 1), 0); Tiny style comment: When clamping like this I like to put the lower bound on the left and the upper bound on the right, like this: progress = std::max(0.f, std::min(progressString.toFloat(&validProgress), 1.f));
Note You need to log in before you can comment on or make changes to this bug.