Index: test/regexpFilters_matching.js |
diff --git a/test/regexpFilters_matching.js b/test/regexpFilters_matching.js |
index 4246d7cb7463bf5c8a342ef690034c404f04de76..1f56bd16fe81810cadc6a68089e52b5718f37f4f 100644 |
--- a/test/regexpFilters_matching.js |
+++ b/test/regexpFilters_matching.js |
@@ -133,6 +133,12 @@ exports.testTypeOptions = function(test) |
testMatch(test, "abc$subdocument", "http://abc/adf", "IMAGE", null, false, null, false); |
testMatch(test, "abc$subdocument", "http://abc/adf", "SUBDOCUMENT", null, false, null, true); |
testMatch(test, "abc$~subdocument", "http://abc/adf", "SUBDOCUMENT", null, false, null, false); |
+ testMatch(test, "abc$websocket", "http://abc/adf", "OBJECT", null, false, null, false); |
+ testMatch(test, "abc$websocket", "http://abc/adf", "WEBSOCKET", null, false, null, true); |
+ testMatch(test, "abc$~websocket", "http://abc/adf", "WEBSOCKET", null, false, null, false); |
+ testMatch(test, "abc$webrtc", "http://abc/adf", "OBJECT", null, false, null, false); |
+ testMatch(test, "abc$webrtc", "http://abc/adf", "WEBRTC", null, false, null, true); |
+ testMatch(test, "abc$~webrtc", "http://abc/adf", "WEBRTC", null, false, null, false); |
testMatch(test, "abc$background", "http://abc/adf", "OBJECT", null, false, null, false); |
testMatch(test, "abc$background", "http://abc/adf", "IMAGE", null, false, null, true); |
testMatch(test, "abc$~background", "http://abc/adf", "IMAGE", null, false, null, false); |