| Index: lib/requestNotifier.js |
| =================================================================== |
| --- a/lib/requestNotifier.js |
| +++ b/lib/requestNotifier.js |
| @@ -359,24 +359,16 @@ RequestEntry.prototype = |
| /** |
| * String representation of the content type, e.g. "subdocument" |
| * @type String |
| */ |
| get typeDescr() |
| { |
| return this.type; |
| }, |
| - /** |
| - * User-visible localized representation of the content type, e.g. "frame" |
| - * @type String |
| - */ |
| - get localizedDescr() |
| - { |
| - return require("contentPolicy").Policy.localizedDescr.get(this.type); |
| - }, |
| /** |
| * Attaches this request object to a DOM node. |
| */ |
| attachToNode: function(/**Node*/ node) |
| { |
| let existingData = getEntry(nodeData, node); |
| if (typeof existingData == "undefined") |