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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-frameworks/frameworks-jquery.html

Issue 2647083002: [DevTools] disable frameworks tests for V8 roll (Closed)
Patch Set: addressed comments Created 3 years, 11 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: third_party/WebKit/LayoutTests/inspector/sources/debugger-frameworks/frameworks-jquery.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-frameworks/frameworks-jquery.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-frameworks/frameworks-jquery.html
index 56574fb6e2ca9a273401aaf141859e3906f59d72..bf60e47c4aaac9f9eba1826ad572db3f85efb6c7 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-frameworks/frameworks-jquery.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-frameworks/frameworks-jquery.html
@@ -11,7 +11,6 @@ function testFunction()
var scripts = $("script");
pp.on("testevent", onTestEvent1);
pp.on("testevent", onTestEvent2);
- pp.on("testevent", onTestEvent3);
debugger;
@@ -29,11 +28,6 @@ function onTestEvent2()
output("onTestEvent2");
}
-function onTestEvent3()
-{
- output("onTestEvent3");
-}
-
function onEachScript(index, script)
{
return script.textContent;
@@ -58,11 +52,10 @@ function test()
"StepInto", "StepInto", "Print", // entered onEachScript()
"StepInto", "StepInto", "Print", // again in onEachScript()
"StepOver", "StepOver", "Print", // again in onEachScript()
- "StepOut", "Print", // last time in onEachScript()
+ "StepOver", "StepOver", "Print", // again in onEachScript()
"StepOut", "Print", // about to execute jQuery.trigger()
"StepInto", "Print", // onTestEvent1
- "StepOut", "Print", // onTestEvent2
- "StepOver", "StepOver", "Print", // onTestEvent3
+ "StepOver", "StepOver", "Print" // onTestEvent2
];
InspectorTest.waitUntilPausedAndPerformSteppingActions(actions, step3);
}

Powered by Google App Engine
This is Rietveld 408576698