| Index: content/public/android/javatests/src/org/chromium/content/browser/NavigationTest.java | 
| diff --git a/content/public/android/javatests/src/org/chromium/content/browser/NavigationTest.java b/content/public/android/javatests/src/org/chromium/content/browser/NavigationTest.java | 
| index 32886c2acd09efb89d1a4488b578299811b87162..32d8d24afb925af63d0d2972713ed252402c2ec8 100644 | 
| --- a/content/public/android/javatests/src/org/chromium/content/browser/NavigationTest.java | 
| +++ b/content/public/android/javatests/src/org/chromium/content/browser/NavigationTest.java | 
| @@ -105,9 +105,9 @@ public class NavigationTest extends ContentShellTestBase { | 
| @MediumTest | 
| @Feature({"Navigation"}) | 
| public void testPageReload() throws Throwable { | 
| -        final String htmlLoadTime = "<html><head>" + | 
| -                "<script type=\"text/javascript\">var loadTimestamp = new Date().getTime();" + | 
| -                "function getLoadtime() { return loadTimestamp; }</script></head></html>"; | 
| +        final String htmlLoadTime = "<html><head>" | 
| +                + "<script type=\"text/javascript\">var loadTimestamp = new Date().getTime();" | 
| +                + "function getLoadtime() { return loadTimestamp; }</script></head></html>"; | 
| final String urlLoadTime = UrlUtils.encodeHtmlDataUri(htmlLoadTime); | 
|  | 
| ContentShellActivity activity = launchContentShellWithUrl(urlLoadTime); | 
|  |