| 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 76f2118939189cc52c22161758065d44ec466552..c7ca87715f4f6514eb034f2129f7dacf6312b15f 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/resources/ServiceWorkersView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/resources/ServiceWorkersView.js
|
| @@ -232,7 +232,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.linkifyURLAsNode(active.scriptURL, fileName));
|
| + scriptElement.appendChild(Components.Linkifier.linkifyURL(active.scriptURL, fileName));
|
| scriptElement.createChild('div', 'report-field-value-subtitle').textContent =
|
| Common.UIString('Received %s', new Date(active.scriptResponseTime * 1000).toLocaleString());
|
|
|
|
|