| Index: third_party/WebKit/Source/devtools/front_end/resources/AppManifestView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/resources/AppManifestView.js b/third_party/WebKit/Source/devtools/front_end/resources/AppManifestView.js
|
| index 2354b93bb8ac1c9372217fea7050c953c3e7949b..9b8dc4f28d29871382fd46694e14e9b4d1baac45 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/resources/AppManifestView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/resources/AppManifestView.js
|
| @@ -115,8 +115,8 @@ Resources.AppManifestView = class extends UI.VBox {
|
| this._startURLField.removeChildren();
|
| var startURL = stringProperty('start_url');
|
| if (startURL) {
|
| - this._startURLField.appendChild(Components.Linkifier.linkifyURL(
|
| - /** @type {string} */ (Common.ParsedURL.completeURL(url, startURL)), startURL));
|
| + var completeURL = /** @type {string} */ (Common.ParsedURL.completeURL(url, startURL));
|
| + this._startURLField.appendChild(Components.Linkifier.linkifyURL(completeURL, {text: startURL}));
|
| }
|
|
|
| this._themeColorSwatch.classList.toggle('hidden', !stringProperty('theme_color'));
|
|
|