7 #inspected.bar /* c2 */,
10 text-decoration: none;
14 <script src=
"../../../http/tests/inspector/inspector-test.js"></script>
15 <script src=
"../../../http/tests/inspector/elements-test.js"></script>
20 InspectorTest
.nodeWithId("inspected", nodeFound
);
22 function nodeFound(node
)
24 InspectorTest
.CSSAgent
.getMatchedStylesForNode(node
.id
, stylesLoaded
);
27 function stylesLoaded(error
, inlineStyle
, attributeStyle
, rules
)
30 InspectorTest
.addResult("Failed to get styles: " + error
);
33 InspectorTest
.dumpRuleMatchesArray(rules
);
34 InspectorTest
.completeTest();
40 <body onload=
"runTest()">
42 Tests that WebInspector.CSSStyleSheet methods work as expected.
44 <h1 id=
"inspected" class=
"bar">Inspect Me
</h1>