 Chromium Code Reviews
 Chromium Code Reviews Issue 1202563009:
  <fieldset> should be ignored in interactive validation  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master
    
  
    Issue 1202563009:
  <fieldset> should be ignored in interactive validation  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master| 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> |