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

Unified Diff: LayoutTests/inspector/sources/debugger/source-frame-count.html

Issue 206063003: DevTools: Extract SourcesEditor from SourcesPanel. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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: LayoutTests/inspector/sources/debugger/source-frame-count.html
diff --git a/LayoutTests/inspector/sources/debugger/source-frame-count.html b/LayoutTests/inspector/sources/debugger/source-frame-count.html
index 29a5f6c021960ff6bc30fa8de1220d83ab8319d1..6240d758d33d462ff0cc8228a8b091cd3043a097 100644
--- a/LayoutTests/inspector/sources/debugger/source-frame-count.html
+++ b/LayoutTests/inspector/sources/debugger/source-frame-count.html
@@ -14,7 +14,6 @@ function test()
function testSourceFramesCount(next)
{
var panel = WebInspector.panels.sources;
- var select = panel._navigator._filesSelectElement;
var sourceFrameCount = 0;
InspectorTest.showScriptSource("source-frame-count.html", step2);
@@ -49,7 +48,7 @@ function test()
function didShowScriptSourceAgain()
{
- InspectorTest.assertTrue(panel._editorContainer.visibleView._uiSourceCode.originURL().indexOf("script3.js") !== -1);
+ InspectorTest.assertTrue(panel.visibleView._uiSourceCode.originURL().indexOf("script3.js") !== -1);
lushnikov 2014/03/20 13:13:43 shouldn't it be sourcesEditor() here instead of vi
// There should be maximum 3 source frames shown:
// - first one is the first shown (first tab added)
// - second one is the last viewed ("script2.js")

Powered by Google App Engine
This is Rietveld 408576698