Title: [263993] trunk/Source/WebCore
- Revision
- 263993
- Author
- [email protected]
- Date
- 2020-07-06 16:13:23 -0700 (Mon, 06 Jul 2020)
Log Message
REGRESSION: (r263977): [ iOS Debug WK2 ] 36 fast form and web-platform test consistently crashing
https://bugs.webkit.org/show_bug.cgi?id=214009
<rdar://problem/65151752>
* rendering/RenderTheme.cpp:
(WebCore::RenderTheme::weekInputStyleSheet const):
Replace ""_s with emptyString() to fix crashing tests.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (263992 => 263993)
--- trunk/Source/WebCore/ChangeLog 2020-07-06 23:01:18 UTC (rev 263992)
+++ trunk/Source/WebCore/ChangeLog 2020-07-06 23:13:23 UTC (rev 263993)
@@ -1,3 +1,13 @@
+2020-07-06 Sam Weinig <[email protected]>
+
+ REGRESSION: (r263977): [ iOS Debug WK2 ] 36 fast form and web-platform test consistently crashing
+ https://bugs.webkit.org/show_bug.cgi?id=214009
+ <rdar://problem/65151752>
+
+ * rendering/RenderTheme.cpp:
+ (WebCore::RenderTheme::weekInputStyleSheet const):
+ Replace ""_s with emptyString() to fix crashing tests.
+
2020-07-06 John Wilander <[email protected]>
Storage Access API: Add the capability to open a popup and get user interaction so we can call the Storage Access API as a quirk, on behalf of websites that should be doing it themselves
Modified: trunk/Source/WebCore/rendering/RenderTheme.cpp (263992 => 263993)
--- trunk/Source/WebCore/rendering/RenderTheme.cpp 2020-07-06 23:01:18 UTC (rev 263992)
+++ trunk/Source/WebCore/rendering/RenderTheme.cpp 2020-07-06 23:13:23 UTC (rev 263993)
@@ -1086,7 +1086,7 @@
String RenderTheme::weekInputStyleSheet() const
{
#if PLATFORM(IOS_FAMILY)
- return ""_s;
+ return emptyString();
#else
return "input[type=\"week\"] { align-items: center; -webkit-appearance: menulist-button; display: -webkit-inline-flex; overflow: hidden; " DATE_INPUT_WIDTH "} "_s;
#endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes