Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / evaluate-in-page.html
blobefb53ad7278b34358cbe0afe914ab6323a59795d
1 <html>
2 <head>
3 <script src="../http/tests/inspector/inspector-test.js"></script>
4 <script>
6 function sum(a, b)
8 return a + b;
11 function test()
13 function callback(result)
15 InspectorTest.addResult("2 + 2 = " + result.description);
16 InspectorTest.completeTest();
18 InspectorTest.evaluateInPage("sum(2, 2)", callback);
21 </script>
22 </head>
24 <body onload="runTest()">
25 <p>
26 This tests that layout test can evaluate scripts in the inspected page.
27 </p>
29 </body>
30 </html>