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

Unified Diff: LayoutTests/fast/forms/fieldset/validation-message.html

Issue 1202563009: <fieldset> should be ignored in interactive validation (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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: LayoutTests/fast/forms/fieldset/validation-message.html
diff --git a/LayoutTests/fast/forms/fieldset/validation-message.html b/LayoutTests/fast/forms/fieldset/validation-message.html
new file mode 100644
index 0000000000000000000000000000000000000000..84de041fc77f9c1706e826f067aaf7ac8c23754f
--- /dev/null
+++ b/LayoutTests/fast/forms/fieldset/validation-message.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<html>
+<script src="../../../resources/js-test.js"></script>
+<body>
+<form>
+ <fieldset>
+ <input type="text" required>
+ </fieldset>
+ <button id='aButton'>Submit<button>
+</form>
+<script>
tkent 2015/06/25 12:47:08 Please add an explanation of this test. descripti
tanay.c 2015/06/25 13:37:29 Done.
+ var buttonid = document.getElementById('aButton');
+ buttonid.click();
+</script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698