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

Unified Diff: third_party/WebKit/LayoutTests/svg/text/combining-character-queries.html

Issue 2647293005: Workaround platform differences in svg/text/combining-character-queries.html (Closed)
Patch Set: Rebaseline Created 3 years, 11 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 | « third_party/WebKit/LayoutTests/platform/win/svg/text/combining-character-queries-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/svg/text/combining-character-queries.html
diff --git a/third_party/WebKit/LayoutTests/svg/text/combining-character-queries.html b/third_party/WebKit/LayoutTests/svg/text/combining-character-queries.html
index 21cef57fcc3a41605b93fa4ad8d23bae24808b30..98afd6808a8f03a58aad0e04d7088fb76ed57125 100644
--- a/third_party/WebKit/LayoutTests/svg/text/combining-character-queries.html
+++ b/third_party/WebKit/LayoutTests/svg/text/combining-character-queries.html
@@ -22,7 +22,8 @@
<text x="400" y="125" class="testTextRun" font-family="sans-serif" direction="rtl">&#8207;a&#8207;b&#x030c;&#8207;c&#x030c;&#x030c;</text>
<!-- multiple combining diacritics on ligatures in LTR -->
- <text x="50" y="200" class="testTextRun" font-family="cursive">fi&#x030c; ffi&#x030c;&#x030c;</text>
+ <!-- MacOS has differences with the "ffi" glyph and diacritics in cursive font family so the first run uses 'fi' as a workaround. -->
+ <text x="50" y="200" class="testTextRun" font-family="cursive">fi&#x030c; fi&#x030c;&#x030c;</text>
<text x="200" y="200" class="testTextRun" font-family="serif">fi&#x030c; ffi&#x030c;&#x030c;</text>
<text x="350" y="200" class="testTextRun" font-family="sans-serif">fi&#x030c; ffi&#x030c;&#x030c;</text>
@@ -33,8 +34,9 @@
<!-- combining diacritics which are wider than characters in mixed bidi runs -->
<text x="50" y="350" class="testTextRun" font-family="cursive"> &#x030c;&#64944;i&#819;</text>
- <text x="200" y="350" class="testTextRun" font-family="serif"> &#x030c;&#64944;i&#819;</text>
- <text x="350" y="350" class="testTextRun" font-family="sans-serif"> &#x030c;&#64944;i&#819;</text>
+ <!-- Linux has differences with space width in the following two runs so a period is used as a workaround. -->
+ <text x="200" y="350" class="testTextRun" font-family="serif">.&#x030c;&#64944;i&#819;</text>
+ <text x="350" y="350" class="testTextRun" font-family="sans-serif">.&#x030c;&#64944;i&#819;</text>
</svg>
<script src="resources/highlightGlyphs.js"></script>
<script>
« no previous file with comments | « third_party/WebKit/LayoutTests/platform/win/svg/text/combining-character-queries-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698