Title: [117287] trunk/Source/WebKit/chromium
Revision
117287
Author
[email protected]
Date
2012-05-16 07:22:30 -0700 (Wed, 16 May 2012)

Log Message

[Chromium] Web Inspector: debugger browser tests are broken
https://bugs.webkit.org/show_bug.cgi?id=86624

Reviewed by Vsevolod Vlasov.

Use WebInspector.panels.scripts._scriptMapping instead of
WebInspector.panels.scripts._presentationModel as the latter
has been deleted.

* src/js/Tests.js:
(.TestSuite.prototype.nonAnonymousUISourceCodes_):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (117286 => 117287)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-05-16 14:21:02 UTC (rev 117286)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-05-16 14:22:30 UTC (rev 117287)
@@ -1,3 +1,17 @@
+2012-05-16  Yury Semikhatsky  <[email protected]>
+
+        [Chromium] Web Inspector: debugger browser tests are broken
+        https://bugs.webkit.org/show_bug.cgi?id=86624
+
+        Reviewed by Vsevolod Vlasov.
+
+        Use WebInspector.panels.scripts._scriptMapping instead of
+        WebInspector.panels.scripts._presentationModel as the latter
+        has been deleted.
+
+        * src/js/Tests.js:
+        (.TestSuite.prototype.nonAnonymousUISourceCodes_):
+
 2012-05-16  Keishi Hattori  <[email protected]>
 
         [chromium] Add WebKit API to access inner text value of input element

Modified: trunk/Source/WebKit/chromium/src/js/Tests.js (117286 => 117287)


--- trunk/Source/WebKit/chromium/src/js/Tests.js	2012-05-16 14:21:02 UTC (rev 117286)
+++ trunk/Source/WebKit/chromium/src/js/Tests.js	2012-05-16 14:22:30 UTC (rev 117287)
@@ -649,7 +649,7 @@
         return !!uiSourceCode.url;
     }
 
-    var uiSourceCodes = WebInspector.panels.scripts._presentationModel.uiSourceCodes();
+    var uiSourceCodes = WebInspector.panels.scripts._scriptMapping.uiSourceCodes();
     return uiSourceCodes.filter(filterOutAnonymous);
 };
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to