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

Side by Side Diff: LayoutTests/fast/text/hyphenate-character-expected.html

Issue 20526006: Remove -webkit-hyphens and -webkit-hyphenate-limit-* properties. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: init removal Created 7 years, 5 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 <style>
2 .text-box {
3 border: solid;
4 padding: 4px;
5 width: 110px;
6 font-size: 18px;
7 text-align: justify;
8 }
9
10 .hyphenate-character-tilde-dot {
11 -webkit-hyphenate-character: "\B7~";
12 }
13
14 .test {
15 float: left;
16 margin: 0 4px;
17 }
18 </style>
19 <div class="test">
20 <p>The initial value (should be like <tt>auto</tt>)</p>
21 <div class="text-box">
22 antidisestab-lishment-arianism
23 </div>
24 </div>
25 <div class="test">
26 <p>The default (<tt>hyphenate-character: auto</tt>)</p>
27 <div class="text-box hyphenate-character-auto">
28 antidisestab-lishment-arianism
29 </div>
30 </div>
31 <div class="test">
32 <p>Bullet (<tt>hyphenate-character: "\2022"</tt>)</p>
33 <div class="text-box hyphenate-character-bullet">
34 antidisestab&#x2022; lishment&#x2022; arianism
35 </div>
36 </div>
37 <div class="test">
38 <p>Middle dot and tilde (<tt>hyphenate-character: "\B7~"</tt>)</p>
39 <div class="text-box hyphenate-character-tilde-dot">
40 antidisestab&#xb7;~ lishment&#xb7;~ arianism
41 </div>
42 </div>
OLDNEW
« no previous file with comments | « LayoutTests/fast/text/hyphenate-character.html ('k') | LayoutTests/fast/text/hyphenate-first-word.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698