blob: 393580626f37ab7a13ff7428a0b6405b141ba54f [file] [log] [blame]
<html>
<head>
<link rel="stylesheet" type="text/css" href="resources/elements-panel-styles.css">
<script src="../../http/tests/inspector/inspector-test.js"></script>
<script src="../../http/tests/inspector/elements-test.js"></script>
<script>
function test()
{
InspectorTest.selectNodeAndWaitForStylesWithComputed("foo", step1);
function step1()
{
InspectorTest.dumpSelectedElementStyles(false, false);
InspectorTest.completeTest();
}
}
</script>
</head>
<body onload="runTest()">
<p>
Tests that elements panel shows proper styles in the sidebar panel.
</p>
<div id="container">
<div id="foo" class="foo" style="display:none; -webkit-font-smoothing: subpixel-antialiased;" align="left">Foo</div>
</div>
</body>
</html>