Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / console / console-trim-long-urls.html
blob30048c461c523b444e5c437bbd941e9511d415b9
1 <html>
2 <head>
3 <script src="../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../http/tests/inspector/console-test.js"></script>
5 <script>
6 function onload()
8 // 0---------1---------2---------3---------4---------5---------6---------7---------8---------9---------0---------1---------2---------3---------4---------5---------6---------7---------8---------9---------0
9 var url = "http://example.com/2---------3---------4---------5---------6---------7---------8---------9---------0---------1---------2---------3---------4---------5---------6---------7---------8---------9---------0";
11 console.log("The URL is: %s", url);
12 console.log(url);
14 runTest();
17 function test()
19 InspectorTest.dumpConsoleMessages();
20 InspectorTest.completeTest();
22 </script>
23 </head>
25 <body onload="onload()">
26 <p>
27 Tests that a URL logged to the console is trimmed down to 150 characters.
28 </p>
29 </body>
30 </html>