Thu, 15 Jan 2015 15:59:08 +0100
Implement a real Private Browsing Mode condition by changing the API/ABI;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
michael@0 | 1 | <!DOCTYPE HTML> |
michael@0 | 2 | <html> |
michael@0 | 3 | <!-- |
michael@0 | 4 | Test that a image decoding error producs a net:failed-to-process-uri-content |
michael@0 | 5 | observer event with the nsIURI of the failed image as the subject |
michael@0 | 6 | --> |
michael@0 | 7 | <head> |
michael@0 | 8 | <title>Test for image net:failed-to-process-uri-content</title> |
michael@0 | 9 | <script type="application/javascript" src="chrome://mochikit/content/MochiKit/packed.js"></script> |
michael@0 | 10 | <script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script> |
michael@0 | 11 | <link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css" /> |
michael@0 | 12 | </head> |
michael@0 | 13 | <body> |
michael@0 | 14 | <p id="display"></p> |
michael@0 | 15 | <pre id="test"> |
michael@0 | 16 | <script type="application/javascript"> |
michael@0 | 17 | |
michael@0 | 18 | SimpleTest.waitForExplicitFinish(); |
michael@0 | 19 | |
michael@0 | 20 | const Ci = Components.interfaces; |
michael@0 | 21 | const Cc = Components.classes; |
michael@0 | 22 | var obs = Cc["@mozilla.org/observer-service;1"].getService(); |
michael@0 | 23 | obs = obs.QueryInterface(Ci.nsIObserverService); |
michael@0 | 24 | |
michael@0 | 25 | var observer = { |
michael@0 | 26 | QueryInterface: function (aIID) { |
michael@0 | 27 | if (aIID.equals(Ci.nsISupports) || |
michael@0 | 28 | aIID.equals(Ci.nsIObserver)) |
michael@0 | 29 | return this; |
michael@0 | 30 | throw Cr.NS_ERROR_NO_INTERFACE; |
michael@0 | 31 | }, |
michael@0 | 32 | |
michael@0 | 33 | observe: function(subject, topic, data) { |
michael@0 | 34 | ok(topic == "net:failed-to-process-uri-content", "wrong topic"); |
michael@0 | 35 | subject = subject.QueryInterface(Ci.nsIURI); |
michael@0 | 36 | ok(subject.asciiSpec == "chrome://mochitests/content/chrome/image/test/mochitest/invalid.jpg", "wrong subject"); |
michael@0 | 37 | |
michael@0 | 38 | obs.removeObserver(this, "net:failed-to-process-uri-content"); |
michael@0 | 39 | |
michael@0 | 40 | SimpleTest.finish(); |
michael@0 | 41 | } |
michael@0 | 42 | }; |
michael@0 | 43 | |
michael@0 | 44 | obs.addObserver(observer, "net:failed-to-process-uri-content", false); |
michael@0 | 45 | |
michael@0 | 46 | </script> |
michael@0 | 47 | </pre> |
michael@0 | 48 | <img src="damon.jpg"> |
michael@0 | 49 | <img src="invalid.jpg"> |
michael@0 | 50 | </body> |
michael@0 | 51 | </html> |