| Index: third_party/WebKit/Source/devtools/front_end/resources/ServiceWorkersView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/resources/ServiceWorkersView.js b/third_party/WebKit/Source/devtools/front_end/resources/ServiceWorkersView.js
|
| index bf07b15f7650d235ded15e236c4e3991088120ab..e35179c9edeaf750915bc1a1fb0ce3c393881eb7 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/resources/ServiceWorkersView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/resources/ServiceWorkersView.js
|
| @@ -261,7 +261,7 @@ Resources.ServiceWorkersView.Section = class {
|
| var scriptElement = this._section.appendField(Common.UIString('Source'));
|
| scriptElement.removeChildren();
|
| var fileName = Common.ParsedURL.extractName(active.scriptURL);
|
| - scriptElement.appendChild(Components.Linkifier.linkifyURL(active.scriptURL, fileName));
|
| + scriptElement.appendChild(Components.Linkifier.linkifyURL(active.scriptURL, {text: fileName}));
|
| scriptElement.createChild('div', 'report-field-value-subtitle').textContent =
|
| Common.UIString('Received %s', new Date(active.scriptResponseTime * 1000).toLocaleString());
|
|
|
|
|