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

Unified Diff: LayoutTests/css3/flexbox/text-overflow-on-flexbox.html

Issue 23449034: text-overflow on flexbox should have no effect (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 3 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 | « no previous file | LayoutTests/css3/flexbox/text-overflow-on-flexbox-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/css3/flexbox/text-overflow-on-flexbox.html
diff --git a/LayoutTests/css3/flexbox/text-overflow-on-flexbox.html b/LayoutTests/css3/flexbox/text-overflow-on-flexbox.html
new file mode 100644
index 0000000000000000000000000000000000000000..34054a313ef3d2b0e554893216500b1a222f2bdd
--- /dev/null
+++ b/LayoutTests/css3/flexbox/text-overflow-on-flexbox.html
@@ -0,0 +1,27 @@
+<!DOCTYPE html>
+<html>
+<head>
+<style>
+div.flex {
+ display: flex;
+ width: 100px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+</style>
+</head>
+<body>
+ <div class="flex">
+ AAAAAAAAAAAAAAAAAAAA
+ </div>
+ <div class="flex">
+ <b>bbbbbbbbbbbbbbbbbbbb</b>
+ </div>
+ <div class="flex">
+ <div>cccccccccccccccccccc</div>
+ </div>
+ <div class="flex">
+ DDDDDDDDDDDDDDDDDDDD<b>ee</b>FFFFFFFFFFFFFFFFFFFF
+ </div>
+</body>
+</html>
« no previous file with comments | « no previous file | LayoutTests/css3/flexbox/text-overflow-on-flexbox-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698