Index: chrome/content/tests/regexpFilters_matching.js |
=================================================================== |
--- a/chrome/content/tests/regexpFilters_matching.js |
+++ b/chrome/content/tests/regexpFilters_matching.js |
@@ -116,16 +116,20 @@ |
testMatch("abc$media", "http://abc/adf", "IMAGE", null, false, null, false); |
testMatch("abc$media", "http://abc/adf", "MEDIA", null, false, null, true); |
testMatch("abc$~media", "http://abc/adf", "MEDIA", null, false, null, false); |
testMatch("abc$font", "http://abc/adf", "IMAGE", null, false, null, false); |
testMatch("abc$font", "http://abc/adf", "FONT", null, false, null, true); |
testMatch("abc$~font", "http://abc/adf", "FONT", null, false, null, false); |
+ testMatch("abc$ping", "http://abc/adf", "IMAGE", null, false, null, false); |
+ testMatch("abc$ping", "http://abc/adf", "PING", null, false, null, true); |
+ testMatch("abc$~ping", "http://abc/adf", "PING", null, false, null, false); |
+ |
testMatch("abc$image,script", "http://abc/adf", "IMAGE", null, false, null, true); |
testMatch("abc$~image", "http://abc/adf", "IMAGE", null, false, null, false); |
testMatch("abc$~script", "http://abc/adf", "IMAGE", null, false, null, true); |
testMatch("abc$~image,~script", "http://abc/adf", "IMAGE", null, false, null, false); |
testMatch("abc$~script,~image", "http://abc/adf", "IMAGE", null, false, null, false); |
testMatch("abc$~document,~script,~other", "http://abc/adf", "IMAGE", null, false, null, true); |
testMatch("abc$~image,image", "http://abc/adf", "IMAGE", null, false, null, true); |
testMatch("abc$image,~image", "http://abc/adf", "IMAGE", null, false, null, false); |