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

Side by Side Diff: LayoutTests/fast/flexbox/line-clamp-removed-dynamically.html

Issue 26588002: Remove support for -webkit-line-clamp Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Base files missing... Created 7 years, 2 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <div id="target" style="
2 display: -webkit-box;
3 -webkit-box-orient: vertical;
4 overflow: hidden;
5 -webkit-line-clamp: 2;
6 width: 100px;
7 ">
8 <div>
9 Unless this sentence is truncated after two lines, PASS.
10 </div>
11 </div>
12 <script>
13 document.body.offsetTop;
14 target.style.removeProperty("-webkit-line-clamp");
15 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698