Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / inspector / template-content-inspect-crash.html
blobb4923f9cb0b2e5561cca8fb6467a3b1d70d320f8
1 <html>
2 <head>
3 <script src="inspector-test.js"></script>
4 <script src="elements-test.js"></script>
5 <script src="console-test.js"></script>
6 <script>
8 function test()
10 InspectorTest.expandElementsTree(function() {
11 var contentNode = InspectorTest.expandedNodeWithId("tpl").templateContent();
12 WebInspector.panels.elements.selectDOMNode(contentNode, true);
13 InspectorTest.evaluateInConsole("$0", callback);
14 });
16 function callback(result)
18 InspectorTest.addResult("SUCCESS");
19 InspectorTest.completeTest();
22 </script>
23 </head>
25 <body onload="runTest()">
27 <p id="description">This test verifies that template's content DocumentFragment is accessible from DevTools.</p>
29 <template id="tpl">
30 <div>Hello!</div>
31 </template>
33 </body>
34 </html>