Index: LayoutTests/fast/dom/shadow/input-with-validation-expected.html |
diff --git a/LayoutTests/fast/dom/shadow/input-with-validation-expected.html b/LayoutTests/fast/dom/shadow/input-with-validation-expected.html |
deleted file mode 100644 |
index 4a25606de9e06cdc98506f889f62559547d157eb..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/dom/shadow/input-with-validation-expected.html |
+++ /dev/null |
@@ -1,20 +0,0 @@ |
-<!DOCTYPE html> |
- |
-<p>Validation should be shown if Shadow DOM has a shadow element.</p> |
-<form id='form' action="input-with-validation.html"> |
-<input id=password type=password required maxlength=20 title="Needs at least 8 letters.
Should not be identical with the current password."> |
-<input type=submit id=submit> |
-</form> |
- |
-<script> |
-var input = document.getElementById('password'); |
- |
-document.getElementById('submit').click(); |
-if (window.testRunner) { |
- testRunner.waitUntilDone(); |
- setTimeout(function() { |
- testRunner.notifyDone(); |
- }, 10); |
-} |
-</script> |
- |