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

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

Issue 2234983002: [DevTools] Removed wasThrown from evaluate-like protocol methods (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: a 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-setPropertyValue.html
diff --git a/third_party/WebKit/LayoutTests/inspector/runtime/runtime-setPropertyValue.html b/third_party/WebKit/LayoutTests/inspector/runtime/runtime-setPropertyValue.html
index 70d23e1aca3766069b9128b5fe5e4043be00c942..1ea7fdb79f66740b471f8fe785ad155b729ee14f 100644
--- a/third_party/WebKit/LayoutTests/inspector/runtime/runtime-setPropertyValue.html
+++ b/third_party/WebKit/LayoutTests/inspector/runtime/runtime-setPropertyValue.html
@@ -41,13 +41,13 @@ function test()
InspectorTest.RuntimeAgent.evaluate("object1", step1);
}
- function step1(error, result, wasThrown)
+ function step1(error, result, exceptionDetails)
{
obj1 = InspectorTest.runtimeModel.createRemoteObject(result);
InspectorTest.RuntimeAgent.evaluate("object2", step2);
}
- function step2(error, result, wasThrown)
+ function step2(error, result, exceptionDetails)
{
obj2 = InspectorTest.runtimeModel.createRemoteObject(result);
next();

Powered by Google App Engine
This is Rietveld 408576698