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

Unified Diff: third_party/WebKit/LayoutTests/inspector/runtime/runtime-getProperties.html

Issue 2234983002: [DevTools] Removed wasThrown from evaluate-like protocol methods (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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/runtime/runtime-getProperties.html
diff --git a/third_party/WebKit/LayoutTests/inspector/runtime/runtime-getProperties.html b/third_party/WebKit/LayoutTests/inspector/runtime/runtime-getProperties.html
index 40485d4d101a7d176ada6a6abc52f75cbf9f847a..0fb62e25218e13bbd077f2a509b69c4efc3c4147 100644
--- a/third_party/WebKit/LayoutTests/inspector/runtime/runtime-getProperties.html
+++ b/third_party/WebKit/LayoutTests/inspector/runtime/runtime-getProperties.html
@@ -27,13 +27,13 @@ function test()
InspectorTest.RuntimeAgent.evaluate("object1", step1);
}
- function step1(error, result, wasThrown)
+ function step1(error, result)
dgozman 2016/08/11 01:54:35 While you are here, let's add exceptionDetails sec
kozy 2016/08/11 21:04:22 Done.
{
obj1 = InspectorTest.runtimeModel.createRemoteObject(result);
InspectorTest.RuntimeAgent.evaluate("object2", step2);
}
- function step2(error, result, wasThrown)
+ function step2(error, result)
dgozman 2016/08/11 01:54:35 While you are here, let's add exceptionDetails sec
kozy 2016/08/11 21:04:22 Done.
{
obj2 = InspectorTest.runtimeModel.createRemoteObject(result);
next();

Powered by Google App Engine
This is Rietveld 408576698