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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <body class="body-class">
3 <div style="width: 200px">
4 <select>
5 <option id='OptionSelected'>Option 1</option>
6 <option id='OptionNotSelected'>Option 2</option>
7 </select>
8 <input id='TextInput' value='InputValue'>
9 <input id='ButtonInput' type='button' value='ButtonValue'>
10 <input id='RadioInputChecked' value='RadioInputValue' type='radio' checked>
11 <input id='RadioInputUnchecked' type='radio'>
12 <input id='CheckboxInputChecked' value='CheckInputValue' type='checkbox' value ='' checked>
13 <input id='CheckboxInputUnchecked' type='checkbox' value=''>
14 <textarea id='TextArea'>TextAreaValue</textarea>
15 </div>
16 </body>
17 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698