Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(318)

Issue 781003003: Using fullstop Unicode if horizontal ellipsis not present (Closed)

Created:
6 years ago by h.joshi
Modified:
5 years, 6 months ago
CC:
blink-reviews, blink-reviews-rendering, zoltan1, pdr+renderingwatchlist_chromium.org, eae+blinkwatch, leviw+renderwatch, jchaffraix+rendering, blink-reviews-wtf_chromium.org, aandrey+blink_chromium.org, Mikhail
Base URL:
https://chromium.googlesource.com/chromium/blink.git@diff_font_render
Target Ref:
refs/heads/master
Project:
blink
Visibility:
Public.

Description

Using Fullstop Unicode if horizontal ellipsis not present in primary font. Original patch: https://codereview.chromium.org/680213004 In case of Ellipsis, we need to check if Ellipsis Unicode is present in primary font or not, if not then use "Dot" (full-stop) Unicode, this is also suggested in CSS3 (http://www.w3.org/TR/2003/CR-css3-text-20030514/) BUG=416425 TEST=fast/text/ellipsis-platform-font-change.html Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=196912

Patch Set 1 #

Total comments: 11

Patch Set 2 : Comment fixes #

Patch Set 3 : Updating TestExpectation with virtual test #

Patch Set 4 : Rebasing patch #

Total comments: 4

Patch Set 5 : Comment fixes #

Total comments: 5

Patch Set 6 : Removing unused variable #

Patch Set 7 : Updating layout test to fix bot errors #

Patch Set 8 : Test Expectation Update #

Patch Set 9 : Rebase patch #

Unified diffs Side-by-side diffs Delta from patch set Stats (+136 lines, -5 lines) Patch
M LayoutTests/TestExpectations View 1 2 3 4 5 6 7 8 1 chunk +6 lines, -0 lines 0 comments Download
A LayoutTests/fast/text/ellipsis-platform-font-change.html View 1 2 3 4 1 chunk +43 lines, -0 lines 0 comments Download
A LayoutTests/fast/text/ellipsis-platform-font-change-expected.png View 1 2 3 4 5 6 7 8 Binary file 0 comments Download
A LayoutTests/fast/text/ellipsis-platform-font-change-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +15 lines, -0 lines 0 comments Download
M LayoutTests/fast/text/ellipsis-stroked-expected.html View 1 2 3 4 5 6 1 chunk +3 lines, -0 lines 0 comments Download
A LayoutTests/third_party/DroidSans/DroidSans.ttf.subset-U002E-U0041-42.ttf View 1 Binary file 0 comments Download
A LayoutTests/third_party/DroidSans/LICENSE.txt View 1 1 chunk +18 lines, -0 lines 0 comments Download
A LayoutTests/third_party/DroidSans/README.chromium View 1 1 chunk +19 lines, -0 lines 0 comments Download
M Source/core/layout/LayoutBlockFlowLine.cpp View 1 2 3 4 5 6 7 8 2 chunks +30 lines, -5 lines 0 comments Download
M Source/wtf/unicode/CharacterNames.h View 1 2 3 4 5 6 7 8 2 chunks +2 lines, -0 lines 0 comments Download

Messages

Total messages: 38 (9 generated)
Dominik Röttsches
Thanks for your patch, good that you're trying to improve ellipsis rendering. However, i see ...
6 years ago (2014-12-15 09:37:41 UTC) #3
h.joshi
Added new test code and made suggested changes. https://codereview.chromium.org/781003003/diff/1/LayoutTests/TestExpectations File LayoutTests/TestExpectations (right): https://codereview.chromium.org/781003003/diff/1/LayoutTests/TestExpectations#newcode1447 LayoutTests/TestExpectations:1447: # ...
5 years, 12 months ago (2014-12-24 06:30:59 UTC) #4
h.joshi
Currently Windows bot (win_blink_rel) is failing. I tried 2-3 times and every times its failing ...
5 years, 12 months ago (2014-12-24 06:32:00 UTC) #5
h.joshi
Pls review
5 years, 11 months ago (2015-01-08 10:03:47 UTC) #6
Dominik Röttsches
https://codereview.chromium.org/781003003/diff/60001/LayoutTests/fast/text/ellipsis-platform-font-change.html File LayoutTests/fast/text/ellipsis-platform-font-change.html (right): https://codereview.chromium.org/781003003/diff/60001/LayoutTests/fast/text/ellipsis-platform-font-change.html#newcode25 LayoutTests/fast/text/ellipsis-platform-font-change.html:25: <!-- Please do not submit unused/commented-out code. https://codereview.chromium.org/781003003/diff/60001/LayoutTests/fast/text/ellipsis-platform-font-change.html#newcode28 LayoutTests/fast/text/ellipsis-platform-font-change.html:28: ...
5 years, 11 months ago (2015-01-08 13:02:25 UTC) #7
Dominik Röttsches
> https://codereview.chromium.org/781003003/diff/1/LayoutTests/fast/text/ellipsis-platform-font-change.html#newcode7 > LayoutTests/fast/text/ellipsis-platform-font-change.html:7: src: > url(../../third_party/AndroidEmojiMonospace/AndroidEmoji.ttf.subset-uni203C.ttf) > format("truetype"); > Pls refer to comment in ...
5 years, 11 months ago (2015-01-08 13:06:07 UTC) #8
Dominik Röttsches
Ah, never mind this one, sorry - I see the filename has changed.
5 years, 11 months ago (2015-01-08 13:07:49 UTC) #9
Dominik Röttsches
LGTM with nit: Please remove the unused boolean. https://codereview.chromium.org/781003003/diff/80001/Source/core/rendering/RenderBlockLineLayout.cpp File Source/core/rendering/RenderBlockLineLayout.cpp (right): https://codereview.chromium.org/781003003/diff/80001/Source/core/rendering/RenderBlockLineLayout.cpp#newcode1952 Source/core/rendering/RenderBlockLineLayout.cpp:1952: bool ...
5 years, 11 months ago (2015-01-14 08:18:01 UTC) #10
h.joshi
@Dominik: thank you for reviewing. Was busy with some other stuff and was not able ...
5 years, 11 months ago (2015-01-14 08:19:58 UTC) #11
h.joshi
Made suggested nit changes. https://codereview.chromium.org/781003003/diff/80001/Source/core/rendering/RenderBlockLineLayout.cpp File Source/core/rendering/RenderBlockLineLayout.cpp (right): https://codereview.chromium.org/781003003/diff/80001/Source/core/rendering/RenderBlockLineLayout.cpp#newcode1952 Source/core/rendering/RenderBlockLineLayout.cpp:1952: bool useHorizontalEllipsis = true; On ...
5 years, 11 months ago (2015-01-14 10:17:27 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/781003003/100001
5 years, 11 months ago (2015-01-14 12:37:02 UTC) #14
commit-bot: I haz the power
Try jobs failed on following builders: blink_presubmit on tryserver.blink (http://build.chromium.org/p/tryserver.blink/builders/blink_presubmit/builds/24173)
5 years, 11 months ago (2015-01-14 12:43:15 UTC) #16
h.joshi
On 2015/01/14 12:43:15, I haz the power (commit-bot) wrote: > Try jobs failed on following ...
5 years, 11 months ago (2015-01-17 09:38:20 UTC) #17
h.joshi
Looking into following two error in Linux Debug bots which are not reported on my ...
5 years, 11 months ago (2015-01-17 09:39:18 UTC) #18
h.joshi
@Emil: Pls review Linux bit issues are fixed now, they require update in expectation file.
5 years, 11 months ago (2015-01-20 09:27:15 UTC) #19
Dominik Röttsches
Usually minor TestExpectations updates do not require a new review. LGTM, you can go ahead ...
5 years, 11 months ago (2015-01-20 11:49:28 UTC) #20
h.joshi
Thank you Dominik.
5 years, 11 months ago (2015-01-20 12:15:19 UTC) #21
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/781003003/140001
5 years, 11 months ago (2015-01-20 12:16:17 UTC) #23
commit-bot: I haz the power
Try jobs failed on following builders: blink_presubmit on tryserver.blink (http://build.chromium.org/p/tryserver.blink/builders/blink_presubmit/builds/24593)
5 years, 11 months ago (2015-01-20 12:21:59 UTC) #25
h.joshi
Getting following error: ** Presubmit ERRORS ** Missing LGTM from an OWNER for these files: ...
5 years, 11 months ago (2015-01-20 13:07:21 UTC) #26
h.joshi
+Adding jchaffraix@chromium.org for CharacterNames.h Pls review
5 years, 11 months ago (2015-01-20 13:11:56 UTC) #28
h.joshi
@Emil, jchaffraix: Pls review
5 years, 11 months ago (2015-01-22 06:19:31 UTC) #29
tkent
CharacterNames.h lgtm
5 years, 10 months ago (2015-02-02 00:36:55 UTC) #30
eae
LGTM
5 years, 10 months ago (2015-02-02 00:39:43 UTC) #31
h.joshi
@Emil: Pls review somehow I forgot to commit this patch and now RenderBlockLineLayout is changed ...
5 years, 6 months ago (2015-06-10 07:12:50 UTC) #32
eae
LGTM
5 years, 6 months ago (2015-06-10 15:28:54 UTC) #33
h.joshi
Thank you Emil
5 years, 6 months ago (2015-06-11 04:11:51 UTC) #34
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/781003003/160001
5 years, 6 months ago (2015-06-11 04:12:03 UTC) #37
commit-bot: I haz the power
5 years, 6 months ago (2015-06-11 05:27:56 UTC) #38
Message was sent while issue was closed.
Committed patchset #9 (id:160001) as
https://src.chromium.org/viewvc/blink?view=rev&revision=196912

Powered by Google App Engine
This is Rietveld 408576698