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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sass/test-mapping-with-cache-busting-url.html

Issue 2779703004: DevTools: carefully cleanup CSS sourcemaps (Closed)
Patch Set: fix tests Created 3 years, 9 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/sass/test-mapping-with-cache-busting-url.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sass/test-mapping-with-cache-busting-url.html b/third_party/WebKit/LayoutTests/inspector/sass/test-mapping-with-cache-busting-url.html
index d80ead7ea766f68522230b4de2fc7588ce022e58..4e50f2598e8d041f563f2b8c160699676e59a8d6 100644
--- a/third_party/WebKit/LayoutTests/inspector/sass/test-mapping-with-cache-busting-url.html
+++ b/third_party/WebKit/LayoutTests/inspector/sass/test-mapping-with-cache-busting-url.html
@@ -24,8 +24,8 @@ function test()
function onSourceMapAttached(event)
{
- var header = event.data;
- var sourceMap = InspectorTest.cssModel.sourceMapManager().sourceMapForClient(header);
+ var header = event.data.client;
+ var sourceMap = event.data.sourceMap;
InspectorTest.addResult("SourceMap is editable: " + sourceMap.editable());
InspectorTest.completeTest();
}

Powered by Google App Engine
This is Rietveld 408576698