RESOLVED FIXED 170768
getBoundingClientRect() returns wrong value for tr, td and its descendants for a vertical table
https://bugs.webkit.org/show_bug.cgi?id=170768
Summary getBoundingClientRect() returns wrong value for tr, td and its descendants fo...
Yuki Sekiguchi
Reported 2017-04-12 02:50:15 PDT
Created attachment 306902 [details] Reproduced content getBoundingClientRect() returns wrong value for tr, td and its descendants for a vertical table In the attached content, the rect for tds are out side of the td which is its parent. Inspector highlights wrong rects for tr, td and its descendants as well.
Attachments
Reproduced content (3.34 KB, text/html)
2017-04-12 02:50 PDT, Yuki Sekiguchi
no flags
Patch (72.99 KB, patch)
2017-04-12 04:18 PDT, Yuki Sekiguchi
no flags
Archive of layout-test-results from ews123 for ios-simulator-wk2 (13.05 MB, application/zip)
2017-04-12 05:56 PDT, Build Bot
no flags
Patch (108.25 KB, patch)
2017-04-12 18:55 PDT, Yuki Sekiguchi
no flags
Patch (107.33 KB, patch)
2020-06-01 20:44 PDT, Yuki Sekiguchi
no flags
Patch (123.32 KB, patch)
2020-06-02 03:52 PDT, Yuki Sekiguchi
no flags
Patch (123.46 KB, patch)
2020-06-02 05:58 PDT, Yuki Sekiguchi
no flags
Patch (221.80 KB, patch)
2020-06-02 19:39 PDT, Yuki Sekiguchi
yuki.sekiguchi: review?
yuki.sekiguchi: commit-queue?
Yuki Sekiguchi
Comment 1 2017-04-12 04:18:52 PDT
Build Bot
Comment 2 2017-04-12 05:56:35 PDT
Comment on attachment 306907 [details] Patch Attachment 306907 [details] did not pass ios-sim-ews (ios-simulator-wk2): Output: http://webkit-queues.webkit.org/results/3523775 New failing tests: fast/writing-mode/vertical-align-table-baseline.html fast/table/040-vertical.html fast/overflow/overflow-rtl-vertical.html fast/table/rowspan-paint-order-vertical.html fast/table/table-display-types-vertical.html fast/table/border-collapsing/002-vertical.html fast/table/growCellForImageQuirk-vertical.html fast/table/038-vertical.html fast/css/h1-in-section-elements.html fast/table/border-collapsing/003-vertical.html fast/table/border-collapsing/001-vertical.html fast/table/028-vertical.html fast/table/auto-with-percent-height-vertical.html fast/table/border-collapsing/rtl-border-collapsing-vertical.html fast/table/027-vertical.html
Build Bot
Comment 3 2017-04-12 05:56:36 PDT
Created attachment 306908 [details] Archive of layout-test-results from ews123 for ios-simulator-wk2 The attached test failures were seen while running run-webkit-tests on the ios-sim-ews. Bot: ews123 Port: ios-simulator-wk2 Platform: Mac OS X 10.11.6
Yuki Sekiguchi
Comment 4 2017-04-12 18:55:57 PDT
Maciej Stachowiak
Comment 5 2020-05-30 19:10:08 PDT
Comment on attachment 306960 [details] Patch Seems like a good idea to fix this bug, unfortunately, this version of the patch no longer applies. Seems like just one of the test diffs that has an issue, so shouldn't be too hard to fix up.
Yuki Sekiguchi
Comment 6 2020-06-01 20:44:16 PDT
Yuki Sekiguchi
Comment 7 2020-06-02 03:52:20 PDT
Yuki Sekiguchi
Comment 8 2020-06-02 05:58:36 PDT
Yuki Sekiguchi
Comment 9 2020-06-02 19:39:43 PDT
Yuki Sekiguchi
Comment 10 2020-06-04 01:53:32 PDT
Hi Maciej, I rebased my patch onto the latest WebKit and fixed LayoutTest errors. Could you review it again?
Darin Adler
Comment 11 2020-06-08 12:21:46 PDT
Comment on attachment 400885 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=400885&action=review This looks good to me. Not sure I’m sufficiently expert to be the reviewer though. > Source/WebCore/rendering/RenderTableCell.cpp:347 > + if (parent()) { > + RenderElement* containerOfRow = container.container(); > + offset -= parent()->offsetFromContainer(*containerOfRow, point); > + } What guarantees that container.container() is non-null? Tiny point: I don’t think the local variable is doing a lot that is helpful here. I think that writing *container.container() is probably OK without explicitly documenting that it’s the container of the row. After all, we are not documenting what parent is (the section, maybe?). > Source/WebCore/rendering/RenderTableSection.cpp:562 > + rowRenderer->setLogicalLeft(0_lu); > + rowRenderer->setLogicalTop(m_rowPos[r]); > rowRenderer->setLogicalWidth(logicalWidth()); > rowRenderer->setLogicalHeight(m_rowPos[r + 1] - m_rowPos[r] - vspacing); Is there a setLogical function that takes a LayoutRect? If so, maybe we’d want to use it here?
Ahmad Saleem
Comment 12 2022-09-21 13:37:40 PDT
I am still able to reproduce this bug in Safari 16 and Safari Technology Preview 154 using attached "Reproduced Content" while both Chrome Canary 108 and Firefox Nightly 107 show "success' in the test case. Thanks!
EWS
Comment 13 2022-09-27 09:27:05 PDT
Committed 254918@main (1e62e8aa2236): <https://commits.webkit.org/254918@main> Reviewed commits have been landed. Closing PR #4583 and removing active labels.
Radar WebKit Bug Importer
Comment 14 2022-09-27 09:28:25 PDT
Note You need to log in before you can comment on or make changes to this bug.