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

Side by Side 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 unified diff | Download patch
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <style> 3 <style>
4 @font-face { 4 @font-face {
5 font-family: 'ahem'; 5 font-family: 'ahem';
6 src: url(../../resources/Ahem.ttf); 6 src: url(../../resources/Ahem.ttf);
7 } 7 }
8 </style> 8 </style>
9 <template id="shadow-template"> 9 <template id="shadow-template">
10 <style> 10 <style>
11 :host { 11 :host {
12 color: red; 12 color: red;
13 } 13 }
14 </style> 14 </style>
15 <div style="font-family: ahem;"><h1>Hi!</h1></div> 15 <div style="font-family: ahem;"><h1>Hi!</h1></div>
16 </template> 16 </template>
17 </head> 17 </head>
18 <body class="body-class"> 18 <body class="body-class">
19 <div style="font-family: ahem;"> 19 <div style="font-family: ahem;">
20 <div class="class1">Some Text</div> And More Text 20 <div class="class1">Some Text</div> And More Text
21 <div style="display:inline-block; width: 200px"> 21 <div style="display:inline-block; width: 200px">
22 <p> 22 <p>
23 Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque sit amet est sem. 23 Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque sit amet est sem.
24 Aenean ut neque volutpat, posuere odio at, mollis nibh. Aenean sodales nul la et 24 Aenean ut neque volutpat, posuere odio at, mollis nibh. Aenean sodales nul la et
25 ligula efficitur sollicitudin blandit sed lectus. Duis orci enim, sodales ac lectus sed, 25 ligula efficitur sollicitudin blandit sed lectus. Duis orci enim, sodales ac lectus sed,
26 hendrerit efficitur est. Quisque gravida facilisis viverra. 26 hendrerit efficitur est. Quisque gravida facilisis viverra.
27 </p> 27 </p>
28 <input id='TextInput' value='InputValue'>
29 <input id='ButtonInput' type='button' value='ButtonValue'>
30 <input id='RadioInputChecked' value='RadioInputValue' type='radio' checked>
31 <input id='RadioInputUnchecked' type='radio'>
32 <input id='CheckboxInputChecked' value='CheckInputValue' type='checkbox' val ue='' checked>
33 <input id='CheckboxInputUnchecked' type='checkbox' value=''>
34 <select>
35 <option id='OptionSelected'>Option 1</option>
36 <option id='OptionNotSelected'>Option 2</option>
37 </select>
38 <textarea id='TextArea'>TextAreaValue</textarea>
28 <ul class="class3"> 39 <ul class="class3">
29 <li class="class4"></li> 40 <li class="class4"></li>
30 <span>Lets have a span</span> 41 <span>Lets have a span</span>
31 </ul> 42 </ul>
32 </div> 43 </div>
33 <div style="transform: rotateZ(90deg); width: 200px">Rotated text!</div> 44 <div style="transform: rotateZ(90deg); width: 200px">Rotated text!</div>
34 <iframe src='./simple-iframe.html' width="400" height="200"></iframe> 45 <iframe src='./simple-iframe.html' width="400" height="200"></iframe>
35 <div id="shadow-host"></div> 46 <div id="shadow-host"></div>
36 <a href="https://www.google.com/">Click ME!</a> 47 <a href="https://www.google.com/">Click ME!</a>
37 </div> 48 </div>
38 <meta http-equiv="content-language" content="de"> 49 <meta http-equiv="content-language" content="de">
39 </body> 50 </body>
40 </html> 51 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698