Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / elements / styles-2 / inherited-mixed-case-properties.html
blobd25d9d89290cffda0445c1a75f3b74fdc68aa1f5
1 <html>
2 <head>
3 <style>
4 #container {
5 -webkit-FONT-smoothing: antialiased;
7 </style>
8 <script src="../../../http/tests/inspector/inspector-test.js"></script>
9 <script src="../../../http/tests/inspector/elements-test.js"></script>
10 <script>
12 function test()
15 InspectorTest.selectNodeAndWaitForStylesWithComputed("nested", step1);
17 function step1()
19 InspectorTest.dumpSelectedElementStyles();
20 InspectorTest.completeTest();
23 </script>
24 </head>
26 <body onload="runTest()">
27 <p>
28 Tests that non-standard mixed-cased properties are displayed in the Styles pane.
29 </p>
31 <div id="container" style="CoLoR: blAck">
32 <div id="nested"></div>
33 </div>
35 </body>
36 </html>