Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / tracing / timeline-parse-html.html
blob62621a4f63541adf474a3b15fbfa850e3d73e034
1 <html>
2 <head>
3 <script src="../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../http/tests/inspector/timeline-test.js"></script>
5 <script>
7 function performActions()
9 var element = document.createElement("div");
10 element.innerHTML = "Test data";
11 document.body.appendChild(element);
14 function test()
16 InspectorTest.performActionsAndPrint("performActions()", "ParseHTML");
19 </script>
20 </head>
22 <body onload="runTest()">
23 <p>
24 Tests the Timeline API instrumentation of ParseHTML
25 </p>
27 </body>
28 </html>