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

Unified Diff: Source/devtools/front_end/documentation/DocumentationURLProvider.js

Issue 455343002: DevTools: Add new DocumentationURLProvider sources and some tests for documentation (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase master 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
Index: Source/devtools/front_end/documentation/DocumentationURLProvider.js
diff --git a/Source/devtools/front_end/documentation/DocumentationURLProvider.js b/Source/devtools/front_end/documentation/DocumentationURLProvider.js
index f59bdc29de9db5891fee05c8a4ee4fc7a8c2b8d8..250616331bfb79b29ad2a161e232a267627daf24 100644
--- a/Source/devtools/front_end/documentation/DocumentationURLProvider.js
+++ b/Source/devtools/front_end/documentation/DocumentationURLProvider.js
@@ -16,10 +16,15 @@ WebInspector.DocumentationURLProvider = function()
WebInspector.DocumentationURLProvider._sources = [
{ source: window, url: "javascript/" },
{ source: window.Node.prototype, url: "dom/Node/" },
+ { source: window.Node, url: "dom/Node/" },
+ { source: window.Object.prototype, url: "javascript/Object/" },
{ source: window.Object, url: "javascript/Object/" },
{ source: window.Math, url: "javascript/Math/" },
+ { source: window.Array.prototype, url: "javascript/Array/" },
{ source: window.Array, url: "javascript/Array/" },
+ { source: window.String.prototype, url: "javascript/String/" },
{ source: window.String, url: "javascript/String/" },
+ { source: window.Date.prototype, url: "javascript/Date/" },
{ source: window.Date, url: "javascript/Date/" },
{ source: window.JSON, url: "javascript/JSON/" }
];

Powered by Google App Engine
This is Rietveld 408576698