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

Side by Side Diff: LayoutTests/inspector/elements/styles/inherited-mixed-case-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>
4 #container {
5 -webkit-FONT-smoothing: antialiased;
6 }
7 </style>
8 <script src="../../../http/tests/inspector/inspector-test.js"></script>
9 <script src="../../../http/tests/inspector/elements-test.js"></script>
10 <script>
11
12 function test()
13 {
14
15 InspectorTest.selectNodeAndWaitForStylesWithComputed("nested", step1);
16
17 function step1()
18 {
19 InspectorTest.dumpSelectedElementStyles();
20 InspectorTest.completeTest();
21 }
22 }
23 </script>
24 </head>
25
26 <body onload="runTest()">
27 <p>
28 Tests that non-standard mixed-cased properties are displayed in the Styles pane.
29 </p>
30
31 <div id="container" style="CoLoR: blAck">
32 <div id="nested"></div>
33 </div>
34
35 </body>
36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698