Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/checkValidity-004.html

Issue 2210743002: Merge layout tests checkValidity-00n.html into one. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Build HTML tree in each of tests Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/forms/checkValidity-004.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/checkValidity-004.html b/third_party/WebKit/LayoutTests/fast/forms/checkValidity-004.html
deleted file mode 100644
index 9602d4492b43d648fb9c63930db434417ecd58e4..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/forms/checkValidity-004.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
-<html>
-<head>
-<script src="../../resources/js-test.js"></script>
-</head>
-<body>
-<p id="description"></p>
-<form method="get" id="sad_form">
-<fieldset name="victim"></fieldset>
-<input name="victim" type="text" value="invalid" pattern="something"/>
-<button name="victim">lorem ipsum</button>
-<select name="victim"></select>
-<textarea name="victim"></textarea>
-</form>
-<div id="console"></div>
-<script>
-description("This test checks if checkValidity() returns correctly a false (meaning there's an invalid element) result on form element.");
-
-f = document.getElementById("sad_form");
-shouldBe("f.checkValidity()", "false");
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698