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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/CSSRule.js

Issue 2545883005: DevTools: support sourceMappingURL for the inline stylesheets (Closed)
Patch Set: address comments Created 4 years 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/Source/devtools/front_end/sdk/CSSRule.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/CSSRule.js b/third_party/WebKit/Source/devtools/front_end/sdk/CSSRule.js
index 7c3463e20d90c64595c25c9ad8abf03a20845c92..835d7d18356d634eac37c981ebcc3febe02f70d6 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/CSSRule.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/CSSRule.js
@@ -90,6 +90,13 @@ SDK.CSSRule = class {
isRegular() {
return this.origin === Protocol.CSS.StyleSheetOrigin.Regular;
}
+
+ /**
+ * @return {!SDK.CSSModel}
+ */
+ cssModel() {
+ return this._cssModel;
+ }
};
/**

Powered by Google App Engine
This is Rietveld 408576698