| Index: lib/requestNotifier.js | 
| =================================================================== | 
| --- a/lib/requestNotifier.js | 
| +++ b/lib/requestNotifier.js | 
| @@ -327,24 +327,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 = nodeData.get(node); | 
| if (typeof existingData == "undefined") |