[387401] Validator Not Working
diff --git a/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/internal/validate/HTMLAttributeValidator.java b/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/internal/validate/HTMLAttributeValidator.java
index c8863cb..f288b0d 100644
--- a/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/internal/validate/HTMLAttributeValidator.java
+++ b/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/internal/validate/HTMLAttributeValidator.java
@@ -223,11 +223,7 @@
 									if (basePath.segmentCount() > 1) {
 										IPath path = ModuleCoreSupport.resolve(basePath, actualValue);
 										IResource found = ResourcesPlugin.getWorkspace().getRoot().findMember(path);
-										if (found == null) {
-											rgnType = REGION_VALUE;
-											state = ErrorState.RESOURCE_NOT_FOUND;
-										}
-										else {
+										if (found != null) {
 											dependencies.add(found);
 										}
 									}