diff --git a/WHATSNEW b/WHATSNEW
index 2461c218c..10b2135b0 100644
--- a/WHATSNEW
+++ b/WHATSNEW
@@ -875,6 +875,8 @@ Other changes:
* The resource collection can now optionally cache its
contents.
+ * A new condition can check whether resources exists.
+
Changes from Ant 1.7.0 TO Ant 1.7.1
=============================================
diff --git a/docs/manual/CoreTasks/conditions.html b/docs/manual/CoreTasks/conditions.html
index e0ad40caf..c09396949 100644
--- a/docs/manual/CoreTasks/conditions.html
+++ b/docs/manual/CoreTasks/conditions.html
@@ -1057,5 +1057,20 @@ is redundant and will be ignored.
<file file="${file}"/>
</islastmodified>
+
+resourceexists
+
+Tests a resource for existance. since Ant 1.8.0
+
+The actual resource to test is specified as a nested element.
+
+
+ An example:
+
+
+<resourceexists>
+ <file file="${file}"/>
+</resourceexists>
+