| Index: chrome/browser/resources/md_history/searched_label.js
|
| diff --git a/chrome/browser/resources/md_history/searched_label.js b/chrome/browser/resources/md_history/searched_label.js
|
| index c22803c205e60c96bf1d39924b63f297a195f41f..bef60f60fb1b5af0f9945796ae860dd615175884 100644
|
| --- a/chrome/browser/resources/md_history/searched_label.js
|
| +++ b/chrome/browser/resources/md_history/searched_label.js
|
| @@ -34,8 +34,8 @@ Polymer({
|
| this.textContent = '';
|
| while (match = re.exec(titleText)) {
|
| if (match.index > i)
|
| - this.appendChild(document.createTextNode(
|
| - titleText.slice(i, match.index)));
|
| + this.appendChild(
|
| + document.createTextNode(titleText.slice(i, match.index)));
|
| i = re.lastIndex;
|
| // Mark the highlighted text in bold.
|
| var b = document.createElement('b');
|
| @@ -43,7 +43,6 @@ Polymer({
|
| this.appendChild(b);
|
| }
|
| if (i < titleText.length)
|
| - this.appendChild(
|
| - document.createTextNode(titleText.slice(i)));
|
| + this.appendChild(document.createTextNode(titleText.slice(i)));
|
| },
|
| });
|
|
|