X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FLayoutTests%2Finspector-enabled%2Fsources%2Fdebugger%2Fscript-formatter-breakpoints-4.html;h=88280eeacfffcf8f35ee57c9b42a86c9208acc47;hb=1afa4dd80ef85af7c90efaea6959db1d92330844;hp=ef67d5633a42f0d1b4a29ca07658a4b1fbee7c9d;hpb=90762837333c13ccf56f2ad88e4481fc71e8d281;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/LayoutTests/inspector-enabled/sources/debugger/script-formatter-breakpoints-4.html b/src/third_party/WebKit/LayoutTests/inspector-enabled/sources/debugger/script-formatter-breakpoints-4.html index ef67d56..88280ee 100644 --- a/src/third_party/WebKit/LayoutTests/inspector-enabled/sources/debugger/script-formatter-breakpoints-4.html +++ b/src/third_party/WebKit/LayoutTests/inspector-enabled/sources/debugger/script-formatter-breakpoints-4.html @@ -25,10 +25,18 @@ function onload() var test = function() { WebInspector.breakpointManager._storage._breakpoints = {}; - var panel = WebInspector.inspectorView.showPanel("sources"); - var scriptFormatter = InspectorTest.scriptFormatter(); + var panel = WebInspector.panels.sources; + var scriptFormatter; InspectorTest.runDebuggerTestSuite([ + function testSetup(next) + { + InspectorTest.scriptFormatter().then(function(sf) { + scriptFormatter = sf; + next(); + }); + }, + function testBreakpointSetInOriginalAndRemovedInFormatted(next) { InspectorTest.showScriptSource("script-formatter-breakpoints-4.html", didShowScriptSource);