3 <script src=
"inspector-test.js"></script>
4 <script src=
"elements-test.js"></script>
5 <script src=
"console-test.js"></script>
10 InspectorTest
.expandElementsTree(function() {
11 var contentNode
= InspectorTest
.expandedNodeWithId("tpl").templateContent();
12 WebInspector
.panels
.elements
.selectDOMNode(contentNode
, true);
13 InspectorTest
.evaluateInConsole("$0", callback
);
16 function callback(result
)
18 InspectorTest
.addResult("SUCCESS");
19 InspectorTest
.completeTest();
25 <body onload=
"runTest()">
27 <p id=
"description">This test verifies that template's content DocumentFragment is accessible from DevTools.
</p>