Title: [171999] trunk/Source/WebCore
- Revision
- 171999
- Author
- [email protected]
- Date
- 2014-08-04 13:50:19 -0700 (Mon, 04 Aug 2014)
Log Message
Web Inspector: All-caps CSS properties are not shown in Computed pane
https://bugs.webkit.org/show_bug.cgi?id=133700
Patch by Matt Baker <[email protected]> on 2014-08-04
Reviewed by Timothy Hatcher.
* inspector/InspectorStyleSheet.cpp:
(WebCore::InspectorStyle::styleWithProperties):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (171998 => 171999)
--- trunk/Source/WebCore/ChangeLog 2014-08-04 20:32:55 UTC (rev 171998)
+++ trunk/Source/WebCore/ChangeLog 2014-08-04 20:50:19 UTC (rev 171999)
@@ -1,3 +1,13 @@
+2014-08-04 Matt Baker <[email protected]>
+
+ Web Inspector: All-caps CSS properties are not shown in Computed pane
+ https://bugs.webkit.org/show_bug.cgi?id=133700
+
+ Reviewed by Timothy Hatcher.
+
+ * inspector/InspectorStyleSheet.cpp:
+ (WebCore::InspectorStyle::styleWithProperties):
+
2014-08-04 Chris Fleizach <[email protected]>
AX: SelectText functionality always selects text after current selection even if closer selection is behind it
Modified: trunk/Source/WebCore/inspector/InspectorStyleSheet.cpp (171998 => 171999)
--- trunk/Source/WebCore/inspector/InspectorStyleSheet.cpp 2014-08-04 20:32:55 UTC (rev 171998)
+++ trunk/Source/WebCore/inspector/InspectorStyleSheet.cpp 2014-08-04 20:50:19 UTC (rev 171999)
@@ -531,7 +531,7 @@
Inspector::TypeBuilder::CSS::CSSProperty::Status::Enum status = it->disabled ? Inspector::TypeBuilder::CSS::CSSProperty::Status::Disabled : Inspector::TypeBuilder::CSS::CSSProperty::Status::Active;
RefPtr<Inspector::TypeBuilder::CSS::CSSProperty> property = Inspector::TypeBuilder::CSS::CSSProperty::create()
- .setName(name)
+ .setName(name.lower())
.setValue(propertyEntry.value);
propertiesObject->addItem(property);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes