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

Unified Diff: third_party/WebKit/LayoutTests/printing/text-color-adjust.html

Issue 2027653004: Adjust color for printing list-item markers as we do for text. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Compile fixes Created 4 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
Index: third_party/WebKit/LayoutTests/printing/text-color-adjust.html
diff --git a/third_party/WebKit/LayoutTests/printing/text-color-adjust.html b/third_party/WebKit/LayoutTests/printing/text-color-adjust.html
new file mode 100644
index 0000000000000000000000000000000000000000..5b943bb9879750d05b2b24fa56f72f0bdfbadcc2
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/printing/text-color-adjust.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<script>
+ if (window.testRunner)
+ testRunner.setPrinting();
+</script>
+<style>
+ #sandbox { color: white }
+</style>
+<p>This test must be run in print preview.</p>
+<div id="sandbox">
+ <ol>
+ <li>PASS if you see this text with 1. to its left.</li>
+ </ol>
+ <ul>
+ <li>PASS if you see this text with a disc marker.</li>
+ </ul>
+</div>

Powered by Google App Engine
This is Rietveld 408576698