Title: [193050] branches/safari-601-branch/Source/WebInspectorUI
Revision
193050
Author
[email protected]
Date
2015-12-03 10:35:32 -0800 (Thu, 03 Dec 2015)

Log Message

Merge r187773. rdar://problem/23221163

Modified Paths

Diff

Modified: branches/safari-601-branch/Source/WebInspectorUI/ChangeLog (193049 => 193050)


--- branches/safari-601-branch/Source/WebInspectorUI/ChangeLog	2015-12-03 18:35:16 UTC (rev 193049)
+++ branches/safari-601-branch/Source/WebInspectorUI/ChangeLog	2015-12-03 18:35:32 UTC (rev 193050)
@@ -1,5 +1,20 @@
 2015-12-01  Timothy Hatcher  <[email protected]>
 
+        Merge r187773. rdar://problem/23221163
+
+    2015-08-03  Brian J. Burg  <[email protected]>
+
+            Web Inspector: Application cache DataGrid has incorrect column heading styles
+            https://bugs.webkit.org/show_bug.cgi?id=147531
+
+            Reviewed by Joseph Pecoraro.
+
+            * UserInterface/Views/ApplicationCacheFrameContentView.js:
+            (WebInspector.ApplicationCacheFrameContentView): Remove erroneous
+            "storage-view" class, which is intended for databases, not AppCache.
+
+2015-12-01  Timothy Hatcher  <[email protected]>
+
         Merge r187732. rdar://problem/23221163
 
     2015-08-02  Matt Baker  <[email protected]>

Modified: branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/ApplicationCacheFrameContentView.js (193049 => 193050)


--- branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/ApplicationCacheFrameContentView.js	2015-12-03 18:35:16 UTC (rev 193049)
+++ branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/ApplicationCacheFrameContentView.js	2015-12-03 18:35:32 UTC (rev 193050)
@@ -29,11 +29,8 @@
 
     WebInspector.ContentView.call(this, representedObject);
 
-    this.element.classList.add("application-cache-frame");
+    this.element.classList.add("application-cache-frame", "table");
 
-    this.element.classList.add("storage-view");
-    this.element.classList.add("table");
-
     this._frame = representedObject.frame;
 
     this._emptyView = WebInspector.createMessageTextView(WebInspector.UIString("No Application Cache information available"), false);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to