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

Issue 1213153003: Cope with intrinsic height styled on table cells (Closed)

Created:
5 years, 5 months ago by rhogan
Modified:
5 years, 5 months ago
CC:
blink-reviews, blink-reviews-rendering, eae+blinkwatch, jchaffraix+rendering, leviw+renderwatch, pdr+renderingwatchlist_chromium.org, szager+layoutwatch_chromium.org, zoltan1
Target Ref:
refs/heads/master
Project:
blink
Visibility:
Public.

Description

Cope with intrinsic height styled on table cells Treat it just like auto as intrinsic values don't really apply to cells. BUG=478279 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=198890

Patch Set 1 #

Total comments: 4

Patch Set 2 : Updated #

Patch Set 3 : Updated #

Total comments: 3

Patch Set 4 : Updated #

Total comments: 3

Patch Set 5 : Updated #

Unified diffs Side-by-side diffs Delta from patch set Stats (+17 lines, -1 line) Patch
A LayoutTests/fast/table/cell-intrinsic-height.html View 1 1 chunk +12 lines, -0 lines 0 comments Download
A LayoutTests/fast/table/cell-intrinsic-height-expected.txt View 1 2 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/layout/LayoutTableCell.h View 1 2 3 4 1 chunk +3 lines, -1 line 0 comments Download

Dependent Patchsets:

Messages

Total messages: 17 (2 generated)
rhogan
5 years, 5 months ago (2015-07-06 19:17:23 UTC) #2
mstensho (USE GERRIT)
Referring to http://dev.w3.org/csswg/css-device-adapt in the description doesn't seem right. CSS device adaptation has nothing to ...
5 years, 5 months ago (2015-07-07 07:11:40 UTC) #3
rhogan
On 2015/07/07 at 07:11:40, mstensho wrote: > Referring to http://dev.w3.org/csswg/css-device-adapt in the description doesn't seem ...
5 years, 5 months ago (2015-07-07 18:39:53 UTC) #4
rhogan
https://codereview.chromium.org/1213153003/diff/1/Source/core/layout/LayoutTableCell.h File Source/core/layout/LayoutTableCell.h (right): https://codereview.chromium.org/1213153003/diff/1/Source/core/layout/LayoutTableCell.h#newcode112 Source/core/layout/LayoutTableCell.h:112: int styleLogicalHeight = computeLogicalHeightFromCellStyle(style()->logicalHeight()); On 2015/07/07 at 07:11:39, mstensho ...
5 years, 5 months ago (2015-07-07 18:40:02 UTC) #5
mstensho (USE GERRIT)
On 2015/07/07 18:40:02, rhogan wrote: > https://codereview.chromium.org/1213153003/diff/1/Source/core/layout/LayoutTableCell.h > File Source/core/layout/LayoutTableCell.h (right): > > https://codereview.chromium.org/1213153003/diff/1/Source/core/layout/LayoutTableCell.h#newcode112 > ...
5 years, 5 months ago (2015-07-07 19:15:42 UTC) #6
rhogan
On 2015/07/07 at 19:15:42, mstensho wrote: > On 2015/07/07 18:40:02, rhogan wrote: > > https://codereview.chromium.org/1213153003/diff/1/Source/core/layout/LayoutTableCell.h ...
5 years, 5 months ago (2015-07-07 20:33:14 UTC) #7
mstensho (USE GERRIT)
https://codereview.chromium.org/1213153003/diff/40001/Source/core/layout/LayoutTableCell.h File Source/core/layout/LayoutTableCell.h (left): https://codereview.chromium.org/1213153003/diff/40001/Source/core/layout/LayoutTableCell.h#oldcode105 Source/core/layout/LayoutTableCell.h:105: int styleLogicalHeight = valueForLength(style()->logicalHeight(), 0); Note that "LayoutUnit()" is ...
5 years, 5 months ago (2015-07-09 08:22:16 UTC) #8
rhogan
On 2015/07/09 at 08:22:16, mstensho wrote: > https://codereview.chromium.org/1213153003/diff/40001/Source/core/layout/LayoutTableCell.h > File Source/core/layout/LayoutTableCell.h (left): > > https://codereview.chromium.org/1213153003/diff/40001/Source/core/layout/LayoutTableCell.h#oldcode105 ...
5 years, 5 months ago (2015-07-11 13:02:10 UTC) #9
mstensho (USE GERRIT)
https://codereview.chromium.org/1213153003/diff/60001/Source/core/layout/LayoutTableCell.h File Source/core/layout/LayoutTableCell.h (right): https://codereview.chromium.org/1213153003/diff/60001/Source/core/layout/LayoutTableCell.h#newcode103 Source/core/layout/LayoutTableCell.h:103: LayoutUnit logicalHeightFromStyle() const Why change the return type here? ...
5 years, 5 months ago (2015-07-12 19:38:55 UTC) #10
rhogan
https://codereview.chromium.org/1213153003/diff/60001/Source/core/layout/LayoutTableCell.h File Source/core/layout/LayoutTableCell.h (right): https://codereview.chromium.org/1213153003/diff/60001/Source/core/layout/LayoutTableCell.h#newcode103 Source/core/layout/LayoutTableCell.h:103: LayoutUnit logicalHeightFromStyle() const On 2015/07/12 at 19:38:55, mstensho wrote: ...
5 years, 5 months ago (2015-07-13 18:28:21 UTC) #11
mstensho (USE GERRIT)
https://codereview.chromium.org/1213153003/diff/60001/Source/core/layout/LayoutTableCell.h File Source/core/layout/LayoutTableCell.h (right): https://codereview.chromium.org/1213153003/diff/60001/Source/core/layout/LayoutTableCell.h#newcode103 Source/core/layout/LayoutTableCell.h:103: LayoutUnit logicalHeightFromStyle() const On 2015/07/13 18:28:21, rhogan wrote: > ...
5 years, 5 months ago (2015-07-14 08:45:29 UTC) #12
rhogan
On 2015/07/14 at 08:45:29, mstensho wrote: > https://codereview.chromium.org/1213153003/diff/60001/Source/core/layout/LayoutTableCell.h > File Source/core/layout/LayoutTableCell.h (right): > > https://codereview.chromium.org/1213153003/diff/60001/Source/core/layout/LayoutTableCell.h#newcode103 ...
5 years, 5 months ago (2015-07-14 17:55:33 UTC) #13
mstensho (USE GERRIT)
lgtm
5 years, 5 months ago (2015-07-14 17:57:08 UTC) #15
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1213153003/80001
5 years, 5 months ago (2015-07-14 17:57:50 UTC) #16
commit-bot: I haz the power
5 years, 5 months ago (2015-07-14 21:18:53 UTC) #17
Message was sent while issue was closed.
Committed patchset #5 (id:80001) as
https://src.chromium.org/viewvc/blink?view=rev&revision=198890

Powered by Google App Engine
This is Rietveld 408576698