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

Unified Diff: LayoutTests/fast/css/text-overflow-ellipsis-shadow-alpha.html

Issue 15001034: Improve shadow support in EllipsisBox. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: textColor rename per schenney Created 7 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: LayoutTests/fast/css/text-overflow-ellipsis-shadow-alpha.html
diff --git a/LayoutTests/fast/css/text-overflow-ellipsis-shadow-alpha.html b/LayoutTests/fast/css/text-overflow-ellipsis-shadow-alpha.html
new file mode 100644
index 0000000000000000000000000000000000000000..c49d49a64741f36aae01484b300f16247592262c
--- /dev/null
+++ b/LayoutTests/fast/css/text-overflow-ellipsis-shadow-alpha.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <style>
+ .testDiv {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ font-size: 72px;
+ width: 2em;
+ color: transparent;
+ text-shadow: 0px 0px green;
+ }
+ </style>
+ </head>
+ <body>
+ <div class="testDiv">Blink</div>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698