<attachment> should show the file size as detail text below the icon
Created attachment 247841 [details] Patch
Comment on attachment 247841 [details] Patch Attachment 247841 [details] did not pass mac-ews (mac): Output: http://webkit-queues.appspot.com/results/5700911208857600 New failing tests: fast/attachment/attachment-subtitle.html
Created attachment 247848 [details] Archive of layout-test-results from ews101 for mac-mavericks The attached test failures were seen while running run-webkit-tests on the mac-ews. Bot: ews101 Port: mac-mavericks Platform: Mac OS X 10.9.5
Comment on attachment 247841 [details] Patch Attachment 247841 [details] did not pass mac-wk2-ews (mac-wk2): Output: http://webkit-queues.appspot.com/results/4926638127054848 New failing tests: fast/attachment/attachment-subtitle.html
Created attachment 247849 [details] Archive of layout-test-results from ews107 for mac-mavericks-wk2 The attached test failures were seen while running run-webkit-tests on the mac-wk2-ews. Bot: ews107 Port: mac-mavericks-wk2 Platform: Mac OS X 10.9.5
Need to land those results for Mavericks.
Created attachment 247877 [details] Patch
Comment on attachment 247877 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=247877&action=review > Source/WebCore/rendering/RenderThemeMac.mm:2237 > + // FIXME: What attribute should we use? > + String subtitleText = attachment.attachmentElement().fastGetAttribute(subtitleAttr); > + I don't understand the FIXME > Source/WebCore/rendering/RenderThemeMac.mm:2261 > + CGRect lineBounds = CTLineGetBoundsWithOptions(subtitleLine.get(), 0); > + > + // Center the line relative to the icon. > + CGFloat xOffset = (attachmentIconBackgroundSize / 2) - (lineBounds.size.width / 2); > + CGFloat yOffset = 0; > + > + if (!lines.isEmpty()) > + yOffset = lines.last().backgroundRect.maxY(); > + else > + yOffset = attachmentIconBackgroundSize + attachmentIconToTitleMargin; > + > + LabelLine labelLine; > + subtitleTextRect = FloatRect(xOffset, yOffset, lineBounds.size.width, lineBounds.size.height); Again, would be easier to do this in the shadow document :|
http://trac.webkit.org/changeset/181056