Index: chrome/browser/resources/ntp_android/ntp_android.js |
diff --git a/chrome/browser/resources/ntp_android/ntp_android.js b/chrome/browser/resources/ntp_android/ntp_android.js |
index 718bcb9e5a01f959225f68483858f0d5f40e6759..63c96c7bb1bcf967672eaa8825f709e474dea438 100644 |
--- a/chrome/browser/resources/ntp_android/ntp_android.js |
+++ b/chrome/browser/resources/ntp_android/ntp_android.js |
@@ -1330,7 +1330,8 @@ cr.define('ntp', function() { |
// Set the position of the title. |
if (titleWidth < containerWidth) { |
- title.style.left = '0px'; |
+ // left-align on LTR and right-align on RTL. |
+ title.style.left = ''; |
} else { |
title.style.left = boundedScrollPosition + 'px'; |
} |