Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / elements / styles-4 / styles-source-lines-inline.html
blobc3e81f885bff40d5d2990aa2fc5cb8e2350f30e6
1 <html>
2 <head>
3 <script src="../../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../../http/tests/inspector/elements-test.js"></script>
6 <style>
7 .foo {
8 color: blue;
10 </style>
12 <script>
14 function test()
16 InspectorTest.selectNodeAndWaitForStyles("foo", step2);
18 function step2()
20 InspectorTest.dumpSelectedElementStyles(true, false, true);
21 InspectorTest.completeTest();
25 </script>
26 </head>
28 <body onload="runTest()">
29 <p>
30 Tests that elements panel shows proper inline style locations in the sidebar panel.
31 </p>
33 <div id="foo" class="foo" style="display:none">Foo</div>
34 <iframe src="resources/styles-source-lines-inline-iframe.html">
36 </body>
37 </html>