summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
Diffstat (limited to 'chrome')
-rw-r--r--chrome/browser/resources/new_tab.html22
1 files changed, 0 insertions, 22 deletions
diff --git a/chrome/browser/resources/new_tab.html b/chrome/browser/resources/new_tab.html
index b93bc1b..7cc0204 100644
--- a/chrome/browser/resources/new_tab.html
+++ b/chrome/browser/resources/new_tab.html
@@ -542,13 +542,6 @@ function makeMostVisitedDOM(page, number) {
for more information.
*/
div_title.style.direction = page.direction;
- /* The following if statement is a temporary workaround for
- http://crbug.com/7252 and http://crbug.com/7697. It should be removed
- before closing these bugs.
- */
- if (page.direction == 'rtl') {
- div_title.style.textOverflow = 'clip';
- }
if (page.title) {
div_title.appendChild(document.createTextNode(page.title));
} else {
@@ -704,13 +697,6 @@ function renderRecentlyBookmarked(entries) {
comment about setting div_title.style.direction above for details.
*/
link.style.direction = entry.direction;
- /* The following if statement is a temporary workaround for
- http://crbug.com/7252 and http://crbug.com/7697. It should be removed
- before closing these bugs.
- */
- if (entry.direction == 'rtl') {
- link.style.textOverflow = 'clip';
- }
link.appendChild(document.createTextNode(entry.title));
container.appendChild(link);
}
@@ -817,14 +803,6 @@ function createRecentBookmark(tagName, data) {
about setting div_title.style.direction above for details.
*/
link.style.direction = data.direction;
- /* The following if statement is a temporary workaround for
- http://crbug.com/7252 and http://crbug.com/7697. It should be removed
- before closing these bugs.
- */
- if (data.direction == 'rtl') {
- link.style.textOverflow = 'clip';
- }
-
link.appendChild(document.createTextNode(data.title));
return link;
}