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

Side by Side Diff: LayoutTests/inspector/debugger/ui-source-code-display-name.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
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 createContentProvider(url) 9 function createContentProvider(url)
10 { 10 {
11 var contentProvider = new WebInspector.StaticContentProvider(WebInspecto r.resourceTypes.Script, "", "text/javascript"); 11 var contentProvider = new WebInspector.StaticContentProvider(WebInspecto r.resourceTypes.Script, "", "text/javascript");
12 contentProvider.requestContent = function(callback) 12 contentProvider.requestContent = function(callback)
13 { 13 {
14 InspectorTest.addResult("Source requested for " + url); 14 InspectorTest.addResult("Source requested for " + url);
15 callback(""); 15 callback("");
16 }; 16 };
17 return contentProvider; 17 return contentProvider;
(...skipping 20 matching lines...) Expand all
38 dumpUISourceCodeDisplayName(baseURL + "long-filename?parameter=value&nnn=1") ; 38 dumpUISourceCodeDisplayName(baseURL + "long-filename?parameter=value&nnn=1") ;
39 dumpUISourceCodeDisplayName(baseURL + "too-long-filename-1234567890?paramete r=value&nnn=1"); 39 dumpUISourceCodeDisplayName(baseURL + "too-long-filename-1234567890?paramete r=value&nnn=1");
40 InspectorTest.completeTest(); 40 InspectorTest.completeTest();
41 }; 41 };
42 </script> 42 </script>
43 </head> 43 </head>
44 <body onload="runTest()"> 44 <body onload="runTest()">
45 <p>Tests UISourceCode display name.</p> 45 <p>Tests UISourceCode display name.</p>
46 </body> 46 </body>
47 </html> 47 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698