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

Unified Diff: LayoutTests/fast/forms/radio/radio-onchange.html

Issue 255163002: Dispatch change event for input type=checkbox when checked but value is null (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Moved shouldDispatchFormControlChangeEvent as private/protected function and moved shouldDispatch t… Created 6 years, 7 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/radio/radio-onchange.html
diff --git a/LayoutTests/fast/forms/radio/radio-onchange.html b/LayoutTests/fast/forms/radio/radio-onchange.html
index 18e4a59936ba1b1d4a71c6f3e91295a52dbfd6ed..db0c3c9ee29468eacde111fb6c14291fccc55915 100644
--- a/LayoutTests/fast/forms/radio/radio-onchange.html
+++ b/LayoutTests/fast/forms/radio/radio-onchange.html
@@ -6,6 +6,7 @@
<body>
<input type="radio" name="test" id="rd">
<input type="radio" name="test" id="rd2" onchange="handleChange()">
+<input type="radio" name="test" id="rd3" value="" onchange="handleChange()">
<script>
description("This is to test onchange of radio buttons");
@@ -14,6 +15,7 @@ function handleChange() {
}
document.getElementById('rd2').click();
+document.getElementById('rd3').click();
</script>
</body>
</html>
« no previous file with comments | « LayoutTests/fast/forms/checkbox-onchange-expected.txt ('k') | LayoutTests/fast/forms/radio/radio-onchange-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698