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

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

Issue 2971133002: Add input element values to DOMSnapshot command (Closed)
Patch Set: added additional fields to DomSnapshot::DOMNode 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.html
diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/resources/dom-snapshot.html b/third_party/WebKit/LayoutTests/inspector-protocol/resources/dom-snapshot.html
index e74560ca399577c248221afd4428d2c363a0278c..5f666ce786e0b3990fb8bd047dc34508d4c07d7d 100644
--- a/third_party/WebKit/LayoutTests/inspector-protocol/resources/dom-snapshot.html
+++ b/third_party/WebKit/LayoutTests/inspector-protocol/resources/dom-snapshot.html
@@ -25,6 +25,17 @@
ligula efficitur sollicitudin blandit sed lectus. Duis orci enim, sodales ac lectus sed,
hendrerit efficitur est. Quisque gravida facilisis viverra.
</p>
+ <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=''>
+ <select>
+ <option id='OptionSelected'>Option 1</option>
+ <option id='OptionNotSelected'>Option 2</option>
+ </select>
+ <textarea id='TextArea'>TextAreaValue</textarea>
<ul class="class3">
<li class="class4"></li>
<span>Lets have a span</span>

Powered by Google App Engine
This is Rietveld 408576698