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

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

Issue 1158883003: DevTools: shard inspector/elements tests for faster execution. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <head>
3 <style>
4 #inspected{
5 }
6
7 #InSpEcTeD {
8 }
9
10 /* */#inspected/* */ {
11 }
12
13 /*
14 */ FOO/*Single-line 1*/ bAr,/* Single-line 2*/#inspected/*
15 Multiline comment
16 */ ,MOO>BAR, /*1*/htML /*2
17 */div/*3*/,/**/Foo~/**C*/Moo,/**/MOO /* Comment
18 */
19 {
20 color: green;
21 }
22
23 </style>
24 <script src="../../../http/tests/inspector/inspector-test.js"></script>
25 <script src="../../../http/tests/inspector/elements-test.js"></script>
26 <script>
27
28 function test()
29 {
30 InspectorTest.selectNodeAndWaitForStyles("inspected", step1);
31
32 function step1()
33 {
34 InspectorTest.dumpSelectedElementStyles(true);
35 InspectorTest.completeTest();
36 }
37 }
38
39 </script>
40 </head>
41
42 <body onload="runTest()">
43 <p>
44 Tests representation of selector lists in the protocol. <a href="https://bugs.we bkit.org/show_bug.cgi?id=103118">Bug 103118</a>.
45 </p>
46
47 <div id="inspected">Text</div>
48
49 </body>
50 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698