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

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

Issue 2947303002: [DevTools] Migrate inspector-protocol/{page,dom-snapshot} tests to new harness (Closed)
Patch Set: rebased 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 <head>
3 <style>
4 @font-face {
5 font-family: 'ahem';
6 src: url(../../resources/Ahem.ttf);
7 }
8 </style>
9 <template id="shadow-template">
10 <style>
11 :host {
12 color: red;
13 }
14 </style>
15 <div style="font-family: ahem;"><h1>Hi!</h1></div>
16 </template>
17 </head>
18 <body class="body-class">
19 <div style="font-family: ahem;">
20 <div class="class1">Some Text</div> And More Text
21 <div style="display:inline-block; width: 200px">
22 <p>
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
25 ligula efficitur sollicitudin blandit sed lectus. Duis orci enim, sodales ac lectus sed,
26 hendrerit efficitur est. Quisque gravida facilisis viverra.
27 </p>
28 <ul class="class3">
29 <li class="class4"></li>
30 <span>Lets have a span</span>
31 </ul>
32 </div>
33 <div style="transform: rotateZ(90deg); width: 200px">Rotated text!</div>
34 <iframe src='./simple-iframe.html' width="400" height="200"></iframe>
35 <div id="shadow-host"></div>
36 </div>
37 </body>
38 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698