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

Unified Diff: third_party/WebKit/LayoutTests/inspector-protocol/resources/dom-snapshot-input-value.html

Issue 2971133002: Add input element values to DOMSnapshot command (Closed)
Patch Set: add separate tests for input value Created 3 years, 5 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/inspector-protocol/resources/dom-snapshot-input-value.html
diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/resources/dom-snapshot-input-value.html b/third_party/WebKit/LayoutTests/inspector-protocol/resources/dom-snapshot-input-value.html
new file mode 100644
index 0000000000000000000000000000000000000000..3ac7f1a69582d296b2a1501f446884886fc1c8bc
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/inspector-protocol/resources/dom-snapshot-input-value.html
@@ -0,0 +1,17 @@
+<html>
+<body class="body-class">
+<div style="width: 200px">
+ <select>
+ <option id='OptionSelected'>Option 1</option>
+ <option id='OptionNotSelected'>Option 2</option>
+ </select>
+ <input id='TextInput' value='InputValue'>
+ <input id='ButtonInput' type='button' value='ButtonValue'>
+ <input id='RadioInputChecked' value='RadioInputValue' type='radio' checked>
+ <input id='RadioInputUnchecked' type='radio'>
+ <input id='CheckboxInputChecked' value='CheckInputValue' type='checkbox' value='' checked>
+ <input id='CheckboxInputUnchecked' type='checkbox' value=''>
+ <textarea id='TextArea'>TextAreaValue</textarea>
+</div>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698