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

Side by Side Diff: LayoutTests/inspector/uisourcecode-revisions.html

Issue 23484056: [DevTools] Renaming Scripts panel to Sources panel (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Modified missed files Created 7 years, 3 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
« no previous file with comments | « LayoutTests/inspector/tabbed-editors-history.html ('k') | Source/devtools/devtools.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../http/tests/inspector/inspector-test.js"></script> 3 <script src="../http/tests/inspector/inspector-test.js"></script>
4 <script> 4 <script>
5 function test() 5 function test()
6 { 6 {
7 WebInspector.showPanel("scripts"); 7 WebInspector.showPanel("sources");
8 8
9 function createMockProject() 9 function createMockProject()
10 { 10 {
11 var workspace = new WebInspector.Workspace(); 11 var workspace = new WebInspector.Workspace();
12 var projectDelegate = new WebInspector.SimpleProjectDelegate("", WebInsp ector.projectTypes.Network); 12 var projectDelegate = new WebInspector.SimpleProjectDelegate("", WebInsp ector.projectTypes.Network);
13 var project = workspace.addProject(projectDelegate); 13 var project = workspace.addProject(projectDelegate);
14 project.requestFileContent = function(uri, callback) 14 project.requestFileContent = function(uri, callback)
15 { 15 {
16 callback("<script content>", false, "text/javascript"); 16 callback("<script content>", false, "text/javascript");
17 } 17 }
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 }, 195 },
196 ]); 196 ]);
197 } 197 }
198 </script> 198 </script>
199 </head> 199 </head>
200 <body onload="runTest()"> 200 <body onload="runTest()">
201 <p>Tests revision support in UISourceCode.</p> 201 <p>Tests revision support in UISourceCode.</p>
202 <a href="https://bugs.webkit.org/show_bug.cgi?id=97669">Bug 97669</a> 202 <a href="https://bugs.webkit.org/show_bug.cgi?id=97669">Bug 97669</a>
203 </body> 203 </body>
204 </html> 204 </html>
OLDNEW
« no previous file with comments | « LayoutTests/inspector/tabbed-editors-history.html ('k') | Source/devtools/devtools.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698