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

Unified Diff: third_party/WebKit/LayoutTests/inspector/elements/styles-4/styles-history.html

Issue 2613643002: DevTools: migrate from external Maps to symbols in the bindings objects. (Closed)
Patch Set: Created 3 years, 12 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/elements/styles-4/styles-history.html
diff --git a/third_party/WebKit/LayoutTests/inspector/elements/styles-4/styles-history.html b/third_party/WebKit/LayoutTests/inspector/elements/styles-4/styles-history.html
index fb4432c3153899b89912c216dc4b0914417264c8..9e83b8baf5d10f23c1a417aa8c59a5860f805eea 100644
--- a/third_party/WebKit/LayoutTests/inspector/elements/styles-4/styles-history.html
+++ b/third_party/WebKit/LayoutTests/inspector/elements/styles-4/styles-history.html
@@ -115,10 +115,10 @@ function test()
{
function result()
{
- InspectorTest.addResult("History length: " + uiSourceCode.history.length);
- for (var i = 0; i < uiSourceCode.history.length; ++i) {
+ InspectorTest.addResult("History length: " + uiSourceCode.history().length);
+ for (var i = 0; i < uiSourceCode.history().length; ++i) {
InspectorTest.addResult("Item " + i + ":");
- InspectorTest.addResult(uiSourceCode.history[i].content);
+ InspectorTest.addResult(uiSourceCode.history()[i].content);
}
next();
}

Powered by Google App Engine
This is Rietveld 408576698