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

Side by Side Diff: LayoutTests/inspector/elements/styles/pseudo-elements.html

Issue 697773004: DevTools: [CSS] report matched selectors for pseudoId matches (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: address comments Created 6 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <style> 3 <style>
4 #inspected:before { 4 #inspected:before, .some-other-selector {
5 content: "BEFORE"; 5 content: "BEFORE";
6 } 6 }
7 7
8 #inspected:after { 8 #inspected:after {
9 content: "AFTER"; 9 content: "AFTER";
10 } 10 }
11 </style> 11 </style>
12 <style> 12 <style>
13 #empty::before { 13 #empty::before {
14 content: "EmptyBefore"; 14 content: "EmptyBefore";
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 Tests that pseudo elements and their styles are handled properly. 238 Tests that pseudo elements and their styles are handled properly.
239 </p> 239 </p>
240 240
241 <div id="container"> 241 <div id="container">
242 <div id="inspected">Text</div> 242 <div id="inspected">Text</div>
243 <div id="empty"></div> 243 <div id="empty"></div>
244 </div> 244 </div>
245 245
246 </body> 246 </body>
247 </html> 247 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698