Bug 14849

Summary: Setting valign on a table in JavaScript has no effect
Product: WebKit Reporter: Brett Wilson (Google) <brettw>
Component: TablesAssignee: Nobody <webkit-unassigned>
Status: NEW ---    
Severity: Normal CC: ahmad.saleem792, hyatt, mitz
Priority: P2 Keywords: HasReduction
Version: 523.x (Safari 3)   
Hardware: All   
OS: All   
Attachments:
Description Flags
Testcase
none
Test case for the underlying bug.
none
Proposed Patch
none
Proposed Path with change log ojan: review-

Description Brett Wilson (Google) 2007-08-01 09:18:21 PDT
vAlign="top" on a table row has no effect from JavaScript (although it works if set in the source HTML, of course). This may be true for other alignments as well, but I'm not sure.

This may be related to several other JS table bugs I filed: bug 14848 and bug 14846.
Comment 1 Brett Wilson (Google) 2007-08-01 09:18:54 PDT
Created attachment 15781 [details]
Testcase

Pressing the button should valign the rows, but does not. It works in IE and Firefox.
Comment 2 mitz 2007-08-01 12:42:24 PDT
Created attachment 15788 [details]
Test case for the underlying bug.

vertical-align is not an inherited property, so recalcStyle does not continue to descendants. What recalcStyle does not know is that table rows and table cells have 'vertical-align: inherit' by default, so they do need a recalc.

The issue is not limited to mapped attributes, as this test case demonstrates.
Comment 3 Dave Hyatt 2008-01-16 12:25:43 PST
We basically need to find a way to retain the (very useful) performance optimization of avoiding propagation to decendants for non-inherited properties while still being correct.  One idea would be to just propagate non-inherited properties when we see an inherit keyword used on any stylesheet used by the document.

Comment 4 Eric Seidel (no email) 2008-01-16 12:31:14 PST
As discussed on IRC: this would mean adding a HashSet of properties which used the inherit keyword at any time during the document's lifetime.  We would do a lookup in that set after setting any non-inherited CSS property, if the lookup returned true, then we'd force a style re-calc just as though the property was an inherited property.
Comment 5 Dave Hyatt 2008-01-16 13:19:58 PST
We can also just hack valign in the table DOM code.

Comment 6 kushalsingla2k5 2010-06-17 05:17:35 PDT
Created attachment 58983 [details]
Proposed Patch

If vAlign property of the table row or table cell is changed through javascript,this patch will propagate the effect down the hierarchy.
Comment 7 kushalsingla2k5 2010-06-24 09:24:12 PDT
Created attachment 59661 [details]
Proposed Path with change log

If vAlign property of the table row or table cell is changed through javascript,this patch will propagate the effect down the hierarchy.
Comment 8 Andreas Kling 2010-07-10 11:36:11 PDT
Comment on attachment 58983 [details]
Proposed Patch

Removing r? from redundant patch.
Comment 9 Ojan Vafai 2010-07-22 16:01:32 PDT
Comment on attachment 59661 [details]
Proposed Path with change log

I'm not sure about the correctness of this code, but it needs a layout test before it can be committed.
Comment 10 Ahmad Saleem 2023-02-18 03:39:55 PST
We pass all valign test cases - https://wpt.fyi/results/html?label=master&label=experimental&aligned&view=subtest&q=valign

Do we need to do anything more here?