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

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

Issue 1141943002: Disable multicol when printing. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update LayoutTests/inspector/elements/styles/media-emulation-expected.txt Created 5 years, 7 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
« no previous file with comments | « LayoutTests/printing/multicol-not-supported-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/html.css
diff --git a/Source/core/css/html.css b/Source/core/css/html.css
index 6fa435af4f1683b82d0c19a90b429e3db1a8872c..0f154bd9dfaf0e207dcf378fa3b7051048e091d2 100644
--- a/Source/core/css/html.css
+++ b/Source/core/css/html.css
@@ -1119,5 +1119,11 @@ dialog::backdrop {
border-width: 0px;
}
+/* Disable multicol in printing, since it's not implemented properly. See crbug.com/99358 */
+
+@media print {
+ * { -webkit-columns: auto !important; }
+}
+
/* noscript is handled internally, as it depends on settings. */
« no previous file with comments | « LayoutTests/printing/multicol-not-supported-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698