Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector-protocol / cpu-profiler / stop-without-preceeding-start.html
blob2b0bd478f24986c99946bb4b58f424a6a60e226c
1 <html>
2 <head>
3 <script type="text/javascript" src="../../http/tests/inspector-protocol/inspector-protocol-test.js"></script>
4 <script>
5 if (window.testRunner) {
6 testRunner.dumpAsText();
7 testRunner.waitUntilDone();
10 function test()
12 InspectorTest.sendCommand("Profiler.stop", {}, didStopProfile);
13 function didStopProfile(messageObject)
15 InspectorTest.expectedError("ProfileAgent.stop", messageObject);
16 InspectorTest.completeTest();
20 </script>
21 </head>
22 <body onload="runTest()">
23 <p>
24 Test that profiler doesn't crash when we call stop without preceeding start.
25 </body>
26 </html>