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

Side by Side Diff: LayoutTests/inspector/elements/styles/styles-overriden-properties.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 type="text/css">
4 #main {
5 height: 100px;
6 background: #000;
7 background: #bada55;
8 }
9 </style>
10
11 <script src="../../../http/tests/inspector/inspector-test.js"></script>
12 <script src="../../../http/tests/inspector/elements-test.js"></script>
13 <script>
14
15 function test()
16 {
17 InspectorTest.selectNodeAndWaitForStyles("main", step1);
18
19 function step1()
20 {
21 InspectorTest.dumpSelectedElementStyles(true, false, true);
22 InspectorTest.completeTest();
23 }
24 }
25
26 </script>
27 </head>
28
29 <body onload="runTest()">
30 <p>
31 Tests that overriding shorthands within rule are visible.
32 </p>
33
34 <div id="main"></div>
35
36 </body>
37 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698