Patch to follow.
Created attachment 138087 [details] Patch
Comment on attachment 138087 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=138087&action=review > Source/WebCore/inspector/front-end/Resource.js:54 > + /** @type {?string} */ this._content; Type annotation should go above the field and the field should be initialized here. > Source/WebCore/inspector/front-end/ResourceUtils.js:113 > + var parsedURL = new WebInspector.ParsedURL(this.toString()); Why do you need to call toString()? Would @this {string} annotation help?
Committed r114754: <http://trac.webkit.org/changeset/114754>