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

Unified 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/text/hyphenate-character-expected.html
diff --git a/LayoutTests/fast/text/hyphenate-character-expected.html b/LayoutTests/fast/text/hyphenate-character-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..f47ebce3dbdcbfa17a39d98465d581409b6e55a5
--- /dev/null
+++ b/LayoutTests/fast/text/hyphenate-character-expected.html
@@ -0,0 +1,42 @@
+<style>
+ .text-box {
+ border: solid;
+ padding: 4px;
+ width: 110px;
+ font-size: 18px;
+ text-align: justify;
+ }
+
+ .hyphenate-character-tilde-dot {
+ -webkit-hyphenate-character: "\B7~";
+ }
+
+ .test {
+ float: left;
+ margin: 0 4px;
+ }
+</style>
+<div class="test">
+ <p>The initial value (should be like <tt>auto</tt>)</p>
+ <div class="text-box">
+ antidisestab-lishment-arianism
+ </div>
+</div>
+<div class="test">
+ <p>The default (<tt>hyphenate-character: auto</tt>)</p>
+ <div class="text-box hyphenate-character-auto">
+ antidisestab-lishment-arianism
+ </div>
+</div>
+<div class="test">
+ <p>Bullet (<tt>hyphenate-character: "\2022"</tt>)</p>
+ <div class="text-box hyphenate-character-bullet">
+ antidisestab&#x2022; lishment&#x2022; arianism
+ </div>
+</div>
+<div class="test">
+ <p>Middle dot and tilde (<tt>hyphenate-character: "\B7~"</tt>)</p>
+ <div class="text-box hyphenate-character-tilde-dot">
+ antidisestab&#xb7;~ lishment&#xb7;~ arianism
+ </div>
+</div>
« 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