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

Unified Diff: third_party/WebKit/Source/core/css/html.css

Issue 2021703002: Display table header groups at the top of each page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/css/html.css
diff --git a/third_party/WebKit/Source/core/css/html.css b/third_party/WebKit/Source/core/css/html.css
index 56f68f09d7fd0508517ef3761c1ddb57b65c9299..c301bbbedc18b84827c70835627fb23d3dd6496d 100644
--- a/third_party/WebKit/Source/core/css/html.css
+++ b/third_party/WebKit/Source/core/css/html.css
@@ -1113,5 +1113,10 @@ dialog::backdrop {
border-width: 0px;
}
+/* Allows thead sections to print at the top of each page. */
+@media print {
+ thead { break-inside:avoid; }
+}
+
/* noscript is handled internally, as it depends on settings. */

Powered by Google App Engine
This is Rietveld 408576698