Skip to content

Commit b3c7c89

Browse files
committed
Change <td hidden> to render as display: none
This aligns with implementations and avoids potentially breaking existing web content that expect display: none. Tests: web-platform-tests/wpt#11339 Fixes #3728.
1 parent 0d28f8f commit b3c7c89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111270,10 +111270,10 @@ thead, thead[hidden] { display: table-header-group; }<!-- see also unicode-bidi:
111270111270
tbody, tbody[hidden] { display: table-row-group; }<!-- see also unicode-bidi:isolate rules -->
111271111271
tfoot, tfoot[hidden] { display: table-footer-group; }<!-- see also unicode-bidi:isolate rules -->
111272111272
tr, tr[hidden] { display: table-row; }<!-- see also unicode-bidi:isolate rules -->
111273-
td, th, td[hidden], th[hidden] { display: table-cell; }<!-- see also unicode-bidi:isolate rules -->
111273+
td, th { display: table-cell; }<!-- see also unicode-bidi:isolate rules -->
111274111274

111275111275
colgroup[hidden], col[hidden], thead[hidden], tbody[hidden],
111276-
tfoot[hidden], tr[hidden], td[hidden], th[hidden] {
111276+
tfoot[hidden], tr[hidden] {
111277111277
visibility: collapse;
111278111278
}
111279111279

0 commit comments

Comments
 (0)