diff --git a/test/detectionTest.html b/test/detectionTest.html index 994ab75..7a7db52 100644 --- a/test/detectionTest.html +++ b/test/detectionTest.html @@ -19,7 +19,14 @@

Detection test

-Checks if the addon can be detected by websites. +Checks if the addon can be detected by websites. To check if CanvasBlocker was really detected you should run this test with the following configurations (the difference between 2. and 3. tells the detection of CanvasBlocker): +
    +
  1. all addons enabled
  2. +
  3. all addons disabled
  4. +
  5. CanvasBlocker enabled but all other addons disabled
  6. +
  7. CanvasBlocker disabled
  8. +
+

Tests

diff --git a/test/detectionTest.js b/test/detectionTest.js index f36a406..cc7e9b4 100644 --- a/test/detectionTest.js +++ b/test/detectionTest.js @@ -4,8 +4,8 @@ var addTest = (function(){ var statusDefinitions = [ {className: "notRun", text: "not run"}, - {className: "loud", text: "CB detected"}, - {className: "stealthy", text: "CB not detected"}, + {className: "loud", text: "API tampering detected"}, + {className: "stealthy", text: "no API tampering detected"}, {className: "failed", text: "test failed"} ]; var ul = document.getElementById("tests");