Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(35)

Side by Side Diff: LayoutTests/inspector/documentation/documentation-url-provider.html

Issue 447703002: DocumentationURLProvider class created (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@semen
Patch Set: Removed ambigous files Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script src="../../http/tests/inspector/inspector-test.js"></script>
4 <script>
5
6 function test()
7 {
8 runtime.registerModule("documentation");
9 runtime.loadModule("documentation");
10 var testCases = [
11 "max",
12 "insertBefore",
13 "eval",
14 "stringify",
15 "isArray",
16 "now",
17 "fromCharCode",
18 "keys",
19 "notExist",
20 ];
21 var urlFormer = new WebInspector.DocumentationURLProvider();
22 for (var i = 0; i < testCases.length; ++i) {
23 InspectorTest.addResult("Property " + testCases[i] + ":");
24 InspectorTest.addResult(urlFormer.itemPath(testCases[i]));
25 }
26 InspectorTest.completeTest();
27 }
28
29 </script>
30 </head>
31 <body onload="runTest()">
32 This test verifies URL created by WebInspector.DocumentationURLProvider
33 </body>
34 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698