Make fast/text/complex-initial-advance.html more robust
https://bugs.webkit.org/show_bug.cgi?id=202708

Unreviewed follow up to r250884.

Makes test robust enough to pass on Mojave.

* fast/text/complex-initial-advance-expected.html:
* fast/text/complex-initial-advance.html:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@250952 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index b3bc645..1b43a09 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,15 @@
+2019-10-09  Myles C. Maxfield  <mmaxfield@apple.com>
+
+        Make fast/text/complex-initial-advance.html more robust
+        https://bugs.webkit.org/show_bug.cgi?id=202708
+
+        Unreviewed follow up to r250884.
+
+        Makes test robust enough to pass on Mojave.
+
+        * fast/text/complex-initial-advance-expected.html:
+        * fast/text/complex-initial-advance.html:
+
 2019-10-09  John Wilander  <wilander@apple.com>
 
         IsLoggedIn: Add as experimental feature
diff --git a/LayoutTests/fast/text/complex-initial-advance-expected.html b/LayoutTests/fast/text/complex-initial-advance-expected.html
index f70f996..54975e2 100644
--- a/LayoutTests/fast/text/complex-initial-advance-expected.html
+++ b/LayoutTests/fast/text/complex-initial-advance-expected.html
@@ -2,9 +2,16 @@
 <html>
 <head>
 <meta charset="utf-8">
+<style>
+span {
+    white-space: pre;
+}
+</style>
 </head>
 <body style="font-family: Geeza Pro; text-rendering: optimizeSpeed;">
 <div>This test makes sure that text with an initial advance is rendered correctly. The test passes if the &#x25CC;&#x064D; marks are positioned in the right place below the &#x0629; character below.</div>
-<span>حياةٍ مليئ</span>
+<div style="font-size: 79px;">
+<span>&#x062d;&#x064a;&#x0627;&#x0629;&#x064d; &rlm;</span>
+</div>
 </body>
 </html>
diff --git a/LayoutTests/fast/text/complex-initial-advance.html b/LayoutTests/fast/text/complex-initial-advance.html
index 046e7cf..ab63b61 100644
--- a/LayoutTests/fast/text/complex-initial-advance.html
+++ b/LayoutTests/fast/text/complex-initial-advance.html
@@ -2,9 +2,16 @@
 <html>
 <head>
 <meta charset="utf-8">
+<style>
+span {
+    white-space: pre;
+}
+</style>
 </head>
 <body style="font-family: Geeza Pro; text-rendering: optimizeSpeed;">
 <div>This test makes sure that text with an initial advance is rendered correctly. The test passes if the &#x25CC;&#x064D; marks are positioned in the right place below the &#x0629; character below.</div>
-<span>حياةٍ</span><span> </span><span>مليئ</span>
+<div style="font-size: 79px;">
+<span> </span><span>&#x062d;&#x064a;&#x0627;&#x0629;&#x064d;</span>
+</div>
 </body>
 </html>