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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/fieldset/fieldset-disable.html

Issue 2093383002: Implement disabledAttributeChanged() in HTMLInputElement. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add test file. Created 4 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/forms/fieldset/fieldset-disable-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/forms/fieldset/fieldset-disable.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/fieldset/fieldset-disable.html b/third_party/WebKit/LayoutTests/fast/forms/fieldset/fieldset-disable.html
new file mode 100644
index 0000000000000000000000000000000000000000..24d4637662461c3e2f20352108efc7630e5805a5
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/forms/fieldset/fieldset-disable.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html>
+<body>
+<form>
+ <fieldset id="a" disabled="true">
+ <input id="b" type="file" disabled="true">
+ <br />
+ <input id="c" type="submit" disabled="true">
+ </fieldset>
+</form>
+</body>
+<script>
+ document.getElementById("b").removeAttribute("disabled");
+ document.getElementById("c").removeAttribute("disabled");
+ document.getElementById("a").removeAttribute("disabled");
+</script>
+</html>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/forms/fieldset/fieldset-disable-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698