Title: [96945] trunk/Source/WebCore
Revision
96945
Author
[email protected]
Date
2011-10-07 09:33:00 -0700 (Fri, 07 Oct 2011)

Log Message

Web Inspector: TypeError: Cannot read property 'styleSheetId' of undefined in tests.
https://bugs.webkit.org/show_bug.cgi?id=69634

Reviewed by Yury Semikhatsky.

* inspector/front-end/CSSStyleModel.js:
(WebInspector.CSSStyleDeclaration.prototype.insertPropertyAt):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (96944 => 96945)


--- trunk/Source/WebCore/ChangeLog	2011-10-07 16:24:31 UTC (rev 96944)
+++ trunk/Source/WebCore/ChangeLog	2011-10-07 16:33:00 UTC (rev 96945)
@@ -1,3 +1,13 @@
+2011-10-07  Pavel Feldman  <[email protected]>
+
+        Web Inspector: TypeError: Cannot read property 'styleSheetId' of undefined in tests.
+        https://bugs.webkit.org/show_bug.cgi?id=69634
+
+        Reviewed by Yury Semikhatsky.
+
+        * inspector/front-end/CSSStyleModel.js:
+        (WebInspector.CSSStyleDeclaration.prototype.insertPropertyAt):
+
 2011-10-06  Andreas Kling  <[email protected]>
 
         Shrink BorderValue.

Modified: trunk/Source/WebCore/inspector/front-end/CSSStyleModel.js (96944 => 96945)


--- trunk/Source/WebCore/inspector/front-end/CSSStyleModel.js	2011-10-07 16:24:31 UTC (rev 96944)
+++ trunk/Source/WebCore/inspector/front-end/CSSStyleModel.js	2011-10-07 16:33:00 UTC (rev 96945)
@@ -407,7 +407,7 @@
             }
         }
 
-        CSSAgent.setPropertyText(this.id, index, name + ": " + value + ";", false, callback.bind(null, userCallback));
+        CSSAgent.setPropertyText(this.id, index, name + ": " + value + ";", false, callback.bind(this, userCallback));
     },
 
     appendProperty: function(name, value, userCallback)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to