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

Unified Diff: LayoutTests/fast/text/soft-hyphen-simple-text-expected.html

Issue 648293003: Handle missing glyphs when adjusting spacing in SimpleShaper (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/text/soft-hyphen-simple-text-expected.html
diff --git a/LayoutTests/fast/text/soft-hyphen-simple-text-expected.html b/LayoutTests/fast/text/soft-hyphen-simple-text-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..fe6c9810294961b9f8a16e0b8d422082f1cd7509
--- /dev/null
+++ b/LayoutTests/fast/text/soft-hyphen-simple-text-expected.html
@@ -0,0 +1,33 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Soft Hyphen Test</title>
+ <style>
+ p {
+ text-align: justify;
+ width: 250px;
+ height: 250px;
+ position: relative;
+ padding: 1px;
+ }
+ p > #cover {
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ background: green;
+ display: block;
+ }
+ </style>
+ </head>
+ <body>
+ <p>
+ &nbsp;
+ <span id="cover">&nbsp;</span>
+ </p>
+ <p>
+ A green square and no text should appear above.
+ </p>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698