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

Unified Diff: third_party/WebKit/LayoutTests/inspector/runtime/runtime-localStorage-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: 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-localStorage-getProperties.html
diff --git a/third_party/WebKit/LayoutTests/inspector/runtime/runtime-localStorage-getProperties.html b/third_party/WebKit/LayoutTests/inspector/runtime/runtime-localStorage-getProperties.html
index 3cd34206d10eb04e6d9abf2ecea33702e607f84f..fe69b1be13dc118310ce7b0a3891e0b0b308c048 100644
--- a/third_party/WebKit/LayoutTests/inspector/runtime/runtime-localStorage-getProperties.html
+++ b/third_party/WebKit/LayoutTests/inspector/runtime/runtime-localStorage-getProperties.html
@@ -9,7 +9,7 @@ function test()
{
InspectorTest.RuntimeAgent.evaluate("localStorage", step1);
- function step1(error, result, wasThrown)
+ function step1(error, result, exceptionDetails)
{
var localStorageHandle = InspectorTest.runtimeModel.createRemoteObject(result);
localStorageHandle.getOwnProperties(step2);
@@ -21,7 +21,7 @@ function test()
var property = properties[i];
if (property.name !== "testProperty")
continue;
- property.value = { type: property.value.type, description: property.value.description };
+ property.value = { type: property.value.type, description: property.value.description };
InspectorTest.dump(property);
}
InspectorTest.completeTest();

Powered by Google App Engine
This is Rietveld 408576698