summaryrefslogtreecommitdiff
path: root/src/adblock/tests
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-01-14 03:28:15 +0100
committerAndrea Diamantini <adjam7@gmail.com>2010-01-14 03:28:15 +0100
commit1af5fc922877a5ec4db5dfa068b0e88c55fdc1c7 (patch)
tree4d7b7f022cfdd4ec02bb5789ecf8dd50c7bf899c /src/adblock/tests
parentAdBlock Plus rules fast summary :) (diff)
downloadrekonq-1af5fc922877a5ec4db5dfa068b0e88c55fdc1c7.tar.xz
Better AdBlocking things :)
Diffstat (limited to 'src/adblock/tests')
-rw-r--r--src/adblock/tests/RULES19
-rw-r--r--src/adblock/tests/divhidingtest.html15
2 files changed, 34 insertions, 0 deletions
diff --git a/src/adblock/tests/RULES b/src/adblock/tests/RULES
new file mode 100644
index 00000000..ee8485a6
--- /dev/null
+++ b/src/adblock/tests/RULES
@@ -0,0 +1,19 @@
+! cancel ALL your rules in the adblock,
+! load these and test rekonq against
+! the proposed sites
+! Good Luck!
+!
+! This rule will block EVERY site containing adv
+adv
+!
+! This one will wildcard EVERY site containing the word "advice"
+@@advice
+!
+! Block every google site :)
+|http://google*
+!
+! Block every pdf file!
+*pdf|
+!
+! Block every div of the class "advise"
+##div.advise \ No newline at end of file
diff --git a/src/adblock/tests/divhidingtest.html b/src/adblock/tests/divhidingtest.html
new file mode 100644
index 00000000..a38e9ea1
--- /dev/null
+++ b/src/adblock/tests/divhidingtest.html
@@ -0,0 +1,15 @@
+<html>
+
+<head>
+</head>
+
+<body>
+
+<div class="advise">
+<h1>Oh oh.. an advise!!</h1>
+</div>
+<h2>no advises here :)</h2>
+At least, I hope so...
+</body>
+
+</html> \ No newline at end of file