LayoutTable::TopSection(), BottomSection() sometimes return incorrect value |
||
Issue descriptionThey may return wrong result if the table contains out-of-order thead, tbody and tfoot. For example, for the following case: <table> <tbody id="tbody"><td>body</td></tbody> <thead id="thead"></thead> </table> the functions return the following object: TopSection(): thead (as expected) BottomSection(): thead (expected: tbody) TopNonEmptySection(): tbody (as expected) BottomNonEmptySection(): nullptr (expected: tbody)
,
Sep 20 2017
The following revision refers to this bug: https://chromium.googlesource.com/chromium/src.git/+/b104b5737c134b4e34a0510109e939b472555f79 commit b104b5737c134b4e34a0510109e939b472555f79 Author: Robert Hogan <robhogan@gmail.com> Date: Wed Sep 20 06:25:16 2017 Remove unnecessary check and replace with a DCHECK Follow-up to https://chromium-review.googlesource.com/670339 Bug: 764525 Change-Id: I66effd1c4e138541719a9071599151c8707334d1 Reviewed-on: https://chromium-review.googlesource.com/673444 Commit-Queue: Robert Hogan <robhogan@gmail.com> Reviewed-by: David Grogan <dgrogan@chromium.org> Reviewed-by: Morten Stenshorne <mstensho@opera.com> Cr-Commit-Position: refs/heads/master@{#503070} [modify] https://crrev.com/b104b5737c134b4e34a0510109e939b472555f79/third_party/WebKit/Source/core/layout/LayoutTable.cpp
,
Sep 26 2017
|
||
►
Sign in to add a comment |
||
Comment 1 by bugdroid1@chromium.org
, Sep 18 2017