Bug 132883

Summary: Update positioning/drawing of the image controls button
Product: WebKit Reporter: Brady Eidson <beidson>
Component: WebCore Misc.Assignee: Brady Eidson <beidson>
Status: RESOLVED FIXED    
Severity: Normal CC: commit-queue, esprehn+autocc, glenn, gyuyoung.kim, kondapallykalyan, thorton
Priority: P2 Keywords: InRadar
Version: 528+ (Nightly build)   
Hardware: Mac   
OS: All   
Attachments:
Description Flags
Patch v1 thorton: review+

Brady Eidson
Reported 2014-05-13 13:24:15 PDT
Update positioning/drawing of the image controls button <rdar://problem/16885077>
Attachments
Patch v1 (5.23 KB, patch)
2014-05-13 13:31 PDT, Brady Eidson
thorton: review+
Brady Eidson
Comment 1 2014-05-13 13:31:47 PDT
Created attachment 231404 [details] Patch v1
Tim Horton
Comment 2 2014-05-13 13:36:09 PDT
Comment on attachment 231404 [details] Patch v1 View in context: https://bugs.webkit.org/attachment.cgi?id=231404&action=review > Source/WebCore/html/shadow/mac/ImageControlsButtonElementMac.cpp:101 > + button->setAttribute(HTMLNames::styleAttr, String::format("right: %ipx; top: %ipx", positionOffset.width(), positionOffset.height())); Is this the normal way to set style attributes? I think you should be using setInlineStyleProperty for efficiency. See my use in PDFPluginTextAnnotation. > Source/WebCore/html/shadow/mac/imageControlsMac.css:-32 > - right: 18px; /* FIXME: Why is right: 0px off the right edge of the parent? */ we should keep a comment about this nonsense, because it's still wrong. just... above.
Brady Eidson
Comment 3 2014-05-13 13:44:16 PDT
Tim Horton
Comment 4 2014-05-13 13:51:20 PDT
(In reply to comment #2) > (From update of attachment 231404 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=231404&action=review > > > Source/WebCore/html/shadow/mac/ImageControlsButtonElementMac.cpp:101 > > + button->setAttribute(HTMLNames::styleAttr, String::format("right: %ipx; top: %ipx", positionOffset.width(), positionOffset.height())); > > Is this the normal way to set style attributes? I think you should be using setInlineStyleProperty for efficiency. See my use in PDFPluginTextAnnotation. > > > Source/WebCore/html/shadow/mac/imageControlsMac.css:-32 > > - right: 18px; /* FIXME: Why is right: 0px off the right edge of the parent? */ > > we should keep a comment about this nonsense, because it's still wrong. just... above. I meant, to avoid String::formats :D setInlineStyleProperty(CSSPropertyTop, positionOffset.height(), CSS_PX); etc.
Brady Eidson
Comment 5 2014-05-13 14:46:20 PDT
Note You need to log in before you can comment on or make changes to this bug.