| Index: Source/devtools/front_end/sdk/CSSStyleModel.js
|
| diff --git a/Source/devtools/front_end/sdk/CSSStyleModel.js b/Source/devtools/front_end/sdk/CSSStyleModel.js
|
| index d1bf067504dcdea229afc57724777e20ec780ed9..66b9caf4fcc47d2bc38ebe93e5868bdb8a92e9d0 100644
|
| --- a/Source/devtools/front_end/sdk/CSSStyleModel.js
|
| +++ b/Source/devtools/front_end/sdk/CSSStyleModel.js
|
| @@ -1782,7 +1782,7 @@ WebInspector.CSSStyleSheetHeader.prototype = {
|
| */
|
| function textCallback(error, text)
|
| {
|
| - if (error || !text) {
|
| + if (error || text === null) {
|
| WebInspector.console.error("Failed to get text for stylesheet " + this.id + ": " + error)
|
| text = "";
|
| // Fall through.
|
|
|