| Index: content/public/android/javatests/src/org/chromium/content/browser/ContentViewPopupZoomerTest.java
 | 
| diff --git a/content/public/android/javatests/src/org/chromium/content/browser/ContentViewPopupZoomerTest.java b/content/public/android/javatests/src/org/chromium/content/browser/ContentViewPopupZoomerTest.java
 | 
| index 176feee3137f582d7b2c606a5062f578f5e245d6..6d72ad120b2d40f940160a129ff1ddfd3b591f14 100644
 | 
| --- a/content/public/android/javatests/src/org/chromium/content/browser/ContentViewPopupZoomerTest.java
 | 
| +++ b/content/public/android/javatests/src/org/chromium/content/browser/ContentViewPopupZoomerTest.java
 | 
| @@ -59,12 +59,12 @@ public class ContentViewPopupZoomerTest extends ContentShellTestBase {
 | 
|          testUrl.append("<html><body>");
 | 
|          for (int i = 0; i < totalUrls; i++) {
 | 
|              boolean isTargeted = i == targetIdAt;
 | 
| -            testUrl.append("<a href=\"data:text/html;utf-8,<html><head><script>" +
 | 
| -                    "function doesItWork() { return 'yes'; }</script></head></html>\"" +
 | 
| -                    (isTargeted ? (" id=\"" + targetId + "\"") : "") + ">" +
 | 
| -                    "<small><sup>" +
 | 
| -                    (isTargeted ? "<b>" : "") + i + (isTargeted ? "</b>" : "") +
 | 
| -                    "</sup></small></a>");
 | 
| +            testUrl.append("<a href=\"data:text/html;utf-8,<html><head><script>"
 | 
| +                    + "function doesItWork() { return 'yes'; }</script></head></html>\""
 | 
| +                    + (isTargeted ? (" id=\"" + targetId + "\"") : "") + ">"
 | 
| +                    + "<small><sup>"
 | 
| +                    + (isTargeted ? "<b>" : "") + i + (isTargeted ? "</b>" : "")
 | 
| +                    + "</sup></small></a>");
 | 
|          }
 | 
|          testUrl.append("</small></div></body></html>");
 | 
|          return UrlUtils.encodeHtmlDataUri(testUrl.toString());
 | 
| 
 |