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

Unified 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: Files sorted by theirs names 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/inspector/documentation/documentation-url-provider-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/inspector/documentation/documentation-url-provider.html
diff --git a/LayoutTests/inspector/documentation/documentation-url-provider.html b/LayoutTests/inspector/documentation/documentation-url-provider.html
new file mode 100644
index 0000000000000000000000000000000000000000..b58925aaaddcc7f473f1ecaa826436bb4319a81b
--- /dev/null
+++ b/LayoutTests/inspector/documentation/documentation-url-provider.html
@@ -0,0 +1,34 @@
+<html>
+<head>
+<script src="../../http/tests/inspector/inspector-test.js"></script>
+<script>
+
+function test()
+{
+ runtime.registerModule("documentation");
+ runtime.loadModule("documentation");
+ var testCases = [
+ "max",
+ "insertBefore",
+ "eval",
+ "stringify",
+ "isArray",
+ "now",
+ "fromCharCode",
+ "keys",
+ "notExist",
+ ];
+ var urlFormer = new WebInspector.DocumentationURLProvider();
+ for (var i = 0; i < testCases.length; ++i) {
+ InspectorTest.addResult("Property " + testCases[i] + ":");
+ InspectorTest.addResult(urlFormer.itemPath(testCases[i]));
+ }
+ InspectorTest.completeTest();
+}
+
+</script>
+</head>
+<body onload="runTest()">
+This test verifies URL created by WebInspector.DocumentationURLProvider
+</body>
+</html>
« no previous file with comments | « no previous file | LayoutTests/inspector/documentation/documentation-url-provider-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698